ultracart_rest_api_v2_typescript 3.11.43 → 3.11.45
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 +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.45
|
|
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.45 --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.11.45 | 01/26/2026 | added multimedia file size to ItemContentMultimedia object |
|
|
58
|
+
| 3.11.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
|
|
57
59
|
| 3.11.43 | 01/14/2026 | coupons - generate one time coupons prefix support (optional) |
|
|
58
60
|
| 3.11.42 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
59
61
|
| 3.11.41 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
package/api.ts
CHANGED
|
@@ -7624,6 +7624,12 @@ export interface ConversationDepartment {
|
|
|
7624
7624
|
* @interface ConversationDepartmentMember
|
|
7625
7625
|
*/
|
|
7626
7626
|
export interface ConversationDepartmentMember {
|
|
7627
|
+
/**
|
|
7628
|
+
*
|
|
7629
|
+
* @type {boolean}
|
|
7630
|
+
* @memberof ConversationDepartmentMember
|
|
7631
|
+
*/
|
|
7632
|
+
ai?: boolean;
|
|
7627
7633
|
/**
|
|
7628
7634
|
*
|
|
7629
7635
|
* @type {boolean}
|
|
@@ -29005,6 +29011,12 @@ export interface ItemContentMultimedia {
|
|
|
29005
29011
|
* @memberof ItemContentMultimedia
|
|
29006
29012
|
*/
|
|
29007
29013
|
placeholder?: boolean;
|
|
29014
|
+
/**
|
|
29015
|
+
* Size of the file in bytes if known
|
|
29016
|
+
* @type {number}
|
|
29017
|
+
* @memberof ItemContentMultimedia
|
|
29018
|
+
*/
|
|
29019
|
+
size?: number;
|
|
29008
29020
|
/**
|
|
29009
29021
|
* Temporary multimedia object identifier assigned if uploading new multimedia
|
|
29010
29022
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -7450,6 +7450,12 @@ export interface ConversationDepartment {
|
|
|
7450
7450
|
* @interface ConversationDepartmentMember
|
|
7451
7451
|
*/
|
|
7452
7452
|
export interface ConversationDepartmentMember {
|
|
7453
|
+
/**
|
|
7454
|
+
*
|
|
7455
|
+
* @type {boolean}
|
|
7456
|
+
* @memberof ConversationDepartmentMember
|
|
7457
|
+
*/
|
|
7458
|
+
ai?: boolean;
|
|
7453
7459
|
/**
|
|
7454
7460
|
*
|
|
7455
7461
|
* @type {boolean}
|
|
@@ -28376,6 +28382,12 @@ export interface ItemContentMultimedia {
|
|
|
28376
28382
|
* @memberof ItemContentMultimedia
|
|
28377
28383
|
*/
|
|
28378
28384
|
placeholder?: boolean;
|
|
28385
|
+
/**
|
|
28386
|
+
* Size of the file in bytes if known
|
|
28387
|
+
* @type {number}
|
|
28388
|
+
* @memberof ItemContentMultimedia
|
|
28389
|
+
*/
|
|
28390
|
+
size?: number;
|
|
28379
28391
|
/**
|
|
28380
28392
|
* Temporary multimedia object identifier assigned if uploading new multimedia
|
|
28381
28393
|
* @type {number}
|