@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 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?: string | null;
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?: string | null;
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 | null;
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?: string | null;
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?: string | null;
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?: string | null;
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 | null;
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?: string | null;
368
+ title: string;
368
369
  goalPrompt: string;
369
370
  promptInstructions?: string[];
370
371
  order?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getsupervisor/agents-studio-sdk",
3
- "version": "1.41.2-patch.2",
3
+ "version": "1.41.2-patch.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",