Skip to content

Commit 07e6089

Browse files
authored
Update to v2024.2 (#180)
1 parent c3cfa07 commit 07e6089

File tree

7 files changed

+37
-28
lines changed

7 files changed

+37
-28
lines changed

src/Classes/BillingAccountFrequency.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class BillingAccountFrequency {
2121
static $paramtypesmap = array(
2222
);
2323
const _annually = "_annually";
24+
const _autoRefill = "_autoRefill";
2425
const _custom = "_custom";
2526
const _daily = "_daily";
2627
const _endOfPeriod = "_endOfPeriod";

src/Classes/BomRevisionComponent.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class BomRevisionComponent {
4949
/**
5050
* @var string
5151
*/
52-
public $internalId;
52+
public $id;
5353
/**
5454
* @var \NetSuite\Classes\CustomFieldList
5555
*/
@@ -62,7 +62,7 @@ class BomRevisionComponent {
6262
"itemSource" => "ItemSource",
6363
"quantity" => "float",
6464
"units" => "RecordRef",
65-
"internalId" => "string",
65+
"id" => "string",
6666
"customFieldList" => "CustomFieldList",
6767
);
6868
}

src/Classes/ItemFulfillment.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,10 @@ class ItemFulfillment extends Record {
342342
* @var \NetSuite\Classes\RecordRef
343343
*/
344344
public $shipMethod;
345+
/**
346+
* @var \NetSuite\Classes\RecordRef
347+
*/
348+
public $inventoryLocation;
345349
/**
346350
* @var boolean
347351
*/
@@ -480,6 +484,7 @@ class ItemFulfillment extends Record {
480484
"tranDate" => "dateTime",
481485
"tranId" => "string",
482486
"shipMethod" => "RecordRef",
487+
"inventoryLocation" => "RecordRef",
483488
"generateIntegratedShipperLabel" => "boolean",
484489
"shippingCost" => "float",
485490
"handlingCost" => "float",

src/Classes/PermissionCode.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -674,6 +674,7 @@ class PermissionCode {
674674
const _templateCategories = "_templateCategories";
675675
const _terminationReasons = "_terminationReasons";
676676
const _testdriveMasters = "_testdriveMasters";
677+
const _textEnhance = "_textEnhance";
677678
const _timeCodes = "_timeCodes";
678679
const _timeOffAdministration = "_timeOffAdministration";
679680
const _timer = "_timer";

src/Classes/StatusDetailCodeType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,7 @@ class StatusDetailCodeType {
931931
const MAX_BARCODE_PRINT_EXCEEDED = "MAX_BARCODE_PRINT_EXCEEDED";
932932
const MAX_BULK_MERGE_RCRDS_EXCEEDED = "MAX_BULK_MERGE_RCRDS_EXCEEDED";
933933
const MAX_EMAILS_EXCEEDED = "MAX_EMAILS_EXCEEDED";
934+
const MAX_PARALLEL_LLM_REQUESTS_EXCEEDED = "MAX_PARALLEL_LLM_REQUESTS_EXCEEDED";
934935
const MAX_RCRDS_EXCEEDED = "MAX_RCRDS_EXCEEDED";
935936
const MAX_VALUES_EXCEEDED = "MAX_VALUES_EXCEEDED";
936937
const MEDIA_FILE_INVALID_JSCRIPT = "MEDIA_FILE_INVALID_JSCRIPT";
@@ -961,6 +962,7 @@ class StatusDetailCodeType {
961962
const MISSNG_SO_REV_REC_PARAMS = "MISSNG_SO_REV_REC_PARAMS";
962963
const MISSNG_SO_START_END_DATES = "MISSNG_SO_START_END_DATES";
963964
const MLI_REQD = "MLI_REQD";
965+
const MONTHLY_QOUTA_OF_LLM_REQUESTS_EXCEEDED = "MONTHLY_QOUTA_OF_LLM_REQUESTS_EXCEEDED";
964966
const MSNG_FIELD_OWRTE_MUST_BE_TRUE = "MSNG_FIELD_OWRTE_MUST_BE_TRUE";
965967
const MST_UPDATE_ITEMS_THEN_RATES = "MST_UPDATE_ITEMS_THEN_RATES";
966968
const MULTISELECT_TYPE_REQD = "MULTISELECT_TYPE_REQD";

src/NetSuiteService.php

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
<?php
2-
/**
3-
* This file is part of the netsuitephp/netsuite-php library
4-
* AND originally from the NetSuite PHP Toolkit.
5-
*
6-
* New content:
7-
* @package ryanwinchester/netsuite-php
8-
* @copyright Copyright (c) Ryan Winchester
9-
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache-2.0
10-
* @link https://github.com/netsuitephp/netsuite-php
11-
*
12-
* Original content:
13-
* @copyright Copyright (c) NetSuite Inc.
14-
* @license https://raw.githubusercontent.com/netsuitephp/netsuite-php/master/original/NetSuite%20Application%20Developer%20License%20Agreement.txt
15-
* @link http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml
16-
*
17-
* created: 2015-01-22 1:04 PM
18-
* updated: 2024-09-13 03:48:15 PM UTC
19-
*/
20-
21-
namespace NetSuite;
22-
23-
use NetSuite\Classes;
24-
1+
<?php
2+
/**
3+
* This file is part of the netsuitephp/netsuite-php library
4+
* AND originally from the NetSuite PHP Toolkit.
5+
*
6+
* New content:
7+
* @package ryanwinchester/netsuite-php
8+
* @copyright Copyright (c) Ryan Winchester
9+
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache-2.0
10+
* @link https://github.com/netsuitephp/netsuite-php
11+
*
12+
* Original content:
13+
* @copyright Copyright (c) NetSuite Inc.
14+
* @license https://raw.githubusercontent.com/netsuitephp/netsuite-php/master/original/NetSuite%20Application%20Developer%20License%20Agreement.txt
15+
* @link http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml
16+
*
17+
* created: 2015-01-22 1:04 PM
18+
* updated: 2025-01-23 03:00:28 AM UTC
19+
*/
20+
21+
namespace NetSuite;
22+
23+
use NetSuite\Classes;
24+
2525
class NetSuiteService extends NetSuiteClient {
2626

27-
public $generated_from_endpoint = '2024_1';
27+
public $generated_from_endpoint = '2024_2';
2828

2929
/**
3030
* Service Call: changePassword

src/includes/classmap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @license https://raw.githubusercontent.com/netsuitephp/netsuite-php/master/original/NetSuite%20Application%20Developer%20License%20Agreement.txt
1515
* @link http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml
1616
*
17-
* generated: 2024-09-13 03:48:15 PM UTC
17+
* generated: 2025-01-23 03:00:27 AM UTC
1818
*/
1919

2020
return array(

0 commit comments

Comments
 (0)