ultracart_rest_api_v2_typescript 3.11.32 → 3.11.33
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 +18 -0
- package/dist/api.d.ts +18 -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.33
|
|
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.33 --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.33 | 11/26/2025 | conversation - AI agent profile fields |
|
|
57
58
|
| 3.11.32 | 11/20/2025 | conversion api bug fix on incorrect signature |
|
|
58
59
|
| 3.11.31 | 11/20/2025 | conversation - AI agent mcp server tools function |
|
|
59
60
|
| 3.11.30 | 11/19/2025 | conversation - AI agent MCP server configuration methods |
|
package/api.ts
CHANGED
|
@@ -7129,6 +7129,12 @@ export interface ConversationAgentProfile {
|
|
|
7129
7129
|
* @memberof ConversationAgentProfile
|
|
7130
7130
|
*/
|
|
7131
7131
|
ai_sms_instructions?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
* Additional instructions for this AI when handling ticket draft replies
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ConversationAgentProfile
|
|
7136
|
+
*/
|
|
7137
|
+
ai_ticket_instructions?: string;
|
|
7132
7138
|
/**
|
|
7133
7139
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
7134
7140
|
* @type {number}
|
|
@@ -7177,6 +7183,18 @@ export interface ConversationAgentProfile {
|
|
|
7177
7183
|
* @memberof ConversationAgentProfile
|
|
7178
7184
|
*/
|
|
7179
7185
|
user_id?: number;
|
|
7186
|
+
/**
|
|
7187
|
+
* Restrict this agent to drafting replies only to tickets with these classifications
|
|
7188
|
+
* @type {Array<string>}
|
|
7189
|
+
* @memberof ConversationAgentProfile
|
|
7190
|
+
*/
|
|
7191
|
+
zohodesk_classifications?: Array<string>;
|
|
7192
|
+
/**
|
|
7193
|
+
* Restrict this agent to drafting replies only to these department ids
|
|
7194
|
+
* @type {Array<string>}
|
|
7195
|
+
* @memberof ConversationAgentProfile
|
|
7196
|
+
*/
|
|
7197
|
+
zohodesk_departments?: Array<string>;
|
|
7180
7198
|
}
|
|
7181
7199
|
|
|
7182
7200
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -6968,6 +6968,12 @@ export interface ConversationAgentProfile {
|
|
|
6968
6968
|
* @memberof ConversationAgentProfile
|
|
6969
6969
|
*/
|
|
6970
6970
|
ai_sms_instructions?: string;
|
|
6971
|
+
/**
|
|
6972
|
+
* Additional instructions for this AI when handling ticket draft replies
|
|
6973
|
+
* @type {string}
|
|
6974
|
+
* @memberof ConversationAgentProfile
|
|
6975
|
+
*/
|
|
6976
|
+
ai_ticket_instructions?: string;
|
|
6971
6977
|
/**
|
|
6972
6978
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
6973
6979
|
* @type {number}
|
|
@@ -7016,6 +7022,18 @@ export interface ConversationAgentProfile {
|
|
|
7016
7022
|
* @memberof ConversationAgentProfile
|
|
7017
7023
|
*/
|
|
7018
7024
|
user_id?: number;
|
|
7025
|
+
/**
|
|
7026
|
+
* Restrict this agent to drafting replies only to tickets with these classifications
|
|
7027
|
+
* @type {Array<string>}
|
|
7028
|
+
* @memberof ConversationAgentProfile
|
|
7029
|
+
*/
|
|
7030
|
+
zohodesk_classifications?: Array<string>;
|
|
7031
|
+
/**
|
|
7032
|
+
* Restrict this agent to drafting replies only to these department ids
|
|
7033
|
+
* @type {Array<string>}
|
|
7034
|
+
* @memberof ConversationAgentProfile
|
|
7035
|
+
*/
|
|
7036
|
+
zohodesk_departments?: Array<string>;
|
|
7019
7037
|
}
|
|
7020
7038
|
/**
|
|
7021
7039
|
* @export
|