ultracart_rest_api_v2_typescript 3.11.43 → 3.11.44
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.44
|
|
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.44 --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.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
|
|
57
58
|
| 3.11.43 | 01/14/2026 | coupons - generate one time coupons prefix support (optional) |
|
|
58
59
|
| 3.11.42 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
59
60
|
| 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}
|
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}
|