ultracart_rest_api_v2_typescript 4.0.231 → 4.0.232

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@4.0.231
1
+ ## ultracart_rest_api_v2_typescript@4.0.232
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install ultracart_rest_api_v2_typescript@4.0.231 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.232 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 4.0.232 | 08/29/2024 | add hold_for_transmission to item shipping object |
57
58
  | 4.0.231 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
58
59
  | 4.0.230 | 06/24/2024 | conversation object cleanup |
59
60
  | 4.0.229 | 06/14/2024 | pbx menu - add say voice property |
@@ -161,6 +161,12 @@ export interface ItemShipping {
161
161
  * @memberof ItemShipping
162
162
  */
163
163
  hazmat?: boolean;
164
+ /**
165
+ * Hold for transmission
166
+ * @type {boolean}
167
+ * @memberof ItemShipping
168
+ */
169
+ hold_for_transmission?: boolean;
164
170
  /**
165
171
  * True if this item is made to order
166
172
  * @type {boolean}
@@ -55,6 +55,7 @@ function ItemShippingFromJSONTyped(json, ignoreDiscriminator) {
55
55
  'free_shipping': !(0, runtime_1.exists)(json, 'free_shipping') ? undefined : json['free_shipping'],
56
56
  'freight_class': !(0, runtime_1.exists)(json, 'freight_class') ? undefined : json['freight_class'],
57
57
  'hazmat': !(0, runtime_1.exists)(json, 'hazmat') ? undefined : json['hazmat'],
58
+ 'hold_for_transmission': !(0, runtime_1.exists)(json, 'hold_for_transmission') ? undefined : json['hold_for_transmission'],
58
59
  'made_to_order': !(0, runtime_1.exists)(json, 'made_to_order') ? undefined : json['made_to_order'],
59
60
  'made_to_order_lead_time': !(0, runtime_1.exists)(json, 'made_to_order_lead_time') ? undefined : json['made_to_order_lead_time'],
60
61
  'max_days_time_in_transit': !(0, runtime_1.exists)(json, 'max_days_time_in_transit') ? undefined : json['max_days_time_in_transit'],
@@ -114,6 +115,7 @@ function ItemShippingToJSON(value) {
114
115
  'free_shipping': value.free_shipping,
115
116
  'freight_class': value.freight_class,
116
117
  'hazmat': value.hazmat,
118
+ 'hold_for_transmission': value.hold_for_transmission,
117
119
  'made_to_order': value.made_to_order,
118
120
  'made_to_order_lead_time': value.made_to_order_lead_time,
119
121
  'max_days_time_in_transit': value.max_days_time_in_transit,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.231",
3
+ "version": "4.0.232",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -206,6 +206,12 @@ export interface ItemShipping {
206
206
  * @memberof ItemShipping
207
207
  */
208
208
  hazmat?: boolean;
209
+ /**
210
+ * Hold for transmission
211
+ * @type {boolean}
212
+ * @memberof ItemShipping
213
+ */
214
+ hold_for_transmission?: boolean;
209
215
  /**
210
216
  * True if this item is made to order
211
217
  * @type {boolean}
@@ -391,6 +397,7 @@ export function ItemShippingFromJSONTyped(json: any, ignoreDiscriminator: boolea
391
397
  'free_shipping': !exists(json, 'free_shipping') ? undefined : json['free_shipping'],
392
398
  'freight_class': !exists(json, 'freight_class') ? undefined : json['freight_class'],
393
399
  'hazmat': !exists(json, 'hazmat') ? undefined : json['hazmat'],
400
+ 'hold_for_transmission': !exists(json, 'hold_for_transmission') ? undefined : json['hold_for_transmission'],
394
401
  'made_to_order': !exists(json, 'made_to_order') ? undefined : json['made_to_order'],
395
402
  'made_to_order_lead_time': !exists(json, 'made_to_order_lead_time') ? undefined : json['made_to_order_lead_time'],
396
403
  'max_days_time_in_transit': !exists(json, 'max_days_time_in_transit') ? undefined : json['max_days_time_in_transit'],
@@ -451,6 +458,7 @@ export function ItemShippingToJSON(value?: ItemShipping | null): any {
451
458
  'free_shipping': value.free_shipping,
452
459
  'freight_class': value.freight_class,
453
460
  'hazmat': value.hazmat,
461
+ 'hold_for_transmission': value.hold_for_transmission,
454
462
  'made_to_order': value.made_to_order,
455
463
  'made_to_order_lead_time': value.made_to_order_lead_time,
456
464
  'max_days_time_in_transit': value.max_days_time_in_transit,