ultracart_rest_api_v2_typescript 4.0.139 → 4.0.140

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@4.0.139
1
+ ## ultracart_rest_api_v2_typescript@4.0.140
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@4.0.139 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.140 --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
+ | 4.0.140 | 03/21/2023 | order api - new stage named Hold |
57
58
  | 4.0.139 | 03/14/2023 | order.getOrderEdiDocuments |
58
59
  | 4.0.138 | 03/01/2023 | convo - add sentiment record to conversation obj |
59
60
  | 4.0.137 | 02/22/2023 | convo - customer initiated flag on engagement |
@@ -287,6 +287,7 @@ export declare const OrderCurrentStageEnum: {
287
287
  readonly Unknown: "Unknown";
288
288
  readonly PreOrdered: "Pre-ordered";
289
289
  readonly AdvancedOrderRouting: "Advanced Order Routing";
290
+ readonly Hold: "Hold";
290
291
  };
291
292
  export type OrderCurrentStageEnum = typeof OrderCurrentStageEnum[keyof typeof OrderCurrentStageEnum];
292
293
  export declare function OrderFromJSON(json: any): Order;
@@ -57,7 +57,8 @@ exports.OrderCurrentStageEnum = {
57
57
  LeastCostRouting: 'Least Cost Routing',
58
58
  Unknown: 'Unknown',
59
59
  PreOrdered: 'Pre-ordered',
60
- AdvancedOrderRouting: 'Advanced Order Routing'
60
+ AdvancedOrderRouting: 'Advanced Order Routing',
61
+ Hold: 'Hold'
61
62
  };
62
63
  function OrderFromJSON(json) {
63
64
  return OrderFromJSONTyped(json, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.139",
3
+ "version": "4.0.140",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -428,7 +428,8 @@ export const OrderCurrentStageEnum = {
428
428
  LeastCostRouting: 'Least Cost Routing',
429
429
  Unknown: 'Unknown',
430
430
  PreOrdered: 'Pre-ordered',
431
- AdvancedOrderRouting: 'Advanced Order Routing'
431
+ AdvancedOrderRouting: 'Advanced Order Routing',
432
+ Hold: 'Hold'
432
433
  } as const;
433
434
  export type OrderCurrentStageEnum = typeof OrderCurrentStageEnum[keyof typeof OrderCurrentStageEnum];
434
435