ultracart_rest_api_v2_typescript 3.10.188 → 3.10.189
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 +3 -2
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.189
|
|
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@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.189 --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
|
+
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
57
58
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
|
58
59
|
| 3.10.187 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
|
59
60
|
| 3.10.186 | 03/15/2024 | workflow - getWorkflowAgentWebsocketAuthorization method added |
|
package/api.ts
CHANGED
|
@@ -5853,6 +5853,12 @@ export interface ChannelPartnerOrder {
|
|
|
5853
5853
|
* @memberof ChannelPartnerOrder
|
|
5854
5854
|
*/
|
|
5855
5855
|
rotating_transaction_gateway_code?: string;
|
|
5856
|
+
/**
|
|
5857
|
+
* Sales rep code
|
|
5858
|
+
* @type {string}
|
|
5859
|
+
* @memberof ChannelPartnerOrder
|
|
5860
|
+
*/
|
|
5861
|
+
sales_rep_code?: string;
|
|
5856
5862
|
/**
|
|
5857
5863
|
* Screen branding theme code
|
|
5858
5864
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -5719,6 +5719,12 @@ export interface ChannelPartnerOrder {
|
|
|
5719
5719
|
* @memberof ChannelPartnerOrder
|
|
5720
5720
|
*/
|
|
5721
5721
|
rotating_transaction_gateway_code?: string;
|
|
5722
|
+
/**
|
|
5723
|
+
* Sales rep code
|
|
5724
|
+
* @type {string}
|
|
5725
|
+
* @memberof ChannelPartnerOrder
|
|
5726
|
+
*/
|
|
5727
|
+
sales_rep_code?: string;
|
|
5722
5728
|
/**
|
|
5723
5729
|
* Screen branding theme code
|
|
5724
5730
|
* @type {string}
|