@getsupervisor/agents-studio-sdk 1.41.1-beta.162 → 1.41.1-beta.163
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -74,6 +74,7 @@ type components = {
|
|
|
74
74
|
debounceDelayMs?: number | null;
|
|
75
75
|
brief?: string | null;
|
|
76
76
|
researchUrl?: string | null;
|
|
77
|
+
voiceId?: string | null;
|
|
77
78
|
metadata?: {
|
|
78
79
|
[key: string]: unknown;
|
|
79
80
|
};
|
|
@@ -831,6 +832,7 @@ type components = {
|
|
|
831
832
|
debounceDelayMs?: number | null;
|
|
832
833
|
brief?: string | null;
|
|
833
834
|
researchUrl?: string | null;
|
|
835
|
+
voiceId?: string | null;
|
|
834
836
|
documentRefs?: components['schemas']['DocumentRef'][] | null;
|
|
835
837
|
};
|
|
836
838
|
CloneAgentRequest: {
|
|
@@ -1354,6 +1356,7 @@ type CreateAgentBlueprintRequest = {
|
|
|
1354
1356
|
personalityInitialGreeting: string;
|
|
1355
1357
|
personalityMessageStyleId: string;
|
|
1356
1358
|
personalityToneStyleId: string;
|
|
1359
|
+
voiceId?: string;
|
|
1357
1360
|
startSpeaker: 'user' | 'agent';
|
|
1358
1361
|
requiredData?: string[];
|
|
1359
1362
|
criticalRules?: string[];
|
|
@@ -1376,6 +1379,7 @@ type UpdateAgentBlueprintRequest = {
|
|
|
1376
1379
|
personalityInitialGreeting?: string;
|
|
1377
1380
|
personalityMessageStyleId?: string;
|
|
1378
1381
|
personalityToneStyleId?: string;
|
|
1382
|
+
voiceId?: string;
|
|
1379
1383
|
startSpeaker?: 'user' | 'agent';
|
|
1380
1384
|
requiredData?: string[];
|
|
1381
1385
|
criticalRules?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ type components = {
|
|
|
74
74
|
debounceDelayMs?: number | null;
|
|
75
75
|
brief?: string | null;
|
|
76
76
|
researchUrl?: string | null;
|
|
77
|
+
voiceId?: string | null;
|
|
77
78
|
metadata?: {
|
|
78
79
|
[key: string]: unknown;
|
|
79
80
|
};
|
|
@@ -831,6 +832,7 @@ type components = {
|
|
|
831
832
|
debounceDelayMs?: number | null;
|
|
832
833
|
brief?: string | null;
|
|
833
834
|
researchUrl?: string | null;
|
|
835
|
+
voiceId?: string | null;
|
|
834
836
|
documentRefs?: components['schemas']['DocumentRef'][] | null;
|
|
835
837
|
};
|
|
836
838
|
CloneAgentRequest: {
|
|
@@ -1354,6 +1356,7 @@ type CreateAgentBlueprintRequest = {
|
|
|
1354
1356
|
personalityInitialGreeting: string;
|
|
1355
1357
|
personalityMessageStyleId: string;
|
|
1356
1358
|
personalityToneStyleId: string;
|
|
1359
|
+
voiceId?: string;
|
|
1357
1360
|
startSpeaker: 'user' | 'agent';
|
|
1358
1361
|
requiredData?: string[];
|
|
1359
1362
|
criticalRules?: string[];
|
|
@@ -1376,6 +1379,7 @@ type UpdateAgentBlueprintRequest = {
|
|
|
1376
1379
|
personalityInitialGreeting?: string;
|
|
1377
1380
|
personalityMessageStyleId?: string;
|
|
1378
1381
|
personalityToneStyleId?: string;
|
|
1382
|
+
voiceId?: string;
|
|
1379
1383
|
startSpeaker?: 'user' | 'agent';
|
|
1380
1384
|
requiredData?: string[];
|
|
1381
1385
|
criticalRules?: string[];
|