ultracart_rest_api_v2_typescript 3.10.170 → 3.10.171
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.171
|
|
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.171 --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.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
|
57
58
|
| 3.10.170 | 11/09/2023 | item - new auto order step type: pause until |
|
|
58
59
|
| 3.10.169 | 11/06/2023 | customer api - added wishlist methods |
|
|
59
60
|
| 3.10.168 | 11/01/2023 | customer - do_no_send_mail flag added |
|
package/api.ts
CHANGED
|
@@ -11182,12 +11182,24 @@ export interface CouponPercentOffItems {
|
|
|
11182
11182
|
* @memberof CouponPercentOffItems
|
|
11183
11183
|
*/
|
|
11184
11184
|
discount_percent?: number;
|
|
11185
|
+
/**
|
|
11186
|
+
* A list of item tags which cannot be discounted.
|
|
11187
|
+
* @type {Array<string>}
|
|
11188
|
+
* @memberof CouponPercentOffItems
|
|
11189
|
+
*/
|
|
11190
|
+
excluded_item_tags?: Array<string>;
|
|
11185
11191
|
/**
|
|
11186
11192
|
* A list of items which cannot be discounted.
|
|
11187
11193
|
* @type {Array<string>}
|
|
11188
11194
|
* @memberof CouponPercentOffItems
|
|
11189
11195
|
*/
|
|
11190
11196
|
excluded_items?: Array<string>;
|
|
11197
|
+
/**
|
|
11198
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11199
|
+
* @type {Array<string>}
|
|
11200
|
+
* @memberof CouponPercentOffItems
|
|
11201
|
+
*/
|
|
11202
|
+
item_tags?: Array<string>;
|
|
11191
11203
|
/**
|
|
11192
11204
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11193
11205
|
* @type {Array<string>}
|
package/dist/api.d.ts
CHANGED
|
@@ -10909,12 +10909,24 @@ export interface CouponPercentOffItems {
|
|
|
10909
10909
|
* @memberof CouponPercentOffItems
|
|
10910
10910
|
*/
|
|
10911
10911
|
discount_percent?: number;
|
|
10912
|
+
/**
|
|
10913
|
+
* A list of item tags which cannot be discounted.
|
|
10914
|
+
* @type {Array<string>}
|
|
10915
|
+
* @memberof CouponPercentOffItems
|
|
10916
|
+
*/
|
|
10917
|
+
excluded_item_tags?: Array<string>;
|
|
10912
10918
|
/**
|
|
10913
10919
|
* A list of items which cannot be discounted.
|
|
10914
10920
|
* @type {Array<string>}
|
|
10915
10921
|
* @memberof CouponPercentOffItems
|
|
10916
10922
|
*/
|
|
10917
10923
|
excluded_items?: Array<string>;
|
|
10924
|
+
/**
|
|
10925
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10926
|
+
* @type {Array<string>}
|
|
10927
|
+
* @memberof CouponPercentOffItems
|
|
10928
|
+
*/
|
|
10929
|
+
item_tags?: Array<string>;
|
|
10918
10930
|
/**
|
|
10919
10931
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10920
10932
|
* @type {Array<string>}
|