ultracart_rest_api_v2_typescript 3.11.39 → 3.11.40
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 +23 -0
- package/dist/api.d.ts +23 -0
- package/dist/api.js +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.40
|
|
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.40 --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.40 | 01/07/2026 | convseration - AI agent profile voice settings |
|
|
57
58
|
| 3.11.39 | 12/31/2025 | conversations AI - queue AI settings |
|
|
58
59
|
| 3.11.38 | 12/29/2025 | conversations - AI agent level capabilities |
|
|
59
60
|
| 3.11.37 | 12/29/2025 | conversations - pbx agent AI flag |
|
package/api.ts
CHANGED
|
@@ -7147,6 +7147,18 @@ export interface ConversationAgentProfile {
|
|
|
7147
7147
|
* @memberof ConversationAgentProfile
|
|
7148
7148
|
*/
|
|
7149
7149
|
ai_ticket_instructions?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
* Additional voice instructions for this AI when handling voice calls
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof ConversationAgentProfile
|
|
7154
|
+
*/
|
|
7155
|
+
ai_voice_instructions?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
* Which AI voice personality to use when handling the call.
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof ConversationAgentProfile
|
|
7160
|
+
*/
|
|
7161
|
+
ai_voice_personality?: ConversationAgentProfile.AiVoicePersonalityEnum;
|
|
7150
7162
|
/**
|
|
7151
7163
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
7152
7164
|
* @type {number}
|
|
@@ -7214,6 +7226,17 @@ export interface ConversationAgentProfile {
|
|
|
7214
7226
|
* @namespace ConversationAgentProfile
|
|
7215
7227
|
*/
|
|
7216
7228
|
export namespace ConversationAgentProfile {
|
|
7229
|
+
/**
|
|
7230
|
+
* @export
|
|
7231
|
+
* @enum {string}
|
|
7232
|
+
*/
|
|
7233
|
+
export enum AiVoicePersonalityEnum {
|
|
7234
|
+
Ara = <any> 'Ara',
|
|
7235
|
+
Rex = <any> 'Rex',
|
|
7236
|
+
Sal = <any> 'Sal',
|
|
7237
|
+
Eve = <any> 'Eve',
|
|
7238
|
+
Leo = <any> 'Leo'
|
|
7239
|
+
}
|
|
7217
7240
|
/**
|
|
7218
7241
|
* @export
|
|
7219
7242
|
* @enum {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6986,6 +6986,18 @@ export interface ConversationAgentProfile {
|
|
|
6986
6986
|
* @memberof ConversationAgentProfile
|
|
6987
6987
|
*/
|
|
6988
6988
|
ai_ticket_instructions?: string;
|
|
6989
|
+
/**
|
|
6990
|
+
* Additional voice instructions for this AI when handling voice calls
|
|
6991
|
+
* @type {string}
|
|
6992
|
+
* @memberof ConversationAgentProfile
|
|
6993
|
+
*/
|
|
6994
|
+
ai_voice_instructions?: string;
|
|
6995
|
+
/**
|
|
6996
|
+
* Which AI voice personality to use when handling the call.
|
|
6997
|
+
* @type {string}
|
|
6998
|
+
* @memberof ConversationAgentProfile
|
|
6999
|
+
*/
|
|
7000
|
+
ai_voice_personality?: ConversationAgentProfile.AiVoicePersonalityEnum;
|
|
6989
7001
|
/**
|
|
6990
7002
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
6991
7003
|
* @type {number}
|
|
@@ -7052,6 +7064,17 @@ export interface ConversationAgentProfile {
|
|
|
7052
7064
|
* @namespace ConversationAgentProfile
|
|
7053
7065
|
*/
|
|
7054
7066
|
export declare namespace ConversationAgentProfile {
|
|
7067
|
+
/**
|
|
7068
|
+
* @export
|
|
7069
|
+
* @enum {string}
|
|
7070
|
+
*/
|
|
7071
|
+
enum AiVoicePersonalityEnum {
|
|
7072
|
+
Ara,
|
|
7073
|
+
Rex,
|
|
7074
|
+
Sal,
|
|
7075
|
+
Eve,
|
|
7076
|
+
Leo
|
|
7077
|
+
}
|
|
7055
7078
|
/**
|
|
7056
7079
|
* @export
|
|
7057
7080
|
* @enum {string}
|
package/dist/api.js
CHANGED
|
@@ -415,6 +415,18 @@ var Conversation;
|
|
|
415
415
|
*/
|
|
416
416
|
var ConversationAgentProfile;
|
|
417
417
|
(function (ConversationAgentProfile) {
|
|
418
|
+
/**
|
|
419
|
+
* @export
|
|
420
|
+
* @enum {string}
|
|
421
|
+
*/
|
|
422
|
+
var AiVoicePersonalityEnum;
|
|
423
|
+
(function (AiVoicePersonalityEnum) {
|
|
424
|
+
AiVoicePersonalityEnum[AiVoicePersonalityEnum["Ara"] = 'Ara'] = "Ara";
|
|
425
|
+
AiVoicePersonalityEnum[AiVoicePersonalityEnum["Rex"] = 'Rex'] = "Rex";
|
|
426
|
+
AiVoicePersonalityEnum[AiVoicePersonalityEnum["Sal"] = 'Sal'] = "Sal";
|
|
427
|
+
AiVoicePersonalityEnum[AiVoicePersonalityEnum["Eve"] = 'Eve'] = "Eve";
|
|
428
|
+
AiVoicePersonalityEnum[AiVoicePersonalityEnum["Leo"] = 'Leo'] = "Leo";
|
|
429
|
+
})(AiVoicePersonalityEnum = ConversationAgentProfile.AiVoicePersonalityEnum || (ConversationAgentProfile.AiVoicePersonalityEnum = {}));
|
|
418
430
|
/**
|
|
419
431
|
* @export
|
|
420
432
|
* @enum {string}
|