ultracart_rest_api_v2_typescript 3.10.189 → 3.10.191
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.191
|
|
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.191 --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.191 | 03/26/2024 | WorkflowTask - added assigned_to_user_or_group field |
|
|
58
|
+
| 3.10.190 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
|
|
57
59
|
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
58
60
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
|
59
61
|
| 3.10.187 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
package/api.ts
CHANGED
|
@@ -43299,6 +43299,12 @@ export interface WorkflowTask {
|
|
|
43299
43299
|
* @memberof WorkflowTask
|
|
43300
43300
|
*/
|
|
43301
43301
|
assigned_to_user_id?: number;
|
|
43302
|
+
/**
|
|
43303
|
+
* Assigned to user or group (used for sorting)
|
|
43304
|
+
* @type {string}
|
|
43305
|
+
* @memberof WorkflowTask
|
|
43306
|
+
*/
|
|
43307
|
+
assigned_to_user_or_group?: string;
|
|
43302
43308
|
/**
|
|
43303
43309
|
* Attachments to the Workflow Task
|
|
43304
43310
|
* @type {Array<WorkflowAttachment>}
|
|
@@ -43341,6 +43347,12 @@ export interface WorkflowTask {
|
|
|
43341
43347
|
* @memberof WorkflowTask
|
|
43342
43348
|
*/
|
|
43343
43349
|
expiration_dts?: string;
|
|
43350
|
+
/**
|
|
43351
|
+
* Global task numer
|
|
43352
|
+
* @type {number}
|
|
43353
|
+
* @memberof WorkflowTask
|
|
43354
|
+
*/
|
|
43355
|
+
global_task_number?: number;
|
|
43344
43356
|
/**
|
|
43345
43357
|
* Array of history records for the task
|
|
43346
43358
|
* @type {Array<WorkflowTaskHistory>}
|
|
@@ -43377,6 +43389,12 @@ export interface WorkflowTask {
|
|
|
43377
43389
|
* @memberof WorkflowTask
|
|
43378
43390
|
*/
|
|
43379
43391
|
object_id?: string;
|
|
43392
|
+
/**
|
|
43393
|
+
* Object specific task numer
|
|
43394
|
+
* @type {number}
|
|
43395
|
+
* @memberof WorkflowTask
|
|
43396
|
+
*/
|
|
43397
|
+
object_task_number?: number;
|
|
43380
43398
|
/**
|
|
43381
43399
|
* Object Type
|
|
43382
43400
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -42382,6 +42382,12 @@ export interface WorkflowTask {
|
|
|
42382
42382
|
* @memberof WorkflowTask
|
|
42383
42383
|
*/
|
|
42384
42384
|
assigned_to_user_id?: number;
|
|
42385
|
+
/**
|
|
42386
|
+
* Assigned to user or group (used for sorting)
|
|
42387
|
+
* @type {string}
|
|
42388
|
+
* @memberof WorkflowTask
|
|
42389
|
+
*/
|
|
42390
|
+
assigned_to_user_or_group?: string;
|
|
42385
42391
|
/**
|
|
42386
42392
|
* Attachments to the Workflow Task
|
|
42387
42393
|
* @type {Array<WorkflowAttachment>}
|
|
@@ -42424,6 +42430,12 @@ export interface WorkflowTask {
|
|
|
42424
42430
|
* @memberof WorkflowTask
|
|
42425
42431
|
*/
|
|
42426
42432
|
expiration_dts?: string;
|
|
42433
|
+
/**
|
|
42434
|
+
* Global task numer
|
|
42435
|
+
* @type {number}
|
|
42436
|
+
* @memberof WorkflowTask
|
|
42437
|
+
*/
|
|
42438
|
+
global_task_number?: number;
|
|
42427
42439
|
/**
|
|
42428
42440
|
* Array of history records for the task
|
|
42429
42441
|
* @type {Array<WorkflowTaskHistory>}
|
|
@@ -42460,6 +42472,12 @@ export interface WorkflowTask {
|
|
|
42460
42472
|
* @memberof WorkflowTask
|
|
42461
42473
|
*/
|
|
42462
42474
|
object_id?: string;
|
|
42475
|
+
/**
|
|
42476
|
+
* Object specific task numer
|
|
42477
|
+
* @type {number}
|
|
42478
|
+
* @memberof WorkflowTask
|
|
42479
|
+
*/
|
|
42480
|
+
object_task_number?: number;
|
|
42463
42481
|
/**
|
|
42464
42482
|
* Object Type
|
|
42465
42483
|
* @type {string}
|