@getsupervisor/agents-studio-sdk 1.37.0 → 1.39.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 +21 -0
- package/dist/index.d.ts +21 -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,11 +239,15 @@ 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[];
|
|
244
246
|
topicsAllowed?: string[];
|
|
245
247
|
topicsForbidden?: string[];
|
|
248
|
+
contentHash?: string | null;
|
|
249
|
+
contentVariables: string[];
|
|
250
|
+
variablesCache: string[];
|
|
246
251
|
createdAt: string;
|
|
247
252
|
updatedAt: string;
|
|
248
253
|
};
|
|
@@ -265,6 +270,7 @@ type components = {
|
|
|
265
270
|
personalityInitialGreeting: string;
|
|
266
271
|
personalityMessageStyleId: string;
|
|
267
272
|
personalityToneStyleId: string;
|
|
273
|
+
voiceId?: string | null;
|
|
268
274
|
startSpeaker: 'user' | 'agent';
|
|
269
275
|
requiredData?: string[];
|
|
270
276
|
criticalRules?: string[];
|
|
@@ -280,6 +286,7 @@ type components = {
|
|
|
280
286
|
personalityInitialGreeting?: string;
|
|
281
287
|
personalityMessageStyleId?: string;
|
|
282
288
|
personalityToneStyleId?: string;
|
|
289
|
+
voiceId?: string | null;
|
|
283
290
|
startSpeaker?: 'user' | 'agent';
|
|
284
291
|
requiredData?: string[];
|
|
285
292
|
criticalRules?: string[];
|
|
@@ -299,6 +306,8 @@ type components = {
|
|
|
299
306
|
metadata?: {
|
|
300
307
|
[key: string]: unknown;
|
|
301
308
|
} | null;
|
|
309
|
+
contentHash?: string | null;
|
|
310
|
+
variables: string[];
|
|
302
311
|
createdAt: string;
|
|
303
312
|
updatedAt: string;
|
|
304
313
|
};
|
|
@@ -608,6 +617,10 @@ type components = {
|
|
|
608
617
|
status?: 'inactive' | 'training' | 'active';
|
|
609
618
|
debounceDelayMs?: number | null;
|
|
610
619
|
};
|
|
620
|
+
AgentScheduleListResponse: {
|
|
621
|
+
data: components['schemas']['AgentSchedule'][];
|
|
622
|
+
meta: components['schemas']['PaginationMeta'];
|
|
623
|
+
};
|
|
611
624
|
BlueprintStageTriggerCondition: {
|
|
612
625
|
type: 'intent' | 'rule' | 'expression';
|
|
613
626
|
value: string;
|
|
@@ -714,6 +727,8 @@ type components = {
|
|
|
714
727
|
FilterParam?: components['schemas']['QueryFilters'];
|
|
715
728
|
WebhookId: string;
|
|
716
729
|
SubscriptionId: string;
|
|
730
|
+
OrParam?: components['schemas']['QueryOrGroups'];
|
|
731
|
+
ScheduleId: string;
|
|
717
732
|
ApiKeyId: string;
|
|
718
733
|
IdempotencyKey: string;
|
|
719
734
|
};
|
|
@@ -880,11 +895,15 @@ type AgentBlueprint = {
|
|
|
880
895
|
personalityInitialGreeting: string;
|
|
881
896
|
personalityMessageStyleId: string;
|
|
882
897
|
personalityToneStyleId: string;
|
|
898
|
+
voiceId: string | null;
|
|
883
899
|
startSpeaker: 'user' | 'agent';
|
|
884
900
|
requiredData: string[];
|
|
885
901
|
criticalRules: string[];
|
|
886
902
|
topicsAllowed: string[];
|
|
887
903
|
topicsForbidden: string[];
|
|
904
|
+
contentHash: string | null;
|
|
905
|
+
contentVariables: string[];
|
|
906
|
+
variablesCache: string[];
|
|
888
907
|
createdAt: string;
|
|
889
908
|
updatedAt: string;
|
|
890
909
|
};
|
|
@@ -932,6 +951,8 @@ type BlueprintStageSchema = components['schemas']['BlueprintStage'];
|
|
|
932
951
|
type BlueprintStage = Omit<BlueprintStageSchema, 'prompt'> & {
|
|
933
952
|
goalPrompt: string;
|
|
934
953
|
promptInstructions: string[];
|
|
954
|
+
contentHash: string | null;
|
|
955
|
+
variables: string[];
|
|
935
956
|
};
|
|
936
957
|
type BlueprintStageListResponseSchema = components['schemas']['BlueprintStageListResponse'];
|
|
937
958
|
type BlueprintStageListResponse = Omit<BlueprintStageListResponseSchema, 'data'> & {
|
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,11 +239,15 @@ 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[];
|
|
244
246
|
topicsAllowed?: string[];
|
|
245
247
|
topicsForbidden?: string[];
|
|
248
|
+
contentHash?: string | null;
|
|
249
|
+
contentVariables: string[];
|
|
250
|
+
variablesCache: string[];
|
|
246
251
|
createdAt: string;
|
|
247
252
|
updatedAt: string;
|
|
248
253
|
};
|
|
@@ -265,6 +270,7 @@ type components = {
|
|
|
265
270
|
personalityInitialGreeting: string;
|
|
266
271
|
personalityMessageStyleId: string;
|
|
267
272
|
personalityToneStyleId: string;
|
|
273
|
+
voiceId?: string | null;
|
|
268
274
|
startSpeaker: 'user' | 'agent';
|
|
269
275
|
requiredData?: string[];
|
|
270
276
|
criticalRules?: string[];
|
|
@@ -280,6 +286,7 @@ type components = {
|
|
|
280
286
|
personalityInitialGreeting?: string;
|
|
281
287
|
personalityMessageStyleId?: string;
|
|
282
288
|
personalityToneStyleId?: string;
|
|
289
|
+
voiceId?: string | null;
|
|
283
290
|
startSpeaker?: 'user' | 'agent';
|
|
284
291
|
requiredData?: string[];
|
|
285
292
|
criticalRules?: string[];
|
|
@@ -299,6 +306,8 @@ type components = {
|
|
|
299
306
|
metadata?: {
|
|
300
307
|
[key: string]: unknown;
|
|
301
308
|
} | null;
|
|
309
|
+
contentHash?: string | null;
|
|
310
|
+
variables: string[];
|
|
302
311
|
createdAt: string;
|
|
303
312
|
updatedAt: string;
|
|
304
313
|
};
|
|
@@ -608,6 +617,10 @@ type components = {
|
|
|
608
617
|
status?: 'inactive' | 'training' | 'active';
|
|
609
618
|
debounceDelayMs?: number | null;
|
|
610
619
|
};
|
|
620
|
+
AgentScheduleListResponse: {
|
|
621
|
+
data: components['schemas']['AgentSchedule'][];
|
|
622
|
+
meta: components['schemas']['PaginationMeta'];
|
|
623
|
+
};
|
|
611
624
|
BlueprintStageTriggerCondition: {
|
|
612
625
|
type: 'intent' | 'rule' | 'expression';
|
|
613
626
|
value: string;
|
|
@@ -714,6 +727,8 @@ type components = {
|
|
|
714
727
|
FilterParam?: components['schemas']['QueryFilters'];
|
|
715
728
|
WebhookId: string;
|
|
716
729
|
SubscriptionId: string;
|
|
730
|
+
OrParam?: components['schemas']['QueryOrGroups'];
|
|
731
|
+
ScheduleId: string;
|
|
717
732
|
ApiKeyId: string;
|
|
718
733
|
IdempotencyKey: string;
|
|
719
734
|
};
|
|
@@ -880,11 +895,15 @@ type AgentBlueprint = {
|
|
|
880
895
|
personalityInitialGreeting: string;
|
|
881
896
|
personalityMessageStyleId: string;
|
|
882
897
|
personalityToneStyleId: string;
|
|
898
|
+
voiceId: string | null;
|
|
883
899
|
startSpeaker: 'user' | 'agent';
|
|
884
900
|
requiredData: string[];
|
|
885
901
|
criticalRules: string[];
|
|
886
902
|
topicsAllowed: string[];
|
|
887
903
|
topicsForbidden: string[];
|
|
904
|
+
contentHash: string | null;
|
|
905
|
+
contentVariables: string[];
|
|
906
|
+
variablesCache: string[];
|
|
888
907
|
createdAt: string;
|
|
889
908
|
updatedAt: string;
|
|
890
909
|
};
|
|
@@ -932,6 +951,8 @@ type BlueprintStageSchema = components['schemas']['BlueprintStage'];
|
|
|
932
951
|
type BlueprintStage = Omit<BlueprintStageSchema, 'prompt'> & {
|
|
933
952
|
goalPrompt: string;
|
|
934
953
|
promptInstructions: string[];
|
|
954
|
+
contentHash: string | null;
|
|
955
|
+
variables: string[];
|
|
935
956
|
};
|
|
936
957
|
type BlueprintStageListResponseSchema = components['schemas']['BlueprintStageListResponse'];
|
|
937
958
|
type BlueprintStageListResponse = Omit<BlueprintStageListResponseSchema, 'data'> & {
|