ultracart_rest_api_v2_typescript 3.10.177 → 3.10.178
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 +14 -1
- package/dist/api.d.ts +14 -1
- package/dist/api.js +1 -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.178
|
|
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.178 --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.178 | 01/03/2024 | workflow - add task_context field to task obj |
|
|
57
58
|
| 3.10.177 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
|
|
58
59
|
| 3.10.176 | 12/12/2023 | webhook - added event ruler property |
|
|
59
60
|
| 3.10.175 | 11/21/2023 | coupons - addl support on tiered amount/percent off items |
|
package/api.ts
CHANGED
|
@@ -41477,6 +41477,12 @@ export interface WorkflowTask {
|
|
|
41477
41477
|
* @memberof WorkflowTask
|
|
41478
41478
|
*/
|
|
41479
41479
|
status?: WorkflowTask.StatusEnum;
|
|
41480
|
+
/**
|
|
41481
|
+
* User friendly string of the task context
|
|
41482
|
+
* @type {string}
|
|
41483
|
+
* @memberof WorkflowTask
|
|
41484
|
+
*/
|
|
41485
|
+
task_context?: string;
|
|
41480
41486
|
/**
|
|
41481
41487
|
* Task Details
|
|
41482
41488
|
* @type {string}
|
|
@@ -41510,7 +41516,8 @@ export namespace WorkflowTask {
|
|
|
41510
41516
|
Order = <any> 'order',
|
|
41511
41517
|
AutoOrder = <any> 'auto order',
|
|
41512
41518
|
Item = <any> 'item',
|
|
41513
|
-
CustomerProfile = <any> 'customer profile'
|
|
41519
|
+
CustomerProfile = <any> 'customer profile',
|
|
41520
|
+
Storefront = <any> 'storefront'
|
|
41514
41521
|
}
|
|
41515
41522
|
/**
|
|
41516
41523
|
* @export
|
|
@@ -41775,6 +41782,12 @@ export interface WorkflowTasksResponse {
|
|
|
41775
41782
|
* @memberof WorkflowTasksResponse
|
|
41776
41783
|
*/
|
|
41777
41784
|
success?: boolean;
|
|
41785
|
+
/**
|
|
41786
|
+
* User friendly string of the task context if querying for a specific object type/id
|
|
41787
|
+
* @type {string}
|
|
41788
|
+
* @memberof WorkflowTasksResponse
|
|
41789
|
+
*/
|
|
41790
|
+
task_context?: string;
|
|
41778
41791
|
/**
|
|
41779
41792
|
* tasks
|
|
41780
41793
|
* @type {Array<WorkflowTask>}
|
package/dist/api.d.ts
CHANGED
|
@@ -40598,6 +40598,12 @@ export interface WorkflowTask {
|
|
|
40598
40598
|
* @memberof WorkflowTask
|
|
40599
40599
|
*/
|
|
40600
40600
|
status?: WorkflowTask.StatusEnum;
|
|
40601
|
+
/**
|
|
40602
|
+
* User friendly string of the task context
|
|
40603
|
+
* @type {string}
|
|
40604
|
+
* @memberof WorkflowTask
|
|
40605
|
+
*/
|
|
40606
|
+
task_context?: string;
|
|
40601
40607
|
/**
|
|
40602
40608
|
* Task Details
|
|
40603
40609
|
* @type {string}
|
|
@@ -40630,7 +40636,8 @@ export declare namespace WorkflowTask {
|
|
|
40630
40636
|
Order,
|
|
40631
40637
|
AutoOrder,
|
|
40632
40638
|
Item,
|
|
40633
|
-
CustomerProfile
|
|
40639
|
+
CustomerProfile,
|
|
40640
|
+
Storefront
|
|
40634
40641
|
}
|
|
40635
40642
|
/**
|
|
40636
40643
|
* @export
|
|
@@ -40890,6 +40897,12 @@ export interface WorkflowTasksResponse {
|
|
|
40890
40897
|
* @memberof WorkflowTasksResponse
|
|
40891
40898
|
*/
|
|
40892
40899
|
success?: boolean;
|
|
40900
|
+
/**
|
|
40901
|
+
* User friendly string of the task context if querying for a specific object type/id
|
|
40902
|
+
* @type {string}
|
|
40903
|
+
* @memberof WorkflowTasksResponse
|
|
40904
|
+
*/
|
|
40905
|
+
task_context?: string;
|
|
40893
40906
|
/**
|
|
40894
40907
|
* tasks
|
|
40895
40908
|
* @type {Array<WorkflowTask>}
|
package/dist/api.js
CHANGED
|
@@ -1592,6 +1592,7 @@ var WorkflowTask;
|
|
|
1592
1592
|
ObjectTypeEnum[ObjectTypeEnum["AutoOrder"] = 'auto order'] = "AutoOrder";
|
|
1593
1593
|
ObjectTypeEnum[ObjectTypeEnum["Item"] = 'item'] = "Item";
|
|
1594
1594
|
ObjectTypeEnum[ObjectTypeEnum["CustomerProfile"] = 'customer profile'] = "CustomerProfile";
|
|
1595
|
+
ObjectTypeEnum[ObjectTypeEnum["Storefront"] = 'storefront'] = "Storefront";
|
|
1595
1596
|
})(ObjectTypeEnum = WorkflowTask.ObjectTypeEnum || (WorkflowTask.ObjectTypeEnum = {}));
|
|
1596
1597
|
/**
|
|
1597
1598
|
* @export
|