@inkeep/agents-core 0.0.0-dev-20251203000036 → 0.0.0-dev-20251208172520

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.
@@ -1012,11 +1012,12 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
1012
1012
  in: {};
1013
1013
  }>;
1014
1014
  declare const SubAgentApiSelectSchema: z.ZodObject<{
1015
- name: z.ZodString;
1016
1015
  id: z.ZodString;
1016
+ name: z.ZodString;
1017
+ description: z.ZodNullable<z.ZodString>;
1018
+ prompt: z.ZodNullable<z.ZodString>;
1017
1019
  createdAt: z.ZodString;
1018
1020
  updatedAt: z.ZodString;
1019
- description: z.ZodNullable<z.ZodString>;
1020
1021
  models: z.ZodNullable<z.ZodType<{
1021
1022
  base?: {
1022
1023
  model?: string | undefined;
@@ -1079,15 +1080,15 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
1079
1080
  }, {
1080
1081
  stepCountIs?: number | undefined;
1081
1082
  }>>>;
1082
- prompt: z.ZodNullable<z.ZodString>;
1083
1083
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
1084
1084
  }, z.core.$strip>;
1085
1085
  declare const SubAgentApiInsertSchema: z.ZodObject<{
1086
- name: z.ZodString;
1087
1086
  id: z.ZodString;
1087
+ name: z.ZodString;
1088
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1089
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1088
1090
  createdAt: z.ZodOptional<z.ZodString>;
1089
1091
  updatedAt: z.ZodOptional<z.ZodString>;
1090
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1091
1092
  models: z.ZodOptional<z.ZodObject<{
1092
1093
  base: z.ZodOptional<z.ZodObject<{
1093
1094
  model: z.ZodOptional<z.ZodString>;
@@ -1111,15 +1112,15 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
1111
1112
  }, {
1112
1113
  stepCountIs?: number | undefined;
1113
1114
  }>>>>;
1114
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1115
1115
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
1116
1116
  }, z.core.$strip>;
1117
1117
  declare const SubAgentApiUpdateSchema: z.ZodObject<{
1118
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1119
1118
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1119
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1120
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
1121
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
1120
1122
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
1121
1123
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
1122
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
1123
1124
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
1124
1125
  base: z.ZodOptional<z.ZodObject<{
1125
1126
  model: z.ZodOptional<z.ZodString>;
@@ -1143,7 +1144,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
1143
1144
  }, {
1144
1145
  stepCountIs?: number | undefined;
1145
1146
  }>>>>>>;
1146
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
1147
1147
  conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
1148
1148
  }, z.core.$strip>;
1149
1149
  declare const SubAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -1572,9 +1572,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
1572
1572
  }>;
1573
1573
  declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
1574
1574
  id: z.ZodString;
1575
+ agentId: z.ZodString;
1575
1576
  createdAt: z.ZodOptional<z.ZodString>;
1576
1577
  updatedAt: z.ZodOptional<z.ZodString>;
1577
- agentId: z.ZodString;
1578
1578
  sourceSubAgentId: z.ZodString;
1579
1579
  targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1580
1580
  relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2446,11 +2446,12 @@ declare const AgentUpdateSchema: z.ZodObject<{
2446
2446
  in: {};
2447
2447
  }>;
2448
2448
  declare const AgentApiSelectSchema: z.ZodObject<{
2449
- name: z.ZodString;
2450
2449
  id: z.ZodString;
2450
+ name: z.ZodString;
2451
+ description: z.ZodNullable<z.ZodString>;
2452
+ prompt: z.ZodNullable<z.ZodString>;
2451
2453
  createdAt: z.ZodString;
2452
2454
  updatedAt: z.ZodString;
2453
- description: z.ZodNullable<z.ZodString>;
2454
2455
  models: z.ZodNullable<z.ZodType<{
2455
2456
  base?: {
2456
2457
  model?: string | undefined;
@@ -2515,7 +2516,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
2515
2516
  }>>>;
2516
2517
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
2517
2518
  contextConfigId: z.ZodNullable<z.ZodString>;
2518
- prompt: z.ZodNullable<z.ZodString>;
2519
2519
  statusUpdates: z.ZodNullable<z.ZodType<{
2520
2520
  enabled?: boolean | undefined;
2521
2521
  numEvents?: number | undefined;
@@ -2576,9 +2576,10 @@ declare const AgentApiSelectSchema: z.ZodObject<{
2576
2576
  }, z.core.$strip>;
2577
2577
  declare const AgentApiInsertSchema: z.ZodObject<{
2578
2578
  name: z.ZodString;
2579
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2580
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2579
2581
  createdAt: z.ZodOptional<z.ZodString>;
2580
2582
  updatedAt: z.ZodOptional<z.ZodString>;
2581
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2582
2583
  models: z.ZodOptional<z.ZodNullable<z.ZodType<{
2583
2584
  base?: {
2584
2585
  model?: string | undefined;
@@ -2643,7 +2644,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2643
2644
  }>>>>;
2644
2645
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2645
2646
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2646
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2647
2647
  statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
2648
2648
  enabled?: boolean | undefined;
2649
2649
  numEvents?: number | undefined;
@@ -2704,11 +2704,12 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2704
2704
  id: z.ZodString;
2705
2705
  }, z.core.$strip>;
2706
2706
  declare const AgentApiUpdateSchema: z.ZodObject<{
2707
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2708
2707
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2708
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2709
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2710
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2709
2711
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2710
2712
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2711
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2712
2713
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2713
2714
  base?: {
2714
2715
  model?: string | undefined;
@@ -2773,7 +2774,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2773
2774
  }>>>>>>;
2774
2775
  defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2775
2776
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2776
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2777
2777
  statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2778
2778
  enabled?: boolean | undefined;
2779
2779
  numEvents?: number | undefined;
@@ -3241,32 +3241,32 @@ declare const TaskUpdateSchema: z.ZodObject<{
3241
3241
  }>;
3242
3242
  declare const TaskApiSelectSchema: z.ZodObject<{
3243
3243
  id: z.ZodString;
3244
+ agentId: z.ZodString;
3244
3245
  createdAt: z.ZodString;
3245
3246
  updatedAt: z.ZodString;
3246
3247
  metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
3247
3248
  status: z.ZodString;
3248
- agentId: z.ZodString;
3249
3249
  contextId: z.ZodString;
3250
3250
  subAgentId: z.ZodString;
3251
3251
  }, z.core.$strip>;
3252
3252
  declare const TaskApiInsertSchema: z.ZodObject<{
3253
3253
  id: z.ZodString;
3254
+ agentId: z.ZodString;
3254
3255
  createdAt: z.ZodOptional<z.ZodString>;
3255
3256
  updatedAt: z.ZodOptional<z.ZodString>;
3256
3257
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
3257
3258
  status: z.ZodString;
3258
- agentId: z.ZodString;
3259
3259
  conversationId: z.ZodOptional<z.ZodString>;
3260
3260
  contextId: z.ZodString;
3261
3261
  subAgentId: z.ZodString;
3262
3262
  }, z.core.$strip>;
3263
3263
  declare const TaskApiUpdateSchema: z.ZodObject<{
3264
3264
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3265
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3265
3266
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3266
3267
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3267
3268
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
3268
3269
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3269
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3270
3270
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3271
3271
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3272
3272
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -4567,33 +4567,33 @@ declare const ConversationUpdateSchema: z.ZodObject<{
4567
4567
  }>;
4568
4568
  declare const ConversationApiSelectSchema: z.ZodObject<{
4569
4569
  id: z.ZodString;
4570
+ title: z.ZodNullable<z.ZodString>;
4570
4571
  createdAt: z.ZodString;
4571
4572
  updatedAt: z.ZodString;
4572
- userId: z.ZodNullable<z.ZodString>;
4573
4573
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
4574
- title: z.ZodNullable<z.ZodString>;
4574
+ userId: z.ZodNullable<z.ZodString>;
4575
4575
  activeSubAgentId: z.ZodString;
4576
4576
  lastContextResolution: z.ZodNullable<z.ZodString>;
4577
4577
  }, z.core.$strip>;
4578
4578
  declare const ConversationApiInsertSchema: z.ZodObject<{
4579
4579
  id: z.ZodString;
4580
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4580
4581
  createdAt: z.ZodOptional<z.ZodString>;
4581
4582
  updatedAt: z.ZodOptional<z.ZodString>;
4582
- userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4583
4583
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
4584
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4585
4584
  contextConfigId: z.ZodOptional<z.ZodString>;
4585
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4586
4586
  activeSubAgentId: z.ZodString;
4587
4587
  lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4588
4588
  }, z.core.$strip>;
4589
4589
  declare const ConversationApiUpdateSchema: z.ZodObject<{
4590
4590
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4591
+ title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4591
4592
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4592
4593
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4593
- userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4594
4594
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
4595
- title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4596
4595
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4596
+ userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4597
4597
  activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4598
4598
  lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4599
4599
  }, z.core.$strip>;
@@ -5447,8 +5447,9 @@ declare const MessageApiSelectSchema: z.ZodObject<{
5447
5447
  createdAt: z.ZodString;
5448
5448
  updatedAt: z.ZodString;
5449
5449
  metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
5450
- role: z.ZodString;
5451
5450
  content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
5451
+ role: z.ZodString;
5452
+ taskId: z.ZodNullable<z.ZodString>;
5452
5453
  conversationId: z.ZodString;
5453
5454
  fromSubAgentId: z.ZodNullable<z.ZodString>;
5454
5455
  toSubAgentId: z.ZodNullable<z.ZodString>;
@@ -5458,7 +5459,6 @@ declare const MessageApiSelectSchema: z.ZodObject<{
5458
5459
  toTeamAgentId: z.ZodNullable<z.ZodString>;
5459
5460
  visibility: z.ZodString;
5460
5461
  messageType: z.ZodString;
5461
- taskId: z.ZodNullable<z.ZodString>;
5462
5462
  parentMessageId: z.ZodNullable<z.ZodString>;
5463
5463
  a2aTaskId: z.ZodNullable<z.ZodString>;
5464
5464
  a2aSessionId: z.ZodNullable<z.ZodString>;
@@ -5468,8 +5468,9 @@ declare const MessageApiInsertSchema: z.ZodObject<{
5468
5468
  createdAt: z.ZodOptional<z.ZodString>;
5469
5469
  updatedAt: z.ZodOptional<z.ZodString>;
5470
5470
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
5471
- role: z.ZodString;
5472
5471
  content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
5472
+ role: z.ZodString;
5473
+ taskId: z.ZodOptional<z.ZodString>;
5473
5474
  conversationId: z.ZodString;
5474
5475
  fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5475
5476
  toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5479,7 +5480,6 @@ declare const MessageApiInsertSchema: z.ZodObject<{
5479
5480
  toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5480
5481
  visibility: z.ZodOptional<z.ZodString>;
5481
5482
  messageType: z.ZodOptional<z.ZodString>;
5482
- taskId: z.ZodOptional<z.ZodString>;
5483
5483
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5484
5484
  a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5485
5485
  a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5489,8 +5489,9 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
5489
5489
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5490
5490
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5491
5491
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
5492
- role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5493
5492
  content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
5493
+ role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5494
+ taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5494
5495
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5495
5496
  fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5496
5497
  toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -5500,7 +5501,6 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
5500
5501
  toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5501
5502
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5502
5503
  messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5503
- taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5504
5504
  parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5505
5505
  a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5506
5506
  a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -6466,7 +6466,7 @@ declare const ContextCacheInsertSchema: drizzle_zod.BuildSchema<"insert", {
6466
6466
  }, {}, {
6467
6467
  length: 256;
6468
6468
  }>;
6469
- }, "id" | "createdAt" | "updatedAt" | "value" | "projectId" | "tenantId" | "contextConfigId" | "conversationId" | "contextVariableKey" | "requestHash" | "fetchedAt" | "fetchSource" | "fetchDurationMs">, undefined>, undefined>;
6469
+ }, "tenantId" | "projectId" | "id" | "value" | "createdAt" | "updatedAt" | "contextConfigId" | "conversationId" | "contextVariableKey" | "requestHash" | "fetchedAt" | "fetchSource" | "fetchDurationMs">, undefined>, undefined>;
6470
6470
  declare const ContextCacheUpdateSchema: z.ZodObject<{
6471
6471
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6472
6472
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6487,9 +6487,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
6487
6487
  }>;
6488
6488
  declare const ContextCacheApiSelectSchema: z.ZodObject<{
6489
6489
  id: z.ZodString;
6490
+ value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
6490
6491
  createdAt: z.ZodString;
6491
6492
  updatedAt: z.ZodString;
6492
- value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
6493
6493
  contextConfigId: z.ZodString;
6494
6494
  conversationId: z.ZodString;
6495
6495
  contextVariableKey: z.ZodString;
@@ -6500,9 +6500,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
6500
6500
  }, z.core.$strip>;
6501
6501
  declare const ContextCacheApiInsertSchema: z.ZodObject<{
6502
6502
  id: z.ZodString;
6503
+ value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
6503
6504
  createdAt: z.ZodOptional<z.ZodString>;
6504
6505
  updatedAt: z.ZodOptional<z.ZodString>;
6505
- value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
6506
6506
  contextConfigId: z.ZodString;
6507
6507
  conversationId: z.ZodString;
6508
6508
  contextVariableKey: z.ZodString;
@@ -6513,9 +6513,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
6513
6513
  }, z.core.$strip>;
6514
6514
  declare const ContextCacheApiUpdateSchema: z.ZodObject<{
6515
6515
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6516
+ value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
6516
6517
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6517
6518
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6518
- value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
6519
6519
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6520
6520
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6521
6521
  contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6896,11 +6896,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
6896
6896
  in: {};
6897
6897
  }>;
6898
6898
  declare const DataComponentBaseSchema: z.ZodObject<{
6899
- name: z.ZodString;
6899
+ tenantId: z.ZodString;
6900
+ projectId: z.ZodString;
6900
6901
  id: z.ZodString;
6902
+ name: z.ZodString;
6901
6903
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6902
- projectId: z.ZodString;
6903
- tenantId: z.ZodString;
6904
6904
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
6905
6905
  render: z.ZodOptional<z.ZodNullable<z.ZodType<{
6906
6906
  component: string;
@@ -6946,11 +6946,11 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
6946
6946
  in: {};
6947
6947
  }>;
6948
6948
  declare const DataComponentApiSelectSchema: z.ZodObject<{
6949
- name: z.ZodString;
6950
6949
  id: z.ZodString;
6950
+ name: z.ZodString;
6951
+ description: z.ZodNullable<z.ZodString>;
6951
6952
  createdAt: z.ZodString;
6952
6953
  updatedAt: z.ZodString;
6953
- description: z.ZodNullable<z.ZodString>;
6954
6954
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
6955
6955
  render: z.ZodNullable<z.ZodType<{
6956
6956
  component: string;
@@ -6967,11 +6967,11 @@ declare const DataComponentApiSelectSchema: z.ZodObject<{
6967
6967
  }>>>;
6968
6968
  }, z.core.$strip>;
6969
6969
  declare const DataComponentApiInsertSchema: z.ZodObject<{
6970
- name: z.ZodString;
6971
6970
  id: z.ZodString;
6971
+ name: z.ZodString;
6972
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6972
6973
  createdAt: z.ZodOptional<z.ZodString>;
6973
6974
  updatedAt: z.ZodOptional<z.ZodString>;
6974
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6975
6975
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
6976
6976
  render: z.ZodOptional<z.ZodNullable<z.ZodType<{
6977
6977
  component: string;
@@ -6988,11 +6988,11 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
6988
6988
  }>>>>;
6989
6989
  }, z.core.$strip>;
6990
6990
  declare const DataComponentApiUpdateSchema: z.ZodObject<{
6991
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6992
6991
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6992
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6993
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6993
6994
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6994
6995
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6995
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6996
6996
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
6997
6997
  render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
6998
6998
  component: string;
@@ -7537,7 +7537,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod.BuildSchema<"insert
7537
7537
  }, {}, {
7538
7538
  length: 256;
7539
7539
  }>;
7540
- }, "id" | "createdAt" | "projectId" | "tenantId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
7540
+ }, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
7541
7541
  declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
7542
7542
  dataComponentId: z.ZodOptional<z.ZodString>;
7543
7543
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -7892,16 +7892,16 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
7892
7892
  in: {};
7893
7893
  }>;
7894
7894
  declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
7895
- name: z.ZodString;
7896
7895
  id: z.ZodString;
7896
+ name: z.ZodString;
7897
+ description: z.ZodNullable<z.ZodString>;
7897
7898
  createdAt: z.ZodString;
7898
7899
  updatedAt: z.ZodString;
7899
- description: z.ZodNullable<z.ZodString>;
7900
7900
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
7901
7901
  }, z.core.$strip>;
7902
7902
  declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
7903
- name: z.ZodString;
7904
7903
  id: z.ZodString;
7904
+ name: z.ZodString;
7905
7905
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7906
7906
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
7907
7907
  }, {
@@ -7909,11 +7909,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
7909
7909
  in: {};
7910
7910
  }>;
7911
7911
  declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
7912
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7913
7912
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7913
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7914
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7914
7915
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7915
7916
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7916
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7917
7917
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
7918
7918
  }, z.core.$strip>;
7919
7919
  declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -8268,38 +8268,39 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
8268
8268
  in: {};
8269
8269
  }>;
8270
8270
  declare const ExternalAgentApiSelectSchema: z.ZodObject<{
8271
- name: z.ZodString;
8272
8271
  id: z.ZodString;
8273
- createdAt: z.ZodString;
8274
- updatedAt: z.ZodString;
8272
+ name: z.ZodString;
8275
8273
  description: z.ZodNullable<z.ZodString>;
8276
8274
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8275
+ createdAt: z.ZodString;
8276
+ updatedAt: z.ZodString;
8277
8277
  baseUrl: z.ZodString;
8278
8278
  }, z.core.$strip>;
8279
8279
  declare const ExternalAgentApiInsertSchema: z.ZodObject<{
8280
- name: z.ZodString;
8281
8280
  id: z.ZodString;
8282
- createdAt: z.ZodOptional<z.ZodString>;
8283
- updatedAt: z.ZodOptional<z.ZodString>;
8281
+ name: z.ZodString;
8284
8282
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8285
8283
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8284
+ createdAt: z.ZodOptional<z.ZodString>;
8285
+ updatedAt: z.ZodOptional<z.ZodString>;
8286
8286
  baseUrl: z.ZodString;
8287
8287
  }, z.core.$strip>;
8288
8288
  declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
8289
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8290
8289
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8291
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8292
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8290
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8293
8291
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8294
8292
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8293
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8294
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8295
8295
  baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8296
8296
  }, z.core.$strip>;
8297
8297
  declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8298
- name: z.ZodString;
8299
8298
  id: z.ZodString;
8299
+ name: z.ZodString;
8300
+ description: z.ZodNullable<z.ZodString>;
8301
+ prompt: z.ZodNullable<z.ZodString>;
8300
8302
  createdAt: z.ZodString;
8301
8303
  updatedAt: z.ZodString;
8302
- description: z.ZodNullable<z.ZodString>;
8303
8304
  models: z.ZodNullable<z.ZodType<{
8304
8305
  base?: {
8305
8306
  model?: string | undefined;
@@ -8362,16 +8363,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
8362
8363
  }, {
8363
8364
  stepCountIs?: number | undefined;
8364
8365
  }>>>;
8365
- prompt: z.ZodNullable<z.ZodString>;
8366
8366
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
8367
8367
  type: z.ZodLiteral<"internal">;
8368
8368
  }, z.core.$strip>, z.ZodObject<{
8369
- name: z.ZodString;
8370
8369
  id: z.ZodString;
8371
- createdAt: z.ZodString;
8372
- updatedAt: z.ZodString;
8370
+ name: z.ZodString;
8373
8371
  description: z.ZodNullable<z.ZodString>;
8374
8372
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8373
+ createdAt: z.ZodString;
8374
+ updatedAt: z.ZodString;
8375
8375
  baseUrl: z.ZodString;
8376
8376
  type: z.ZodLiteral<"external">;
8377
8377
  }, z.core.$strip>], "type">;
@@ -8837,24 +8837,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
8837
8837
  }>;
8838
8838
  declare const ApiKeyUpdateSchema: z.ZodObject<{
8839
8839
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8840
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8841
- expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8842
8840
  agentId: z.ZodOptional<z.ZodString>;
8843
8841
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8842
+ expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8843
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8844
8844
  }, {
8845
8845
  out: {};
8846
8846
  in: {};
8847
8847
  }>;
8848
8848
  declare const ApiKeyApiSelectSchema: z.ZodObject<{
8849
- name: z.ZodNullable<z.ZodString>;
8850
8849
  id: z.ZodString;
8851
- createdAt: z.ZodString;
8852
- updatedAt: z.ZodString;
8853
- expiresAt: z.ZodNullable<z.ZodString>;
8850
+ name: z.ZodNullable<z.ZodString>;
8854
8851
  agentId: z.ZodString;
8855
8852
  publicId: z.ZodString;
8856
8853
  keyPrefix: z.ZodString;
8857
8854
  lastUsedAt: z.ZodNullable<z.ZodString>;
8855
+ expiresAt: z.ZodNullable<z.ZodString>;
8856
+ createdAt: z.ZodString;
8857
+ updatedAt: z.ZodString;
8858
8858
  }, {
8859
8859
  out: {};
8860
8860
  in: {};
@@ -8862,15 +8862,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
8862
8862
  declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
8863
8863
  data: z.ZodObject<{
8864
8864
  apiKey: z.ZodObject<{
8865
- name: z.ZodNullable<z.ZodString>;
8866
8865
  id: z.ZodString;
8867
- createdAt: z.ZodString;
8868
- updatedAt: z.ZodString;
8869
- expiresAt: z.ZodNullable<z.ZodString>;
8866
+ name: z.ZodNullable<z.ZodString>;
8870
8867
  agentId: z.ZodString;
8871
8868
  publicId: z.ZodString;
8872
8869
  keyPrefix: z.ZodString;
8873
8870
  lastUsedAt: z.ZodNullable<z.ZodString>;
8871
+ expiresAt: z.ZodNullable<z.ZodString>;
8872
+ createdAt: z.ZodString;
8873
+ updatedAt: z.ZodString;
8874
8874
  }, {
8875
8875
  out: {};
8876
8876
  in: {};
@@ -8880,20 +8880,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
8880
8880
  }, z.core.$strip>;
8881
8881
  declare const ApiKeyApiInsertSchema: z.ZodObject<{
8882
8882
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8883
+ agentId: z.ZodString;
8884
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8883
8885
  createdAt: z.ZodOptional<z.ZodString>;
8884
8886
  updatedAt: z.ZodOptional<z.ZodString>;
8885
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8886
- agentId: z.ZodString;
8887
8887
  }, {
8888
8888
  out: {};
8889
8889
  in: {};
8890
8890
  }>;
8891
8891
  declare const ApiKeyApiUpdateSchema: z.ZodObject<{
8892
8892
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8893
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8894
- expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8895
8893
  agentId: z.ZodOptional<z.ZodString>;
8896
8894
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8895
+ expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8896
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8897
8897
  }, {
8898
8898
  out: {};
8899
8899
  in: {};
@@ -8938,8 +8938,8 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
8938
8938
  in: {};
8939
8939
  }>;
8940
8940
  declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
8941
- name: z.ZodString;
8942
8941
  id: z.ZodString;
8942
+ name: z.ZodString;
8943
8943
  createdAt: z.ZodString;
8944
8944
  updatedAt: z.ZodString;
8945
8945
  credentialStoreId: z.ZodString;
@@ -9454,8 +9454,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
9454
9454
  }>>>;
9455
9455
  }, z.core.$strip>;
9456
9456
  declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
9457
- name: z.ZodString;
9458
9457
  id: z.ZodString;
9458
+ name: z.ZodString;
9459
9459
  createdAt: z.ZodOptional<z.ZodString>;
9460
9460
  updatedAt: z.ZodOptional<z.ZodString>;
9461
9461
  credentialStoreId: z.ZodString;
@@ -9467,8 +9467,8 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
9467
9467
  }>;
9468
9468
  }, z.core.$strip>;
9469
9469
  declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
9470
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9471
9470
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9471
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9472
9472
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9473
9473
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9474
9474
  credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -9584,8 +9584,8 @@ declare const McpToolSchema: z.ZodObject<{
9584
9584
  in: {};
9585
9585
  }>;
9586
9586
  declare const MCPToolConfigSchema: z.ZodObject<{
9587
- name: z.ZodString;
9588
9587
  id: z.ZodString;
9588
+ name: z.ZodString;
9589
9589
  expiresAt: z.ZodOptional<z.ZodString>;
9590
9590
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
9591
9591
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
@@ -9617,8 +9617,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
9617
9617
  sessionId: z.ZodOptional<z.ZodString>;
9618
9618
  }, z.core.$strip>>;
9619
9619
  credential: z.ZodOptional<z.ZodObject<{
9620
- name: z.ZodString;
9621
9620
  id: z.ZodString;
9621
+ name: z.ZodString;
9622
9622
  createdAt: z.ZodOptional<z.ZodString>;
9623
9623
  updatedAt: z.ZodOptional<z.ZodString>;
9624
9624
  credentialStoreId: z.ZodString;
@@ -9670,12 +9670,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
9670
9670
  in: {};
9671
9671
  }>;
9672
9672
  declare const ToolApiSelectSchema: z.ZodObject<{
9673
- name: z.ZodString;
9674
9673
  id: z.ZodString;
9675
- createdAt: z.ZodString;
9676
- updatedAt: z.ZodString;
9674
+ name: z.ZodString;
9677
9675
  description: z.ZodNullable<z.ZodString>;
9678
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
9679
9676
  config: z.ZodType<{
9680
9677
  type: "mcp";
9681
9678
  mcp: ToolMcpConfig;
@@ -9689,18 +9686,18 @@ declare const ToolApiSelectSchema: z.ZodObject<{
9689
9686
  type: "mcp";
9690
9687
  mcp: ToolMcpConfig;
9691
9688
  }>>;
9692
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
9693
9689
  credentialReferenceId: z.ZodNullable<z.ZodString>;
9690
+ createdAt: z.ZodString;
9691
+ updatedAt: z.ZodString;
9692
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
9693
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
9694
9694
  imageUrl: z.ZodNullable<z.ZodString>;
9695
9695
  lastError: z.ZodNullable<z.ZodString>;
9696
9696
  }, z.core.$strip>;
9697
9697
  declare const ToolApiInsertSchema: z.ZodObject<{
9698
- name: z.ZodString;
9699
9698
  id: z.ZodString;
9700
- createdAt: z.ZodOptional<z.ZodString>;
9701
- updatedAt: z.ZodOptional<z.ZodString>;
9699
+ name: z.ZodString;
9702
9700
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9703
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
9704
9701
  config: z.ZodObject<{
9705
9702
  type: z.ZodLiteral<"mcp">;
9706
9703
  mcp: z.ZodObject<{
@@ -9720,18 +9717,18 @@ declare const ToolApiInsertSchema: z.ZodObject<{
9720
9717
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
9721
9718
  }, z.core.$strip>;
9722
9719
  }, z.core.$strip>;
9723
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
9724
9720
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9721
+ createdAt: z.ZodOptional<z.ZodString>;
9722
+ updatedAt: z.ZodOptional<z.ZodString>;
9723
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
9724
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
9725
9725
  imageUrl: z.ZodOptional<z.ZodString>;
9726
9726
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9727
9727
  }, z.core.$strip>;
9728
9728
  declare const ToolApiUpdateSchema: z.ZodObject<{
9729
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9730
9729
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9731
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9732
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9730
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9733
9731
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9734
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
9735
9732
  config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
9736
9733
  type: z.ZodLiteral<"mcp">;
9737
9734
  mcp: z.ZodObject<{
@@ -9751,8 +9748,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
9751
9748
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
9752
9749
  }, z.core.$strip>;
9753
9750
  }, z.core.$strip>>>;
9754
- capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
9755
9751
  credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9752
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9753
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9754
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
9755
+ capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
9756
9756
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9757
9757
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9758
9758
  }, z.core.$strip>;
@@ -10118,29 +10118,29 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
10118
10118
  in: {};
10119
10119
  }>;
10120
10120
  declare const FunctionToolApiSelectSchema: z.ZodObject<{
10121
- name: z.ZodString;
10122
10121
  id: z.ZodString;
10123
- createdAt: z.ZodString;
10124
- updatedAt: z.ZodString;
10122
+ name: z.ZodString;
10125
10123
  description: z.ZodNullable<z.ZodString>;
10126
10124
  agentId: z.ZodString;
10125
+ createdAt: z.ZodString;
10126
+ updatedAt: z.ZodString;
10127
10127
  functionId: z.ZodString;
10128
10128
  }, z.core.$strip>;
10129
10129
  declare const FunctionToolApiInsertSchema: z.ZodObject<{
10130
- name: z.ZodString;
10131
10130
  id: z.ZodString;
10131
+ name: z.ZodString;
10132
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10132
10133
  createdAt: z.ZodOptional<z.ZodString>;
10133
10134
  updatedAt: z.ZodOptional<z.ZodString>;
10134
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10135
10135
  functionId: z.ZodString;
10136
10136
  }, z.core.$strip>;
10137
10137
  declare const FunctionToolApiUpdateSchema: z.ZodObject<{
10138
- name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10139
10138
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10140
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10141
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10139
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10142
10140
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10143
10141
  agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10142
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10143
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10144
10144
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10145
10145
  }, z.core.$strip>;
10146
10146
  declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -10528,8 +10528,8 @@ declare const FetchDefinitionSchema: z.ZodObject<{
10528
10528
  responseSchema: z.ZodOptional<z.ZodAny>;
10529
10529
  defaultValue: z.ZodOptional<z.ZodAny>;
10530
10530
  credential: z.ZodOptional<z.ZodObject<{
10531
- name: z.ZodString;
10532
10531
  id: z.ZodString;
10532
+ name: z.ZodString;
10533
10533
  createdAt: z.ZodOptional<z.ZodString>;
10534
10534
  updatedAt: z.ZodOptional<z.ZodString>;
10535
10535
  credentialStoreId: z.ZodString;
@@ -10555,23 +10555,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
10555
10555
  in: {};
10556
10556
  }>;
10557
10557
  declare const ContextConfigInsertSchema: z.ZodObject<{
10558
- id: z.ZodOptional<z.ZodString>;
10559
- projectId: z.ZodString;
10560
10558
  tenantId: z.ZodString;
10559
+ projectId: z.ZodString;
10560
+ id: z.ZodOptional<z.ZodString>;
10561
+ agentId: z.ZodString;
10561
10562
  headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
10562
10563
  contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
10563
- agentId: z.ZodString;
10564
10564
  }, {
10565
10565
  out: {};
10566
10566
  in: {};
10567
10567
  }>;
10568
10568
  declare const ContextConfigUpdateSchema: z.ZodObject<{
10569
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10570
- projectId: z.ZodOptional<z.ZodString>;
10571
10569
  tenantId: z.ZodOptional<z.ZodString>;
10570
+ projectId: z.ZodOptional<z.ZodString>;
10571
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10572
+ agentId: z.ZodOptional<z.ZodString>;
10572
10573
  headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
10573
10574
  contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
10574
- agentId: z.ZodOptional<z.ZodString>;
10575
10575
  }, {
10576
10576
  out: {};
10577
10577
  in: {};
@@ -11055,34 +11055,34 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
11055
11055
  createdAt: z.ZodString;
11056
11056
  updatedAt: z.ZodString;
11057
11057
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
11058
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
11059
- subAgentId: z.ZodString;
11060
11058
  toolId: z.ZodString;
11061
11059
  toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
11060
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
11061
+ subAgentId: z.ZodString;
11062
11062
  }, z.core.$strip>;
11063
11063
  declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
11064
11064
  id: z.ZodString;
11065
11065
  createdAt: z.ZodOptional<z.ZodString>;
11066
11066
  updatedAt: z.ZodOptional<z.ZodString>;
11067
11067
  headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
11068
- selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11069
- subAgentId: z.ZodString;
11070
11068
  toolId: z.ZodString;
11071
11069
  toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
11072
11070
  needsApproval: z.ZodOptional<z.ZodBoolean>;
11073
11071
  }, z.core.$strip>>>>;
11072
+ selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11073
+ subAgentId: z.ZodString;
11074
11074
  }, z.core.$strip>;
11075
11075
  declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
11076
11076
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11077
11077
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11078
11078
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11079
11079
  headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
11080
- selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
11081
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11082
11080
  toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11083
11081
  toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
11084
11082
  needsApproval: z.ZodOptional<z.ZodBoolean>;
11085
11083
  }, z.core.$strip>>>>>>;
11084
+ selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
11085
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11086
11086
  }, z.core.$strip>;
11087
11087
  declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
11088
11088
  createdAt: drizzle_orm_pg_core.PgColumn<{
@@ -11454,8 +11454,8 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
11454
11454
  createdAt: z.ZodString;
11455
11455
  updatedAt: z.ZodString;
11456
11456
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
11457
- subAgentId: z.ZodString;
11458
11457
  externalAgentId: z.ZodString;
11458
+ subAgentId: z.ZodString;
11459
11459
  }, z.core.$strip>;
11460
11460
  declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
11461
11461
  createdAt: z.ZodOptional<z.ZodString>;
@@ -11468,8 +11468,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
11468
11468
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11469
11469
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11470
11470
  headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
11471
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11472
11471
  externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11472
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11473
11473
  }, z.core.$strip>;
11474
11474
  declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
11475
11475
  createdAt: drizzle_orm_pg_core.PgColumn<{
@@ -13199,7 +13199,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod.BuildSchema<"insert", {
13199
13199
  }, {}, {
13200
13200
  length: 256;
13201
13201
  }>;
13202
- }, "type" | "name" | "id" | "createdAt" | "updatedAt" | "metadata" | "description" | "projectId" | "tenantId" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
13202
+ }, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
13203
13203
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
13204
13204
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13205
13205
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -13224,16 +13224,16 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
13224
13224
  in: {};
13225
13225
  }>;
13226
13226
  declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
13227
+ id: z.ZodString;
13227
13228
  type: z.ZodString;
13228
13229
  name: z.ZodNullable<z.ZodString>;
13229
- id: z.ZodString;
13230
+ description: z.ZodNullable<z.ZodString>;
13230
13231
  createdAt: z.ZodString;
13231
13232
  updatedAt: z.ZodString;
13232
13233
  metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
13233
- description: z.ZodNullable<z.ZodString>;
13234
+ taskId: z.ZodString;
13234
13235
  contextId: z.ZodString;
13235
13236
  visibility: z.ZodNullable<z.ZodString>;
13236
- taskId: z.ZodString;
13237
13237
  toolCallId: z.ZodNullable<z.ZodString>;
13238
13238
  parts: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
13239
13239
  summary: z.ZodNullable<z.ZodString>;
@@ -13242,16 +13242,16 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
13242
13242
  derivedFrom: z.ZodNullable<z.ZodString>;
13243
13243
  }, z.core.$strip>;
13244
13244
  declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
13245
+ id: z.ZodString;
13245
13246
  type: z.ZodOptional<z.ZodString>;
13246
13247
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13247
- id: z.ZodString;
13248
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13248
13249
  createdAt: z.ZodOptional<z.ZodString>;
13249
13250
  updatedAt: z.ZodOptional<z.ZodString>;
13250
13251
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
13251
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13252
+ taskId: z.ZodString;
13252
13253
  contextId: z.ZodString;
13253
13254
  visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13254
- taskId: z.ZodString;
13255
13255
  toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13256
13256
  parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
13257
13257
  summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -13260,16 +13260,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
13260
13260
  derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13261
13261
  }, z.core.$strip>;
13262
13262
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
13263
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13263
13264
  type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13264
13265
  name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13265
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13266
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13266
13267
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13267
13268
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13268
13269
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
13269
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13270
+ taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13270
13271
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13271
13272
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13272
- taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13273
13273
  toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
13274
13274
  parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
13275
13275
  summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -13326,11 +13326,11 @@ declare const TeamAgentSchema: z.ZodObject<{
13326
13326
  description: z.ZodString;
13327
13327
  }, z.core.$strip>;
13328
13328
  declare const FullAgentAgentInsertSchema: z.ZodObject<{
13329
- name: z.ZodString;
13330
13329
  id: z.ZodString;
13330
+ name: z.ZodString;
13331
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13331
13332
  createdAt: z.ZodOptional<z.ZodString>;
13332
13333
  updatedAt: z.ZodOptional<z.ZodString>;
13333
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13334
13334
  models: z.ZodOptional<z.ZodObject<{
13335
13335
  base: z.ZodOptional<z.ZodObject<{
13336
13336
  model: z.ZodOptional<z.ZodString>;
@@ -13381,18 +13381,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
13381
13381
  }, z.core.$strip>;
13382
13382
  declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
13383
13383
  name: z.ZodString;
13384
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13384
13385
  createdAt: z.ZodOptional<z.ZodString>;
13385
13386
  updatedAt: z.ZodOptional<z.ZodString>;
13386
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13387
13387
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13388
13388
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13389
13389
  id: z.ZodString;
13390
13390
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
13391
- name: z.ZodString;
13392
13391
  id: z.ZodString;
13392
+ name: z.ZodString;
13393
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13393
13394
  createdAt: z.ZodOptional<z.ZodString>;
13394
13395
  updatedAt: z.ZodOptional<z.ZodString>;
13395
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13396
13396
  models: z.ZodOptional<z.ZodObject<{
13397
13397
  base: z.ZodOptional<z.ZodObject<{
13398
13398
  model: z.ZodOptional<z.ZodString>;
@@ -13442,12 +13442,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
13442
13442
  }, z.core.$strip>]>>>;
13443
13443
  }, z.core.$strip>>;
13444
13444
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13445
- name: z.ZodString;
13446
13445
  id: z.ZodString;
13447
- createdAt: z.ZodOptional<z.ZodString>;
13448
- updatedAt: z.ZodOptional<z.ZodString>;
13446
+ name: z.ZodString;
13449
13447
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13450
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13451
13448
  config: z.ZodObject<{
13452
13449
  type: z.ZodLiteral<"mcp">;
13453
13450
  mcp: z.ZodObject<{
@@ -13467,18 +13464,21 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
13467
13464
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
13468
13465
  }, z.core.$strip>;
13469
13466
  }, z.core.$strip>;
13470
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13471
13467
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13468
+ createdAt: z.ZodOptional<z.ZodString>;
13469
+ updatedAt: z.ZodOptional<z.ZodString>;
13470
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13471
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13472
13472
  imageUrl: z.ZodOptional<z.ZodString>;
13473
13473
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13474
13474
  }, z.core.$strip>>>;
13475
13475
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13476
- name: z.ZodString;
13477
13476
  id: z.ZodString;
13478
- createdAt: z.ZodOptional<z.ZodString>;
13479
- updatedAt: z.ZodOptional<z.ZodString>;
13477
+ name: z.ZodString;
13480
13478
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13481
13479
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13480
+ createdAt: z.ZodOptional<z.ZodString>;
13481
+ updatedAt: z.ZodOptional<z.ZodString>;
13482
13482
  baseUrl: z.ZodString;
13483
13483
  }, z.core.$strip>>>;
13484
13484
  teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -13487,11 +13487,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
13487
13487
  description: z.ZodString;
13488
13488
  }, z.core.$strip>>>;
13489
13489
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13490
- name: z.ZodString;
13491
13490
  id: z.ZodString;
13491
+ name: z.ZodString;
13492
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13492
13493
  createdAt: z.ZodOptional<z.ZodString>;
13493
13494
  updatedAt: z.ZodOptional<z.ZodString>;
13494
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13495
13495
  functionId: z.ZodString;
13496
13496
  }, z.core.$strip>>>;
13497
13497
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -13601,10 +13601,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
13601
13601
  in: {};
13602
13602
  }>;
13603
13603
  declare const ProjectInsertSchema: z.ZodObject<{
13604
- name: z.ZodString;
13604
+ tenantId: z.ZodString;
13605
13605
  id: z.ZodString;
13606
+ name: z.ZodString;
13606
13607
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13607
- tenantId: z.ZodString;
13608
13608
  models: z.ZodObject<{
13609
13609
  base: z.ZodObject<{
13610
13610
  model: z.ZodOptional<z.ZodString>;
@@ -13653,11 +13653,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
13653
13653
  in: {};
13654
13654
  }>;
13655
13655
  declare const ProjectApiSelectSchema: z.ZodObject<{
13656
- name: z.ZodString;
13657
13656
  id: z.ZodString;
13657
+ name: z.ZodString;
13658
+ description: z.ZodNullable<z.ZodString>;
13658
13659
  createdAt: z.ZodString;
13659
13660
  updatedAt: z.ZodString;
13660
- description: z.ZodNullable<z.ZodString>;
13661
13661
  models: z.ZodNullable<z.ZodObject<{
13662
13662
  base: z.ZodObject<{
13663
13663
  model: z.ZodOptional<z.ZodString>;
@@ -13681,8 +13681,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
13681
13681
  in: {};
13682
13682
  }>;
13683
13683
  declare const ProjectApiInsertSchema: z.ZodObject<{
13684
- name: z.ZodString;
13685
13684
  id: z.ZodString;
13685
+ name: z.ZodString;
13686
13686
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13687
13687
  models: z.ZodObject<{
13688
13688
  base: z.ZodObject<{
@@ -13732,8 +13732,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
13732
13732
  in: {};
13733
13733
  }>;
13734
13734
  declare const FullProjectDefinitionSchema: z.ZodObject<{
13735
- name: z.ZodString;
13736
13735
  id: z.ZodString;
13736
+ name: z.ZodString;
13737
13737
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13738
13738
  models: z.ZodObject<{
13739
13739
  base: z.ZodObject<{
@@ -13755,18 +13755,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13755
13755
  }, z.core.$strip>>;
13756
13756
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
13757
13757
  name: z.ZodString;
13758
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13758
13759
  createdAt: z.ZodOptional<z.ZodString>;
13759
13760
  updatedAt: z.ZodOptional<z.ZodString>;
13760
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13761
13761
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13762
13762
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13763
13763
  id: z.ZodString;
13764
13764
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
13765
- name: z.ZodString;
13766
13765
  id: z.ZodString;
13766
+ name: z.ZodString;
13767
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13767
13768
  createdAt: z.ZodOptional<z.ZodString>;
13768
13769
  updatedAt: z.ZodOptional<z.ZodString>;
13769
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13770
13770
  models: z.ZodOptional<z.ZodObject<{
13771
13771
  base: z.ZodOptional<z.ZodObject<{
13772
13772
  model: z.ZodOptional<z.ZodString>;
@@ -13816,12 +13816,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13816
13816
  }, z.core.$strip>]>>>;
13817
13817
  }, z.core.$strip>>;
13818
13818
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13819
- name: z.ZodString;
13820
13819
  id: z.ZodString;
13821
- createdAt: z.ZodOptional<z.ZodString>;
13822
- updatedAt: z.ZodOptional<z.ZodString>;
13820
+ name: z.ZodString;
13823
13821
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13824
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13825
13822
  config: z.ZodObject<{
13826
13823
  type: z.ZodLiteral<"mcp">;
13827
13824
  mcp: z.ZodObject<{
@@ -13841,18 +13838,21 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13841
13838
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
13842
13839
  }, z.core.$strip>;
13843
13840
  }, z.core.$strip>;
13844
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13845
13841
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13842
+ createdAt: z.ZodOptional<z.ZodString>;
13843
+ updatedAt: z.ZodOptional<z.ZodString>;
13844
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13845
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13846
13846
  imageUrl: z.ZodOptional<z.ZodString>;
13847
13847
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13848
13848
  }, z.core.$strip>>>;
13849
13849
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13850
- name: z.ZodString;
13851
13850
  id: z.ZodString;
13852
- createdAt: z.ZodOptional<z.ZodString>;
13853
- updatedAt: z.ZodOptional<z.ZodString>;
13851
+ name: z.ZodString;
13854
13852
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13855
13853
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13854
+ createdAt: z.ZodOptional<z.ZodString>;
13855
+ updatedAt: z.ZodOptional<z.ZodString>;
13856
13856
  baseUrl: z.ZodString;
13857
13857
  }, z.core.$strip>>>;
13858
13858
  teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -13861,11 +13861,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13861
13861
  description: z.ZodString;
13862
13862
  }, z.core.$strip>>>;
13863
13863
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13864
- name: z.ZodString;
13865
13864
  id: z.ZodString;
13865
+ name: z.ZodString;
13866
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13866
13867
  createdAt: z.ZodOptional<z.ZodString>;
13867
13868
  updatedAt: z.ZodOptional<z.ZodString>;
13868
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13869
13869
  functionId: z.ZodString;
13870
13870
  }, z.core.$strip>>>;
13871
13871
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -13916,12 +13916,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13916
13916
  prompt: z.ZodOptional<z.ZodString>;
13917
13917
  }, z.core.$strip>>;
13918
13918
  tools: z.ZodRecord<z.ZodString, z.ZodObject<{
13919
- name: z.ZodString;
13920
13919
  id: z.ZodString;
13921
- createdAt: z.ZodOptional<z.ZodString>;
13922
- updatedAt: z.ZodOptional<z.ZodString>;
13920
+ name: z.ZodString;
13923
13921
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13924
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13925
13922
  config: z.ZodObject<{
13926
13923
  type: z.ZodLiteral<"mcp">;
13927
13924
  mcp: z.ZodObject<{
@@ -13941,17 +13938,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13941
13938
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
13942
13939
  }, z.core.$strip>;
13943
13940
  }, z.core.$strip>;
13944
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13945
13941
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13942
+ createdAt: z.ZodOptional<z.ZodString>;
13943
+ updatedAt: z.ZodOptional<z.ZodString>;
13944
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13945
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
13946
13946
  imageUrl: z.ZodOptional<z.ZodString>;
13947
13947
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13948
13948
  }, z.core.$strip>>;
13949
13949
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13950
- name: z.ZodString;
13951
13950
  id: z.ZodString;
13951
+ name: z.ZodString;
13952
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13952
13953
  createdAt: z.ZodOptional<z.ZodString>;
13953
13954
  updatedAt: z.ZodOptional<z.ZodString>;
13954
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13955
13955
  functionId: z.ZodString;
13956
13956
  }, z.core.$strip>>>;
13957
13957
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -13963,11 +13963,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13963
13963
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
13964
13964
  }, z.core.$strip>>>;
13965
13965
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13966
- name: z.ZodString;
13967
13966
  id: z.ZodString;
13967
+ name: z.ZodString;
13968
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13968
13969
  createdAt: z.ZodOptional<z.ZodString>;
13969
13970
  updatedAt: z.ZodOptional<z.ZodString>;
13970
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13971
13971
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
13972
13972
  render: z.ZodOptional<z.ZodNullable<z.ZodType<{
13973
13973
  component: string;
@@ -13984,8 +13984,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13984
13984
  }>>>>;
13985
13985
  }, z.core.$strip>>>;
13986
13986
  artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13987
- name: z.ZodString;
13988
13987
  id: z.ZodString;
13988
+ name: z.ZodString;
13989
13989
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13990
13990
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
13991
13991
  }, {
@@ -13993,12 +13993,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
13993
13993
  in: {};
13994
13994
  }>>>;
13995
13995
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13996
- name: z.ZodString;
13997
13996
  id: z.ZodString;
13998
- createdAt: z.ZodOptional<z.ZodString>;
13999
- updatedAt: z.ZodOptional<z.ZodString>;
13997
+ name: z.ZodString;
14000
13998
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14001
13999
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14000
+ createdAt: z.ZodOptional<z.ZodString>;
14001
+ updatedAt: z.ZodOptional<z.ZodString>;
14002
14002
  baseUrl: z.ZodString;
14003
14003
  }, z.core.$strip>>>;
14004
14004
  statusUpdates: z.ZodOptional<z.ZodObject<{
@@ -14017,8 +14017,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
14017
14017
  }, z.core.$strip>>>;
14018
14018
  }, z.core.$strip>>;
14019
14019
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
14020
- name: z.ZodString;
14021
14020
  id: z.ZodString;
14021
+ name: z.ZodString;
14022
14022
  createdAt: z.ZodOptional<z.ZodString>;
14023
14023
  updatedAt: z.ZodOptional<z.ZodString>;
14024
14024
  credentialStoreId: z.ZodString;
@@ -14037,11 +14037,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
14037
14037
  }>;
14038
14038
  declare const ProjectResponse: z.ZodObject<{
14039
14039
  data: z.ZodObject<{
14040
- name: z.ZodString;
14041
14040
  id: z.ZodString;
14041
+ name: z.ZodString;
14042
+ description: z.ZodNullable<z.ZodString>;
14042
14043
  createdAt: z.ZodString;
14043
14044
  updatedAt: z.ZodString;
14044
- description: z.ZodNullable<z.ZodString>;
14045
14045
  models: z.ZodNullable<z.ZodObject<{
14046
14046
  base: z.ZodObject<{
14047
14047
  model: z.ZodOptional<z.ZodString>;
@@ -14067,11 +14067,12 @@ declare const ProjectResponse: z.ZodObject<{
14067
14067
  }, z.core.$strip>;
14068
14068
  declare const SubAgentResponse: z.ZodObject<{
14069
14069
  data: z.ZodObject<{
14070
- name: z.ZodString;
14071
14070
  id: z.ZodString;
14071
+ name: z.ZodString;
14072
+ description: z.ZodNullable<z.ZodString>;
14073
+ prompt: z.ZodNullable<z.ZodString>;
14072
14074
  createdAt: z.ZodString;
14073
14075
  updatedAt: z.ZodString;
14074
- description: z.ZodNullable<z.ZodString>;
14075
14076
  models: z.ZodNullable<z.ZodType<{
14076
14077
  base?: {
14077
14078
  model?: string | undefined;
@@ -14134,17 +14135,17 @@ declare const SubAgentResponse: z.ZodObject<{
14134
14135
  }, {
14135
14136
  stepCountIs?: number | undefined;
14136
14137
  }>>>;
14137
- prompt: z.ZodNullable<z.ZodString>;
14138
14138
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
14139
14139
  }, z.core.$strip>;
14140
14140
  }, z.core.$strip>;
14141
14141
  declare const AgentResponse: z.ZodObject<{
14142
14142
  data: z.ZodObject<{
14143
- name: z.ZodString;
14144
14143
  id: z.ZodString;
14144
+ name: z.ZodString;
14145
+ description: z.ZodNullable<z.ZodString>;
14146
+ prompt: z.ZodNullable<z.ZodString>;
14145
14147
  createdAt: z.ZodString;
14146
14148
  updatedAt: z.ZodString;
14147
- description: z.ZodNullable<z.ZodString>;
14148
14149
  models: z.ZodNullable<z.ZodType<{
14149
14150
  base?: {
14150
14151
  model?: string | undefined;
@@ -14209,7 +14210,6 @@ declare const AgentResponse: z.ZodObject<{
14209
14210
  }>>>;
14210
14211
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
14211
14212
  contextConfigId: z.ZodNullable<z.ZodString>;
14212
- prompt: z.ZodNullable<z.ZodString>;
14213
14213
  statusUpdates: z.ZodNullable<z.ZodType<{
14214
14214
  enabled?: boolean | undefined;
14215
14215
  numEvents?: number | undefined;
@@ -14271,12 +14271,9 @@ declare const AgentResponse: z.ZodObject<{
14271
14271
  }, z.core.$strip>;
14272
14272
  declare const ToolResponse: z.ZodObject<{
14273
14273
  data: z.ZodObject<{
14274
- name: z.ZodString;
14275
14274
  id: z.ZodString;
14276
- createdAt: z.ZodString;
14277
- updatedAt: z.ZodString;
14275
+ name: z.ZodString;
14278
14276
  description: z.ZodNullable<z.ZodString>;
14279
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
14280
14277
  config: z.ZodType<{
14281
14278
  type: "mcp";
14282
14279
  mcp: ToolMcpConfig;
@@ -14290,20 +14287,23 @@ declare const ToolResponse: z.ZodObject<{
14290
14287
  type: "mcp";
14291
14288
  mcp: ToolMcpConfig;
14292
14289
  }>>;
14293
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
14294
14290
  credentialReferenceId: z.ZodNullable<z.ZodString>;
14291
+ createdAt: z.ZodString;
14292
+ updatedAt: z.ZodString;
14293
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
14294
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
14295
14295
  imageUrl: z.ZodNullable<z.ZodString>;
14296
14296
  lastError: z.ZodNullable<z.ZodString>;
14297
14297
  }, z.core.$strip>;
14298
14298
  }, z.core.$strip>;
14299
14299
  declare const ExternalAgentResponse: z.ZodObject<{
14300
14300
  data: z.ZodObject<{
14301
- name: z.ZodString;
14302
14301
  id: z.ZodString;
14303
- createdAt: z.ZodString;
14304
- updatedAt: z.ZodString;
14302
+ name: z.ZodString;
14305
14303
  description: z.ZodNullable<z.ZodString>;
14306
14304
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14305
+ createdAt: z.ZodString;
14306
+ updatedAt: z.ZodString;
14307
14307
  baseUrl: z.ZodString;
14308
14308
  }, z.core.$strip>;
14309
14309
  }, z.core.$strip>;
@@ -14318,15 +14318,15 @@ declare const ContextConfigResponse: z.ZodObject<{
14318
14318
  }, z.core.$strip>;
14319
14319
  declare const ApiKeyResponse: z.ZodObject<{
14320
14320
  data: z.ZodObject<{
14321
- name: z.ZodNullable<z.ZodString>;
14322
14321
  id: z.ZodString;
14323
- createdAt: z.ZodString;
14324
- updatedAt: z.ZodString;
14325
- expiresAt: z.ZodNullable<z.ZodString>;
14322
+ name: z.ZodNullable<z.ZodString>;
14326
14323
  agentId: z.ZodString;
14327
14324
  publicId: z.ZodString;
14328
14325
  keyPrefix: z.ZodString;
14329
14326
  lastUsedAt: z.ZodNullable<z.ZodString>;
14327
+ expiresAt: z.ZodNullable<z.ZodString>;
14328
+ createdAt: z.ZodString;
14329
+ updatedAt: z.ZodString;
14330
14330
  }, {
14331
14331
  out: {};
14332
14332
  in: {};
@@ -14334,8 +14334,8 @@ declare const ApiKeyResponse: z.ZodObject<{
14334
14334
  }, z.core.$strip>;
14335
14335
  declare const CredentialReferenceResponse: z.ZodObject<{
14336
14336
  data: z.ZodObject<{
14337
- name: z.ZodString;
14338
14337
  id: z.ZodString;
14338
+ name: z.ZodString;
14339
14339
  createdAt: z.ZodString;
14340
14340
  updatedAt: z.ZodString;
14341
14341
  credentialStoreId: z.ZodString;
@@ -14862,22 +14862,22 @@ declare const FunctionResponse: z.ZodObject<{
14862
14862
  }, z.core.$strip>;
14863
14863
  declare const FunctionToolResponse: z.ZodObject<{
14864
14864
  data: z.ZodObject<{
14865
- name: z.ZodString;
14866
14865
  id: z.ZodString;
14867
- createdAt: z.ZodString;
14868
- updatedAt: z.ZodString;
14866
+ name: z.ZodString;
14869
14867
  description: z.ZodNullable<z.ZodString>;
14870
14868
  agentId: z.ZodString;
14869
+ createdAt: z.ZodString;
14870
+ updatedAt: z.ZodString;
14871
14871
  functionId: z.ZodString;
14872
14872
  }, z.core.$strip>;
14873
14873
  }, z.core.$strip>;
14874
14874
  declare const DataComponentResponse: z.ZodObject<{
14875
14875
  data: z.ZodObject<{
14876
- name: z.ZodString;
14877
14876
  id: z.ZodString;
14877
+ name: z.ZodString;
14878
+ description: z.ZodNullable<z.ZodString>;
14878
14879
  createdAt: z.ZodString;
14879
14880
  updatedAt: z.ZodString;
14880
- description: z.ZodNullable<z.ZodString>;
14881
14881
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
14882
14882
  render: z.ZodNullable<z.ZodType<{
14883
14883
  component: string;
@@ -14896,11 +14896,11 @@ declare const DataComponentResponse: z.ZodObject<{
14896
14896
  }, z.core.$strip>;
14897
14897
  declare const ArtifactComponentResponse: z.ZodObject<{
14898
14898
  data: z.ZodObject<{
14899
- name: z.ZodString;
14900
14899
  id: z.ZodString;
14900
+ name: z.ZodString;
14901
+ description: z.ZodNullable<z.ZodString>;
14901
14902
  createdAt: z.ZodString;
14902
14903
  updatedAt: z.ZodString;
14903
- description: z.ZodNullable<z.ZodString>;
14904
14904
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
14905
14905
  }, z.core.$strip>;
14906
14906
  }, z.core.$strip>;
@@ -14920,20 +14920,20 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
14920
14920
  createdAt: z.ZodString;
14921
14921
  updatedAt: z.ZodString;
14922
14922
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
14923
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
14924
- subAgentId: z.ZodString;
14925
14923
  toolId: z.ZodString;
14926
14924
  toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
14925
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
14926
+ subAgentId: z.ZodString;
14927
14927
  }, z.core.$strip>;
14928
14928
  }, z.core.$strip>;
14929
14929
  declare const ConversationResponse: z.ZodObject<{
14930
14930
  data: z.ZodObject<{
14931
14931
  id: z.ZodString;
14932
+ title: z.ZodNullable<z.ZodString>;
14932
14933
  createdAt: z.ZodString;
14933
14934
  updatedAt: z.ZodString;
14934
- userId: z.ZodNullable<z.ZodString>;
14935
14935
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
14936
- title: z.ZodNullable<z.ZodString>;
14936
+ userId: z.ZodNullable<z.ZodString>;
14937
14937
  activeSubAgentId: z.ZodString;
14938
14938
  lastContextResolution: z.ZodNullable<z.ZodString>;
14939
14939
  }, z.core.$strip>;
@@ -14944,8 +14944,9 @@ declare const MessageResponse: z.ZodObject<{
14944
14944
  createdAt: z.ZodString;
14945
14945
  updatedAt: z.ZodString;
14946
14946
  metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
14947
- role: z.ZodString;
14948
14947
  content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
14948
+ role: z.ZodString;
14949
+ taskId: z.ZodNullable<z.ZodString>;
14949
14950
  conversationId: z.ZodString;
14950
14951
  fromSubAgentId: z.ZodNullable<z.ZodString>;
14951
14952
  toSubAgentId: z.ZodNullable<z.ZodString>;
@@ -14955,7 +14956,6 @@ declare const MessageResponse: z.ZodObject<{
14955
14956
  toTeamAgentId: z.ZodNullable<z.ZodString>;
14956
14957
  visibility: z.ZodString;
14957
14958
  messageType: z.ZodString;
14958
- taskId: z.ZodNullable<z.ZodString>;
14959
14959
  parentMessageId: z.ZodNullable<z.ZodString>;
14960
14960
  a2aTaskId: z.ZodNullable<z.ZodString>;
14961
14961
  a2aSessionId: z.ZodNullable<z.ZodString>;
@@ -14963,11 +14963,11 @@ declare const MessageResponse: z.ZodObject<{
14963
14963
  }, z.core.$strip>;
14964
14964
  declare const ProjectListResponse: z.ZodObject<{
14965
14965
  data: z.ZodArray<z.ZodObject<{
14966
- name: z.ZodString;
14967
14966
  id: z.ZodString;
14967
+ name: z.ZodString;
14968
+ description: z.ZodNullable<z.ZodString>;
14968
14969
  createdAt: z.ZodString;
14969
14970
  updatedAt: z.ZodString;
14970
- description: z.ZodNullable<z.ZodString>;
14971
14971
  models: z.ZodNullable<z.ZodObject<{
14972
14972
  base: z.ZodObject<{
14973
14973
  model: z.ZodOptional<z.ZodString>;
@@ -14999,11 +14999,12 @@ declare const ProjectListResponse: z.ZodObject<{
14999
14999
  }, z.core.$strip>;
15000
15000
  declare const SubAgentListResponse: z.ZodObject<{
15001
15001
  data: z.ZodArray<z.ZodObject<{
15002
- name: z.ZodString;
15003
15002
  id: z.ZodString;
15003
+ name: z.ZodString;
15004
+ description: z.ZodNullable<z.ZodString>;
15005
+ prompt: z.ZodNullable<z.ZodString>;
15004
15006
  createdAt: z.ZodString;
15005
15007
  updatedAt: z.ZodString;
15006
- description: z.ZodNullable<z.ZodString>;
15007
15008
  models: z.ZodNullable<z.ZodType<{
15008
15009
  base?: {
15009
15010
  model?: string | undefined;
@@ -15066,7 +15067,6 @@ declare const SubAgentListResponse: z.ZodObject<{
15066
15067
  }, {
15067
15068
  stepCountIs?: number | undefined;
15068
15069
  }>>>;
15069
- prompt: z.ZodNullable<z.ZodString>;
15070
15070
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
15071
15071
  }, z.core.$strip>>;
15072
15072
  pagination: z.ZodObject<{
@@ -15078,11 +15078,12 @@ declare const SubAgentListResponse: z.ZodObject<{
15078
15078
  }, z.core.$strip>;
15079
15079
  declare const AgentListResponse: z.ZodObject<{
15080
15080
  data: z.ZodArray<z.ZodObject<{
15081
- name: z.ZodString;
15082
15081
  id: z.ZodString;
15082
+ name: z.ZodString;
15083
+ description: z.ZodNullable<z.ZodString>;
15084
+ prompt: z.ZodNullable<z.ZodString>;
15083
15085
  createdAt: z.ZodString;
15084
15086
  updatedAt: z.ZodString;
15085
- description: z.ZodNullable<z.ZodString>;
15086
15087
  models: z.ZodNullable<z.ZodType<{
15087
15088
  base?: {
15088
15089
  model?: string | undefined;
@@ -15147,7 +15148,6 @@ declare const AgentListResponse: z.ZodObject<{
15147
15148
  }>>>;
15148
15149
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
15149
15150
  contextConfigId: z.ZodNullable<z.ZodString>;
15150
- prompt: z.ZodNullable<z.ZodString>;
15151
15151
  statusUpdates: z.ZodNullable<z.ZodType<{
15152
15152
  enabled?: boolean | undefined;
15153
15153
  numEvents?: number | undefined;
@@ -15215,12 +15215,9 @@ declare const AgentListResponse: z.ZodObject<{
15215
15215
  }, z.core.$strip>;
15216
15216
  declare const ToolListResponse: z.ZodObject<{
15217
15217
  data: z.ZodArray<z.ZodObject<{
15218
- name: z.ZodString;
15219
15218
  id: z.ZodString;
15220
- createdAt: z.ZodString;
15221
- updatedAt: z.ZodString;
15219
+ name: z.ZodString;
15222
15220
  description: z.ZodNullable<z.ZodString>;
15223
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
15224
15221
  config: z.ZodType<{
15225
15222
  type: "mcp";
15226
15223
  mcp: ToolMcpConfig;
@@ -15234,8 +15231,11 @@ declare const ToolListResponse: z.ZodObject<{
15234
15231
  type: "mcp";
15235
15232
  mcp: ToolMcpConfig;
15236
15233
  }>>;
15237
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
15238
15234
  credentialReferenceId: z.ZodNullable<z.ZodString>;
15235
+ createdAt: z.ZodString;
15236
+ updatedAt: z.ZodString;
15237
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
15238
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
15239
15239
  imageUrl: z.ZodNullable<z.ZodString>;
15240
15240
  lastError: z.ZodNullable<z.ZodString>;
15241
15241
  }, z.core.$strip>>;
@@ -15248,12 +15248,12 @@ declare const ToolListResponse: z.ZodObject<{
15248
15248
  }, z.core.$strip>;
15249
15249
  declare const ExternalAgentListResponse: z.ZodObject<{
15250
15250
  data: z.ZodArray<z.ZodObject<{
15251
- name: z.ZodString;
15252
15251
  id: z.ZodString;
15253
- createdAt: z.ZodString;
15254
- updatedAt: z.ZodString;
15252
+ name: z.ZodString;
15255
15253
  description: z.ZodNullable<z.ZodString>;
15256
15254
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15255
+ createdAt: z.ZodString;
15256
+ updatedAt: z.ZodString;
15257
15257
  baseUrl: z.ZodString;
15258
15258
  }, z.core.$strip>>;
15259
15259
  pagination: z.ZodObject<{
@@ -15280,15 +15280,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
15280
15280
  }, z.core.$strip>;
15281
15281
  declare const ApiKeyListResponse: z.ZodObject<{
15282
15282
  data: z.ZodArray<z.ZodObject<{
15283
- name: z.ZodNullable<z.ZodString>;
15284
15283
  id: z.ZodString;
15285
- createdAt: z.ZodString;
15286
- updatedAt: z.ZodString;
15287
- expiresAt: z.ZodNullable<z.ZodString>;
15284
+ name: z.ZodNullable<z.ZodString>;
15288
15285
  agentId: z.ZodString;
15289
15286
  publicId: z.ZodString;
15290
15287
  keyPrefix: z.ZodString;
15291
15288
  lastUsedAt: z.ZodNullable<z.ZodString>;
15289
+ expiresAt: z.ZodNullable<z.ZodString>;
15290
+ createdAt: z.ZodString;
15291
+ updatedAt: z.ZodString;
15292
15292
  }, {
15293
15293
  out: {};
15294
15294
  in: {};
@@ -15302,8 +15302,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
15302
15302
  }, z.core.$strip>;
15303
15303
  declare const CredentialReferenceListResponse: z.ZodObject<{
15304
15304
  data: z.ZodArray<z.ZodObject<{
15305
- name: z.ZodString;
15306
15305
  id: z.ZodString;
15306
+ name: z.ZodString;
15307
15307
  createdAt: z.ZodString;
15308
15308
  updatedAt: z.ZodString;
15309
15309
  credentialStoreId: z.ZodString;
@@ -15842,12 +15842,12 @@ declare const FunctionListResponse: z.ZodObject<{
15842
15842
  }, z.core.$strip>;
15843
15843
  declare const FunctionToolListResponse: z.ZodObject<{
15844
15844
  data: z.ZodArray<z.ZodObject<{
15845
- name: z.ZodString;
15846
15845
  id: z.ZodString;
15847
- createdAt: z.ZodString;
15848
- updatedAt: z.ZodString;
15846
+ name: z.ZodString;
15849
15847
  description: z.ZodNullable<z.ZodString>;
15850
15848
  agentId: z.ZodString;
15849
+ createdAt: z.ZodString;
15850
+ updatedAt: z.ZodString;
15851
15851
  functionId: z.ZodString;
15852
15852
  }, z.core.$strip>>;
15853
15853
  pagination: z.ZodObject<{
@@ -15859,11 +15859,11 @@ declare const FunctionToolListResponse: z.ZodObject<{
15859
15859
  }, z.core.$strip>;
15860
15860
  declare const DataComponentListResponse: z.ZodObject<{
15861
15861
  data: z.ZodArray<z.ZodObject<{
15862
- name: z.ZodString;
15863
15862
  id: z.ZodString;
15863
+ name: z.ZodString;
15864
+ description: z.ZodNullable<z.ZodString>;
15864
15865
  createdAt: z.ZodString;
15865
15866
  updatedAt: z.ZodString;
15866
- description: z.ZodNullable<z.ZodString>;
15867
15867
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
15868
15868
  render: z.ZodNullable<z.ZodType<{
15869
15869
  component: string;
@@ -15888,11 +15888,11 @@ declare const DataComponentListResponse: z.ZodObject<{
15888
15888
  }, z.core.$strip>;
15889
15889
  declare const ArtifactComponentListResponse: z.ZodObject<{
15890
15890
  data: z.ZodArray<z.ZodObject<{
15891
- name: z.ZodString;
15892
15891
  id: z.ZodString;
15892
+ name: z.ZodString;
15893
+ description: z.ZodNullable<z.ZodString>;
15893
15894
  createdAt: z.ZodString;
15894
15895
  updatedAt: z.ZodString;
15895
- description: z.ZodNullable<z.ZodString>;
15896
15896
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
15897
15897
  }, z.core.$strip>>;
15898
15898
  pagination: z.ZodObject<{
@@ -15924,10 +15924,10 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
15924
15924
  createdAt: z.ZodString;
15925
15925
  updatedAt: z.ZodString;
15926
15926
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
15927
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
15928
- subAgentId: z.ZodString;
15929
15927
  toolId: z.ZodString;
15930
15928
  toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
15929
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
15930
+ subAgentId: z.ZodString;
15931
15931
  }, z.core.$strip>>;
15932
15932
  pagination: z.ZodObject<{
15933
15933
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -15939,11 +15939,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
15939
15939
  declare const ConversationListResponse: z.ZodObject<{
15940
15940
  data: z.ZodArray<z.ZodObject<{
15941
15941
  id: z.ZodString;
15942
+ title: z.ZodNullable<z.ZodString>;
15942
15943
  createdAt: z.ZodString;
15943
15944
  updatedAt: z.ZodString;
15944
- userId: z.ZodNullable<z.ZodString>;
15945
15945
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
15946
- title: z.ZodNullable<z.ZodString>;
15946
+ userId: z.ZodNullable<z.ZodString>;
15947
15947
  activeSubAgentId: z.ZodString;
15948
15948
  lastContextResolution: z.ZodNullable<z.ZodString>;
15949
15949
  }, z.core.$strip>>;
@@ -15960,8 +15960,9 @@ declare const MessageListResponse: z.ZodObject<{
15960
15960
  createdAt: z.ZodString;
15961
15961
  updatedAt: z.ZodString;
15962
15962
  metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
15963
- role: z.ZodString;
15964
15963
  content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
15964
+ role: z.ZodString;
15965
+ taskId: z.ZodNullable<z.ZodString>;
15965
15966
  conversationId: z.ZodString;
15966
15967
  fromSubAgentId: z.ZodNullable<z.ZodString>;
15967
15968
  toSubAgentId: z.ZodNullable<z.ZodString>;
@@ -15971,7 +15972,6 @@ declare const MessageListResponse: z.ZodObject<{
15971
15972
  toTeamAgentId: z.ZodNullable<z.ZodString>;
15972
15973
  visibility: z.ZodString;
15973
15974
  messageType: z.ZodString;
15974
- taskId: z.ZodNullable<z.ZodString>;
15975
15975
  parentMessageId: z.ZodNullable<z.ZodString>;
15976
15976
  a2aTaskId: z.ZodNullable<z.ZodString>;
15977
15977
  a2aSessionId: z.ZodNullable<z.ZodString>;
@@ -16029,8 +16029,8 @@ declare const SubAgentArtifactComponentListResponse: z.ZodObject<{
16029
16029
  }, z.core.$strip>;
16030
16030
  declare const FullProjectDefinitionResponse: z.ZodObject<{
16031
16031
  data: z.ZodObject<{
16032
- name: z.ZodString;
16033
16032
  id: z.ZodString;
16033
+ name: z.ZodString;
16034
16034
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16035
16035
  models: z.ZodObject<{
16036
16036
  base: z.ZodObject<{
@@ -16052,18 +16052,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16052
16052
  }, z.core.$strip>>;
16053
16053
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
16054
16054
  name: z.ZodString;
16055
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16055
16056
  createdAt: z.ZodOptional<z.ZodString>;
16056
16057
  updatedAt: z.ZodOptional<z.ZodString>;
16057
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16058
16058
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16059
16059
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16060
16060
  id: z.ZodString;
16061
16061
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
16062
- name: z.ZodString;
16063
16062
  id: z.ZodString;
16063
+ name: z.ZodString;
16064
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16064
16065
  createdAt: z.ZodOptional<z.ZodString>;
16065
16066
  updatedAt: z.ZodOptional<z.ZodString>;
16066
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16067
16067
  models: z.ZodOptional<z.ZodObject<{
16068
16068
  base: z.ZodOptional<z.ZodObject<{
16069
16069
  model: z.ZodOptional<z.ZodString>;
@@ -16113,12 +16113,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16113
16113
  }, z.core.$strip>]>>>;
16114
16114
  }, z.core.$strip>>;
16115
16115
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16116
- name: z.ZodString;
16117
16116
  id: z.ZodString;
16118
- createdAt: z.ZodOptional<z.ZodString>;
16119
- updatedAt: z.ZodOptional<z.ZodString>;
16117
+ name: z.ZodString;
16120
16118
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16121
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16122
16119
  config: z.ZodObject<{
16123
16120
  type: z.ZodLiteral<"mcp">;
16124
16121
  mcp: z.ZodObject<{
@@ -16138,18 +16135,21 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16138
16135
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
16139
16136
  }, z.core.$strip>;
16140
16137
  }, z.core.$strip>;
16141
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16142
16138
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16139
+ createdAt: z.ZodOptional<z.ZodString>;
16140
+ updatedAt: z.ZodOptional<z.ZodString>;
16141
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16142
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16143
16143
  imageUrl: z.ZodOptional<z.ZodString>;
16144
16144
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16145
16145
  }, z.core.$strip>>>;
16146
16146
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16147
- name: z.ZodString;
16148
16147
  id: z.ZodString;
16149
- createdAt: z.ZodOptional<z.ZodString>;
16150
- updatedAt: z.ZodOptional<z.ZodString>;
16148
+ name: z.ZodString;
16151
16149
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16152
16150
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16151
+ createdAt: z.ZodOptional<z.ZodString>;
16152
+ updatedAt: z.ZodOptional<z.ZodString>;
16153
16153
  baseUrl: z.ZodString;
16154
16154
  }, z.core.$strip>>>;
16155
16155
  teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -16158,11 +16158,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16158
16158
  description: z.ZodString;
16159
16159
  }, z.core.$strip>>>;
16160
16160
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16161
- name: z.ZodString;
16162
16161
  id: z.ZodString;
16162
+ name: z.ZodString;
16163
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16163
16164
  createdAt: z.ZodOptional<z.ZodString>;
16164
16165
  updatedAt: z.ZodOptional<z.ZodString>;
16165
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16166
16166
  functionId: z.ZodString;
16167
16167
  }, z.core.$strip>>>;
16168
16168
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -16213,12 +16213,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16213
16213
  prompt: z.ZodOptional<z.ZodString>;
16214
16214
  }, z.core.$strip>>;
16215
16215
  tools: z.ZodRecord<z.ZodString, z.ZodObject<{
16216
- name: z.ZodString;
16217
16216
  id: z.ZodString;
16218
- createdAt: z.ZodOptional<z.ZodString>;
16219
- updatedAt: z.ZodOptional<z.ZodString>;
16217
+ name: z.ZodString;
16220
16218
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16221
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16222
16219
  config: z.ZodObject<{
16223
16220
  type: z.ZodLiteral<"mcp">;
16224
16221
  mcp: z.ZodObject<{
@@ -16238,17 +16235,20 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16238
16235
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
16239
16236
  }, z.core.$strip>;
16240
16237
  }, z.core.$strip>;
16241
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16242
16238
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16239
+ createdAt: z.ZodOptional<z.ZodString>;
16240
+ updatedAt: z.ZodOptional<z.ZodString>;
16241
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16242
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16243
16243
  imageUrl: z.ZodOptional<z.ZodString>;
16244
16244
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16245
16245
  }, z.core.$strip>>;
16246
16246
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16247
- name: z.ZodString;
16248
16247
  id: z.ZodString;
16248
+ name: z.ZodString;
16249
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16249
16250
  createdAt: z.ZodOptional<z.ZodString>;
16250
16251
  updatedAt: z.ZodOptional<z.ZodString>;
16251
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16252
16252
  functionId: z.ZodString;
16253
16253
  }, z.core.$strip>>>;
16254
16254
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -16260,11 +16260,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16260
16260
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16261
16261
  }, z.core.$strip>>>;
16262
16262
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16263
- name: z.ZodString;
16264
16263
  id: z.ZodString;
16264
+ name: z.ZodString;
16265
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16265
16266
  createdAt: z.ZodOptional<z.ZodString>;
16266
16267
  updatedAt: z.ZodOptional<z.ZodString>;
16267
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16268
16268
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
16269
16269
  render: z.ZodOptional<z.ZodNullable<z.ZodType<{
16270
16270
  component: string;
@@ -16281,8 +16281,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16281
16281
  }>>>>;
16282
16282
  }, z.core.$strip>>>;
16283
16283
  artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16284
- name: z.ZodString;
16285
16284
  id: z.ZodString;
16285
+ name: z.ZodString;
16286
16286
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16287
16287
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
16288
16288
  }, {
@@ -16290,12 +16290,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16290
16290
  in: {};
16291
16291
  }>>>;
16292
16292
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16293
- name: z.ZodString;
16294
16293
  id: z.ZodString;
16295
- createdAt: z.ZodOptional<z.ZodString>;
16296
- updatedAt: z.ZodOptional<z.ZodString>;
16294
+ name: z.ZodString;
16297
16295
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16298
16296
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16297
+ createdAt: z.ZodOptional<z.ZodString>;
16298
+ updatedAt: z.ZodOptional<z.ZodString>;
16299
16299
  baseUrl: z.ZodString;
16300
16300
  }, z.core.$strip>>>;
16301
16301
  statusUpdates: z.ZodOptional<z.ZodObject<{
@@ -16314,8 +16314,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16314
16314
  }, z.core.$strip>>>;
16315
16315
  }, z.core.$strip>>;
16316
16316
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16317
- name: z.ZodString;
16318
16317
  id: z.ZodString;
16318
+ name: z.ZodString;
16319
16319
  createdAt: z.ZodOptional<z.ZodString>;
16320
16320
  updatedAt: z.ZodOptional<z.ZodString>;
16321
16321
  credentialStoreId: z.ZodString;
@@ -16336,18 +16336,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
16336
16336
  declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
16337
16337
  data: z.ZodObject<{
16338
16338
  name: z.ZodString;
16339
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16339
16340
  createdAt: z.ZodOptional<z.ZodString>;
16340
16341
  updatedAt: z.ZodOptional<z.ZodString>;
16341
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16342
16342
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16343
16343
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16344
16344
  id: z.ZodString;
16345
16345
  subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
16346
- name: z.ZodString;
16347
16346
  id: z.ZodString;
16347
+ name: z.ZodString;
16348
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16348
16349
  createdAt: z.ZodOptional<z.ZodString>;
16349
16350
  updatedAt: z.ZodOptional<z.ZodString>;
16350
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16351
16351
  models: z.ZodOptional<z.ZodObject<{
16352
16352
  base: z.ZodOptional<z.ZodObject<{
16353
16353
  model: z.ZodOptional<z.ZodString>;
@@ -16397,12 +16397,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
16397
16397
  }, z.core.$strip>]>>>;
16398
16398
  }, z.core.$strip>>;
16399
16399
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16400
- name: z.ZodString;
16401
16400
  id: z.ZodString;
16402
- createdAt: z.ZodOptional<z.ZodString>;
16403
- updatedAt: z.ZodOptional<z.ZodString>;
16401
+ name: z.ZodString;
16404
16402
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16405
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16406
16403
  config: z.ZodObject<{
16407
16404
  type: z.ZodLiteral<"mcp">;
16408
16405
  mcp: z.ZodObject<{
@@ -16422,18 +16419,21 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
16422
16419
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
16423
16420
  }, z.core.$strip>;
16424
16421
  }, z.core.$strip>;
16425
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16426
16422
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16423
+ createdAt: z.ZodOptional<z.ZodString>;
16424
+ updatedAt: z.ZodOptional<z.ZodString>;
16425
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
16426
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
16427
16427
  imageUrl: z.ZodOptional<z.ZodString>;
16428
16428
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16429
16429
  }, z.core.$strip>>>;
16430
16430
  externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16431
- name: z.ZodString;
16432
16431
  id: z.ZodString;
16433
- createdAt: z.ZodOptional<z.ZodString>;
16434
- updatedAt: z.ZodOptional<z.ZodString>;
16432
+ name: z.ZodString;
16435
16433
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16436
16434
  credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16435
+ createdAt: z.ZodOptional<z.ZodString>;
16436
+ updatedAt: z.ZodOptional<z.ZodString>;
16437
16437
  baseUrl: z.ZodString;
16438
16438
  }, z.core.$strip>>>;
16439
16439
  teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -16442,11 +16442,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
16442
16442
  description: z.ZodString;
16443
16443
  }, z.core.$strip>>>;
16444
16444
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
16445
- name: z.ZodString;
16446
16445
  id: z.ZodString;
16446
+ name: z.ZodString;
16447
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16447
16448
  createdAt: z.ZodOptional<z.ZodString>;
16448
16449
  updatedAt: z.ZodOptional<z.ZodString>;
16449
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16450
16450
  functionId: z.ZodString;
16451
16451
  }, z.core.$strip>>>;
16452
16452
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -16658,8 +16658,8 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
16658
16658
  createdAt: z.ZodString;
16659
16659
  updatedAt: z.ZodString;
16660
16660
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
16661
- subAgentId: z.ZodString;
16662
16661
  externalAgentId: z.ZodString;
16662
+ subAgentId: z.ZodString;
16663
16663
  }, z.core.$strip>;
16664
16664
  }, z.core.$strip>;
16665
16665
  declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
@@ -16668,8 +16668,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
16668
16668
  createdAt: z.ZodString;
16669
16669
  updatedAt: z.ZodString;
16670
16670
  headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
16671
- subAgentId: z.ZodString;
16672
16671
  externalAgentId: z.ZodString;
16672
+ subAgentId: z.ZodString;
16673
16673
  }, z.core.$strip>>;
16674
16674
  pagination: z.ZodObject<{
16675
16675
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -16680,11 +16680,11 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
16680
16680
  }, z.core.$strip>;
16681
16681
  declare const DataComponentArrayResponse: z.ZodObject<{
16682
16682
  data: z.ZodArray<z.ZodObject<{
16683
- name: z.ZodString;
16684
16683
  id: z.ZodString;
16684
+ name: z.ZodString;
16685
+ description: z.ZodNullable<z.ZodString>;
16685
16686
  createdAt: z.ZodString;
16686
16687
  updatedAt: z.ZodString;
16687
- description: z.ZodNullable<z.ZodString>;
16688
16688
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
16689
16689
  render: z.ZodNullable<z.ZodType<{
16690
16690
  component: string;
@@ -16703,11 +16703,11 @@ declare const DataComponentArrayResponse: z.ZodObject<{
16703
16703
  }, z.core.$strip>;
16704
16704
  declare const ArtifactComponentArrayResponse: z.ZodObject<{
16705
16705
  data: z.ZodArray<z.ZodObject<{
16706
- name: z.ZodString;
16707
16706
  id: z.ZodString;
16707
+ name: z.ZodString;
16708
+ description: z.ZodNullable<z.ZodString>;
16708
16709
  createdAt: z.ZodString;
16709
16710
  updatedAt: z.ZodString;
16710
- description: z.ZodNullable<z.ZodString>;
16711
16711
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
16712
16712
  }, z.core.$strip>>;
16713
16713
  }, z.core.$strip>;