ultracart_rest_api_v2_typescript 3.10.170 → 3.10.172
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 +4 -2
- package/api.ts +18 -0
- package/dist/api.d.ts +18 -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.172
|
|
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.172 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.172 | 11/13/2023 | coupon - editor values for item tags |
|
|
58
|
+
| 3.10.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
|
57
59
|
| 3.10.170 | 11/09/2023 | item - new auto order step type: pause until |
|
|
58
60
|
| 3.10.169 | 11/06/2023 | customer api - added wishlist methods |
|
|
59
61
|
| 3.10.168 | 11/01/2023 | customer - do_no_send_mail flag added |
|
package/api.ts
CHANGED
|
@@ -10588,6 +10588,12 @@ export interface CouponEditorValues {
|
|
|
10588
10588
|
* @memberof CouponEditorValues
|
|
10589
10589
|
*/
|
|
10590
10590
|
deprecated_themes?: Array<SimpleValue>;
|
|
10591
|
+
/**
|
|
10592
|
+
* Item tags
|
|
10593
|
+
* @type {Array<string>}
|
|
10594
|
+
* @memberof CouponEditorValues
|
|
10595
|
+
*/
|
|
10596
|
+
item_tags?: Array<string>;
|
|
10591
10597
|
/**
|
|
10592
10598
|
* mix_and_match_names
|
|
10593
10599
|
* @type {Array<string>}
|
|
@@ -11182,12 +11188,24 @@ export interface CouponPercentOffItems {
|
|
|
11182
11188
|
* @memberof CouponPercentOffItems
|
|
11183
11189
|
*/
|
|
11184
11190
|
discount_percent?: number;
|
|
11191
|
+
/**
|
|
11192
|
+
* A list of item tags which cannot be discounted.
|
|
11193
|
+
* @type {Array<string>}
|
|
11194
|
+
* @memberof CouponPercentOffItems
|
|
11195
|
+
*/
|
|
11196
|
+
excluded_item_tags?: Array<string>;
|
|
11185
11197
|
/**
|
|
11186
11198
|
* A list of items which cannot be discounted.
|
|
11187
11199
|
* @type {Array<string>}
|
|
11188
11200
|
* @memberof CouponPercentOffItems
|
|
11189
11201
|
*/
|
|
11190
11202
|
excluded_items?: Array<string>;
|
|
11203
|
+
/**
|
|
11204
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11205
|
+
* @type {Array<string>}
|
|
11206
|
+
* @memberof CouponPercentOffItems
|
|
11207
|
+
*/
|
|
11208
|
+
item_tags?: Array<string>;
|
|
11191
11209
|
/**
|
|
11192
11210
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
11193
11211
|
* @type {Array<string>}
|
package/dist/api.d.ts
CHANGED
|
@@ -10336,6 +10336,12 @@ export interface CouponEditorValues {
|
|
|
10336
10336
|
* @memberof CouponEditorValues
|
|
10337
10337
|
*/
|
|
10338
10338
|
deprecated_themes?: Array<SimpleValue>;
|
|
10339
|
+
/**
|
|
10340
|
+
* Item tags
|
|
10341
|
+
* @type {Array<string>}
|
|
10342
|
+
* @memberof CouponEditorValues
|
|
10343
|
+
*/
|
|
10344
|
+
item_tags?: Array<string>;
|
|
10339
10345
|
/**
|
|
10340
10346
|
* mix_and_match_names
|
|
10341
10347
|
* @type {Array<string>}
|
|
@@ -10909,12 +10915,24 @@ export interface CouponPercentOffItems {
|
|
|
10909
10915
|
* @memberof CouponPercentOffItems
|
|
10910
10916
|
*/
|
|
10911
10917
|
discount_percent?: number;
|
|
10918
|
+
/**
|
|
10919
|
+
* A list of item tags which cannot be discounted.
|
|
10920
|
+
* @type {Array<string>}
|
|
10921
|
+
* @memberof CouponPercentOffItems
|
|
10922
|
+
*/
|
|
10923
|
+
excluded_item_tags?: Array<string>;
|
|
10912
10924
|
/**
|
|
10913
10925
|
* A list of items which cannot be discounted.
|
|
10914
10926
|
* @type {Array<string>}
|
|
10915
10927
|
* @memberof CouponPercentOffItems
|
|
10916
10928
|
*/
|
|
10917
10929
|
excluded_items?: Array<string>;
|
|
10930
|
+
/**
|
|
10931
|
+
* An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10932
|
+
* @type {Array<string>}
|
|
10933
|
+
* @memberof CouponPercentOffItems
|
|
10934
|
+
*/
|
|
10935
|
+
item_tags?: Array<string>;
|
|
10918
10936
|
/**
|
|
10919
10937
|
* An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
|
10920
10938
|
* @type {Array<string>}
|