ultracart_rest_api_v2_typescript 3.10.135 → 3.10.136
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.136
|
|
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.136 --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.136 | 04/28/2023 | item - pricing tier level flag for exempt from min item count |
|
|
57
58
|
| 3.10.135 | 04/27/2023 | order - expose dual vaulted identifiers |
|
|
58
59
|
| 3.10.134 | 04/24/2023 | internal development - data warehouse |
|
|
59
60
|
| 3.10.133 | 04/21/2023 | internal development - data warehouse |
|
package/api.ts
CHANGED
|
@@ -25491,6 +25491,12 @@ export interface ItemPricingTierLimit {
|
|
|
25491
25491
|
* @memberof ItemPricingTierLimit
|
|
25492
25492
|
*/
|
|
25493
25493
|
cumulative_order_limit?: number;
|
|
25494
|
+
/**
|
|
25495
|
+
* Exempt from Minimum Item Count
|
|
25496
|
+
* @type {boolean}
|
|
25497
|
+
* @memberof ItemPricingTierLimit
|
|
25498
|
+
*/
|
|
25499
|
+
exempt_from_minimum_item_count?: boolean;
|
|
25494
25500
|
/**
|
|
25495
25501
|
* Individual order limit
|
|
25496
25502
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -24947,6 +24947,12 @@ export interface ItemPricingTierLimit {
|
|
|
24947
24947
|
* @memberof ItemPricingTierLimit
|
|
24948
24948
|
*/
|
|
24949
24949
|
cumulative_order_limit?: number;
|
|
24950
|
+
/**
|
|
24951
|
+
* Exempt from Minimum Item Count
|
|
24952
|
+
* @type {boolean}
|
|
24953
|
+
* @memberof ItemPricingTierLimit
|
|
24954
|
+
*/
|
|
24955
|
+
exempt_from_minimum_item_count?: boolean;
|
|
24950
24956
|
/**
|
|
24951
24957
|
* Individual order limit
|
|
24952
24958
|
* @type {number}
|