ultracart_rest_api_v2_typescript 3.11.42 → 3.11.43
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.11.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.11.43
|
|
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.43 --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.43 | 01/14/2026 | coupons - generate one time coupons prefix support (optional) |
|
|
57
58
|
| 3.11.42 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
58
59
|
| 3.11.41 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
59
60
|
| 3.11.40 | 01/07/2026 | convseration - AI agent profile voice settings |
|
package/api.ts
CHANGED
|
@@ -13621,6 +13621,12 @@ export interface CouponCodesRequest {
|
|
|
13621
13621
|
* @memberof CouponCodesRequest
|
|
13622
13622
|
*/
|
|
13623
13623
|
metadata?: ResponseMetadata;
|
|
13624
|
+
/**
|
|
13625
|
+
* Optional prefix for generated codes
|
|
13626
|
+
* @type {string}
|
|
13627
|
+
* @memberof CouponCodesRequest
|
|
13628
|
+
*/
|
|
13629
|
+
prefix?: string;
|
|
13624
13630
|
/**
|
|
13625
13631
|
* Quantity
|
|
13626
13632
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -13301,6 +13301,12 @@ export interface CouponCodesRequest {
|
|
|
13301
13301
|
* @memberof CouponCodesRequest
|
|
13302
13302
|
*/
|
|
13303
13303
|
metadata?: ResponseMetadata;
|
|
13304
|
+
/**
|
|
13305
|
+
* Optional prefix for generated codes
|
|
13306
|
+
* @type {string}
|
|
13307
|
+
* @memberof CouponCodesRequest
|
|
13308
|
+
*/
|
|
13309
|
+
prefix?: string;
|
|
13304
13310
|
/**
|
|
13305
13311
|
* Quantity
|
|
13306
13312
|
* @type {number}
|