ultracart_rest_api_v2_typescript 3.11.33 → 3.11.34
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.11.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.11.34
|
|
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.11.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.11.34 --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.11.34 | 12/02/2025 | coupons - added optional free specific shipping method to two coupons |
|
|
57
58
|
| 3.11.33 | 11/26/2025 | conversation - AI agent profile fields |
|
|
58
59
|
| 3.11.32 | 11/20/2025 | conversion api bug fix on incorrect signature |
|
|
59
60
|
| 3.11.31 | 11/20/2025 | conversation - AI agent mcp server tools function |
|
package/api.ts
CHANGED
|
@@ -13619,6 +13619,12 @@ export interface CouponFreeItemWithItemPurchaseAndFreeShipping {
|
|
|
13619
13619
|
* @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
|
|
13620
13620
|
*/
|
|
13621
13621
|
required_purchase_items?: Array<string>;
|
|
13622
|
+
/**
|
|
13623
|
+
* One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
|
|
13624
|
+
* @type {Array<string>}
|
|
13625
|
+
* @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
|
|
13626
|
+
*/
|
|
13627
|
+
shipping_methods?: Array<string>;
|
|
13622
13628
|
}
|
|
13623
13629
|
|
|
13624
13630
|
/**
|
|
@@ -14117,6 +14123,12 @@ export interface CouponPercentOffItemsAndFreeShipping {
|
|
|
14117
14123
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
14118
14124
|
*/
|
|
14119
14125
|
items?: Array<string>;
|
|
14126
|
+
/**
|
|
14127
|
+
* One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
|
|
14128
|
+
* @type {Array<string>}
|
|
14129
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
14130
|
+
*/
|
|
14131
|
+
shipping_methods?: Array<string>;
|
|
14120
14132
|
}
|
|
14121
14133
|
|
|
14122
14134
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -13299,6 +13299,12 @@ export interface CouponFreeItemWithItemPurchaseAndFreeShipping {
|
|
|
13299
13299
|
* @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
|
|
13300
13300
|
*/
|
|
13301
13301
|
required_purchase_items?: Array<string>;
|
|
13302
|
+
/**
|
|
13303
|
+
* One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
|
|
13304
|
+
* @type {Array<string>}
|
|
13305
|
+
* @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
|
|
13306
|
+
*/
|
|
13307
|
+
shipping_methods?: Array<string>;
|
|
13302
13308
|
}
|
|
13303
13309
|
/**
|
|
13304
13310
|
*
|
|
@@ -13779,6 +13785,12 @@ export interface CouponPercentOffItemsAndFreeShipping {
|
|
|
13779
13785
|
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
13780
13786
|
*/
|
|
13781
13787
|
items?: Array<string>;
|
|
13788
|
+
/**
|
|
13789
|
+
* One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
|
|
13790
|
+
* @type {Array<string>}
|
|
13791
|
+
* @memberof CouponPercentOffItemsAndFreeShipping
|
|
13792
|
+
*/
|
|
13793
|
+
shipping_methods?: Array<string>;
|
|
13782
13794
|
}
|
|
13783
13795
|
/**
|
|
13784
13796
|
*
|