ultracart_rest_api_v2_typescript 3.10.179 → 3.10.180
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.180
|
|
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.180 --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.180 | 01/10/2024 | workflow tasks - support for searching by tags |
|
|
57
58
|
| 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
|
|
58
59
|
| 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
|
|
59
60
|
| 3.10.177 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
|
package/api.ts
CHANGED
|
@@ -41743,6 +41743,12 @@ export interface WorkflowTasksRequest {
|
|
|
41743
41743
|
* @memberof WorkflowTasksRequest
|
|
41744
41744
|
*/
|
|
41745
41745
|
status?: WorkflowTasksRequest.StatusEnum;
|
|
41746
|
+
/**
|
|
41747
|
+
* Tasks that are tagged with the specified tags
|
|
41748
|
+
* @type {Array<string>}
|
|
41749
|
+
* @memberof WorkflowTasksRequest
|
|
41750
|
+
*/
|
|
41751
|
+
tags?: Array<string>;
|
|
41746
41752
|
/**
|
|
41747
41753
|
* Tasks that are unassigned to a user or group
|
|
41748
41754
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -40860,6 +40860,12 @@ export interface WorkflowTasksRequest {
|
|
|
40860
40860
|
* @memberof WorkflowTasksRequest
|
|
40861
40861
|
*/
|
|
40862
40862
|
status?: WorkflowTasksRequest.StatusEnum;
|
|
40863
|
+
/**
|
|
40864
|
+
* Tasks that are tagged with the specified tags
|
|
40865
|
+
* @type {Array<string>}
|
|
40866
|
+
* @memberof WorkflowTasksRequest
|
|
40867
|
+
*/
|
|
40868
|
+
tags?: Array<string>;
|
|
40863
40869
|
/**
|
|
40864
40870
|
* Tasks that are unassigned to a user or group
|
|
40865
40871
|
* @type {boolean}
|