ultracart_rest_api_v2_typescript 3.10.190 → 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 +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.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,7 @@ 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 |
|
|
57
58
|
| 3.10.190 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
|
|
58
59
|
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
59
60
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
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>}
|
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>}
|