@getsupervisor/agents-studio-sdk 1.38.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 +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -245,6 +245,9 @@ type components = {
|
|
|
245
245
|
criticalRules?: string[];
|
|
246
246
|
topicsAllowed?: string[];
|
|
247
247
|
topicsForbidden?: string[];
|
|
248
|
+
contentHash?: string | null;
|
|
249
|
+
contentVariables: string[];
|
|
250
|
+
variablesCache: string[];
|
|
248
251
|
createdAt: string;
|
|
249
252
|
updatedAt: string;
|
|
250
253
|
};
|
|
@@ -303,6 +306,8 @@ type components = {
|
|
|
303
306
|
metadata?: {
|
|
304
307
|
[key: string]: unknown;
|
|
305
308
|
} | null;
|
|
309
|
+
contentHash?: string | null;
|
|
310
|
+
variables: string[];
|
|
306
311
|
createdAt: string;
|
|
307
312
|
updatedAt: string;
|
|
308
313
|
};
|
|
@@ -890,11 +895,15 @@ type AgentBlueprint = {
|
|
|
890
895
|
personalityInitialGreeting: string;
|
|
891
896
|
personalityMessageStyleId: string;
|
|
892
897
|
personalityToneStyleId: string;
|
|
898
|
+
voiceId: string | null;
|
|
893
899
|
startSpeaker: 'user' | 'agent';
|
|
894
900
|
requiredData: string[];
|
|
895
901
|
criticalRules: string[];
|
|
896
902
|
topicsAllowed: string[];
|
|
897
903
|
topicsForbidden: string[];
|
|
904
|
+
contentHash: string | null;
|
|
905
|
+
contentVariables: string[];
|
|
906
|
+
variablesCache: string[];
|
|
898
907
|
createdAt: string;
|
|
899
908
|
updatedAt: string;
|
|
900
909
|
};
|
|
@@ -942,6 +951,8 @@ type BlueprintStageSchema = components['schemas']['BlueprintStage'];
|
|
|
942
951
|
type BlueprintStage = Omit<BlueprintStageSchema, 'prompt'> & {
|
|
943
952
|
goalPrompt: string;
|
|
944
953
|
promptInstructions: string[];
|
|
954
|
+
contentHash: string | null;
|
|
955
|
+
variables: string[];
|
|
945
956
|
};
|
|
946
957
|
type BlueprintStageListResponseSchema = components['schemas']['BlueprintStageListResponse'];
|
|
947
958
|
type BlueprintStageListResponse = Omit<BlueprintStageListResponseSchema, 'data'> & {
|
package/dist/index.d.ts
CHANGED
|
@@ -245,6 +245,9 @@ type components = {
|
|
|
245
245
|
criticalRules?: string[];
|
|
246
246
|
topicsAllowed?: string[];
|
|
247
247
|
topicsForbidden?: string[];
|
|
248
|
+
contentHash?: string | null;
|
|
249
|
+
contentVariables: string[];
|
|
250
|
+
variablesCache: string[];
|
|
248
251
|
createdAt: string;
|
|
249
252
|
updatedAt: string;
|
|
250
253
|
};
|
|
@@ -303,6 +306,8 @@ type components = {
|
|
|
303
306
|
metadata?: {
|
|
304
307
|
[key: string]: unknown;
|
|
305
308
|
} | null;
|
|
309
|
+
contentHash?: string | null;
|
|
310
|
+
variables: string[];
|
|
306
311
|
createdAt: string;
|
|
307
312
|
updatedAt: string;
|
|
308
313
|
};
|
|
@@ -890,11 +895,15 @@ type AgentBlueprint = {
|
|
|
890
895
|
personalityInitialGreeting: string;
|
|
891
896
|
personalityMessageStyleId: string;
|
|
892
897
|
personalityToneStyleId: string;
|
|
898
|
+
voiceId: string | null;
|
|
893
899
|
startSpeaker: 'user' | 'agent';
|
|
894
900
|
requiredData: string[];
|
|
895
901
|
criticalRules: string[];
|
|
896
902
|
topicsAllowed: string[];
|
|
897
903
|
topicsForbidden: string[];
|
|
904
|
+
contentHash: string | null;
|
|
905
|
+
contentVariables: string[];
|
|
906
|
+
variablesCache: string[];
|
|
898
907
|
createdAt: string;
|
|
899
908
|
updatedAt: string;
|
|
900
909
|
};
|
|
@@ -942,6 +951,8 @@ type BlueprintStageSchema = components['schemas']['BlueprintStage'];
|
|
|
942
951
|
type BlueprintStage = Omit<BlueprintStageSchema, 'prompt'> & {
|
|
943
952
|
goalPrompt: string;
|
|
944
953
|
promptInstructions: string[];
|
|
954
|
+
contentHash: string | null;
|
|
955
|
+
variables: string[];
|
|
945
956
|
};
|
|
946
957
|
type BlueprintStageListResponseSchema = components['schemas']['BlueprintStageListResponse'];
|
|
947
958
|
type BlueprintStageListResponse = Omit<BlueprintStageListResponseSchema, 'data'> & {
|