ultracart_rest_api_v2_typescript 3.10.188 → 3.10.190
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 +4 -2
- package/api.ts +18 -0
- package/dist/api.d.ts +18 -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.190
|
|
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.190 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.190 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
|
|
58
|
+
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
57
59
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
|
58
60
|
| 3.10.187 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
|
59
61
|
| 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}
|
|
@@ -43335,6 +43341,12 @@ export interface WorkflowTask {
|
|
|
43335
43341
|
* @memberof WorkflowTask
|
|
43336
43342
|
*/
|
|
43337
43343
|
expiration_dts?: string;
|
|
43344
|
+
/**
|
|
43345
|
+
* Global task numer
|
|
43346
|
+
* @type {number}
|
|
43347
|
+
* @memberof WorkflowTask
|
|
43348
|
+
*/
|
|
43349
|
+
global_task_number?: number;
|
|
43338
43350
|
/**
|
|
43339
43351
|
* Array of history records for the task
|
|
43340
43352
|
* @type {Array<WorkflowTaskHistory>}
|
|
@@ -43371,6 +43383,12 @@ export interface WorkflowTask {
|
|
|
43371
43383
|
* @memberof WorkflowTask
|
|
43372
43384
|
*/
|
|
43373
43385
|
object_id?: string;
|
|
43386
|
+
/**
|
|
43387
|
+
* Object specific task numer
|
|
43388
|
+
* @type {number}
|
|
43389
|
+
* @memberof WorkflowTask
|
|
43390
|
+
*/
|
|
43391
|
+
object_task_number?: number;
|
|
43374
43392
|
/**
|
|
43375
43393
|
* Object Type
|
|
43376
43394
|
* @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}
|
|
@@ -42418,6 +42424,12 @@ export interface WorkflowTask {
|
|
|
42418
42424
|
* @memberof WorkflowTask
|
|
42419
42425
|
*/
|
|
42420
42426
|
expiration_dts?: string;
|
|
42427
|
+
/**
|
|
42428
|
+
* Global task numer
|
|
42429
|
+
* @type {number}
|
|
42430
|
+
* @memberof WorkflowTask
|
|
42431
|
+
*/
|
|
42432
|
+
global_task_number?: number;
|
|
42421
42433
|
/**
|
|
42422
42434
|
* Array of history records for the task
|
|
42423
42435
|
* @type {Array<WorkflowTaskHistory>}
|
|
@@ -42454,6 +42466,12 @@ export interface WorkflowTask {
|
|
|
42454
42466
|
* @memberof WorkflowTask
|
|
42455
42467
|
*/
|
|
42456
42468
|
object_id?: string;
|
|
42469
|
+
/**
|
|
42470
|
+
* Object specific task numer
|
|
42471
|
+
* @type {number}
|
|
42472
|
+
* @memberof WorkflowTask
|
|
42473
|
+
*/
|
|
42474
|
+
object_task_number?: number;
|
|
42457
42475
|
/**
|
|
42458
42476
|
* Object Type
|
|
42459
42477
|
* @type {string}
|