@inkeep/agents-core 0.0.0-dev-20250911002844 → 0.0.0-dev-20250911052037

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.
@@ -382,6 +382,7 @@ type MessageType = 'chat' | 'a2a-request' | 'a2a-response' | 'task-update' | 'to
382
382
  type MessageRole = 'user' | 'agent' | 'system';
383
383
  type MessageMode = 'full' | 'scoped' | 'none';
384
384
  type Models = z.infer<typeof ModelSchema>;
385
+ type ProjectModels = z.infer<typeof ProjectModelSchema>;
385
386
  type ModelSettings = {
386
387
  model?: string;
387
388
  providerOptions?: Record<string, unknown>;
@@ -621,6 +622,24 @@ declare const ModelSchema: z$1.ZodObject<{
621
622
  providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
622
623
  }, z$1.core.$strip>>;
623
624
  }, z$1.core.$strip>;
625
+ declare const ProjectModelSchema: z$1.ZodObject<{
626
+ base: z$1.ZodObject<{
627
+ model: z$1.ZodOptional<z$1.ZodString>;
628
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
629
+ }, z$1.core.$strip>;
630
+ structuredOutput: z$1.ZodOptional<z$1.ZodObject<{
631
+ model: z$1.ZodOptional<z$1.ZodString>;
632
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
633
+ }, z$1.core.$strip>>;
634
+ summarizer: z$1.ZodOptional<z$1.ZodObject<{
635
+ model: z$1.ZodOptional<z$1.ZodString>;
636
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
637
+ }, z$1.core.$strip>>;
638
+ pull: z$1.ZodObject<{
639
+ model: z$1.ZodOptional<z$1.ZodString>;
640
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
641
+ }, z$1.core.$strip>;
642
+ }, z$1.core.$strip>;
624
643
  declare const AgentSelectSchema: drizzle_zod.BuildSchema<"select", {
625
644
  tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
626
645
  name: "tenant_id";
@@ -937,9 +956,10 @@ declare const AgentUpdateSchema: z$1.ZodObject<{
937
956
  in: {};
938
957
  }>;
939
958
  declare const AgentApiSelectSchema: z$1.ZodObject<{
940
- name: z$1.ZodString;
941
959
  id: z$1.ZodString;
960
+ name: z$1.ZodString;
942
961
  description: z$1.ZodString;
962
+ prompt: z$1.ZodString;
943
963
  createdAt: z$1.ZodString;
944
964
  updatedAt: z$1.ZodString;
945
965
  models: z$1.ZodNullable<z$1.ZodType<{
@@ -1004,13 +1024,13 @@ declare const AgentApiSelectSchema: z$1.ZodObject<{
1004
1024
  }, {
1005
1025
  stepCountIs?: number;
1006
1026
  }>>>;
1007
- prompt: z$1.ZodString;
1008
1027
  conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
1009
1028
  }, z$1.core.$strip>;
1010
1029
  declare const AgentApiInsertSchema: z$1.ZodObject<{
1011
- name: z$1.ZodString;
1012
1030
  id: z$1.ZodString;
1031
+ name: z$1.ZodString;
1013
1032
  description: z$1.ZodString;
1033
+ prompt: z$1.ZodString;
1014
1034
  createdAt: z$1.ZodOptional<z$1.ZodString>;
1015
1035
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
1016
1036
  models: z$1.ZodOptional<z$1.ZodObject<{
@@ -1036,13 +1056,13 @@ declare const AgentApiInsertSchema: z$1.ZodObject<{
1036
1056
  }, {
1037
1057
  stepCountIs?: number;
1038
1058
  }>>>>;
1039
- prompt: z$1.ZodString;
1040
1059
  conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
1041
1060
  }, z$1.core.$strip>;
1042
1061
  declare const AgentApiUpdateSchema: z$1.ZodObject<{
1043
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1044
1062
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1063
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1045
1064
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1065
+ prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1046
1066
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
1047
1067
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
1048
1068
  models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
@@ -1068,7 +1088,6 @@ declare const AgentApiUpdateSchema: z$1.ZodObject<{
1068
1088
  }, {
1069
1089
  stepCountIs?: number;
1070
1090
  }>>>>>>;
1071
- prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1072
1091
  conversationHistoryConfig: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
1073
1092
  }, z$1.core.$strip>;
1074
1093
  declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -1295,9 +1314,9 @@ declare const AgentRelationUpdateSchema: z$1.ZodObject<{
1295
1314
  }>;
1296
1315
  declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
1297
1316
  id: z$1.ZodString;
1317
+ graphId: z$1.ZodString;
1298
1318
  createdAt: z$1.ZodString;
1299
1319
  updatedAt: z$1.ZodString;
1300
- graphId: z$1.ZodString;
1301
1320
  sourceAgentId: z$1.ZodString;
1302
1321
  targetAgentId: z$1.ZodNullable<z$1.ZodString>;
1303
1322
  externalAgentId: z$1.ZodNullable<z$1.ZodString>;
@@ -1305,9 +1324,9 @@ declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
1305
1324
  }, z$1.core.$strip>;
1306
1325
  declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
1307
1326
  id: z$1.ZodString;
1327
+ graphId: z$1.ZodString;
1308
1328
  createdAt: z$1.ZodOptional<z$1.ZodString>;
1309
1329
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
1310
- graphId: z$1.ZodString;
1311
1330
  sourceAgentId: z$1.ZodString;
1312
1331
  targetAgentId: z$1.ZodOptional<z$1.ZodString>;
1313
1332
  externalAgentId: z$1.ZodOptional<z$1.ZodString>;
@@ -1318,9 +1337,9 @@ declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
1318
1337
  }, z$1.core.$strip>;
1319
1338
  declare const AgentRelationApiUpdateSchema: z$1.ZodObject<{
1320
1339
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1340
+ graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1321
1341
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
1322
1342
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
1323
- graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1324
1343
  sourceAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
1325
1344
  targetAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
1326
1345
  externalAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
@@ -1351,9 +1370,9 @@ declare const ExternalAgentRelationInsertSchema: z$1.ZodObject<{
1351
1370
  }>;
1352
1371
  declare const ExternalAgentRelationApiInsertSchema: z$1.ZodObject<{
1353
1372
  id: z$1.ZodString;
1373
+ graphId: z$1.ZodString;
1354
1374
  createdAt: z$1.ZodOptional<z$1.ZodString>;
1355
1375
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
1356
- graphId: z$1.ZodString;
1357
1376
  sourceAgentId: z$1.ZodString;
1358
1377
  targetAgentId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
1359
1378
  externalAgentId: z$1.ZodString;
@@ -1935,11 +1954,12 @@ declare const AgentGraphUpdateSchema: z$1.ZodObject<{
1935
1954
  in: {};
1936
1955
  }>;
1937
1956
  declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
1938
- name: z$1.ZodString;
1939
1957
  id: z$1.ZodString;
1958
+ name: z$1.ZodString;
1940
1959
  description: z$1.ZodNullable<z$1.ZodString>;
1941
1960
  createdAt: z$1.ZodString;
1942
1961
  updatedAt: z$1.ZodString;
1962
+ defaultAgentId: z$1.ZodString;
1943
1963
  models: z$1.ZodNullable<z$1.ZodType<{
1944
1964
  base?: {
1945
1965
  model?: string | undefined;
@@ -2002,8 +2022,7 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
2002
2022
  }, {
2003
2023
  transferCountIs?: number;
2004
2024
  }>>>;
2005
- contextConfigId: z$1.ZodNullable<z$1.ZodString>;
2006
- defaultAgentId: z$1.ZodString;
2025
+ graphPrompt: z$1.ZodNullable<z$1.ZodString>;
2007
2026
  statusUpdates: z$1.ZodNullable<z$1.ZodType<{
2008
2027
  enabled?: boolean | undefined;
2009
2028
  numEvents?: number | undefined;
@@ -2061,13 +2080,14 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
2061
2080
  } | undefined;
2062
2081
  }[] | undefined;
2063
2082
  }>>>;
2064
- graphPrompt: z$1.ZodNullable<z$1.ZodString>;
2083
+ contextConfigId: z$1.ZodNullable<z$1.ZodString>;
2065
2084
  }, z$1.core.$strip>;
2066
2085
  declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
2067
2086
  name: z$1.ZodString;
2068
2087
  description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
2069
2088
  createdAt: z$1.ZodOptional<z$1.ZodString>;
2070
2089
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
2090
+ defaultAgentId: z$1.ZodString;
2071
2091
  models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
2072
2092
  base?: {
2073
2093
  model?: string | undefined;
@@ -2130,8 +2150,7 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
2130
2150
  }, {
2131
2151
  transferCountIs?: number;
2132
2152
  }>>>>;
2133
- contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
2134
- defaultAgentId: z$1.ZodString;
2153
+ graphPrompt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
2135
2154
  statusUpdates: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
2136
2155
  enabled?: boolean | undefined;
2137
2156
  numEvents?: number | undefined;
@@ -2189,15 +2208,16 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
2189
2208
  } | undefined;
2190
2209
  }[] | undefined;
2191
2210
  }>>>>;
2192
- graphPrompt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
2211
+ contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
2193
2212
  id: z$1.ZodOptional<z$1.ZodString>;
2194
2213
  }, z$1.core.$strip>;
2195
2214
  declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
2196
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2197
2215
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2216
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2198
2217
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
2199
2218
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
2200
2219
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
2220
+ defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2201
2221
  models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
2202
2222
  base?: {
2203
2223
  model?: string | undefined;
@@ -2260,8 +2280,7 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
2260
2280
  }, {
2261
2281
  transferCountIs?: number;
2262
2282
  }>>>>>>;
2263
- contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
2264
- defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2283
+ graphPrompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
2265
2284
  statusUpdates: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
2266
2285
  enabled?: boolean | undefined;
2267
2286
  numEvents?: number | undefined;
@@ -2319,7 +2338,7 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
2319
2338
  } | undefined;
2320
2339
  }[] | undefined;
2321
2340
  }>>>>>>;
2322
- graphPrompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
2341
+ contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
2323
2342
  }, z$1.core.$strip>;
2324
2343
  declare const TaskSelectSchema: drizzle_zod.BuildSchema<"select", {
2325
2344
  tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
@@ -2525,29 +2544,29 @@ declare const TaskUpdateSchema: z$1.ZodObject<{
2525
2544
  in: {};
2526
2545
  }>;
2527
2546
  declare const TaskApiSelectSchema: z$1.ZodObject<{
2528
- metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
2529
2547
  id: z$1.ZodString;
2530
2548
  createdAt: z$1.ZodString;
2531
2549
  updatedAt: z$1.ZodString;
2550
+ metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
2532
2551
  status: z$1.ZodString;
2533
2552
  contextId: z$1.ZodString;
2534
2553
  agentId: z$1.ZodString;
2535
2554
  }, z$1.core.$strip>;
2536
2555
  declare const TaskApiInsertSchema: z$1.ZodObject<{
2537
- metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
2538
2556
  id: z$1.ZodString;
2539
2557
  createdAt: z$1.ZodOptional<z$1.ZodString>;
2540
2558
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
2559
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
2541
2560
  status: z$1.ZodString;
2542
2561
  conversationId: z$1.ZodOptional<z$1.ZodString>;
2543
2562
  contextId: z$1.ZodString;
2544
2563
  agentId: z$1.ZodString;
2545
2564
  }, z$1.core.$strip>;
2546
2565
  declare const TaskApiUpdateSchema: z$1.ZodObject<{
2547
- metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
2548
2566
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2549
2567
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
2550
2568
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
2569
+ metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
2551
2570
  status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
2552
2571
  conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
2553
2572
  contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
@@ -3349,20 +3368,20 @@ declare const ConversationUpdateSchema: z$1.ZodObject<{
3349
3368
  in: {};
3350
3369
  }>;
3351
3370
  declare const ConversationApiSelectSchema: z$1.ZodObject<{
3352
- metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
3353
3371
  id: z$1.ZodString;
3354
3372
  createdAt: z$1.ZodString;
3355
3373
  updatedAt: z$1.ZodString;
3374
+ metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
3356
3375
  title: z$1.ZodNullable<z$1.ZodString>;
3357
3376
  userId: z$1.ZodNullable<z$1.ZodString>;
3358
3377
  activeAgentId: z$1.ZodString;
3359
3378
  lastContextResolution: z$1.ZodNullable<z$1.ZodString>;
3360
3379
  }, z$1.core.$strip>;
3361
3380
  declare const ConversationApiInsertSchema: z$1.ZodObject<{
3362
- metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
3363
3381
  id: z$1.ZodString;
3364
3382
  createdAt: z$1.ZodOptional<z$1.ZodString>;
3365
3383
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
3384
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
3366
3385
  title: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
3367
3386
  contextConfigId: z$1.ZodOptional<z$1.ZodString>;
3368
3387
  userId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -3370,10 +3389,10 @@ declare const ConversationApiInsertSchema: z$1.ZodObject<{
3370
3389
  lastContextResolution: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
3371
3390
  }, z$1.core.$strip>;
3372
3391
  declare const ConversationApiUpdateSchema: z$1.ZodObject<{
3373
- metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
3374
3392
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
3375
3393
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
3376
3394
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
3395
+ metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
3377
3396
  title: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
3378
3397
  contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
3379
3398
  userId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
@@ -3813,10 +3832,10 @@ declare const MessageUpdateSchema: z$1.ZodObject<{
3813
3832
  in: {};
3814
3833
  }>;
3815
3834
  declare const MessageApiSelectSchema: z$1.ZodObject<{
3816
- metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
3817
3835
  id: z$1.ZodString;
3818
3836
  createdAt: z$1.ZodString;
3819
3837
  updatedAt: z$1.ZodString;
3838
+ metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
3820
3839
  role: z$1.ZodString;
3821
3840
  content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
3822
3841
  conversationId: z$1.ZodString;
@@ -3833,10 +3852,10 @@ declare const MessageApiSelectSchema: z$1.ZodObject<{
3833
3852
  a2aSessionId: z$1.ZodNullable<z$1.ZodString>;
3834
3853
  }, z$1.core.$strip>;
3835
3854
  declare const MessageApiInsertSchema: z$1.ZodObject<{
3836
- metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
3837
3855
  id: z$1.ZodString;
3838
3856
  createdAt: z$1.ZodOptional<z$1.ZodString>;
3839
3857
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
3858
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
3840
3859
  role: z$1.ZodString;
3841
3860
  content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
3842
3861
  conversationId: z$1.ZodString;
@@ -3853,10 +3872,10 @@ declare const MessageApiInsertSchema: z$1.ZodObject<{
3853
3872
  a2aSessionId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
3854
3873
  }, z$1.core.$strip>;
3855
3874
  declare const MessageApiUpdateSchema: z$1.ZodObject<{
3856
- metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
3857
3875
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
3858
3876
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
3859
3877
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
3878
+ metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
3860
3879
  role: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
3861
3880
  content: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
3862
3881
  conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
@@ -4386,9 +4405,9 @@ declare const ContextCacheUpdateSchema: z$1.ZodObject<{
4386
4405
  }>;
4387
4406
  declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
4388
4407
  id: z$1.ZodString;
4408
+ value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4389
4409
  createdAt: z$1.ZodString;
4390
4410
  updatedAt: z$1.ZodString;
4391
- value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4392
4411
  conversationId: z$1.ZodString;
4393
4412
  contextConfigId: z$1.ZodString;
4394
4413
  contextVariableKey: z$1.ZodString;
@@ -4399,9 +4418,9 @@ declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
4399
4418
  }, z$1.core.$strip>;
4400
4419
  declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
4401
4420
  id: z$1.ZodString;
4421
+ value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4402
4422
  createdAt: z$1.ZodOptional<z$1.ZodString>;
4403
4423
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
4404
- value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4405
4424
  conversationId: z$1.ZodString;
4406
4425
  contextConfigId: z$1.ZodString;
4407
4426
  contextVariableKey: z$1.ZodString;
@@ -4412,9 +4431,9 @@ declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
4412
4431
  }, z$1.core.$strip>;
4413
4432
  declare const ContextCacheApiUpdateSchema: z$1.ZodObject<{
4414
4433
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4434
+ value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
4415
4435
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
4416
4436
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
4417
- value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
4418
4437
  conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4419
4438
  contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4420
4439
  contextVariableKey: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
@@ -4591,10 +4610,10 @@ declare const DataComponentInsertSchema: z$1.ZodObject<{
4591
4610
  in: {};
4592
4611
  }>;
4593
4612
  declare const DataComponentBaseSchema: z$1.ZodObject<{
4594
- name: z$1.ZodString;
4595
4613
  tenantId: z$1.ZodString;
4596
4614
  projectId: z$1.ZodString;
4597
4615
  id: z$1.ZodString;
4616
+ name: z$1.ZodString;
4598
4617
  description: z$1.ZodString;
4599
4618
  props: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
4600
4619
  }, {
@@ -4615,24 +4634,24 @@ declare const DataComponentUpdateSchema: z$1.ZodObject<{
4615
4634
  in: {};
4616
4635
  }>;
4617
4636
  declare const DataComponentApiSelectSchema: z$1.ZodObject<{
4618
- name: z$1.ZodString;
4619
4637
  id: z$1.ZodString;
4638
+ name: z$1.ZodString;
4620
4639
  description: z$1.ZodString;
4621
4640
  createdAt: z$1.ZodString;
4622
4641
  updatedAt: z$1.ZodString;
4623
4642
  props: z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
4624
4643
  }, z$1.core.$strip>;
4625
4644
  declare const DataComponentApiInsertSchema: z$1.ZodObject<{
4626
- name: z$1.ZodString;
4627
4645
  id: z$1.ZodString;
4646
+ name: z$1.ZodString;
4628
4647
  description: z$1.ZodString;
4629
4648
  createdAt: z$1.ZodOptional<z$1.ZodString>;
4630
4649
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
4631
4650
  props: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
4632
4651
  }, z$1.core.$strip>;
4633
4652
  declare const DataComponentApiUpdateSchema: z$1.ZodObject<{
4634
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4635
4653
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4654
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4636
4655
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
4637
4656
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
4638
4657
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
@@ -5101,8 +5120,8 @@ declare const ArtifactComponentUpdateSchema: z$1.ZodObject<{
5101
5120
  in: {};
5102
5121
  }>;
5103
5122
  declare const ArtifactComponentApiSelectSchema: z$1.ZodObject<{
5104
- name: z$1.ZodString;
5105
5123
  id: z$1.ZodString;
5124
+ name: z$1.ZodString;
5106
5125
  description: z$1.ZodString;
5107
5126
  createdAt: z$1.ZodString;
5108
5127
  updatedAt: z$1.ZodString;
@@ -5120,8 +5139,8 @@ declare const ArtifactComponentApiInsertSchema: z$1.ZodObject<{
5120
5139
  in: {};
5121
5140
  }>;
5122
5141
  declare const ArtifactComponentApiUpdateSchema: z$1.ZodObject<{
5123
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5124
5142
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5143
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5125
5144
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5126
5145
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5127
5146
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
@@ -5331,39 +5350,40 @@ declare const ExternalAgentUpdateSchema: z$1.ZodObject<{
5331
5350
  in: {};
5332
5351
  }>;
5333
5352
  declare const ExternalAgentApiSelectSchema: z$1.ZodObject<{
5334
- name: z$1.ZodString;
5335
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
5336
5353
  id: z$1.ZodString;
5354
+ name: z$1.ZodString;
5337
5355
  description: z$1.ZodString;
5356
+ credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5338
5357
  createdAt: z$1.ZodString;
5339
5358
  updatedAt: z$1.ZodString;
5340
- credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5341
5359
  baseUrl: z$1.ZodString;
5360
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
5342
5361
  }, z$1.core.$strip>;
5343
5362
  declare const ExternalAgentApiInsertSchema: z$1.ZodObject<{
5344
- name: z$1.ZodString;
5345
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5346
5363
  id: z$1.ZodString;
5364
+ name: z$1.ZodString;
5347
5365
  description: z$1.ZodString;
5366
+ credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5348
5367
  createdAt: z$1.ZodOptional<z$1.ZodString>;
5349
5368
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
5350
- credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5351
5369
  baseUrl: z$1.ZodString;
5370
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5352
5371
  }, z$1.core.$strip>;
5353
5372
  declare const ExternalAgentApiUpdateSchema: z$1.ZodObject<{
5354
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5355
- headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5356
5373
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5374
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5357
5375
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5376
+ credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
5358
5377
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5359
5378
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5360
- credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
5361
5379
  baseUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5380
+ headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5362
5381
  }, z$1.core.$strip>;
5363
5382
  declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
5364
- name: z$1.ZodString;
5365
5383
  id: z$1.ZodString;
5384
+ name: z$1.ZodString;
5366
5385
  description: z$1.ZodString;
5386
+ prompt: z$1.ZodString;
5367
5387
  createdAt: z$1.ZodString;
5368
5388
  updatedAt: z$1.ZodString;
5369
5389
  models: z$1.ZodNullable<z$1.ZodType<{
@@ -5428,18 +5448,17 @@ declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
5428
5448
  }, {
5429
5449
  stepCountIs?: number;
5430
5450
  }>>>;
5431
- prompt: z$1.ZodString;
5432
5451
  conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
5433
5452
  type: z$1.ZodLiteral<"internal">;
5434
5453
  }, z$1.core.$strip>, z$1.ZodObject<{
5435
- name: z$1.ZodString;
5436
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
5437
5454
  id: z$1.ZodString;
5455
+ name: z$1.ZodString;
5438
5456
  description: z$1.ZodString;
5457
+ credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5439
5458
  createdAt: z$1.ZodString;
5440
5459
  updatedAt: z$1.ZodString;
5441
- credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5442
5460
  baseUrl: z$1.ZodString;
5461
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
5443
5462
  type: z$1.ZodLiteral<"external">;
5444
5463
  }, z$1.core.$strip>], "type">;
5445
5464
  declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -5670,23 +5689,23 @@ declare const ApiKeyInsertSchema: z$1.ZodObject<{
5670
5689
  in: {};
5671
5690
  }>;
5672
5691
  declare const ApiKeyUpdateSchema: z$1.ZodObject<{
5673
- updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5674
5692
  graphId: z$1.ZodOptional<z$1.ZodString>;
5675
5693
  lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
5676
5694
  expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
5695
+ updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5677
5696
  }, {
5678
5697
  out: {};
5679
5698
  in: {};
5680
5699
  }>;
5681
5700
  declare const ApiKeyApiSelectSchema: z$1.ZodObject<{
5682
5701
  id: z$1.ZodString;
5683
- createdAt: z$1.ZodString;
5684
- updatedAt: z$1.ZodString;
5685
5702
  graphId: z$1.ZodString;
5686
5703
  publicId: z$1.ZodString;
5687
5704
  keyPrefix: z$1.ZodString;
5688
5705
  lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
5689
5706
  expiresAt: z$1.ZodNullable<z$1.ZodString>;
5707
+ createdAt: z$1.ZodString;
5708
+ updatedAt: z$1.ZodString;
5690
5709
  }, {
5691
5710
  out: {};
5692
5711
  in: {};
@@ -5695,13 +5714,13 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
5695
5714
  data: z$1.ZodObject<{
5696
5715
  apiKey: z$1.ZodObject<{
5697
5716
  id: z$1.ZodString;
5698
- createdAt: z$1.ZodString;
5699
- updatedAt: z$1.ZodString;
5700
5717
  graphId: z$1.ZodString;
5701
5718
  publicId: z$1.ZodString;
5702
5719
  keyPrefix: z$1.ZodString;
5703
5720
  lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
5704
5721
  expiresAt: z$1.ZodNullable<z$1.ZodString>;
5722
+ createdAt: z$1.ZodString;
5723
+ updatedAt: z$1.ZodString;
5705
5724
  }, {
5706
5725
  out: {};
5707
5726
  in: {};
@@ -5710,19 +5729,19 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
5710
5729
  }, z$1.core.$strip>;
5711
5730
  }, z$1.core.$strip>;
5712
5731
  declare const ApiKeyApiInsertSchema: z$1.ZodObject<{
5713
- createdAt: z$1.ZodOptional<z$1.ZodString>;
5714
- updatedAt: z$1.ZodOptional<z$1.ZodString>;
5715
5732
  graphId: z$1.ZodString;
5716
5733
  expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5734
+ createdAt: z$1.ZodOptional<z$1.ZodString>;
5735
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
5717
5736
  }, {
5718
5737
  out: {};
5719
5738
  in: {};
5720
5739
  }>;
5721
5740
  declare const ApiKeyApiUpdateSchema: z$1.ZodObject<{
5722
- updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5723
5741
  graphId: z$1.ZodOptional<z$1.ZodString>;
5724
5742
  lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
5725
5743
  expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
5744
+ updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5726
5745
  }, {
5727
5746
  out: {};
5728
5747
  in: {};
@@ -5826,9 +5845,9 @@ declare const McpToolSchema: z$1.ZodObject<{
5826
5845
  in: {};
5827
5846
  }>;
5828
5847
  declare const MCPToolConfigSchema: z$1.ZodObject<{
5848
+ id: z$1.ZodString;
5829
5849
  name: z$1.ZodString;
5830
5850
  headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5831
- id: z$1.ZodString;
5832
5851
  capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5833
5852
  imageUrl: z$1.ZodOptional<z$1.ZodString>;
5834
5853
  lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -5900,13 +5919,8 @@ declare const ToolUpdateSchema: z$1.ZodObject<{
5900
5919
  in: {};
5901
5920
  }>;
5902
5921
  declare const ToolApiSelectSchema: z$1.ZodObject<{
5903
- name: z$1.ZodString;
5904
- headers: z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
5905
5922
  id: z$1.ZodString;
5906
- createdAt: z$1.ZodString;
5907
- updatedAt: z$1.ZodString;
5908
- status: z$1.ZodString;
5909
- capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
5923
+ name: z$1.ZodString;
5910
5924
  config: z$1.ZodType<{
5911
5925
  type: "mcp";
5912
5926
  mcp: ToolMcpConfig;
@@ -5921,6 +5935,11 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
5921
5935
  mcp: ToolMcpConfig;
5922
5936
  }>>;
5923
5937
  credentialReferenceId: z$1.ZodNullable<z$1.ZodString>;
5938
+ createdAt: z$1.ZodString;
5939
+ updatedAt: z$1.ZodString;
5940
+ headers: z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
5941
+ status: z$1.ZodString;
5942
+ capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
5924
5943
  imageUrl: z$1.ZodNullable<z$1.ZodString>;
5925
5944
  lastHealthCheck: z$1.ZodNullable<z$1.ZodString>;
5926
5945
  lastError: z$1.ZodNullable<z$1.ZodString>;
@@ -5928,13 +5947,8 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
5928
5947
  lastToolsSync: z$1.ZodNullable<z$1.ZodString>;
5929
5948
  }, z$1.core.$strip>;
5930
5949
  declare const ToolApiInsertSchema: z$1.ZodObject<{
5931
- name: z$1.ZodString;
5932
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5933
5950
  id: z$1.ZodString;
5934
- createdAt: z$1.ZodOptional<z$1.ZodString>;
5935
- updatedAt: z$1.ZodOptional<z$1.ZodString>;
5936
- status: z$1.ZodOptional<z$1.ZodString>;
5937
- capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5951
+ name: z$1.ZodString;
5938
5952
  config: z$1.ZodType<{
5939
5953
  type: "mcp";
5940
5954
  mcp: ToolMcpConfig;
@@ -5949,6 +5963,11 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
5949
5963
  mcp: ToolMcpConfig;
5950
5964
  }>>;
5951
5965
  credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5966
+ createdAt: z$1.ZodOptional<z$1.ZodString>;
5967
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
5968
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5969
+ status: z$1.ZodOptional<z$1.ZodString>;
5970
+ capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5952
5971
  imageUrl: z$1.ZodOptional<z$1.ZodString>;
5953
5972
  lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5954
5973
  lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -5956,13 +5975,8 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
5956
5975
  lastToolsSync: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
5957
5976
  }, z$1.core.$strip>;
5958
5977
  declare const ToolApiUpdateSchema: z$1.ZodObject<{
5959
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5960
- headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5961
5978
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5962
- createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5963
- updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5964
- status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5965
- capabilities: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
5979
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
5966
5980
  config: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<{
5967
5981
  type: "mcp";
5968
5982
  mcp: ToolMcpConfig;
@@ -5977,6 +5991,11 @@ declare const ToolApiUpdateSchema: z$1.ZodObject<{
5977
5991
  mcp: ToolMcpConfig;
5978
5992
  }>>>>;
5979
5993
  credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
5994
+ createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5995
+ updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5996
+ headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5997
+ status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5998
+ capabilities: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
5980
5999
  imageUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
5981
6000
  lastHealthCheck: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
5982
6001
  lastError: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
@@ -6046,10 +6065,10 @@ declare const ContextConfigSelectSchema: z$1.ZodObject<{
6046
6065
  in: {};
6047
6066
  }>;
6048
6067
  declare const ContextConfigInsertSchema: z$1.ZodObject<{
6049
- name: z$1.ZodString;
6050
6068
  tenantId: z$1.ZodString;
6051
6069
  projectId: z$1.ZodString;
6052
6070
  id: z$1.ZodString;
6071
+ name: z$1.ZodString;
6053
6072
  description: z$1.ZodString;
6054
6073
  requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
6055
6074
  contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
@@ -6058,10 +6077,10 @@ declare const ContextConfigInsertSchema: z$1.ZodObject<{
6058
6077
  in: {};
6059
6078
  }>;
6060
6079
  declare const ContextConfigUpdateSchema: z$1.ZodObject<{
6061
- name: z$1.ZodOptional<z$1.ZodString>;
6062
6080
  tenantId: z$1.ZodOptional<z$1.ZodString>;
6063
6081
  projectId: z$1.ZodOptional<z$1.ZodString>;
6064
6082
  id: z$1.ZodOptional<z$1.ZodString>;
6083
+ name: z$1.ZodOptional<z$1.ZodString>;
6065
6084
  description: z$1.ZodOptional<z$1.ZodString>;
6066
6085
  requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>;
6067
6086
  contextVariables: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
@@ -6070,24 +6089,24 @@ declare const ContextConfigUpdateSchema: z$1.ZodObject<{
6070
6089
  in: {};
6071
6090
  }>;
6072
6091
  declare const ContextConfigApiSelectSchema: z$1.ZodObject<{
6073
- name: z$1.ZodString;
6074
6092
  id: z$1.ZodString;
6093
+ name: z$1.ZodString;
6075
6094
  description: z$1.ZodString;
6076
- requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
6077
- contextVariables: z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
6078
6095
  createdAt: z$1.ZodString;
6079
6096
  updatedAt: z$1.ZodString;
6097
+ requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
6098
+ contextVariables: z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
6080
6099
  }, z$1.core.$strip>;
6081
6100
  declare const ContextConfigApiInsertSchema: z$1.ZodObject<{
6082
- name: z$1.ZodString;
6083
6101
  id: z$1.ZodString;
6102
+ name: z$1.ZodString;
6084
6103
  description: z$1.ZodString;
6085
6104
  requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
6086
6105
  contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
6087
6106
  }, z$1.core.$strip>;
6088
6107
  declare const ContextConfigApiUpdateSchema: z$1.ZodObject<{
6089
- name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6090
6108
  id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6109
+ name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6091
6110
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6092
6111
  requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>>;
6093
6112
  contextVariables: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>>;
@@ -6945,13 +6964,13 @@ declare const LedgerArtifactUpdateSchema: z$1.ZodObject<{
6945
6964
  in: {};
6946
6965
  }>;
6947
6966
  declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
6967
+ id: z$1.ZodString;
6948
6968
  type: z$1.ZodString;
6949
6969
  name: z$1.ZodNullable<z$1.ZodString>;
6950
- metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
6951
- id: z$1.ZodString;
6952
6970
  description: z$1.ZodNullable<z$1.ZodString>;
6953
6971
  createdAt: z$1.ZodString;
6954
6972
  updatedAt: z$1.ZodString;
6973
+ metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
6955
6974
  contextId: z$1.ZodString;
6956
6975
  visibility: z$1.ZodNullable<z$1.ZodString>;
6957
6976
  taskId: z$1.ZodNullable<z$1.ZodString>;
@@ -6962,13 +6981,13 @@ declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
6962
6981
  derivedFrom: z$1.ZodNullable<z$1.ZodString>;
6963
6982
  }, z$1.core.$strip>;
6964
6983
  declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
6984
+ id: z$1.ZodString;
6965
6985
  type: z$1.ZodOptional<z$1.ZodString>;
6966
6986
  name: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
6967
- metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
6968
- id: z$1.ZodString;
6969
6987
  description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
6970
6988
  createdAt: z$1.ZodOptional<z$1.ZodString>;
6971
6989
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
6990
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
6972
6991
  contextId: z$1.ZodString;
6973
6992
  visibility: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
6974
6993
  taskId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -6979,13 +6998,13 @@ declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
6979
6998
  derivedFrom: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
6980
6999
  }, z$1.core.$strip>;
6981
7000
  declare const LedgerArtifactApiUpdateSchema: z$1.ZodObject<{
7001
+ id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6982
7002
  type: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
6983
7003
  name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
6984
- metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
6985
- id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6986
7004
  description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
6987
7005
  createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
6988
7006
  updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
7007
+ metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
6989
7008
  contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
6990
7009
  visibility: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
6991
7010
  taskId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
@@ -7020,9 +7039,10 @@ declare const StatusUpdateSchema: z$1.ZodObject<{
7020
7039
  }, z$1.core.$strip>>>;
7021
7040
  }, z$1.core.$strip>;
7022
7041
  declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
7023
- name: z$1.ZodString;
7024
7042
  id: z$1.ZodString;
7043
+ name: z$1.ZodString;
7025
7044
  description: z$1.ZodString;
7045
+ prompt: z$1.ZodString;
7026
7046
  createdAt: z$1.ZodOptional<z$1.ZodString>;
7027
7047
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
7028
7048
  models: z$1.ZodOptional<z$1.ZodObject<{
@@ -7048,7 +7068,6 @@ declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
7048
7068
  }, {
7049
7069
  stepCountIs?: number;
7050
7070
  }>>>>;
7051
- prompt: z$1.ZodString;
7052
7071
  conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
7053
7072
  tools: z$1.ZodArray<z$1.ZodString>;
7054
7073
  dataComponents: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -7061,13 +7080,14 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7061
7080
  description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7062
7081
  createdAt: z$1.ZodOptional<z$1.ZodString>;
7063
7082
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
7064
- contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7065
7083
  defaultAgentId: z$1.ZodString;
7084
+ contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7066
7085
  id: z$1.ZodOptional<z$1.ZodString>;
7067
7086
  agents: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodObject<{
7068
- name: z$1.ZodString;
7069
7087
  id: z$1.ZodString;
7088
+ name: z$1.ZodString;
7070
7089
  description: z$1.ZodString;
7090
+ prompt: z$1.ZodString;
7071
7091
  createdAt: z$1.ZodOptional<z$1.ZodString>;
7072
7092
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
7073
7093
  models: z$1.ZodOptional<z$1.ZodObject<{
@@ -7093,7 +7113,6 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7093
7113
  }, {
7094
7114
  stepCountIs?: number;
7095
7115
  }>>>>;
7096
- prompt: z$1.ZodString;
7097
7116
  conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
7098
7117
  tools: z$1.ZodArray<z$1.ZodString>;
7099
7118
  dataComponents: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -7101,23 +7120,18 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7101
7120
  canTransferTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
7102
7121
  canDelegateTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
7103
7122
  }, z$1.core.$strip>, z$1.ZodObject<{
7104
- name: z$1.ZodString;
7105
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7106
7123
  id: z$1.ZodString;
7124
+ name: z$1.ZodString;
7107
7125
  description: z$1.ZodString;
7126
+ credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7108
7127
  createdAt: z$1.ZodOptional<z$1.ZodString>;
7109
7128
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
7110
- credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7111
7129
  baseUrl: z$1.ZodString;
7130
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7112
7131
  }, z$1.core.$strip>]>>;
7113
7132
  tools: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
7114
- name: z$1.ZodString;
7115
- headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7116
7133
  id: z$1.ZodString;
7117
- createdAt: z$1.ZodOptional<z$1.ZodString>;
7118
- updatedAt: z$1.ZodOptional<z$1.ZodString>;
7119
- status: z$1.ZodOptional<z$1.ZodString>;
7120
- capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7134
+ name: z$1.ZodString;
7121
7135
  config: z$1.ZodType<{
7122
7136
  type: "mcp";
7123
7137
  mcp: ToolMcpConfig;
@@ -7132,6 +7146,11 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7132
7146
  mcp: ToolMcpConfig;
7133
7147
  }>>;
7134
7148
  credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7149
+ createdAt: z$1.ZodOptional<z$1.ZodString>;
7150
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
7151
+ headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7152
+ status: z$1.ZodOptional<z$1.ZodString>;
7153
+ capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7135
7154
  imageUrl: z$1.ZodOptional<z$1.ZodString>;
7136
7155
  lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7137
7156
  lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -7149,8 +7168,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7149
7168
  }>;
7150
7169
  }, z$1.core.$strip>>>;
7151
7170
  dataComponents: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
7152
- name: z$1.ZodString;
7153
7171
  id: z$1.ZodString;
7172
+ name: z$1.ZodString;
7154
7173
  description: z$1.ZodString;
7155
7174
  createdAt: z$1.ZodOptional<z$1.ZodString>;
7156
7175
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
@@ -7167,8 +7186,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
7167
7186
  in: {};
7168
7187
  }>>>;
7169
7188
  contextConfig: z$1.ZodOptional<z$1.ZodObject<{
7170
- name: z$1.ZodString;
7171
7189
  id: z$1.ZodString;
7190
+ name: z$1.ZodString;
7172
7191
  description: z$1.ZodString;
7173
7192
  requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
7174
7193
  contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
@@ -7320,10 +7339,14 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
7320
7339
  dataType: "json";
7321
7340
  columnType: "SQLiteTextJson";
7322
7341
  data: {
7323
- base?: {
7342
+ base: {
7324
7343
  model?: string | undefined;
7325
7344
  providerOptions?: Record<string, unknown> | undefined;
7326
- } | undefined;
7345
+ };
7346
+ pull: {
7347
+ model?: string | undefined;
7348
+ providerOptions?: Record<string, unknown> | undefined;
7349
+ };
7327
7350
  structuredOutput?: {
7328
7351
  model?: string | undefined;
7329
7352
  providerOptions?: Record<string, unknown> | undefined;
@@ -7345,10 +7368,14 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
7345
7368
  generated: undefined;
7346
7369
  }, {}, {
7347
7370
  $type: {
7348
- base?: {
7371
+ base: {
7349
7372
  model?: string | undefined;
7350
7373
  providerOptions?: Record<string, unknown> | undefined;
7351
- } | undefined;
7374
+ };
7375
+ pull: {
7376
+ model?: string | undefined;
7377
+ providerOptions?: Record<string, unknown> | undefined;
7378
+ };
7352
7379
  structuredOutput?: {
7353
7380
  model?: string | undefined;
7354
7381
  providerOptions?: Record<string, unknown> | undefined;
@@ -7424,63 +7451,28 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
7424
7451
  }>;
7425
7452
  }, undefined, undefined>;
7426
7453
  declare const ProjectInsertSchema: z$1.ZodObject<{
7427
- name: z$1.ZodString;
7428
7454
  tenantId: z$1.ZodString;
7429
7455
  id: z$1.ZodString;
7456
+ name: z$1.ZodString;
7430
7457
  description: z$1.ZodString;
7431
- models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7432
- base?: {
7433
- model?: string | undefined;
7434
- providerOptions?: Record<string, unknown> | undefined;
7435
- } | undefined;
7436
- structuredOutput?: {
7437
- model?: string | undefined;
7438
- providerOptions?: Record<string, unknown> | undefined;
7439
- } | undefined;
7440
- summarizer?: {
7441
- model?: string | undefined;
7442
- providerOptions?: Record<string, unknown> | undefined;
7443
- } | undefined;
7444
- }, {
7445
- base?: {
7446
- model?: string | undefined;
7447
- providerOptions?: Record<string, unknown> | undefined;
7448
- } | undefined;
7449
- structuredOutput?: {
7450
- model?: string | undefined;
7451
- providerOptions?: Record<string, unknown> | undefined;
7452
- } | undefined;
7453
- summarizer?: {
7454
- model?: string | undefined;
7455
- providerOptions?: Record<string, unknown> | undefined;
7456
- } | undefined;
7457
- }, z$1.core.$ZodTypeInternals<{
7458
- base?: {
7459
- model?: string | undefined;
7460
- providerOptions?: Record<string, unknown> | undefined;
7461
- } | undefined;
7462
- structuredOutput?: {
7463
- model?: string | undefined;
7464
- providerOptions?: Record<string, unknown> | undefined;
7465
- } | undefined;
7466
- summarizer?: {
7467
- model?: string | undefined;
7468
- providerOptions?: Record<string, unknown> | undefined;
7469
- } | undefined;
7470
- }, {
7471
- base?: {
7472
- model?: string | undefined;
7473
- providerOptions?: Record<string, unknown> | undefined;
7474
- } | undefined;
7475
- structuredOutput?: {
7476
- model?: string | undefined;
7477
- providerOptions?: Record<string, unknown> | undefined;
7478
- } | undefined;
7479
- summarizer?: {
7480
- model?: string | undefined;
7481
- providerOptions?: Record<string, unknown> | undefined;
7482
- } | undefined;
7483
- }>>>>;
7458
+ models: z$1.ZodOptional<z$1.ZodObject<{
7459
+ base: z$1.ZodObject<{
7460
+ model: z$1.ZodOptional<z$1.ZodString>;
7461
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7462
+ }, z$1.core.$strip>;
7463
+ structuredOutput: z$1.ZodOptional<z$1.ZodObject<{
7464
+ model: z$1.ZodOptional<z$1.ZodString>;
7465
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7466
+ }, z$1.core.$strip>>;
7467
+ summarizer: z$1.ZodOptional<z$1.ZodObject<{
7468
+ model: z$1.ZodOptional<z$1.ZodString>;
7469
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7470
+ }, z$1.core.$strip>>;
7471
+ pull: z$1.ZodObject<{
7472
+ model: z$1.ZodOptional<z$1.ZodString>;
7473
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7474
+ }, z$1.core.$strip>;
7475
+ }, z$1.core.$strip>>;
7484
7476
  stopWhen: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7485
7477
  transferCountIs?: number;
7486
7478
  stepCountIs?: number;
@@ -7499,63 +7491,28 @@ declare const ProjectInsertSchema: z$1.ZodObject<{
7499
7491
  in: {};
7500
7492
  }>;
7501
7493
  declare const ProjectUpdateSchema: z$1.ZodObject<{
7502
- name: z$1.ZodOptional<z$1.ZodString>;
7503
7494
  tenantId: z$1.ZodOptional<z$1.ZodString>;
7504
7495
  id: z$1.ZodOptional<z$1.ZodString>;
7496
+ name: z$1.ZodOptional<z$1.ZodString>;
7505
7497
  description: z$1.ZodOptional<z$1.ZodString>;
7506
- models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7507
- base?: {
7508
- model?: string | undefined;
7509
- providerOptions?: Record<string, unknown> | undefined;
7510
- } | undefined;
7511
- structuredOutput?: {
7512
- model?: string | undefined;
7513
- providerOptions?: Record<string, unknown> | undefined;
7514
- } | undefined;
7515
- summarizer?: {
7516
- model?: string | undefined;
7517
- providerOptions?: Record<string, unknown> | undefined;
7518
- } | undefined;
7519
- }, {
7520
- base?: {
7521
- model?: string | undefined;
7522
- providerOptions?: Record<string, unknown> | undefined;
7523
- } | undefined;
7524
- structuredOutput?: {
7525
- model?: string | undefined;
7526
- providerOptions?: Record<string, unknown> | undefined;
7527
- } | undefined;
7528
- summarizer?: {
7529
- model?: string | undefined;
7530
- providerOptions?: Record<string, unknown> | undefined;
7531
- } | undefined;
7532
- }, z$1.core.$ZodTypeInternals<{
7533
- base?: {
7534
- model?: string | undefined;
7535
- providerOptions?: Record<string, unknown> | undefined;
7536
- } | undefined;
7537
- structuredOutput?: {
7538
- model?: string | undefined;
7539
- providerOptions?: Record<string, unknown> | undefined;
7540
- } | undefined;
7541
- summarizer?: {
7542
- model?: string | undefined;
7543
- providerOptions?: Record<string, unknown> | undefined;
7544
- } | undefined;
7545
- }, {
7546
- base?: {
7547
- model?: string | undefined;
7548
- providerOptions?: Record<string, unknown> | undefined;
7549
- } | undefined;
7550
- structuredOutput?: {
7551
- model?: string | undefined;
7552
- providerOptions?: Record<string, unknown> | undefined;
7553
- } | undefined;
7554
- summarizer?: {
7555
- model?: string | undefined;
7556
- providerOptions?: Record<string, unknown> | undefined;
7557
- } | undefined;
7558
- }>>>>>;
7498
+ models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
7499
+ base: z$1.ZodObject<{
7500
+ model: z$1.ZodOptional<z$1.ZodString>;
7501
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7502
+ }, z$1.core.$strip>;
7503
+ structuredOutput: z$1.ZodOptional<z$1.ZodObject<{
7504
+ model: z$1.ZodOptional<z$1.ZodString>;
7505
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7506
+ }, z$1.core.$strip>>;
7507
+ summarizer: z$1.ZodOptional<z$1.ZodObject<{
7508
+ model: z$1.ZodOptional<z$1.ZodString>;
7509
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7510
+ }, z$1.core.$strip>>;
7511
+ pull: z$1.ZodObject<{
7512
+ model: z$1.ZodOptional<z$1.ZodString>;
7513
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7514
+ }, z$1.core.$strip>;
7515
+ }, z$1.core.$strip>>>;
7559
7516
  stopWhen: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7560
7517
  transferCountIs?: number;
7561
7518
  stepCountIs?: number;
@@ -7574,16 +7531,20 @@ declare const ProjectUpdateSchema: z$1.ZodObject<{
7574
7531
  in: {};
7575
7532
  }>;
7576
7533
  declare const ProjectApiSelectSchema: z$1.ZodObject<{
7577
- name: z$1.ZodString;
7578
7534
  id: z$1.ZodString;
7535
+ name: z$1.ZodString;
7579
7536
  description: z$1.ZodString;
7580
7537
  createdAt: z$1.ZodString;
7581
7538
  updatedAt: z$1.ZodString;
7582
7539
  models: z$1.ZodNullable<z$1.ZodType<{
7583
- base?: {
7540
+ base: {
7584
7541
  model?: string | undefined;
7585
7542
  providerOptions?: Record<string, unknown> | undefined;
7586
- } | undefined;
7543
+ };
7544
+ pull: {
7545
+ model?: string | undefined;
7546
+ providerOptions?: Record<string, unknown> | undefined;
7547
+ };
7587
7548
  structuredOutput?: {
7588
7549
  model?: string | undefined;
7589
7550
  providerOptions?: Record<string, unknown> | undefined;
@@ -7593,10 +7554,14 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
7593
7554
  providerOptions?: Record<string, unknown> | undefined;
7594
7555
  } | undefined;
7595
7556
  }, {
7596
- base?: {
7557
+ base: {
7597
7558
  model?: string | undefined;
7598
7559
  providerOptions?: Record<string, unknown> | undefined;
7599
- } | undefined;
7560
+ };
7561
+ pull: {
7562
+ model?: string | undefined;
7563
+ providerOptions?: Record<string, unknown> | undefined;
7564
+ };
7600
7565
  structuredOutput?: {
7601
7566
  model?: string | undefined;
7602
7567
  providerOptions?: Record<string, unknown> | undefined;
@@ -7606,10 +7571,14 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
7606
7571
  providerOptions?: Record<string, unknown> | undefined;
7607
7572
  } | undefined;
7608
7573
  }, z$1.core.$ZodTypeInternals<{
7609
- base?: {
7574
+ base: {
7610
7575
  model?: string | undefined;
7611
7576
  providerOptions?: Record<string, unknown> | undefined;
7612
- } | undefined;
7577
+ };
7578
+ pull: {
7579
+ model?: string | undefined;
7580
+ providerOptions?: Record<string, unknown> | undefined;
7581
+ };
7613
7582
  structuredOutput?: {
7614
7583
  model?: string | undefined;
7615
7584
  providerOptions?: Record<string, unknown> | undefined;
@@ -7619,10 +7588,14 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
7619
7588
  providerOptions?: Record<string, unknown> | undefined;
7620
7589
  } | undefined;
7621
7590
  }, {
7622
- base?: {
7591
+ base: {
7623
7592
  model?: string | undefined;
7624
7593
  providerOptions?: Record<string, unknown> | undefined;
7625
- } | undefined;
7594
+ };
7595
+ pull: {
7596
+ model?: string | undefined;
7597
+ providerOptions?: Record<string, unknown> | undefined;
7598
+ };
7626
7599
  structuredOutput?: {
7627
7600
  model?: string | undefined;
7628
7601
  providerOptions?: Record<string, unknown> | undefined;
@@ -7650,62 +7623,27 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
7650
7623
  in: {};
7651
7624
  }>;
7652
7625
  declare const ProjectApiInsertSchema: z$1.ZodObject<{
7653
- name: z$1.ZodString;
7654
7626
  id: z$1.ZodString;
7627
+ name: z$1.ZodString;
7655
7628
  description: z$1.ZodString;
7656
- models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7657
- base?: {
7658
- model?: string | undefined;
7659
- providerOptions?: Record<string, unknown> | undefined;
7660
- } | undefined;
7661
- structuredOutput?: {
7662
- model?: string | undefined;
7663
- providerOptions?: Record<string, unknown> | undefined;
7664
- } | undefined;
7665
- summarizer?: {
7666
- model?: string | undefined;
7667
- providerOptions?: Record<string, unknown> | undefined;
7668
- } | undefined;
7669
- }, {
7670
- base?: {
7671
- model?: string | undefined;
7672
- providerOptions?: Record<string, unknown> | undefined;
7673
- } | undefined;
7674
- structuredOutput?: {
7675
- model?: string | undefined;
7676
- providerOptions?: Record<string, unknown> | undefined;
7677
- } | undefined;
7678
- summarizer?: {
7679
- model?: string | undefined;
7680
- providerOptions?: Record<string, unknown> | undefined;
7681
- } | undefined;
7682
- }, z$1.core.$ZodTypeInternals<{
7683
- base?: {
7684
- model?: string | undefined;
7685
- providerOptions?: Record<string, unknown> | undefined;
7686
- } | undefined;
7687
- structuredOutput?: {
7688
- model?: string | undefined;
7689
- providerOptions?: Record<string, unknown> | undefined;
7690
- } | undefined;
7691
- summarizer?: {
7692
- model?: string | undefined;
7693
- providerOptions?: Record<string, unknown> | undefined;
7694
- } | undefined;
7695
- }, {
7696
- base?: {
7697
- model?: string | undefined;
7698
- providerOptions?: Record<string, unknown> | undefined;
7699
- } | undefined;
7700
- structuredOutput?: {
7701
- model?: string | undefined;
7702
- providerOptions?: Record<string, unknown> | undefined;
7703
- } | undefined;
7704
- summarizer?: {
7705
- model?: string | undefined;
7706
- providerOptions?: Record<string, unknown> | undefined;
7707
- } | undefined;
7708
- }>>>>;
7629
+ models: z$1.ZodOptional<z$1.ZodObject<{
7630
+ base: z$1.ZodObject<{
7631
+ model: z$1.ZodOptional<z$1.ZodString>;
7632
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7633
+ }, z$1.core.$strip>;
7634
+ structuredOutput: z$1.ZodOptional<z$1.ZodObject<{
7635
+ model: z$1.ZodOptional<z$1.ZodString>;
7636
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7637
+ }, z$1.core.$strip>>;
7638
+ summarizer: z$1.ZodOptional<z$1.ZodObject<{
7639
+ model: z$1.ZodOptional<z$1.ZodString>;
7640
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7641
+ }, z$1.core.$strip>>;
7642
+ pull: z$1.ZodObject<{
7643
+ model: z$1.ZodOptional<z$1.ZodString>;
7644
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7645
+ }, z$1.core.$strip>;
7646
+ }, z$1.core.$strip>>;
7709
7647
  stopWhen: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7710
7648
  transferCountIs?: number;
7711
7649
  stepCountIs?: number;
@@ -7724,62 +7662,27 @@ declare const ProjectApiInsertSchema: z$1.ZodObject<{
7724
7662
  in: {};
7725
7663
  }>;
7726
7664
  declare const ProjectApiUpdateSchema: z$1.ZodObject<{
7727
- name: z$1.ZodOptional<z$1.ZodString>;
7728
7665
  id: z$1.ZodOptional<z$1.ZodString>;
7666
+ name: z$1.ZodOptional<z$1.ZodString>;
7729
7667
  description: z$1.ZodOptional<z$1.ZodString>;
7730
- models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7731
- base?: {
7732
- model?: string | undefined;
7733
- providerOptions?: Record<string, unknown> | undefined;
7734
- } | undefined;
7735
- structuredOutput?: {
7736
- model?: string | undefined;
7737
- providerOptions?: Record<string, unknown> | undefined;
7738
- } | undefined;
7739
- summarizer?: {
7740
- model?: string | undefined;
7741
- providerOptions?: Record<string, unknown> | undefined;
7742
- } | undefined;
7743
- }, {
7744
- base?: {
7745
- model?: string | undefined;
7746
- providerOptions?: Record<string, unknown> | undefined;
7747
- } | undefined;
7748
- structuredOutput?: {
7749
- model?: string | undefined;
7750
- providerOptions?: Record<string, unknown> | undefined;
7751
- } | undefined;
7752
- summarizer?: {
7753
- model?: string | undefined;
7754
- providerOptions?: Record<string, unknown> | undefined;
7755
- } | undefined;
7756
- }, z$1.core.$ZodTypeInternals<{
7757
- base?: {
7758
- model?: string | undefined;
7759
- providerOptions?: Record<string, unknown> | undefined;
7760
- } | undefined;
7761
- structuredOutput?: {
7762
- model?: string | undefined;
7763
- providerOptions?: Record<string, unknown> | undefined;
7764
- } | undefined;
7765
- summarizer?: {
7766
- model?: string | undefined;
7767
- providerOptions?: Record<string, unknown> | undefined;
7768
- } | undefined;
7769
- }, {
7770
- base?: {
7771
- model?: string | undefined;
7772
- providerOptions?: Record<string, unknown> | undefined;
7773
- } | undefined;
7774
- structuredOutput?: {
7775
- model?: string | undefined;
7776
- providerOptions?: Record<string, unknown> | undefined;
7777
- } | undefined;
7778
- summarizer?: {
7779
- model?: string | undefined;
7780
- providerOptions?: Record<string, unknown> | undefined;
7781
- } | undefined;
7782
- }>>>>>;
7668
+ models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
7669
+ base: z$1.ZodObject<{
7670
+ model: z$1.ZodOptional<z$1.ZodString>;
7671
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7672
+ }, z$1.core.$strip>;
7673
+ structuredOutput: z$1.ZodOptional<z$1.ZodObject<{
7674
+ model: z$1.ZodOptional<z$1.ZodString>;
7675
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7676
+ }, z$1.core.$strip>>;
7677
+ summarizer: z$1.ZodOptional<z$1.ZodObject<{
7678
+ model: z$1.ZodOptional<z$1.ZodString>;
7679
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7680
+ }, z$1.core.$strip>>;
7681
+ pull: z$1.ZodObject<{
7682
+ model: z$1.ZodOptional<z$1.ZodString>;
7683
+ providerOptions: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
7684
+ }, z$1.core.$strip>;
7685
+ }, z$1.core.$strip>>>;
7783
7686
  stopWhen: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
7784
7687
  transferCountIs?: number;
7785
7688
  stepCountIs?: number;
@@ -7970,4 +7873,4 @@ type ProjectApiInsert = z.infer<typeof ProjectApiInsertSchema>;
7970
7873
  type ProjectApiUpdate = z.infer<typeof ProjectApiUpdateSchema>;
7971
7874
  type Pagination = z.infer<typeof PaginationSchema>;
7972
7875
 
7973
- export { type ExternalAgentUpdate as $, type AgentGraphInsert as A, type ArtifactComponentInsert as B, CredentialStoreType as C, type ArtifactComponentUpdate as D, type ExternalAgentRelationInsert as E, type FetchDefinition as F, type ContextCacheSelect as G, type ContextCacheInsert as H, type ContextConfigInsert as I, type ContextConfigUpdate as J, type ConversationSelect as K, type ConversationInsert as L, MCPTransportType as M, type ConversationUpdate as N, type CredentialReferenceSelect as O, type Part as P, type ToolSelect as Q, type RequestSchemaDefinition as R, type ScopeConfig as S, type TaskMetadataConfig as T, type CredentialReferenceInsert as U, type CredentialReferenceUpdate as V, type DataComponentSelect as W, type DataComponentInsert as X, type DataComponentUpdate as Y, type ExternalAgentInsert as Z, type ExternalAgentSelect as _, type ContextFetchDefinition as a, type MessageSendConfiguration as a$, type Artifact as a0, type LedgerArtifactSelect as a1, type MessageVisibility as a2, type MessageInsert as a3, type MessageUpdate as a4, type ProjectInfo as a5, type ProjectSelect as a6, type PaginationResult as a7, type ProjectResourceCounts as a8, type ProjectInsert as a9, type PasswordOAuthFlow as aA, type OAuth2SecurityScheme as aB, type OpenIdConnectSecurityScheme as aC, type SecurityScheme as aD, type AgentCard as aE, type Message as aF, type TaskStatus as aG, type Task as aH, type TaskStatusUpdateEvent as aI, type TaskArtifactUpdateEvent as aJ, type JSONParseError as aK, type InvalidRequestError as aL, type MethodNotFoundError as aM, type InvalidParamsError as aN, type InternalError as aO, type TaskNotFoundError as aP, type TaskNotCancelableError as aQ, type PushNotificationNotSupportedError as aR, type UnsupportedOperationError as aS, type ContentTypeNotSupportedError as aT, type InvalidAgentResponseError as aU, type A2AError as aV, type PushNotificationAuthenticationInfo as aW, type PushNotificationConfig as aX, type TaskPushNotificationConfig as aY, type TaskIdParams as aZ, type TaskQueryParams as a_, type ProjectUpdate as aa, type TaskInsert as ab, type TaskSelect as ac, type McpTool as ad, type McpToolStatus as ae, type ToolInsert as af, type ToolUpdate as ag, type ExecutionContext as ah, type PartBase as ai, type TextPart as aj, type FileBase as ak, type FileWithBytes as al, type FileWithUri as am, type FilePart as an, type DataPart as ao, TaskState as ap, type AgentCapabilities as aq, type AgentProvider as ar, type AgentSkill as as, type SecuritySchemeBase as at, type APIKeySecurityScheme as au, type HTTPAuthSecurityScheme as av, type OAuthFlows as aw, type AuthorizationCodeOAuthFlow as ax, type ClientCredentialsOAuthFlow as ay, type ImplicitOAuthFlow as az, type ConversationHistoryConfig as b, type ContextConfigApiInsert as b$, type MessageSendParams as b0, type JSONRPCMessage as b1, type JSONRPCRequest as b2, type JSONRPCError as b3, type JSONRPCResult as b4, type JSONRPCErrorResponse as b5, type SendMessageRequest as b6, type SendStreamingMessageRequest as b7, type GetTaskRequest as b8, type CancelTaskRequest as b9, type AgentRelationQuery as bA, type ExternalAgentRelationApiInsert as bB, type AgentGraphSelect as bC, type AgentGraphApiSelect as bD, type AgentGraphApiInsert as bE, type AgentGraphApiUpdate as bF, type TaskUpdate as bG, type TaskApiSelect as bH, type TaskApiInsert as bI, type TaskApiUpdate as bJ, type TaskRelationSelect as bK, type TaskRelationInsert as bL, type TaskRelationUpdate as bM, type TaskRelationApiSelect as bN, type TaskRelationApiInsert as bO, type TaskRelationApiUpdate as bP, type ToolApiSelect as bQ, type ToolApiInsert as bR, type ToolApiUpdate as bS, type ConversationApiSelect as bT, type ConversationApiInsert as bU, type ConversationApiUpdate as bV, type MessageSelect as bW, type MessageApiSelect as bX, type MessageApiInsert as bY, type MessageApiUpdate as bZ, type ContextConfigApiSelect as b_, type SetTaskPushNotificationConfigRequest as ba, type GetTaskPushNotificationConfigRequest as bb, type TaskResubscriptionRequest as bc, type SendMessageSuccessResponse as bd, type SendMessageResponse as be, type SendStreamingMessageSuccessResponse as bf, type SendStreamingMessageResponse as bg, type GetTaskSuccessResponse as bh, type GetTaskResponse as bi, type CancelTaskSuccessResponse as bj, type CancelTaskResponse as bk, type SetTaskPushNotificationConfigSuccessResponse as bl, type SetTaskPushNotificationConfigResponse as bm, type GetTaskPushNotificationConfigSuccessResponse as bn, type GetTaskPushNotificationConfigResponse as bo, type A2ARequest as bp, type A2AResponse as bq, type MessagePart as br, type TaskArtifact as bs, type AgentApiSelect as bt, type AgentApiInsert as bu, type AgentApiUpdate as bv, type AgentRelationSelect as bw, type AgentRelationApiSelect as bx, type AgentRelationApiInsert as by, type AgentRelationApiUpdate as bz, type ToolMcpConfig as c, type McpAuthType as c$, type ContextConfigApiUpdate as c0, type FetchConfig as c1, type ContextCacheUpdate as c2, type ContextCacheApiSelect as c3, type ContextCacheApiInsert as c4, type ContextCacheApiUpdate as c5, type DataComponentApiSelect as c6, type DataComponentApiInsert as c7, type DataComponentApiUpdate as c8, type AgentDataComponentSelect as c9, type AgentToolRelationInsert as cA, type AgentToolRelationApiSelect as cB, type AgentToolRelationApiInsert as cC, type AgentToolRelationApiUpdate as cD, type LedgerArtifactInsert as cE, type LedgerArtifactUpdate as cF, type LedgerArtifactApiSelect as cG, type LedgerArtifactApiInsert as cH, type LedgerArtifactApiUpdate as cI, type FullGraphAgentInsert as cJ, type InternalAgentDefinition as cK, type AgentDefinition as cL, type ToolDefinition as cM, type ProjectApiSelect as cN, type ProjectApiInsert as cO, type ProjectApiUpdate as cP, type Pagination as cQ, type MessageType as cR, type MessageRole as cS, type MessageMode as cT, type Models as cU, type ModelSettings as cV, type StatusUpdateSettings as cW, type StatusComponent as cX, type ConversationScopeOptions as cY, type AgentConversationHistoryConfig as cZ, type ContextCacheEntry as c_, type AgentDataComponentInsert as ca, type AgentDataComponentUpdate as cb, type AgentDataComponentApiSelect as cc, type AgentDataComponentApiInsert as cd, type AgentDataComponentApiUpdate as ce, type ArtifactComponentApiSelect as cf, type ArtifactComponentApiInsert as cg, type ArtifactComponentApiUpdate as ch, type AgentArtifactComponentSelect as ci, type AgentArtifactComponentInsert as cj, type AgentArtifactComponentUpdate as ck, type AgentArtifactComponentApiSelect as cl, type AgentArtifactComponentApiInsert as cm, type AgentArtifactComponentApiUpdate as cn, type ExternalAgentApiSelect as co, type ExternalAgentApiInsert as cp, type ExternalAgentApiUpdate as cq, type AllAgentSelect as cr, type ApiKeyApiSelect as cs, type ApiKeyApiInsert as ct, type ApiKeyApiUpdate as cu, type ApiKeyApiCreationResponse as cv, type CredentialReferenceApiSelect as cw, type CredentialReferenceApiInsert as cx, type CredentialReferenceApiUpdate as cy, type AgentToolRelationSelect as cz, type ToolServerCapabilities as d, MessageApiUpdateSchema as d$, type McpServerAuth as d0, type McpTransportConfig as d1, type McpServerCapabilities as d2, type toolStatus as d3, TOOL_STATUS_VALUES as d4, VALID_RELATION_TYPES as d5, MCPServerType as d6, MIN_ID_LENGTH as d7, MAX_ID_LENGTH as d8, URL_SAFE_ID_PATTERN as d9, TaskInsertSchema as dA, TaskUpdateSchema as dB, TaskApiSelectSchema as dC, TaskApiInsertSchema as dD, TaskApiUpdateSchema as dE, TaskRelationSelectSchema as dF, TaskRelationInsertSchema as dG, TaskRelationUpdateSchema as dH, TaskRelationApiSelectSchema as dI, TaskRelationApiInsertSchema as dJ, TaskRelationApiUpdateSchema as dK, McpTransportConfigSchema as dL, ToolStatusSchema as dM, McpToolDefinitionSchema as dN, ToolSelectSchema as dO, ToolInsertSchema as dP, ConversationSelectSchema as dQ, ConversationInsertSchema as dR, ConversationUpdateSchema as dS, ConversationApiSelectSchema as dT, ConversationApiInsertSchema as dU, ConversationApiUpdateSchema as dV, MessageSelectSchema as dW, MessageInsertSchema as dX, MessageUpdateSchema as dY, MessageApiSelectSchema as dZ, MessageApiInsertSchema as d_, resourceIdSchema as da, ModelSettingsSchema as db, ModelSchema as dc, AgentSelectSchema as dd, AgentInsertSchema as de, AgentUpdateSchema as df, AgentApiSelectSchema as dg, AgentApiInsertSchema as dh, AgentApiUpdateSchema as di, AgentRelationSelectSchema as dj, AgentRelationInsertSchema as dk, AgentRelationUpdateSchema as dl, AgentRelationApiSelectSchema as dm, AgentRelationApiInsertSchema as dn, AgentRelationApiUpdateSchema as dp, AgentRelationQuerySchema as dq, ExternalAgentRelationInsertSchema as dr, ExternalAgentRelationApiInsertSchema as ds, AgentGraphSelectSchema as dt, AgentGraphInsertSchema as du, AgentGraphUpdateSchema as dv, AgentGraphApiSelectSchema as dw, AgentGraphApiInsertSchema as dx, AgentGraphApiUpdateSchema as dy, TaskSelectSchema as dz, type McpToolDefinition as e, ContextConfigApiInsertSchema as e$, ContextCacheSelectSchema as e0, ContextCacheInsertSchema as e1, ContextCacheUpdateSchema as e2, ContextCacheApiSelectSchema as e3, ContextCacheApiInsertSchema as e4, ContextCacheApiUpdateSchema as e5, DataComponentSelectSchema as e6, DataComponentInsertSchema as e7, DataComponentBaseSchema as e8, DataComponentUpdateSchema as e9, ExternalAgentApiUpdateSchema as eA, AllAgentSchema as eB, ApiKeySelectSchema as eC, ApiKeyInsertSchema as eD, ApiKeyUpdateSchema as eE, ApiKeyApiSelectSchema as eF, ApiKeyApiCreationResponseSchema as eG, ApiKeyApiInsertSchema as eH, ApiKeyApiUpdateSchema as eI, CredentialReferenceSelectSchema as eJ, CredentialReferenceInsertSchema as eK, CredentialReferenceUpdateSchema as eL, CredentialReferenceApiSelectSchema as eM, CredentialReferenceApiInsertSchema as eN, CredentialReferenceApiUpdateSchema as eO, McpToolSchema as eP, MCPToolConfigSchema as eQ, ToolUpdateSchema as eR, ToolApiSelectSchema as eS, ToolApiInsertSchema as eT, ToolApiUpdateSchema as eU, FetchConfigSchema as eV, FetchDefinitionSchema as eW, ContextConfigSelectSchema as eX, ContextConfigInsertSchema as eY, ContextConfigUpdateSchema as eZ, ContextConfigApiSelectSchema as e_, DataComponentApiSelectSchema as ea, DataComponentApiInsertSchema as eb, DataComponentApiUpdateSchema as ec, AgentDataComponentSelectSchema as ed, AgentDataComponentInsertSchema as ee, AgentDataComponentUpdateSchema as ef, AgentDataComponentApiSelectSchema as eg, AgentDataComponentApiInsertSchema as eh, AgentDataComponentApiUpdateSchema as ei, ArtifactComponentSelectSchema as ej, ArtifactComponentInsertSchema as ek, ArtifactComponentUpdateSchema as el, ArtifactComponentApiSelectSchema as em, ArtifactComponentApiInsertSchema as en, ArtifactComponentApiUpdateSchema as eo, AgentArtifactComponentSelectSchema as ep, AgentArtifactComponentInsertSchema as eq, AgentArtifactComponentUpdateSchema as er, AgentArtifactComponentApiSelectSchema as es, AgentArtifactComponentApiInsertSchema as et, AgentArtifactComponentApiUpdateSchema as eu, ExternalAgentSelectSchema as ev, ExternalAgentInsertSchema as ew, ExternalAgentUpdateSchema as ex, ExternalAgentApiSelectSchema as ey, ExternalAgentApiInsertSchema as ez, type ConversationMetadata as f, ContextConfigApiUpdateSchema as f0, AgentToolRelationSelectSchema as f1, AgentToolRelationInsertSchema as f2, AgentToolRelationUpdateSchema as f3, AgentToolRelationApiSelectSchema as f4, AgentToolRelationApiInsertSchema as f5, AgentToolRelationApiUpdateSchema as f6, LedgerArtifactSelectSchema as f7, LedgerArtifactInsertSchema as f8, LedgerArtifactUpdateSchema as f9, LedgerArtifactApiSelectSchema as fa, LedgerArtifactApiInsertSchema as fb, LedgerArtifactApiUpdateSchema as fc, StatusComponentSchema as fd, StatusUpdateSchema as fe, FullGraphAgentInsertSchema as ff, FullGraphDefinitionSchema as fg, PaginationSchema as fh, ListResponseSchema as fi, SingleResponseSchema as fj, ErrorResponseSchema as fk, ExistsResponseSchema as fl, RemovedResponseSchema as fm, ProjectSelectSchema as fn, ProjectInsertSchema as fo, ProjectUpdateSchema as fp, ProjectApiSelectSchema as fq, ProjectApiInsertSchema as fr, ProjectApiUpdateSchema as fs, HeadersScopeSchema as ft, TenantParamsSchema as fu, TenantProjectParamsSchema as fv, TenantProjectIdParamsSchema as fw, TenantIdParamsSchema as fx, IdParamsSchema as fy, PaginationQueryParamsSchema as fz, type MessageContent as g, type MessageMetadata as h, type RequestSchemaConfig as i, type ContextConfigSelect as j, type MCPToolConfig as k, type PaginationConfig as l, type AgentGraphUpdate as m, type FullGraphDefinition as n, type AgentRelationInsert as o, type AgentRelationUpdate as p, type AgentToolRelationUpdate as q, type AgentInsert as r, type AgentUpdate as s, type AgentSelect as t, type ApiKeySelect as u, type ApiKeyInsert as v, type ApiKeyUpdate as w, type CreateApiKeyParams as x, type ApiKeyCreateResult as y, type ArtifactComponentSelect as z };
7876
+ export { type ExternalAgentUpdate as $, type AgentGraphInsert as A, type ArtifactComponentInsert as B, CredentialStoreType as C, type ArtifactComponentUpdate as D, type ExternalAgentRelationInsert as E, type FetchDefinition as F, type ContextCacheSelect as G, type ContextCacheInsert as H, type ContextConfigInsert as I, type ContextConfigUpdate as J, type ConversationSelect as K, type ConversationInsert as L, MCPTransportType as M, type ConversationUpdate as N, type CredentialReferenceSelect as O, type Part as P, type ToolSelect as Q, type RequestSchemaDefinition as R, type ScopeConfig as S, type TaskMetadataConfig as T, type CredentialReferenceInsert as U, type CredentialReferenceUpdate as V, type DataComponentSelect as W, type DataComponentInsert as X, type DataComponentUpdate as Y, type ExternalAgentInsert as Z, type ExternalAgentSelect as _, type ContextFetchDefinition as a, type MessageSendConfiguration as a$, type Artifact as a0, type LedgerArtifactSelect as a1, type MessageVisibility as a2, type MessageInsert as a3, type MessageUpdate as a4, type ProjectInfo as a5, type ProjectSelect as a6, type PaginationResult as a7, type ProjectResourceCounts as a8, type ProjectInsert as a9, type PasswordOAuthFlow as aA, type OAuth2SecurityScheme as aB, type OpenIdConnectSecurityScheme as aC, type SecurityScheme as aD, type AgentCard as aE, type Message as aF, type TaskStatus as aG, type Task as aH, type TaskStatusUpdateEvent as aI, type TaskArtifactUpdateEvent as aJ, type JSONParseError as aK, type InvalidRequestError as aL, type MethodNotFoundError as aM, type InvalidParamsError as aN, type InternalError as aO, type TaskNotFoundError as aP, type TaskNotCancelableError as aQ, type PushNotificationNotSupportedError as aR, type UnsupportedOperationError as aS, type ContentTypeNotSupportedError as aT, type InvalidAgentResponseError as aU, type A2AError as aV, type PushNotificationAuthenticationInfo as aW, type PushNotificationConfig as aX, type TaskPushNotificationConfig as aY, type TaskIdParams as aZ, type TaskQueryParams as a_, type ProjectUpdate as aa, type TaskInsert as ab, type TaskSelect as ac, type McpTool as ad, type McpToolStatus as ae, type ToolInsert as af, type ToolUpdate as ag, type ExecutionContext as ah, type PartBase as ai, type TextPart as aj, type FileBase as ak, type FileWithBytes as al, type FileWithUri as am, type FilePart as an, type DataPart as ao, TaskState as ap, type AgentCapabilities as aq, type AgentProvider as ar, type AgentSkill as as, type SecuritySchemeBase as at, type APIKeySecurityScheme as au, type HTTPAuthSecurityScheme as av, type OAuthFlows as aw, type AuthorizationCodeOAuthFlow as ax, type ClientCredentialsOAuthFlow as ay, type ImplicitOAuthFlow as az, type ConversationHistoryConfig as b, type ContextConfigApiInsert as b$, type MessageSendParams as b0, type JSONRPCMessage as b1, type JSONRPCRequest as b2, type JSONRPCError as b3, type JSONRPCResult as b4, type JSONRPCErrorResponse as b5, type SendMessageRequest as b6, type SendStreamingMessageRequest as b7, type GetTaskRequest as b8, type CancelTaskRequest as b9, type AgentRelationQuery as bA, type ExternalAgentRelationApiInsert as bB, type AgentGraphSelect as bC, type AgentGraphApiSelect as bD, type AgentGraphApiInsert as bE, type AgentGraphApiUpdate as bF, type TaskUpdate as bG, type TaskApiSelect as bH, type TaskApiInsert as bI, type TaskApiUpdate as bJ, type TaskRelationSelect as bK, type TaskRelationInsert as bL, type TaskRelationUpdate as bM, type TaskRelationApiSelect as bN, type TaskRelationApiInsert as bO, type TaskRelationApiUpdate as bP, type ToolApiSelect as bQ, type ToolApiInsert as bR, type ToolApiUpdate as bS, type ConversationApiSelect as bT, type ConversationApiInsert as bU, type ConversationApiUpdate as bV, type MessageSelect as bW, type MessageApiSelect as bX, type MessageApiInsert as bY, type MessageApiUpdate as bZ, type ContextConfigApiSelect as b_, type SetTaskPushNotificationConfigRequest as ba, type GetTaskPushNotificationConfigRequest as bb, type TaskResubscriptionRequest as bc, type SendMessageSuccessResponse as bd, type SendMessageResponse as be, type SendStreamingMessageSuccessResponse as bf, type SendStreamingMessageResponse as bg, type GetTaskSuccessResponse as bh, type GetTaskResponse as bi, type CancelTaskSuccessResponse as bj, type CancelTaskResponse as bk, type SetTaskPushNotificationConfigSuccessResponse as bl, type SetTaskPushNotificationConfigResponse as bm, type GetTaskPushNotificationConfigSuccessResponse as bn, type GetTaskPushNotificationConfigResponse as bo, type A2ARequest as bp, type A2AResponse as bq, type MessagePart as br, type TaskArtifact as bs, type AgentApiSelect as bt, type AgentApiInsert as bu, type AgentApiUpdate as bv, type AgentRelationSelect as bw, type AgentRelationApiSelect as bx, type AgentRelationApiInsert as by, type AgentRelationApiUpdate as bz, type ToolMcpConfig as c, type ContextCacheEntry as c$, type ContextConfigApiUpdate as c0, type FetchConfig as c1, type ContextCacheUpdate as c2, type ContextCacheApiSelect as c3, type ContextCacheApiInsert as c4, type ContextCacheApiUpdate as c5, type DataComponentApiSelect as c6, type DataComponentApiInsert as c7, type DataComponentApiUpdate as c8, type AgentDataComponentSelect as c9, type AgentToolRelationInsert as cA, type AgentToolRelationApiSelect as cB, type AgentToolRelationApiInsert as cC, type AgentToolRelationApiUpdate as cD, type LedgerArtifactInsert as cE, type LedgerArtifactUpdate as cF, type LedgerArtifactApiSelect as cG, type LedgerArtifactApiInsert as cH, type LedgerArtifactApiUpdate as cI, type FullGraphAgentInsert as cJ, type InternalAgentDefinition as cK, type AgentDefinition as cL, type ToolDefinition as cM, type ProjectApiSelect as cN, type ProjectApiInsert as cO, type ProjectApiUpdate as cP, type Pagination as cQ, type MessageType as cR, type MessageRole as cS, type MessageMode as cT, type Models as cU, type ProjectModels as cV, type ModelSettings as cW, type StatusUpdateSettings as cX, type StatusComponent as cY, type ConversationScopeOptions as cZ, type AgentConversationHistoryConfig as c_, type AgentDataComponentInsert as ca, type AgentDataComponentUpdate as cb, type AgentDataComponentApiSelect as cc, type AgentDataComponentApiInsert as cd, type AgentDataComponentApiUpdate as ce, type ArtifactComponentApiSelect as cf, type ArtifactComponentApiInsert as cg, type ArtifactComponentApiUpdate as ch, type AgentArtifactComponentSelect as ci, type AgentArtifactComponentInsert as cj, type AgentArtifactComponentUpdate as ck, type AgentArtifactComponentApiSelect as cl, type AgentArtifactComponentApiInsert as cm, type AgentArtifactComponentApiUpdate as cn, type ExternalAgentApiSelect as co, type ExternalAgentApiInsert as cp, type ExternalAgentApiUpdate as cq, type AllAgentSelect as cr, type ApiKeyApiSelect as cs, type ApiKeyApiInsert as ct, type ApiKeyApiUpdate as cu, type ApiKeyApiCreationResponse as cv, type CredentialReferenceApiSelect as cw, type CredentialReferenceApiInsert as cx, type CredentialReferenceApiUpdate as cy, type AgentToolRelationSelect as cz, type ToolServerCapabilities as d, MessageApiSelectSchema as d$, type McpAuthType as d0, type McpServerAuth as d1, type McpTransportConfig as d2, type McpServerCapabilities as d3, type toolStatus as d4, TOOL_STATUS_VALUES as d5, VALID_RELATION_TYPES as d6, MCPServerType as d7, MIN_ID_LENGTH as d8, MAX_ID_LENGTH as d9, AgentGraphApiUpdateSchema as dA, TaskSelectSchema as dB, TaskInsertSchema as dC, TaskUpdateSchema as dD, TaskApiSelectSchema as dE, TaskApiInsertSchema as dF, TaskApiUpdateSchema as dG, TaskRelationSelectSchema as dH, TaskRelationInsertSchema as dI, TaskRelationUpdateSchema as dJ, TaskRelationApiSelectSchema as dK, TaskRelationApiInsertSchema as dL, TaskRelationApiUpdateSchema as dM, McpTransportConfigSchema as dN, ToolStatusSchema as dO, McpToolDefinitionSchema as dP, ToolSelectSchema as dQ, ToolInsertSchema as dR, ConversationSelectSchema as dS, ConversationInsertSchema as dT, ConversationUpdateSchema as dU, ConversationApiSelectSchema as dV, ConversationApiInsertSchema as dW, ConversationApiUpdateSchema as dX, MessageSelectSchema as dY, MessageInsertSchema as dZ, MessageUpdateSchema as d_, URL_SAFE_ID_PATTERN as da, resourceIdSchema as db, ModelSettingsSchema as dc, ModelSchema as dd, ProjectModelSchema as de, AgentSelectSchema as df, AgentInsertSchema as dg, AgentUpdateSchema as dh, AgentApiSelectSchema as di, AgentApiInsertSchema as dj, AgentApiUpdateSchema as dk, AgentRelationSelectSchema as dl, AgentRelationInsertSchema as dm, AgentRelationUpdateSchema as dn, AgentRelationApiSelectSchema as dp, AgentRelationApiInsertSchema as dq, AgentRelationApiUpdateSchema as dr, AgentRelationQuerySchema as ds, ExternalAgentRelationInsertSchema as dt, ExternalAgentRelationApiInsertSchema as du, AgentGraphSelectSchema as dv, AgentGraphInsertSchema as dw, AgentGraphUpdateSchema as dx, AgentGraphApiSelectSchema as dy, AgentGraphApiInsertSchema as dz, type McpToolDefinition as e, ContextConfigUpdateSchema as e$, MessageApiInsertSchema as e0, MessageApiUpdateSchema as e1, ContextCacheSelectSchema as e2, ContextCacheInsertSchema as e3, ContextCacheUpdateSchema as e4, ContextCacheApiSelectSchema as e5, ContextCacheApiInsertSchema as e6, ContextCacheApiUpdateSchema as e7, DataComponentSelectSchema as e8, DataComponentInsertSchema as e9, ExternalAgentApiSelectSchema as eA, ExternalAgentApiInsertSchema as eB, ExternalAgentApiUpdateSchema as eC, AllAgentSchema as eD, ApiKeySelectSchema as eE, ApiKeyInsertSchema as eF, ApiKeyUpdateSchema as eG, ApiKeyApiSelectSchema as eH, ApiKeyApiCreationResponseSchema as eI, ApiKeyApiInsertSchema as eJ, ApiKeyApiUpdateSchema as eK, CredentialReferenceSelectSchema as eL, CredentialReferenceInsertSchema as eM, CredentialReferenceUpdateSchema as eN, CredentialReferenceApiSelectSchema as eO, CredentialReferenceApiInsertSchema as eP, CredentialReferenceApiUpdateSchema as eQ, McpToolSchema as eR, MCPToolConfigSchema as eS, ToolUpdateSchema as eT, ToolApiSelectSchema as eU, ToolApiInsertSchema as eV, ToolApiUpdateSchema as eW, FetchConfigSchema as eX, FetchDefinitionSchema as eY, ContextConfigSelectSchema as eZ, ContextConfigInsertSchema as e_, DataComponentBaseSchema as ea, DataComponentUpdateSchema as eb, DataComponentApiSelectSchema as ec, DataComponentApiInsertSchema as ed, DataComponentApiUpdateSchema as ee, AgentDataComponentSelectSchema as ef, AgentDataComponentInsertSchema as eg, AgentDataComponentUpdateSchema as eh, AgentDataComponentApiSelectSchema as ei, AgentDataComponentApiInsertSchema as ej, AgentDataComponentApiUpdateSchema as ek, ArtifactComponentSelectSchema as el, ArtifactComponentInsertSchema as em, ArtifactComponentUpdateSchema as en, ArtifactComponentApiSelectSchema as eo, ArtifactComponentApiInsertSchema as ep, ArtifactComponentApiUpdateSchema as eq, AgentArtifactComponentSelectSchema as er, AgentArtifactComponentInsertSchema as es, AgentArtifactComponentUpdateSchema as et, AgentArtifactComponentApiSelectSchema as eu, AgentArtifactComponentApiInsertSchema as ev, AgentArtifactComponentApiUpdateSchema as ew, ExternalAgentSelectSchema as ex, ExternalAgentInsertSchema as ey, ExternalAgentUpdateSchema as ez, type ConversationMetadata as f, ContextConfigApiSelectSchema as f0, ContextConfigApiInsertSchema as f1, ContextConfigApiUpdateSchema as f2, AgentToolRelationSelectSchema as f3, AgentToolRelationInsertSchema as f4, AgentToolRelationUpdateSchema as f5, AgentToolRelationApiSelectSchema as f6, AgentToolRelationApiInsertSchema as f7, AgentToolRelationApiUpdateSchema as f8, LedgerArtifactSelectSchema as f9, IdParamsSchema as fA, PaginationQueryParamsSchema as fB, LedgerArtifactInsertSchema as fa, LedgerArtifactUpdateSchema as fb, LedgerArtifactApiSelectSchema as fc, LedgerArtifactApiInsertSchema as fd, LedgerArtifactApiUpdateSchema as fe, StatusComponentSchema as ff, StatusUpdateSchema as fg, FullGraphAgentInsertSchema as fh, FullGraphDefinitionSchema as fi, PaginationSchema as fj, ListResponseSchema as fk, SingleResponseSchema as fl, ErrorResponseSchema as fm, ExistsResponseSchema as fn, RemovedResponseSchema as fo, ProjectSelectSchema as fp, ProjectInsertSchema as fq, ProjectUpdateSchema as fr, ProjectApiSelectSchema as fs, ProjectApiInsertSchema as ft, ProjectApiUpdateSchema as fu, HeadersScopeSchema as fv, TenantParamsSchema as fw, TenantProjectParamsSchema as fx, TenantProjectIdParamsSchema as fy, TenantIdParamsSchema as fz, type MessageContent as g, type MessageMetadata as h, type RequestSchemaConfig as i, type ContextConfigSelect as j, type MCPToolConfig as k, type PaginationConfig as l, type AgentGraphUpdate as m, type FullGraphDefinition as n, type AgentRelationInsert as o, type AgentRelationUpdate as p, type AgentToolRelationUpdate as q, type AgentInsert as r, type AgentUpdate as s, type AgentSelect as t, type ApiKeySelect as u, type ApiKeyInsert as v, type ApiKeyUpdate as w, type CreateApiKeyParams as x, type ApiKeyCreateResult as y, type ArtifactComponentSelect as z };