ultracart_rest_api_v2_typescript 3.10.173 → 3.10.174
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.174
|
|
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.174 --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.174 | 11/20/2023 | coupon - add item tag support to percent off items and free shipping |
|
|
57
58
|
| 3.10.173 | 11/20/2023 | item.google_product_search.color bugfix for bad length validation: 20 to 100 |
|
|
58
59
|
| 3.10.172 | 11/13/2023 | coupon - editor values for item tags |
|
|
59
60
|
| 3.10.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
package/api.ts
CHANGED
|
@@ -11232,12 +11232,24 @@ export interface CouponPercentOffItemsAndFreeShipping {
|
|
|
11232
11232
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
11233
11233
|
*/
|
|
11234
11234
|
discount_percent?: number;
|
|
11235
|
+
/**
|
|
11236
|
+
* A list of item tags which cannot be discounted.
|
|
11237
|
+
* @type {Array<string>}
|
|
11238
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
11239
|
+
*/
|
|
11240
|
+
excluded_item_tags?: Array<string>;
|
|
11235
11241
|
/**
|
|
11236
11242
|
* A list of items which cannot be discounted.
|
|
11237
11243
|
* @type {Array<string>}
|
|
11238
11244
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
11239
11245
|
*/
|
|
11240
11246
|
excluded_items?: Array<string>;
|
|
11247
|
+
/**
|
|
11248
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11249
|
+
* @type {Array<string>}
|
|
11250
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
11251
|
+
*/
|
|
11252
|
+
item_tags?: Array<string>;
|
|
11241
11253
|
/**
|
|
11242
11254
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11243
11255
|
* @type {Array<string>}
|
package/dist/api.d.ts
CHANGED
|
@@ -10958,12 +10958,24 @@ export interface CouponPercentOffItemsAndFreeShipping {
|
|
|
10958
10958
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
10959
10959
|
*/
|
|
10960
10960
|
discount_percent?: number;
|
|
10961
|
+
/**
|
|
10962
|
+
* A list of item tags which cannot be discounted.
|
|
10963
|
+
* @type {Array<string>}
|
|
10964
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
10965
|
+
*/
|
|
10966
|
+
excluded_item_tags?: Array<string>;
|
|
10961
10967
|
/**
|
|
10962
10968
|
* A list of items which cannot be discounted.
|
|
10963
10969
|
* @type {Array<string>}
|
|
10964
10970
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
10965
10971
|
*/
|
|
10966
10972
|
excluded_items?: Array<string>;
|
|
10973
|
+
/**
|
|
10974
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10975
|
+
* @type {Array<string>}
|
|
10976
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
10977
|
+
*/
|
|
10978
|
+
item_tags?: Array<string>;
|
|
10967
10979
|
/**
|
|
10968
10980
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10969
10981
|
* @type {Array<string>}
|