ultracart_rest_api_v2_typescript 3.10.179 → 3.10.181
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 +12 -0
- package/dist/api.d.ts +12 -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.181
|
|
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.181 --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.181 | 01/12/2024 | workflow task - add properties array |
|
|
58
|
+
| 3.10.180 | 01/10/2024 | workflow tasks - support for searching by tags |
|
|
57
59
|
| 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
|
|
58
60
|
| 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
|
|
59
61
|
| 3.10.177 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
|
package/api.ts
CHANGED
|
@@ -41489,6 +41489,12 @@ export interface WorkflowTask {
|
|
|
41489
41489
|
* @memberof WorkflowTask
|
|
41490
41490
|
*/
|
|
41491
41491
|
priority?: WorkflowTask.PriorityEnum;
|
|
41492
|
+
/**
|
|
41493
|
+
* Properties
|
|
41494
|
+
* @type {Array<Property>}
|
|
41495
|
+
* @memberof WorkflowTask
|
|
41496
|
+
*/
|
|
41497
|
+
properties?: Array<Property>;
|
|
41492
41498
|
/**
|
|
41493
41499
|
* Related Workflow Task UUID
|
|
41494
41500
|
* @type {string}
|
|
@@ -41743,6 +41749,12 @@ export interface WorkflowTasksRequest {
|
|
|
41743
41749
|
* @memberof WorkflowTasksRequest
|
|
41744
41750
|
*/
|
|
41745
41751
|
status?: WorkflowTasksRequest.StatusEnum;
|
|
41752
|
+
/**
|
|
41753
|
+
* Tasks that are tagged with the specified tags
|
|
41754
|
+
* @type {Array<string>}
|
|
41755
|
+
* @memberof WorkflowTasksRequest
|
|
41756
|
+
*/
|
|
41757
|
+
tags?: Array<string>;
|
|
41746
41758
|
/**
|
|
41747
41759
|
* Tasks that are unassigned to a user or group
|
|
41748
41760
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -40610,6 +40610,12 @@ export interface WorkflowTask {
|
|
|
40610
40610
|
* @memberof WorkflowTask
|
|
40611
40611
|
*/
|
|
40612
40612
|
priority?: WorkflowTask.PriorityEnum;
|
|
40613
|
+
/**
|
|
40614
|
+
* Properties
|
|
40615
|
+
* @type {Array<Property>}
|
|
40616
|
+
* @memberof WorkflowTask
|
|
40617
|
+
*/
|
|
40618
|
+
properties?: Array<Property>;
|
|
40613
40619
|
/**
|
|
40614
40620
|
* Related Workflow Task UUID
|
|
40615
40621
|
* @type {string}
|
|
@@ -40860,6 +40866,12 @@ export interface WorkflowTasksRequest {
|
|
|
40860
40866
|
* @memberof WorkflowTasksRequest
|
|
40861
40867
|
*/
|
|
40862
40868
|
status?: WorkflowTasksRequest.StatusEnum;
|
|
40869
|
+
/**
|
|
40870
|
+
* Tasks that are tagged with the specified tags
|
|
40871
|
+
* @type {Array<string>}
|
|
40872
|
+
* @memberof WorkflowTasksRequest
|
|
40873
|
+
*/
|
|
40874
|
+
tags?: Array<string>;
|
|
40863
40875
|
/**
|
|
40864
40876
|
* Tasks that are unassigned to a user or group
|
|
40865
40877
|
* @type {boolean}
|