ultracart_rest_api_v2_typescript 3.10.69 → 3.10.70
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 +12 -0
- package/dist/api.d.ts +12 -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.70
|
|
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.70 --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.70 | 11/21/2022 | coupon - addl optional minimums for percent off msrp items coupon |
|
|
57
58
|
| 3.10.69 | 11/21/2022 | conversation context method |
|
|
58
59
|
| 3.10.68 | 11/21/2022 | adjusted conversation event model |
|
|
59
60
|
| 3.10.67 | 11/15/2022 | conversation methods bug fix |
|
package/api.ts
CHANGED
|
@@ -9342,6 +9342,18 @@ export interface CouponPercentOffMsrpItems {
|
|
|
9342
9342
|
* @memberof CouponPercentOffMsrpItems
|
|
9343
9343
|
*/
|
|
9344
9344
|
limit?: number;
|
|
9345
|
+
/**
|
|
9346
|
+
* The (optional) minimum cumulative msrp of qualifying items.
|
|
9347
|
+
* @type {number}
|
|
9348
|
+
* @memberof CouponPercentOffMsrpItems
|
|
9349
|
+
*/
|
|
9350
|
+
minimum_cumulative_msrp?: number;
|
|
9351
|
+
/**
|
|
9352
|
+
* The (optional) minimum subtotal of qualifying items.
|
|
9353
|
+
* @type {number}
|
|
9354
|
+
* @memberof CouponPercentOffMsrpItems
|
|
9355
|
+
*/
|
|
9356
|
+
minimum_subtotal?: number;
|
|
9345
9357
|
}
|
|
9346
9358
|
|
|
9347
9359
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -9117,6 +9117,18 @@ export interface CouponPercentOffMsrpItems {
|
|
|
9117
9117
|
* @memberof CouponPercentOffMsrpItems
|
|
9118
9118
|
*/
|
|
9119
9119
|
limit?: number;
|
|
9120
|
+
/**
|
|
9121
|
+
* The (optional) minimum cumulative msrp of qualifying items.
|
|
9122
|
+
* @type {number}
|
|
9123
|
+
* @memberof CouponPercentOffMsrpItems
|
|
9124
|
+
*/
|
|
9125
|
+
minimum_cumulative_msrp?: number;
|
|
9126
|
+
/**
|
|
9127
|
+
* The (optional) minimum subtotal of qualifying items.
|
|
9128
|
+
* @type {number}
|
|
9129
|
+
* @memberof CouponPercentOffMsrpItems
|
|
9130
|
+
*/
|
|
9131
|
+
minimum_subtotal?: number;
|
|
9120
9132
|
}
|
|
9121
9133
|
/**
|
|
9122
9134
|
*
|