ultracart_rest_api_v2_typescript 3.11.37 → 3.11.38
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.38
|
|
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.38 --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.38 | 12/29/2025 | conversations - AI agent level capabilities |
|
|
57
58
|
| 3.11.37 | 12/29/2025 | conversations - pbx agent AI flag |
|
|
58
59
|
| 3.11.36 | 12/22/2025 | conversation - agent auth worker token v2 |
|
|
59
60
|
| 3.11.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
|
package/api.ts
CHANGED
|
@@ -7117,6 +7117,12 @@ export interface ConversationAgentProfile {
|
|
|
7117
7117
|
* @memberof ConversationAgentProfile
|
|
7118
7118
|
*/
|
|
7119
7119
|
ai?: boolean;
|
|
7120
|
+
/**
|
|
7121
|
+
*
|
|
7122
|
+
* @type {ConversationVirtualAgentCapabilities}
|
|
7123
|
+
* @memberof ConversationAgentProfile
|
|
7124
|
+
*/
|
|
7125
|
+
ai_capabilities?: ConversationVirtualAgentCapabilities;
|
|
7120
7126
|
/**
|
|
7121
7127
|
* Additional instructions for this AI when handle web chats
|
|
7122
7128
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6956,6 +6956,12 @@ export interface ConversationAgentProfile {
|
|
|
6956
6956
|
* @memberof ConversationAgentProfile
|
|
6957
6957
|
*/
|
|
6958
6958
|
ai?: boolean;
|
|
6959
|
+
/**
|
|
6960
|
+
*
|
|
6961
|
+
* @type {ConversationVirtualAgentCapabilities}
|
|
6962
|
+
* @memberof ConversationAgentProfile
|
|
6963
|
+
*/
|
|
6964
|
+
ai_capabilities?: ConversationVirtualAgentCapabilities;
|
|
6959
6965
|
/**
|
|
6960
6966
|
* Additional instructions for this AI when handle web chats
|
|
6961
6967
|
* @type {string}
|