ultracart_rest_api_v2_typescript 4.1.50 → 4.1.51
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
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# UltraCart Typescript SDK
|
|
2
|
-
## ultracart_rest_api_v2_typescript@4.1.
|
|
2
|
+
## ultracart_rest_api_v2_typescript@4.1.51
|
|
3
3
|
|
|
4
4
|
Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
|
|
5
5
|
|
|
6
6
|
Installation
|
|
7
7
|
|
|
8
8
|
```
|
|
9
|
-
npm install ultracart_rest_api_v2_typescript@4.1.
|
|
9
|
+
npm install ultracart_rest_api_v2_typescript@4.1.51 --save
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
```typescript
|
|
@@ -85,6 +85,7 @@ Not every change is committed to every SDK.
|
|
|
85
85
|
|
|
86
86
|
| Version | Date | Comments |
|
|
87
87
|
| --: | :-: | --- |
|
|
88
|
+
| 4.1.51 | 01/30/2026 | conversations queue setting for automatic AI coaching |
|
|
88
89
|
| 4.1.50 | 01/27/2026 | conversations - refinements to support hardware phones |
|
|
89
90
|
| 4.1.49 | 01/26/2026 | no changes - testing changes to build automation |
|
|
90
91
|
| 4.1.48 | 01/26/2026 | conversation - hardware phone methods and objects |
|
|
@@ -34,6 +34,12 @@ export interface ConversationPbxQueue {
|
|
|
34
34
|
* @memberof ConversationPbxQueue
|
|
35
35
|
*/
|
|
36
36
|
announce_queue_position?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* AI Agent UUID to automatically engage to provide coaching
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ConversationPbxQueue
|
|
41
|
+
*/
|
|
42
|
+
automatic_coach_agent_uuid?: string;
|
|
37
43
|
/**
|
|
38
44
|
* Conversation Pbx Queue unique identifier
|
|
39
45
|
* @type {string}
|
|
@@ -44,6 +44,7 @@ function ConversationPbxQueueFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
'ai_priority': !(0, runtime_1.exists)(json, 'ai_priority') ? undefined : json['ai_priority'],
|
|
45
45
|
'ai_timeout_seconds': !(0, runtime_1.exists)(json, 'ai_timeout_seconds') ? undefined : json['ai_timeout_seconds'],
|
|
46
46
|
'announce_queue_position': !(0, runtime_1.exists)(json, 'announce_queue_position') ? undefined : json['announce_queue_position'],
|
|
47
|
+
'automatic_coach_agent_uuid': !(0, runtime_1.exists)(json, 'automatic_coach_agent_uuid') ? undefined : json['automatic_coach_agent_uuid'],
|
|
47
48
|
'conversation_pbx_queue_uuid': !(0, runtime_1.exists)(json, 'conversation_pbx_queue_uuid') ? undefined : json['conversation_pbx_queue_uuid'],
|
|
48
49
|
'conversation_voicemail_mailbox_uuid': !(0, runtime_1.exists)(json, 'conversation_voicemail_mailbox_uuid') ? undefined : json['conversation_voicemail_mailbox_uuid'],
|
|
49
50
|
'hold_conversation_pbx_audio_uuid': !(0, runtime_1.exists)(json, 'hold_conversation_pbx_audio_uuid') ? undefined : json['hold_conversation_pbx_audio_uuid'],
|
|
@@ -78,6 +79,7 @@ function ConversationPbxQueueToJSON(value) {
|
|
|
78
79
|
'ai_priority': value.ai_priority,
|
|
79
80
|
'ai_timeout_seconds': value.ai_timeout_seconds,
|
|
80
81
|
'announce_queue_position': value.announce_queue_position,
|
|
82
|
+
'automatic_coach_agent_uuid': value.automatic_coach_agent_uuid,
|
|
81
83
|
'conversation_pbx_queue_uuid': value.conversation_pbx_queue_uuid,
|
|
82
84
|
'conversation_voicemail_mailbox_uuid': value.conversation_voicemail_mailbox_uuid,
|
|
83
85
|
'hold_conversation_pbx_audio_uuid': value.hold_conversation_pbx_audio_uuid,
|
package/package.json
CHANGED
|
@@ -44,6 +44,12 @@ export interface ConversationPbxQueue {
|
|
|
44
44
|
* @memberof ConversationPbxQueue
|
|
45
45
|
*/
|
|
46
46
|
announce_queue_position?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* AI Agent UUID to automatically engage to provide coaching
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ConversationPbxQueue
|
|
51
|
+
*/
|
|
52
|
+
automatic_coach_agent_uuid?: string;
|
|
47
53
|
/**
|
|
48
54
|
* Conversation Pbx Queue unique identifier
|
|
49
55
|
* @type {string}
|
|
@@ -201,6 +207,7 @@ export function ConversationPbxQueueFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
201
207
|
'ai_priority': !exists(json, 'ai_priority') ? undefined : json['ai_priority'],
|
|
202
208
|
'ai_timeout_seconds': !exists(json, 'ai_timeout_seconds') ? undefined : json['ai_timeout_seconds'],
|
|
203
209
|
'announce_queue_position': !exists(json, 'announce_queue_position') ? undefined : json['announce_queue_position'],
|
|
210
|
+
'automatic_coach_agent_uuid': !exists(json, 'automatic_coach_agent_uuid') ? undefined : json['automatic_coach_agent_uuid'],
|
|
204
211
|
'conversation_pbx_queue_uuid': !exists(json, 'conversation_pbx_queue_uuid') ? undefined : json['conversation_pbx_queue_uuid'],
|
|
205
212
|
'conversation_voicemail_mailbox_uuid': !exists(json, 'conversation_voicemail_mailbox_uuid') ? undefined : json['conversation_voicemail_mailbox_uuid'],
|
|
206
213
|
'hold_conversation_pbx_audio_uuid': !exists(json, 'hold_conversation_pbx_audio_uuid') ? undefined : json['hold_conversation_pbx_audio_uuid'],
|
|
@@ -236,6 +243,7 @@ export function ConversationPbxQueueToJSON(value?: ConversationPbxQueue | null):
|
|
|
236
243
|
'ai_priority': value.ai_priority,
|
|
237
244
|
'ai_timeout_seconds': value.ai_timeout_seconds,
|
|
238
245
|
'announce_queue_position': value.announce_queue_position,
|
|
246
|
+
'automatic_coach_agent_uuid': value.automatic_coach_agent_uuid,
|
|
239
247
|
'conversation_pbx_queue_uuid': value.conversation_pbx_queue_uuid,
|
|
240
248
|
'conversation_voicemail_mailbox_uuid': value.conversation_voicemail_mailbox_uuid,
|
|
241
249
|
'hold_conversation_pbx_audio_uuid': value.hold_conversation_pbx_audio_uuid,
|