@getsupervisor/agents-studio-sdk 1.37.0 → 1.38.0
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/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -142,6 +142,7 @@ type components = {
|
|
|
142
142
|
slot?: components['schemas']['AgentScheduleSlot'] | null;
|
|
143
143
|
};
|
|
144
144
|
AgentSchedule: {
|
|
145
|
+
id: string;
|
|
145
146
|
agentId: string;
|
|
146
147
|
isEnabled: boolean;
|
|
147
148
|
timezone: string;
|
|
@@ -238,6 +239,7 @@ type components = {
|
|
|
238
239
|
personalityInitialGreeting: string;
|
|
239
240
|
personalityMessageStyleId: string;
|
|
240
241
|
personalityToneStyleId: string;
|
|
242
|
+
voiceId?: string | null;
|
|
241
243
|
startSpeaker: 'user' | 'agent';
|
|
242
244
|
requiredData: string[];
|
|
243
245
|
criticalRules?: string[];
|
|
@@ -265,6 +267,7 @@ type components = {
|
|
|
265
267
|
personalityInitialGreeting: string;
|
|
266
268
|
personalityMessageStyleId: string;
|
|
267
269
|
personalityToneStyleId: string;
|
|
270
|
+
voiceId?: string | null;
|
|
268
271
|
startSpeaker: 'user' | 'agent';
|
|
269
272
|
requiredData?: string[];
|
|
270
273
|
criticalRules?: string[];
|
|
@@ -280,6 +283,7 @@ type components = {
|
|
|
280
283
|
personalityInitialGreeting?: string;
|
|
281
284
|
personalityMessageStyleId?: string;
|
|
282
285
|
personalityToneStyleId?: string;
|
|
286
|
+
voiceId?: string | null;
|
|
283
287
|
startSpeaker?: 'user' | 'agent';
|
|
284
288
|
requiredData?: string[];
|
|
285
289
|
criticalRules?: string[];
|
|
@@ -608,6 +612,10 @@ type components = {
|
|
|
608
612
|
status?: 'inactive' | 'training' | 'active';
|
|
609
613
|
debounceDelayMs?: number | null;
|
|
610
614
|
};
|
|
615
|
+
AgentScheduleListResponse: {
|
|
616
|
+
data: components['schemas']['AgentSchedule'][];
|
|
617
|
+
meta: components['schemas']['PaginationMeta'];
|
|
618
|
+
};
|
|
611
619
|
BlueprintStageTriggerCondition: {
|
|
612
620
|
type: 'intent' | 'rule' | 'expression';
|
|
613
621
|
value: string;
|
|
@@ -714,6 +722,8 @@ type components = {
|
|
|
714
722
|
FilterParam?: components['schemas']['QueryFilters'];
|
|
715
723
|
WebhookId: string;
|
|
716
724
|
SubscriptionId: string;
|
|
725
|
+
OrParam?: components['schemas']['QueryOrGroups'];
|
|
726
|
+
ScheduleId: string;
|
|
717
727
|
ApiKeyId: string;
|
|
718
728
|
IdempotencyKey: string;
|
|
719
729
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ type components = {
|
|
|
142
142
|
slot?: components['schemas']['AgentScheduleSlot'] | null;
|
|
143
143
|
};
|
|
144
144
|
AgentSchedule: {
|
|
145
|
+
id: string;
|
|
145
146
|
agentId: string;
|
|
146
147
|
isEnabled: boolean;
|
|
147
148
|
timezone: string;
|
|
@@ -238,6 +239,7 @@ type components = {
|
|
|
238
239
|
personalityInitialGreeting: string;
|
|
239
240
|
personalityMessageStyleId: string;
|
|
240
241
|
personalityToneStyleId: string;
|
|
242
|
+
voiceId?: string | null;
|
|
241
243
|
startSpeaker: 'user' | 'agent';
|
|
242
244
|
requiredData: string[];
|
|
243
245
|
criticalRules?: string[];
|
|
@@ -265,6 +267,7 @@ type components = {
|
|
|
265
267
|
personalityInitialGreeting: string;
|
|
266
268
|
personalityMessageStyleId: string;
|
|
267
269
|
personalityToneStyleId: string;
|
|
270
|
+
voiceId?: string | null;
|
|
268
271
|
startSpeaker: 'user' | 'agent';
|
|
269
272
|
requiredData?: string[];
|
|
270
273
|
criticalRules?: string[];
|
|
@@ -280,6 +283,7 @@ type components = {
|
|
|
280
283
|
personalityInitialGreeting?: string;
|
|
281
284
|
personalityMessageStyleId?: string;
|
|
282
285
|
personalityToneStyleId?: string;
|
|
286
|
+
voiceId?: string | null;
|
|
283
287
|
startSpeaker?: 'user' | 'agent';
|
|
284
288
|
requiredData?: string[];
|
|
285
289
|
criticalRules?: string[];
|
|
@@ -608,6 +612,10 @@ type components = {
|
|
|
608
612
|
status?: 'inactive' | 'training' | 'active';
|
|
609
613
|
debounceDelayMs?: number | null;
|
|
610
614
|
};
|
|
615
|
+
AgentScheduleListResponse: {
|
|
616
|
+
data: components['schemas']['AgentSchedule'][];
|
|
617
|
+
meta: components['schemas']['PaginationMeta'];
|
|
618
|
+
};
|
|
611
619
|
BlueprintStageTriggerCondition: {
|
|
612
620
|
type: 'intent' | 'rule' | 'expression';
|
|
613
621
|
value: string;
|
|
@@ -714,6 +722,8 @@ type components = {
|
|
|
714
722
|
FilterParam?: components['schemas']['QueryFilters'];
|
|
715
723
|
WebhookId: string;
|
|
716
724
|
SubscriptionId: string;
|
|
725
|
+
OrParam?: components['schemas']['QueryOrGroups'];
|
|
726
|
+
ScheduleId: string;
|
|
717
727
|
ApiKeyId: string;
|
|
718
728
|
IdempotencyKey: string;
|
|
719
729
|
};
|