ultracart_rest_api_v2_typescript 3.10.102 → 3.10.103
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.103
|
|
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.103 --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.103 | 01/19/2023 | added skip_on_rebill field to coupon object |
|
|
57
58
|
| 3.10.102 | 01/19/2023 | convo - getConversationPermissions added |
|
|
58
59
|
| 3.10.101 | 01/18/2023 | conversation get dept member list method added |
|
|
59
60
|
| 3.10.100 | 01/18/2023 | conversation dept members |
|
package/api.ts
CHANGED
|
@@ -9391,6 +9391,12 @@ export interface Coupon {
|
|
|
9391
9391
|
* @memberof Coupon
|
|
9392
9392
|
*/
|
|
9393
9393
|
restrict_by_storefronts?: Array<CouponRestriction>;
|
|
9394
|
+
/**
|
|
9395
|
+
* Skip this coupon when it is on a rebill of an auto order.
|
|
9396
|
+
* @type {boolean}
|
|
9397
|
+
* @memberof Coupon
|
|
9398
|
+
*/
|
|
9399
|
+
skip_on_rebill?: boolean;
|
|
9394
9400
|
/**
|
|
9395
9401
|
* Date/time when coupon is valid
|
|
9396
9402
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -9172,6 +9172,12 @@ export interface Coupon {
|
|
|
9172
9172
|
* @memberof Coupon
|
|
9173
9173
|
*/
|
|
9174
9174
|
restrict_by_storefronts?: Array<CouponRestriction>;
|
|
9175
|
+
/**
|
|
9176
|
+
* Skip this coupon when it is on a rebill of an auto order.
|
|
9177
|
+
* @type {boolean}
|
|
9178
|
+
* @memberof Coupon
|
|
9179
|
+
*/
|
|
9180
|
+
skip_on_rebill?: boolean;
|
|
9175
9181
|
/**
|
|
9176
9182
|
* Date/time when coupon is valid
|
|
9177
9183
|
* @type {string}
|