@getsupervisor/agents-studio-sdk 1.41.2-patch.2 → 1.41.2-patch.3
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 +5 -4
- package/dist/index.d.ts +5 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -53,6 +53,7 @@ type components = {
|
|
|
53
53
|
name: string;
|
|
54
54
|
agentType: 'chat' | 'voice';
|
|
55
55
|
status: 'inactive' | 'training' | 'active' | 'archived';
|
|
56
|
+
description?: string | null;
|
|
56
57
|
workspaceId: string;
|
|
57
58
|
createdAt: string;
|
|
58
59
|
updatedAt: string;
|
|
@@ -298,7 +299,7 @@ type components = {
|
|
|
298
299
|
agentId: string;
|
|
299
300
|
blueprintId: string;
|
|
300
301
|
name: string;
|
|
301
|
-
title
|
|
302
|
+
title: string;
|
|
302
303
|
goalPrompt: string;
|
|
303
304
|
promptInstructions: string[];
|
|
304
305
|
order: number;
|
|
@@ -317,7 +318,7 @@ type components = {
|
|
|
317
318
|
};
|
|
318
319
|
CreateBlueprintStageRequest: {
|
|
319
320
|
name: string;
|
|
320
|
-
title
|
|
321
|
+
title: string;
|
|
321
322
|
goalPrompt: string;
|
|
322
323
|
promptInstructions?: string[];
|
|
323
324
|
order?: number | null;
|
|
@@ -328,7 +329,7 @@ type components = {
|
|
|
328
329
|
};
|
|
329
330
|
UpdateBlueprintStageRequest: {
|
|
330
331
|
name?: string;
|
|
331
|
-
title?: string
|
|
332
|
+
title?: string;
|
|
332
333
|
goalPrompt?: string;
|
|
333
334
|
promptInstructions?: string[];
|
|
334
335
|
order?: number | null;
|
|
@@ -364,7 +365,7 @@ type components = {
|
|
|
364
365
|
};
|
|
365
366
|
BlueprintStageDraft: {
|
|
366
367
|
name: string;
|
|
367
|
-
title
|
|
368
|
+
title: string;
|
|
368
369
|
goalPrompt: string;
|
|
369
370
|
promptInstructions?: string[];
|
|
370
371
|
order?: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ type components = {
|
|
|
53
53
|
name: string;
|
|
54
54
|
agentType: 'chat' | 'voice';
|
|
55
55
|
status: 'inactive' | 'training' | 'active' | 'archived';
|
|
56
|
+
description?: string | null;
|
|
56
57
|
workspaceId: string;
|
|
57
58
|
createdAt: string;
|
|
58
59
|
updatedAt: string;
|
|
@@ -298,7 +299,7 @@ type components = {
|
|
|
298
299
|
agentId: string;
|
|
299
300
|
blueprintId: string;
|
|
300
301
|
name: string;
|
|
301
|
-
title
|
|
302
|
+
title: string;
|
|
302
303
|
goalPrompt: string;
|
|
303
304
|
promptInstructions: string[];
|
|
304
305
|
order: number;
|
|
@@ -317,7 +318,7 @@ type components = {
|
|
|
317
318
|
};
|
|
318
319
|
CreateBlueprintStageRequest: {
|
|
319
320
|
name: string;
|
|
320
|
-
title
|
|
321
|
+
title: string;
|
|
321
322
|
goalPrompt: string;
|
|
322
323
|
promptInstructions?: string[];
|
|
323
324
|
order?: number | null;
|
|
@@ -328,7 +329,7 @@ type components = {
|
|
|
328
329
|
};
|
|
329
330
|
UpdateBlueprintStageRequest: {
|
|
330
331
|
name?: string;
|
|
331
|
-
title?: string
|
|
332
|
+
title?: string;
|
|
332
333
|
goalPrompt?: string;
|
|
333
334
|
promptInstructions?: string[];
|
|
334
335
|
order?: number | null;
|
|
@@ -364,7 +365,7 @@ type components = {
|
|
|
364
365
|
};
|
|
365
366
|
BlueprintStageDraft: {
|
|
366
367
|
name: string;
|
|
367
|
-
title
|
|
368
|
+
title: string;
|
|
368
369
|
goalPrompt: string;
|
|
369
370
|
promptInstructions?: string[];
|
|
370
371
|
order?: number | null;
|