ultracart_rest_api_v2_typescript 3.10.214 → 3.10.215
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.215
|
|
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.215 --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.215 | 08/29/2024 | add hold_for_transmission to item shipping object |
|
|
57
58
|
| 3.10.214 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
|
|
58
59
|
| 3.10.213 | 06/24/2024 | conversation object cleanup |
|
|
59
60
|
| 3.10.212 | 06/14/2024 | pbx menu - add say voice property |
|
package/api.ts
CHANGED
|
@@ -29685,6 +29685,12 @@ export interface ItemShipping {
|
|
|
29685
29685
|
* @memberof ItemShipping
|
|
29686
29686
|
*/
|
|
29687
29687
|
hazmat?: boolean;
|
|
29688
|
+
/**
|
|
29689
|
+
* Hold for transmission
|
|
29690
|
+
* @type {boolean}
|
|
29691
|
+
* @memberof ItemShipping
|
|
29692
|
+
*/
|
|
29693
|
+
hold_for_transmission?: boolean;
|
|
29688
29694
|
/**
|
|
29689
29695
|
* True if this item is made to order
|
|
29690
29696
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -29058,6 +29058,12 @@ export interface ItemShipping {
|
|
|
29058
29058
|
* @memberof ItemShipping
|
|
29059
29059
|
*/
|
|
29060
29060
|
hazmat?: boolean;
|
|
29061
|
+
/**
|
|
29062
|
+
* Hold for transmission
|
|
29063
|
+
* @type {boolean}
|
|
29064
|
+
* @memberof ItemShipping
|
|
29065
|
+
*/
|
|
29066
|
+
hold_for_transmission?: boolean;
|
|
29061
29067
|
/**
|
|
29062
29068
|
* True if this item is made to order
|
|
29063
29069
|
* @type {boolean}
|