ultracart_rest_api_v2_typescript 3.10.171 → 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 +3 -2
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -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,7 @@ 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 |
|
|
57
58
|
| 3.10.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
|
58
59
|
| 3.10.170 | 11/09/2023 | item - new auto order step type: pause until |
|
|
59
60
|
| 3.10.169 | 11/06/2023 | customer api - added wishlist methods |
|
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>}
|
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>}
|