ultracart_rest_api_v2_typescript 3.10.174 → 3.10.175
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.175
|
|
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.175 --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.175 | 11/21/2023 | coupons - addl support on tiered amount/percent off items |
|
|
57
58
|
| 3.10.174 | 11/20/2023 | coupon - add item tag support to percent off items and free shipping |
|
|
58
59
|
| 3.10.173 | 11/20/2023 | item.google_product_search.color bugfix for bad length validation: 20 to 100 |
|
|
59
60
|
| 3.10.172 | 11/13/2023 | coupon - editor values for item tags |
|
package/api.ts
CHANGED
|
@@ -11766,6 +11766,12 @@ export interface CouponTierQuantityPercent {
|
|
|
11766
11766
|
* @interface CouponTieredAmountOffItems
|
|
11767
11767
|
*/
|
|
11768
11768
|
export interface CouponTieredAmountOffItems {
|
|
11769
|
+
/**
|
|
11770
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11771
|
+
* @type {Array<string>}
|
|
11772
|
+
* @memberof CouponTieredAmountOffItems
|
|
11773
|
+
*/
|
|
11774
|
+
item_tags?: Array<string>;
|
|
11769
11775
|
/**
|
|
11770
11776
|
* The items being discounted by this coupon.
|
|
11771
11777
|
* @type {Array<string>}
|
|
@@ -11812,6 +11818,12 @@ export interface CouponTieredAmountOffSubtotal {
|
|
|
11812
11818
|
* @interface CouponTieredPercentOffItems
|
|
11813
11819
|
*/
|
|
11814
11820
|
export interface CouponTieredPercentOffItems {
|
|
11821
|
+
/**
|
|
11822
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11823
|
+
* @type {Array<string>}
|
|
11824
|
+
* @memberof CouponTieredPercentOffItems
|
|
11825
|
+
*/
|
|
11826
|
+
item_tags?: Array<string>;
|
|
11815
11827
|
/**
|
|
11816
11828
|
* A list of items of which at least one must be purchased for coupon to be valid.
|
|
11817
11829
|
* @type {Array<string>}
|
package/dist/api.d.ts
CHANGED
|
@@ -11474,6 +11474,12 @@ export interface CouponTierQuantityPercent {
|
|
|
11474
11474
|
* @interface CouponTieredAmountOffItems
|
|
11475
11475
|
*/
|
|
11476
11476
|
export interface CouponTieredAmountOffItems {
|
|
11477
|
+
/**
|
|
11478
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11479
|
+
* @type {Array<string>}
|
|
11480
|
+
* @memberof CouponTieredAmountOffItems
|
|
11481
|
+
*/
|
|
11482
|
+
item_tags?: Array<string>;
|
|
11477
11483
|
/**
|
|
11478
11484
|
* The items being discounted by this coupon.
|
|
11479
11485
|
* @type {Array<string>}
|
|
@@ -11518,6 +11524,12 @@ export interface CouponTieredAmountOffSubtotal {
|
|
|
11518
11524
|
* @interface CouponTieredPercentOffItems
|
|
11519
11525
|
*/
|
|
11520
11526
|
export interface CouponTieredPercentOffItems {
|
|
11527
|
+
/**
|
|
11528
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11529
|
+
* @type {Array<string>}
|
|
11530
|
+
* @memberof CouponTieredPercentOffItems
|
|
11531
|
+
*/
|
|
11532
|
+
item_tags?: Array<string>;
|
|
11521
11533
|
/**
|
|
11522
11534
|
* A list of items of which at least one must be purchased for coupon to be valid.
|
|
11523
11535
|
* @type {Array<string>}
|