ultracart_rest_api_v2_typescript 4.0.205 → 4.0.206
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.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.206
|
|
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.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@4.0.206 --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.206 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
57
58
|
| 4.0.205 | 03/19/2024 | workflow task - method to obtain open task count |
|
|
58
59
|
| 4.0.204 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
|
59
60
|
| 4.0.203 | 03/15/2024 | workflow - getWorkflowAgentWebsocketAuthorization method added |
|
|
@@ -353,6 +353,12 @@ export interface ChannelPartnerOrder {
|
|
|
353
353
|
* @memberof ChannelPartnerOrder
|
|
354
354
|
*/
|
|
355
355
|
rotating_transaction_gateway_code?: string;
|
|
356
|
+
/**
|
|
357
|
+
* Sales rep code
|
|
358
|
+
* @type {string}
|
|
359
|
+
* @memberof ChannelPartnerOrder
|
|
360
|
+
*/
|
|
361
|
+
sales_rep_code?: string;
|
|
356
362
|
/**
|
|
357
363
|
* Screen branding theme code
|
|
358
364
|
* @type {string}
|
|
@@ -98,6 +98,7 @@ function ChannelPartnerOrderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
98
98
|
'payment_method': !(0, runtime_1.exists)(json, 'payment_method') ? undefined : json['payment_method'],
|
|
99
99
|
'purchase_order_number': !(0, runtime_1.exists)(json, 'purchase_order_number') ? undefined : json['purchase_order_number'],
|
|
100
100
|
'rotating_transaction_gateway_code': !(0, runtime_1.exists)(json, 'rotating_transaction_gateway_code') ? undefined : json['rotating_transaction_gateway_code'],
|
|
101
|
+
'sales_rep_code': !(0, runtime_1.exists)(json, 'sales_rep_code') ? undefined : json['sales_rep_code'],
|
|
101
102
|
'screen_branding_theme_code': !(0, runtime_1.exists)(json, 'screen_branding_theme_code') ? undefined : json['screen_branding_theme_code'],
|
|
102
103
|
'ship_on_date': !(0, runtime_1.exists)(json, 'ship_on_date') ? undefined : json['ship_on_date'],
|
|
103
104
|
'ship_to_residential': !(0, runtime_1.exists)(json, 'ship_to_residential') ? undefined : json['ship_to_residential'],
|
|
@@ -189,6 +190,7 @@ function ChannelPartnerOrderToJSON(value) {
|
|
|
189
190
|
'payment_method': value.payment_method,
|
|
190
191
|
'purchase_order_number': value.purchase_order_number,
|
|
191
192
|
'rotating_transaction_gateway_code': value.rotating_transaction_gateway_code,
|
|
193
|
+
'sales_rep_code': value.sales_rep_code,
|
|
192
194
|
'screen_branding_theme_code': value.screen_branding_theme_code,
|
|
193
195
|
'ship_on_date': value.ship_on_date,
|
|
194
196
|
'ship_to_residential': value.ship_to_residential,
|
package/package.json
CHANGED
|
@@ -368,6 +368,12 @@ export interface ChannelPartnerOrder {
|
|
|
368
368
|
* @memberof ChannelPartnerOrder
|
|
369
369
|
*/
|
|
370
370
|
rotating_transaction_gateway_code?: string;
|
|
371
|
+
/**
|
|
372
|
+
* Sales rep code
|
|
373
|
+
* @type {string}
|
|
374
|
+
* @memberof ChannelPartnerOrder
|
|
375
|
+
*/
|
|
376
|
+
sales_rep_code?: string;
|
|
371
377
|
/**
|
|
372
378
|
* Screen branding theme code
|
|
373
379
|
* @type {string}
|
|
@@ -600,6 +606,7 @@ export function ChannelPartnerOrderFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
600
606
|
'payment_method': !exists(json, 'payment_method') ? undefined : json['payment_method'],
|
|
601
607
|
'purchase_order_number': !exists(json, 'purchase_order_number') ? undefined : json['purchase_order_number'],
|
|
602
608
|
'rotating_transaction_gateway_code': !exists(json, 'rotating_transaction_gateway_code') ? undefined : json['rotating_transaction_gateway_code'],
|
|
609
|
+
'sales_rep_code': !exists(json, 'sales_rep_code') ? undefined : json['sales_rep_code'],
|
|
603
610
|
'screen_branding_theme_code': !exists(json, 'screen_branding_theme_code') ? undefined : json['screen_branding_theme_code'],
|
|
604
611
|
'ship_on_date': !exists(json, 'ship_on_date') ? undefined : json['ship_on_date'],
|
|
605
612
|
'ship_to_residential': !exists(json, 'ship_to_residential') ? undefined : json['ship_to_residential'],
|
|
@@ -692,6 +699,7 @@ export function ChannelPartnerOrderToJSON(value?: ChannelPartnerOrder | null): a
|
|
|
692
699
|
'payment_method': value.payment_method,
|
|
693
700
|
'purchase_order_number': value.purchase_order_number,
|
|
694
701
|
'rotating_transaction_gateway_code': value.rotating_transaction_gateway_code,
|
|
702
|
+
'sales_rep_code': value.sales_rep_code,
|
|
695
703
|
'screen_branding_theme_code': value.screen_branding_theme_code,
|
|
696
704
|
'ship_on_date': value.ship_on_date,
|
|
697
705
|
'ship_to_residential': value.ship_to_residential,
|