ultracart_rest_api_v2_typescript 3.10.180 → 3.10.182
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 +24 -0
- package/dist/api.d.ts +24 -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.182
|
|
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.182 --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.182 | 01/16/2024 | order query - support searching by custom fields 8 through 10 |
|
|
58
|
+
| 3.10.181 | 01/12/2024 | workflow task - add properties array |
|
|
57
59
|
| 3.10.180 | 01/10/2024 | workflow tasks - support for searching by tags |
|
|
58
60
|
| 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
|
|
59
61
|
| 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
|
package/api.ts
CHANGED
|
@@ -32163,6 +32163,12 @@ export interface OrderQuery {
|
|
|
32163
32163
|
* @memberof OrderQuery
|
|
32164
32164
|
*/
|
|
32165
32165
|
custom_field_1?: string;
|
|
32166
|
+
/**
|
|
32167
|
+
* Custom field 10
|
|
32168
|
+
* @type {string}
|
|
32169
|
+
* @memberof OrderQuery
|
|
32170
|
+
*/
|
|
32171
|
+
custom_field_10?: string;
|
|
32166
32172
|
/**
|
|
32167
32173
|
* Custom field 2
|
|
32168
32174
|
* @type {string}
|
|
@@ -32199,6 +32205,18 @@ export interface OrderQuery {
|
|
|
32199
32205
|
* @memberof OrderQuery
|
|
32200
32206
|
*/
|
|
32201
32207
|
custom_field_7?: string;
|
|
32208
|
+
/**
|
|
32209
|
+
* Custom field 8
|
|
32210
|
+
* @type {string}
|
|
32211
|
+
* @memberof OrderQuery
|
|
32212
|
+
*/
|
|
32213
|
+
custom_field_8?: string;
|
|
32214
|
+
/**
|
|
32215
|
+
* Custom field 9
|
|
32216
|
+
* @type {string}
|
|
32217
|
+
* @memberof OrderQuery
|
|
32218
|
+
*/
|
|
32219
|
+
custom_field_9?: string;
|
|
32202
32220
|
/**
|
|
32203
32221
|
* The customer profile to find associated orders for
|
|
32204
32222
|
* @type {number}
|
|
@@ -41489,6 +41507,12 @@ export interface WorkflowTask {
|
|
|
41489
41507
|
* @memberof WorkflowTask
|
|
41490
41508
|
*/
|
|
41491
41509
|
priority?: WorkflowTask.PriorityEnum;
|
|
41510
|
+
/**
|
|
41511
|
+
* Properties
|
|
41512
|
+
* @type {Array<Property>}
|
|
41513
|
+
* @memberof WorkflowTask
|
|
41514
|
+
*/
|
|
41515
|
+
properties?: Array<Property>;
|
|
41492
41516
|
/**
|
|
41493
41517
|
* Related Workflow Task UUID
|
|
41494
41518
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -31485,6 +31485,12 @@ export interface OrderQuery {
|
|
|
31485
31485
|
* @memberof OrderQuery
|
|
31486
31486
|
*/
|
|
31487
31487
|
custom_field_1?: string;
|
|
31488
|
+
/**
|
|
31489
|
+
* Custom field 10
|
|
31490
|
+
* @type {string}
|
|
31491
|
+
* @memberof OrderQuery
|
|
31492
|
+
*/
|
|
31493
|
+
custom_field_10?: string;
|
|
31488
31494
|
/**
|
|
31489
31495
|
* Custom field 2
|
|
31490
31496
|
* @type {string}
|
|
@@ -31521,6 +31527,18 @@ export interface OrderQuery {
|
|
|
31521
31527
|
* @memberof OrderQuery
|
|
31522
31528
|
*/
|
|
31523
31529
|
custom_field_7?: string;
|
|
31530
|
+
/**
|
|
31531
|
+
* Custom field 8
|
|
31532
|
+
* @type {string}
|
|
31533
|
+
* @memberof OrderQuery
|
|
31534
|
+
*/
|
|
31535
|
+
custom_field_8?: string;
|
|
31536
|
+
/**
|
|
31537
|
+
* Custom field 9
|
|
31538
|
+
* @type {string}
|
|
31539
|
+
* @memberof OrderQuery
|
|
31540
|
+
*/
|
|
31541
|
+
custom_field_9?: string;
|
|
31524
31542
|
/**
|
|
31525
31543
|
* The customer profile to find associated orders for
|
|
31526
31544
|
* @type {number}
|
|
@@ -40610,6 +40628,12 @@ export interface WorkflowTask {
|
|
|
40610
40628
|
* @memberof WorkflowTask
|
|
40611
40629
|
*/
|
|
40612
40630
|
priority?: WorkflowTask.PriorityEnum;
|
|
40631
|
+
/**
|
|
40632
|
+
* Properties
|
|
40633
|
+
* @type {Array<Property>}
|
|
40634
|
+
* @memberof WorkflowTask
|
|
40635
|
+
*/
|
|
40636
|
+
properties?: Array<Property>;
|
|
40613
40637
|
/**
|
|
40614
40638
|
* Related Workflow Task UUID
|
|
40615
40639
|
* @type {string}
|