ultracart_rest_api_v2_typescript 3.10.195 → 3.10.196
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.196
|
|
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.196 --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.196 | 05/02/2024 | autoorder - fields to record merge association and tstamp |
|
|
57
58
|
| 3.10.195 | 05/01/2024 | getConversationPbxAudioUploadUrl - fix the response obj def |
|
|
58
59
|
| 3.10.194 | 04/24/2024 | esp - add fields for external generation on email |
|
|
59
60
|
| 3.10.193 | 04/04/2024 | AutoOrder.calculated_next_shipment_dts |
|
package/api.ts
CHANGED
|
@@ -1448,6 +1448,18 @@ export interface AutoOrder {
|
|
|
1448
1448
|
* @memberof AutoOrder
|
|
1449
1449
|
*/
|
|
1450
1450
|
merchant_id?: string;
|
|
1451
|
+
/**
|
|
1452
|
+
* The date/time the auto order was merged into another auto order
|
|
1453
|
+
* @type {string}
|
|
1454
|
+
* @memberof AutoOrder
|
|
1455
|
+
*/
|
|
1456
|
+
merged_dts?: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* The auto order that this auto order was merged into
|
|
1459
|
+
* @type {number}
|
|
1460
|
+
* @memberof AutoOrder
|
|
1461
|
+
*/
|
|
1462
|
+
merged_into_auto_order_oid?: number;
|
|
1451
1463
|
/**
|
|
1452
1464
|
* The next time that the auto order will be attempted for processing
|
|
1453
1465
|
* @type {string}
|
|
@@ -1504,7 +1516,8 @@ export namespace AutoOrder {
|
|
|
1504
1516
|
export enum StatusEnum {
|
|
1505
1517
|
Active = <any> 'active',
|
|
1506
1518
|
Canceled = <any> 'canceled',
|
|
1507
|
-
Disabled = <any> 'disabled'
|
|
1519
|
+
Disabled = <any> 'disabled',
|
|
1520
|
+
Merged = <any> 'merged'
|
|
1508
1521
|
}
|
|
1509
1522
|
}
|
|
1510
1523
|
|
package/dist/api.d.ts
CHANGED
|
@@ -1406,6 +1406,18 @@ export interface AutoOrder {
|
|
|
1406
1406
|
* @memberof AutoOrder
|
|
1407
1407
|
*/
|
|
1408
1408
|
merchant_id?: string;
|
|
1409
|
+
/**
|
|
1410
|
+
* The date/time the auto order was merged into another auto order
|
|
1411
|
+
* @type {string}
|
|
1412
|
+
* @memberof AutoOrder
|
|
1413
|
+
*/
|
|
1414
|
+
merged_dts?: string;
|
|
1415
|
+
/**
|
|
1416
|
+
* The auto order that this auto order was merged into
|
|
1417
|
+
* @type {number}
|
|
1418
|
+
* @memberof AutoOrder
|
|
1419
|
+
*/
|
|
1420
|
+
merged_into_auto_order_oid?: number;
|
|
1409
1421
|
/**
|
|
1410
1422
|
* The next time that the auto order will be attempted for processing
|
|
1411
1423
|
* @type {string}
|
|
@@ -1461,7 +1473,8 @@ export declare namespace AutoOrder {
|
|
|
1461
1473
|
enum StatusEnum {
|
|
1462
1474
|
Active,
|
|
1463
1475
|
Canceled,
|
|
1464
|
-
Disabled
|
|
1476
|
+
Disabled,
|
|
1477
|
+
Merged
|
|
1465
1478
|
}
|
|
1466
1479
|
}
|
|
1467
1480
|
/**
|
package/dist/api.js
CHANGED
|
@@ -154,6 +154,7 @@ var AutoOrder;
|
|
|
154
154
|
StatusEnum[StatusEnum["Active"] = 'active'] = "Active";
|
|
155
155
|
StatusEnum[StatusEnum["Canceled"] = 'canceled'] = "Canceled";
|
|
156
156
|
StatusEnum[StatusEnum["Disabled"] = 'disabled'] = "Disabled";
|
|
157
|
+
StatusEnum[StatusEnum["Merged"] = 'merged'] = "Merged";
|
|
157
158
|
})(StatusEnum = AutoOrder.StatusEnum || (AutoOrder.StatusEnum = {}));
|
|
158
159
|
})(AutoOrder = exports.AutoOrder || (exports.AutoOrder = {}));
|
|
159
160
|
/**
|