@inkeep/agents-core 0.22.0 → 0.22.2

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.
@@ -427,19 +427,6 @@ declare const ProjectModelSchema: z.ZodObject<{
427
427
  providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
428
428
  }, z.core.$strip>>;
429
429
  }, z.core.$strip>;
430
- declare const SandboxConfigSchema: z.ZodObject<{
431
- provider: z.ZodEnum<{
432
- vercel: "vercel";
433
- local: "local";
434
- }>;
435
- runtime: z.ZodEnum<{
436
- node22: "node22";
437
- typescript: "typescript";
438
- }>;
439
- timeout: z.ZodOptional<z.ZodNumber>;
440
- vcpus: z.ZodOptional<z.ZodNumber>;
441
- }, z.core.$strip>;
442
- type SandboxConfig = z.infer<typeof SandboxConfigSchema>;
443
430
  declare const FunctionToolConfigSchema: z.ZodObject<{
444
431
  name: z.ZodString;
445
432
  description: z.ZodString;
@@ -787,12 +774,11 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
787
774
  in: {};
788
775
  }>;
789
776
  declare const SubAgentApiSelectSchema: z.ZodObject<{
790
- id: z.ZodString;
791
777
  name: z.ZodString;
792
- description: z.ZodString;
793
- prompt: z.ZodString;
778
+ id: z.ZodString;
794
779
  createdAt: z.ZodString;
795
780
  updatedAt: z.ZodString;
781
+ description: z.ZodString;
796
782
  models: z.ZodNullable<z.ZodType<{
797
783
  base?: {
798
784
  model?: string | undefined;
@@ -855,15 +841,15 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
855
841
  }, {
856
842
  stepCountIs?: number | undefined;
857
843
  }>>>;
844
+ prompt: z.ZodString;
858
845
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
859
846
  }, z.core.$strip>;
860
847
  declare const SubAgentApiInsertSchema: z.ZodObject<{
861
- id: z.ZodString;
862
848
  name: z.ZodString;
863
- description: z.ZodString;
864
- prompt: z.ZodString;
849
+ id: z.ZodString;
865
850
  createdAt: z.ZodOptional<z.ZodString>;
866
851
  updatedAt: z.ZodOptional<z.ZodString>;
852
+ description: z.ZodString;
867
853
  models: z.ZodOptional<z.ZodObject<{
868
854
  base: z.ZodOptional<z.ZodObject<{
869
855
  model: z.ZodOptional<z.ZodString>;
@@ -887,15 +873,15 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
887
873
  }, {
888
874
  stepCountIs?: number | undefined;
889
875
  }>>>>;
876
+ prompt: z.ZodString;
890
877
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
891
878
  }, z.core.$strip>;
892
879
  declare const SubAgentApiUpdateSchema: z.ZodObject<{
893
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
894
880
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
895
- description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
896
- prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
881
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
897
882
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
898
883
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
884
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
899
885
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
900
886
  base: z.ZodOptional<z.ZodObject<{
901
887
  model: z.ZodOptional<z.ZodString>;
@@ -919,6 +905,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
919
905
  }, {
920
906
  stepCountIs?: number | undefined;
921
907
  }>>>>>>;
908
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
922
909
  conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
923
910
  }, z.core.$strip>;
924
911
  declare const SubAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -1198,9 +1185,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
1198
1185
  }>;
1199
1186
  declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
1200
1187
  id: z.ZodString;
1201
- agentId: z.ZodString;
1202
1188
  createdAt: z.ZodOptional<z.ZodString>;
1203
1189
  updatedAt: z.ZodOptional<z.ZodString>;
1190
+ agentId: z.ZodString;
1204
1191
  sourceSubAgentId: z.ZodString;
1205
1192
  targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1206
1193
  externalSubAgentId: z.ZodString;
@@ -1782,12 +1769,11 @@ declare const AgentUpdateSchema: z.ZodObject<{
1782
1769
  in: {};
1783
1770
  }>;
1784
1771
  declare const AgentApiSelectSchema: z.ZodObject<{
1785
- id: z.ZodString;
1786
1772
  name: z.ZodString;
1787
- description: z.ZodNullable<z.ZodString>;
1788
- prompt: z.ZodNullable<z.ZodString>;
1773
+ id: z.ZodString;
1789
1774
  createdAt: z.ZodString;
1790
1775
  updatedAt: z.ZodString;
1776
+ description: z.ZodNullable<z.ZodString>;
1791
1777
  models: z.ZodNullable<z.ZodType<{
1792
1778
  base?: {
1793
1779
  model?: string | undefined;
@@ -1852,6 +1838,7 @@ declare const AgentApiSelectSchema: z.ZodObject<{
1852
1838
  }>>>;
1853
1839
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
1854
1840
  contextConfigId: z.ZodNullable<z.ZodString>;
1841
+ prompt: z.ZodNullable<z.ZodString>;
1855
1842
  statusUpdates: z.ZodNullable<z.ZodType<{
1856
1843
  enabled?: boolean | undefined;
1857
1844
  numEvents?: number | undefined;
@@ -1912,10 +1899,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
1912
1899
  }, z.core.$strip>;
1913
1900
  declare const AgentApiInsertSchema: z.ZodObject<{
1914
1901
  name: z.ZodString;
1915
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1916
- prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1917
1902
  createdAt: z.ZodOptional<z.ZodString>;
1918
1903
  updatedAt: z.ZodOptional<z.ZodString>;
1904
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1919
1905
  models: z.ZodOptional<z.ZodNullable<z.ZodType<{
1920
1906
  base?: {
1921
1907
  model?: string | undefined;
@@ -1980,6 +1966,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
1980
1966
  }>>>>;
1981
1967
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1982
1968
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1969
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1983
1970
  statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
1984
1971
  enabled?: boolean | undefined;
1985
1972
  numEvents?: number | undefined;
@@ -2040,12 +2027,11 @@ declare const AgentApiInsertSchema: z.ZodObject<{
2040
2027
  id: z.ZodString;
2041
2028
  }, z.core.$strip>;
2042
2029
  declare const AgentApiUpdateSchema: z.ZodObject<{
2043
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2044
2030
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2045
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2046
- prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2031
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2047
2032
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2048
2033
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2034
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2049
2035
  models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2050
2036
  base?: {
2051
2037
  model?: string | undefined;
@@ -2110,6 +2096,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
2110
2096
  }>>>>>>;
2111
2097
  defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2112
2098
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2099
+ prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
2113
2100
  statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
2114
2101
  enabled?: boolean | undefined;
2115
2102
  numEvents?: number | undefined;
@@ -2394,9 +2381,9 @@ declare const TaskUpdateSchema: z.ZodObject<{
2394
2381
  }>;
2395
2382
  declare const TaskApiSelectSchema: z.ZodObject<{
2396
2383
  id: z.ZodString;
2397
- agentId: z.ZodString;
2398
2384
  createdAt: z.ZodString;
2399
2385
  updatedAt: z.ZodString;
2386
+ agentId: z.ZodString;
2400
2387
  status: z.ZodString;
2401
2388
  metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
2402
2389
  contextId: z.ZodString;
@@ -2404,9 +2391,9 @@ declare const TaskApiSelectSchema: z.ZodObject<{
2404
2391
  }, z.core.$strip>;
2405
2392
  declare const TaskApiInsertSchema: z.ZodObject<{
2406
2393
  id: z.ZodString;
2407
- agentId: z.ZodString;
2408
2394
  createdAt: z.ZodOptional<z.ZodString>;
2409
2395
  updatedAt: z.ZodOptional<z.ZodString>;
2396
+ agentId: z.ZodString;
2410
2397
  status: z.ZodString;
2411
2398
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
2412
2399
  conversationId: z.ZodOptional<z.ZodString>;
@@ -2415,9 +2402,9 @@ declare const TaskApiInsertSchema: z.ZodObject<{
2415
2402
  }, z.core.$strip>;
2416
2403
  declare const TaskApiUpdateSchema: z.ZodObject<{
2417
2404
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2418
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2419
2405
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2420
2406
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2407
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2421
2408
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2422
2409
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
2423
2410
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
@@ -3166,9 +3153,9 @@ declare const ConversationUpdateSchema: z.ZodObject<{
3166
3153
  }>;
3167
3154
  declare const ConversationApiSelectSchema: z.ZodObject<{
3168
3155
  id: z.ZodString;
3169
- title: z.ZodNullable<z.ZodString>;
3170
3156
  createdAt: z.ZodString;
3171
3157
  updatedAt: z.ZodString;
3158
+ title: z.ZodNullable<z.ZodString>;
3172
3159
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
3173
3160
  userId: z.ZodNullable<z.ZodString>;
3174
3161
  activeSubAgentId: z.ZodString;
@@ -3176,9 +3163,9 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
3176
3163
  }, z.core.$strip>;
3177
3164
  declare const ConversationApiInsertSchema: z.ZodObject<{
3178
3165
  id: z.ZodString;
3179
- title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3180
3166
  createdAt: z.ZodOptional<z.ZodString>;
3181
3167
  updatedAt: z.ZodOptional<z.ZodString>;
3168
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3182
3169
  contextConfigId: z.ZodOptional<z.ZodString>;
3183
3170
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
3184
3171
  userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3187,9 +3174,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
3187
3174
  }, z.core.$strip>;
3188
3175
  declare const ConversationApiUpdateSchema: z.ZodObject<{
3189
3176
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3190
- title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
3191
3177
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3192
3178
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3179
+ title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
3193
3180
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3194
3181
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
3195
3182
  userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -4177,8 +4164,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
4177
4164
  in: {};
4178
4165
  }>;
4179
4166
  declare const ContextCacheApiSelectSchema: z.ZodObject<{
4180
- id: z.ZodString;
4181
4167
  value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4168
+ id: z.ZodString;
4182
4169
  createdAt: z.ZodString;
4183
4170
  updatedAt: z.ZodString;
4184
4171
  contextConfigId: z.ZodString;
@@ -4190,8 +4177,8 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
4190
4177
  fetchDurationMs: z.ZodNullable<z.ZodInt>;
4191
4178
  }, z.core.$strip>;
4192
4179
  declare const ContextCacheApiInsertSchema: z.ZodObject<{
4193
- id: z.ZodString;
4194
4180
  value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
4181
+ id: z.ZodString;
4195
4182
  createdAt: z.ZodOptional<z.ZodString>;
4196
4183
  updatedAt: z.ZodOptional<z.ZodString>;
4197
4184
  contextConfigId: z.ZodString;
@@ -4203,8 +4190,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
4203
4190
  fetchDurationMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
4204
4191
  }, z.core.$strip>;
4205
4192
  declare const ContextCacheApiUpdateSchema: z.ZodObject<{
4206
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4207
4193
  value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
4194
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4208
4195
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4209
4196
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4210
4197
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -4383,10 +4370,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
4383
4370
  in: {};
4384
4371
  }>;
4385
4372
  declare const DataComponentBaseSchema: z.ZodObject<{
4386
- tenantId: z.ZodString;
4387
- projectId: z.ZodString;
4388
- id: z.ZodString;
4389
4373
  name: z.ZodString;
4374
+ id: z.ZodString;
4375
+ projectId: z.ZodString;
4376
+ tenantId: z.ZodString;
4390
4377
  description: z.ZodString;
4391
4378
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
4392
4379
  }, {
@@ -4407,27 +4394,27 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
4407
4394
  in: {};
4408
4395
  }>;
4409
4396
  declare const DataComponentApiSelectSchema: z.ZodObject<{
4410
- id: z.ZodString;
4411
4397
  name: z.ZodString;
4412
- description: z.ZodString;
4398
+ id: z.ZodString;
4413
4399
  createdAt: z.ZodString;
4414
4400
  updatedAt: z.ZodString;
4401
+ description: z.ZodString;
4415
4402
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
4416
4403
  }, z.core.$strip>;
4417
4404
  declare const DataComponentApiInsertSchema: z.ZodObject<{
4418
- id: z.ZodString;
4419
4405
  name: z.ZodString;
4420
- description: z.ZodString;
4406
+ id: z.ZodString;
4421
4407
  createdAt: z.ZodOptional<z.ZodString>;
4422
4408
  updatedAt: z.ZodOptional<z.ZodString>;
4409
+ description: z.ZodString;
4423
4410
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
4424
4411
  }, z.core.$strip>;
4425
4412
  declare const DataComponentApiUpdateSchema: z.ZodObject<{
4426
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4427
4413
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4428
- description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4414
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4429
4415
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4430
4416
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4417
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4431
4418
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
4432
4419
  }, z.core.$strip>;
4433
4420
  declare const SubAgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -4913,16 +4900,16 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
4913
4900
  in: {};
4914
4901
  }>;
4915
4902
  declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
4916
- id: z.ZodString;
4917
4903
  name: z.ZodString;
4918
- description: z.ZodString;
4904
+ id: z.ZodString;
4919
4905
  createdAt: z.ZodString;
4920
4906
  updatedAt: z.ZodString;
4907
+ description: z.ZodString;
4921
4908
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
4922
4909
  }, z.core.$strip>;
4923
4910
  declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
4924
- id: z.ZodString;
4925
4911
  name: z.ZodString;
4912
+ id: z.ZodString;
4926
4913
  description: z.ZodString;
4927
4914
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
4928
4915
  }, {
@@ -4930,11 +4917,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
4930
4917
  in: {};
4931
4918
  }>;
4932
4919
  declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
4933
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4934
4920
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4935
- description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4921
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4936
4922
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4937
4923
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4924
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4938
4925
  props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
4939
4926
  }, z.core.$strip>;
4940
4927
  declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -5165,42 +5152,41 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
5165
5152
  in: {};
5166
5153
  }>;
5167
5154
  declare const ExternalAgentApiSelectSchema: z.ZodObject<{
5168
- id: z.ZodString;
5169
5155
  name: z.ZodString;
5170
- description: z.ZodString;
5171
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5156
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
5157
+ id: z.ZodString;
5172
5158
  createdAt: z.ZodString;
5173
5159
  updatedAt: z.ZodString;
5160
+ description: z.ZodString;
5161
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5174
5162
  baseUrl: z.ZodString;
5175
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
5176
5163
  }, z.core.$strip>;
5177
5164
  declare const ExternalAgentApiInsertSchema: z.ZodObject<{
5178
- id: z.ZodString;
5179
5165
  name: z.ZodString;
5180
- description: z.ZodString;
5181
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5166
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5167
+ id: z.ZodString;
5182
5168
  createdAt: z.ZodOptional<z.ZodString>;
5183
5169
  updatedAt: z.ZodOptional<z.ZodString>;
5170
+ description: z.ZodString;
5171
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5184
5172
  baseUrl: z.ZodString;
5185
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5186
5173
  }, z.core.$strip>;
5187
5174
  declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
5188
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5189
5175
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5190
- description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5191
- credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5176
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5177
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5192
5178
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5193
5179
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5180
+ description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5181
+ credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
5194
5182
  baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5195
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
5196
5183
  }, z.core.$strip>;
5197
5184
  declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
5198
- id: z.ZodString;
5199
5185
  name: z.ZodString;
5200
- description: z.ZodString;
5201
- prompt: z.ZodString;
5186
+ id: z.ZodString;
5202
5187
  createdAt: z.ZodString;
5203
5188
  updatedAt: z.ZodString;
5189
+ description: z.ZodString;
5204
5190
  models: z.ZodNullable<z.ZodType<{
5205
5191
  base?: {
5206
5192
  model?: string | undefined;
@@ -5263,17 +5249,18 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
5263
5249
  }, {
5264
5250
  stepCountIs?: number | undefined;
5265
5251
  }>>>;
5252
+ prompt: z.ZodString;
5266
5253
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
5267
5254
  type: z.ZodLiteral<"internal">;
5268
5255
  }, z.core.$strip>, z.ZodObject<{
5269
- id: z.ZodString;
5270
5256
  name: z.ZodString;
5271
- description: z.ZodString;
5272
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5257
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
5258
+ id: z.ZodString;
5273
5259
  createdAt: z.ZodString;
5274
5260
  updatedAt: z.ZodString;
5261
+ description: z.ZodString;
5262
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5275
5263
  baseUrl: z.ZodString;
5276
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
5277
5264
  type: z.ZodLiteral<"external">;
5278
5265
  }, z.core.$strip>], "type">;
5279
5266
  declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -5525,24 +5512,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
5525
5512
  }>;
5526
5513
  declare const ApiKeyUpdateSchema: z.ZodObject<{
5527
5514
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5515
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5528
5516
  agentId: z.ZodOptional<z.ZodString>;
5529
5517
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5530
5518
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5531
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5532
5519
  }, {
5533
5520
  out: {};
5534
5521
  in: {};
5535
5522
  }>;
5536
5523
  declare const ApiKeyApiSelectSchema: z.ZodObject<{
5537
- id: z.ZodString;
5538
5524
  name: z.ZodNullable<z.ZodString>;
5525
+ id: z.ZodString;
5526
+ createdAt: z.ZodString;
5527
+ updatedAt: z.ZodString;
5539
5528
  agentId: z.ZodString;
5540
5529
  publicId: z.ZodString;
5541
5530
  keyPrefix: z.ZodString;
5542
5531
  lastUsedAt: z.ZodNullable<z.ZodString>;
5543
5532
  expiresAt: z.ZodNullable<z.ZodString>;
5544
- createdAt: z.ZodString;
5545
- updatedAt: z.ZodString;
5546
5533
  }, {
5547
5534
  out: {};
5548
5535
  in: {};
@@ -5550,15 +5537,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
5550
5537
  declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
5551
5538
  data: z.ZodObject<{
5552
5539
  apiKey: z.ZodObject<{
5553
- id: z.ZodString;
5554
5540
  name: z.ZodNullable<z.ZodString>;
5541
+ id: z.ZodString;
5542
+ createdAt: z.ZodString;
5543
+ updatedAt: z.ZodString;
5555
5544
  agentId: z.ZodString;
5556
5545
  publicId: z.ZodString;
5557
5546
  keyPrefix: z.ZodString;
5558
5547
  lastUsedAt: z.ZodNullable<z.ZodString>;
5559
5548
  expiresAt: z.ZodNullable<z.ZodString>;
5560
- createdAt: z.ZodString;
5561
- updatedAt: z.ZodString;
5562
5549
  }, {
5563
5550
  out: {};
5564
5551
  in: {};
@@ -5568,20 +5555,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
5568
5555
  }, z.core.$strip>;
5569
5556
  declare const ApiKeyApiInsertSchema: z.ZodObject<{
5570
5557
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5571
- agentId: z.ZodString;
5572
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5573
5558
  createdAt: z.ZodOptional<z.ZodString>;
5574
5559
  updatedAt: z.ZodOptional<z.ZodString>;
5560
+ agentId: z.ZodString;
5561
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5575
5562
  }, {
5576
5563
  out: {};
5577
5564
  in: {};
5578
5565
  }>;
5579
5566
  declare const ApiKeyApiUpdateSchema: z.ZodObject<{
5580
5567
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5568
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5581
5569
  agentId: z.ZodOptional<z.ZodString>;
5582
5570
  lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5583
5571
  expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
5584
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5585
5572
  }, {
5586
5573
  out: {};
5587
5574
  in: {};
@@ -5624,10 +5611,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
5624
5611
  }>;
5625
5612
  declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
5626
5613
  id: z.ZodString;
5627
- createdAt: z.ZodString;
5628
- updatedAt: z.ZodString;
5629
5614
  credentialStoreId: z.ZodString;
5630
5615
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5616
+ createdAt: z.ZodString;
5617
+ updatedAt: z.ZodString;
5631
5618
  type: z.ZodEnum<{
5632
5619
  readonly memory: "memory";
5633
5620
  readonly keychain: "keychain";
@@ -5891,10 +5878,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
5891
5878
  }, z.core.$strip>;
5892
5879
  declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
5893
5880
  id: z.ZodString;
5894
- createdAt: z.ZodOptional<z.ZodString>;
5895
- updatedAt: z.ZodOptional<z.ZodString>;
5896
5881
  credentialStoreId: z.ZodString;
5897
5882
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5883
+ createdAt: z.ZodOptional<z.ZodString>;
5884
+ updatedAt: z.ZodOptional<z.ZodString>;
5898
5885
  type: z.ZodEnum<{
5899
5886
  readonly memory: "memory";
5900
5887
  readonly keychain: "keychain";
@@ -5903,10 +5890,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
5903
5890
  }, z.core.$strip>;
5904
5891
  declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
5905
5892
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5906
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5907
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5908
5893
  credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5909
5894
  retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
5895
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5896
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5910
5897
  type: z.ZodOptional<z.ZodEnum<{
5911
5898
  readonly memory: "memory";
5912
5899
  readonly keychain: "keychain";
@@ -5962,9 +5949,9 @@ declare const McpToolSchema: z.ZodObject<{
5962
5949
  in: {};
5963
5950
  }>;
5964
5951
  declare const MCPToolConfigSchema: z.ZodObject<{
5965
- id: z.ZodString;
5966
5952
  name: z.ZodString;
5967
5953
  headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
5954
+ id: z.ZodString;
5968
5955
  capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
5969
5956
  imageUrl: z.ZodOptional<z.ZodString>;
5970
5957
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5994,10 +5981,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
5994
5981
  }, z.core.$strip>>;
5995
5982
  credential: z.ZodOptional<z.ZodObject<{
5996
5983
  id: z.ZodString;
5997
- createdAt: z.ZodOptional<z.ZodString>;
5998
- updatedAt: z.ZodOptional<z.ZodString>;
5999
5984
  credentialStoreId: z.ZodString;
6000
5985
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5986
+ createdAt: z.ZodOptional<z.ZodString>;
5987
+ updatedAt: z.ZodOptional<z.ZodString>;
6001
5988
  type: z.ZodEnum<{
6002
5989
  readonly memory: "memory";
6003
5990
  readonly keychain: "keychain";
@@ -6045,9 +6032,14 @@ declare const ToolUpdateSchema: z.ZodObject<{
6045
6032
  in: {};
6046
6033
  }>;
6047
6034
  declare const ToolApiSelectSchema: z.ZodObject<{
6048
- id: z.ZodString;
6049
6035
  name: z.ZodString;
6036
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
6037
+ id: z.ZodString;
6038
+ createdAt: z.ZodString;
6039
+ updatedAt: z.ZodString;
6050
6040
  description: z.ZodNullable<z.ZodString>;
6041
+ credentialReferenceId: z.ZodNullable<z.ZodString>;
6042
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
6051
6043
  config: z.ZodType<{
6052
6044
  type: "mcp";
6053
6045
  mcp: ToolMcpConfig;
@@ -6061,18 +6053,18 @@ declare const ToolApiSelectSchema: z.ZodObject<{
6061
6053
  type: "mcp";
6062
6054
  mcp: ToolMcpConfig;
6063
6055
  }>>;
6064
- credentialReferenceId: z.ZodNullable<z.ZodString>;
6065
- createdAt: z.ZodString;
6066
- updatedAt: z.ZodString;
6067
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
6068
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
6069
6056
  imageUrl: z.ZodNullable<z.ZodString>;
6070
6057
  lastError: z.ZodNullable<z.ZodString>;
6071
6058
  }, z.core.$strip>;
6072
6059
  declare const ToolApiInsertSchema: z.ZodObject<{
6073
- id: z.ZodString;
6074
6060
  name: z.ZodString;
6061
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
6062
+ id: z.ZodString;
6063
+ createdAt: z.ZodOptional<z.ZodString>;
6064
+ updatedAt: z.ZodOptional<z.ZodString>;
6075
6065
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6066
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6067
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
6076
6068
  config: z.ZodObject<{
6077
6069
  type: z.ZodLiteral<"mcp">;
6078
6070
  mcp: z.ZodObject<{
@@ -6092,18 +6084,18 @@ declare const ToolApiInsertSchema: z.ZodObject<{
6092
6084
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6093
6085
  }, z.core.$strip>;
6094
6086
  }, z.core.$strip>;
6095
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6096
- createdAt: z.ZodOptional<z.ZodString>;
6097
- updatedAt: z.ZodOptional<z.ZodString>;
6098
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
6099
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
6100
6087
  imageUrl: z.ZodOptional<z.ZodString>;
6101
6088
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6102
6089
  }, z.core.$strip>;
6103
6090
  declare const ToolApiUpdateSchema: z.ZodObject<{
6104
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6105
6091
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6092
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
6093
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6094
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6095
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6106
6096
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6097
+ credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6098
+ capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
6107
6099
  config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
6108
6100
  type: z.ZodLiteral<"mcp">;
6109
6101
  mcp: z.ZodObject<{
@@ -6123,11 +6115,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
6123
6115
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
6124
6116
  }, z.core.$strip>;
6125
6117
  }, z.core.$strip>>>;
6126
- credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6127
- createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6128
- updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6129
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
6130
- capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
6131
6118
  imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6132
6119
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6133
6120
  }, z.core.$strip>;
@@ -6333,29 +6320,29 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
6333
6320
  in: {};
6334
6321
  }>;
6335
6322
  declare const FunctionToolApiSelectSchema: z.ZodObject<{
6336
- id: z.ZodString;
6337
6323
  name: z.ZodString;
6338
- description: z.ZodNullable<z.ZodString>;
6339
- agentId: z.ZodString;
6324
+ id: z.ZodString;
6340
6325
  createdAt: z.ZodString;
6341
6326
  updatedAt: z.ZodString;
6327
+ description: z.ZodNullable<z.ZodString>;
6328
+ agentId: z.ZodString;
6342
6329
  functionId: z.ZodString;
6343
6330
  }, z.core.$strip>;
6344
6331
  declare const FunctionToolApiInsertSchema: z.ZodObject<{
6345
- id: z.ZodString;
6346
6332
  name: z.ZodString;
6347
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6333
+ id: z.ZodString;
6348
6334
  createdAt: z.ZodOptional<z.ZodString>;
6349
6335
  updatedAt: z.ZodOptional<z.ZodString>;
6336
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6350
6337
  functionId: z.ZodString;
6351
6338
  }, z.core.$strip>;
6352
6339
  declare const FunctionToolApiUpdateSchema: z.ZodObject<{
6353
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6354
6340
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6355
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6356
- agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6341
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6357
6342
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6358
6343
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6344
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
6345
+ agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6359
6346
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6360
6347
  }, z.core.$strip>;
6361
6348
  declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
@@ -6601,10 +6588,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
6601
6588
  defaultValue: z.ZodOptional<z.ZodAny>;
6602
6589
  credential: z.ZodOptional<z.ZodObject<{
6603
6590
  id: z.ZodString;
6604
- createdAt: z.ZodOptional<z.ZodString>;
6605
- updatedAt: z.ZodOptional<z.ZodString>;
6606
6591
  credentialStoreId: z.ZodString;
6607
6592
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6593
+ createdAt: z.ZodOptional<z.ZodString>;
6594
+ updatedAt: z.ZodOptional<z.ZodString>;
6608
6595
  type: z.ZodEnum<{
6609
6596
  readonly memory: "memory";
6610
6597
  readonly keychain: "keychain";
@@ -6626,23 +6613,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
6626
6613
  in: {};
6627
6614
  }>;
6628
6615
  declare const ContextConfigInsertSchema: z.ZodObject<{
6629
- tenantId: z.ZodString;
6630
- projectId: z.ZodString;
6631
6616
  id: z.ZodOptional<z.ZodString>;
6632
- agentId: z.ZodString;
6617
+ projectId: z.ZodString;
6618
+ tenantId: z.ZodString;
6633
6619
  headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
6634
6620
  contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
6621
+ agentId: z.ZodString;
6635
6622
  }, {
6636
6623
  out: {};
6637
6624
  in: {};
6638
6625
  }>;
6639
6626
  declare const ContextConfigUpdateSchema: z.ZodObject<{
6640
- tenantId: z.ZodOptional<z.ZodString>;
6641
- projectId: z.ZodOptional<z.ZodString>;
6642
6627
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6643
- agentId: z.ZodOptional<z.ZodString>;
6628
+ projectId: z.ZodOptional<z.ZodString>;
6629
+ tenantId: z.ZodOptional<z.ZodString>;
6644
6630
  headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
6645
6631
  contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
6632
+ agentId: z.ZodOptional<z.ZodString>;
6646
6633
  }, {
6647
6634
  out: {};
6648
6635
  in: {};
@@ -6887,31 +6874,31 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
6887
6874
  in: {};
6888
6875
  }>;
6889
6876
  declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
6877
+ headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
6890
6878
  id: z.ZodString;
6891
6879
  createdAt: z.ZodString;
6892
6880
  updatedAt: z.ZodString;
6893
- headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
6894
- toolId: z.ZodString;
6895
6881
  selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
6896
6882
  subAgentId: z.ZodString;
6883
+ toolId: z.ZodString;
6897
6884
  }, z.core.$strip>;
6898
6885
  declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
6886
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
6899
6887
  id: z.ZodString;
6900
6888
  createdAt: z.ZodOptional<z.ZodString>;
6901
6889
  updatedAt: z.ZodOptional<z.ZodString>;
6902
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
6903
- toolId: z.ZodString;
6904
6890
  selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6905
6891
  subAgentId: z.ZodString;
6892
+ toolId: z.ZodString;
6906
6893
  }, z.core.$strip>;
6907
6894
  declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
6895
+ headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
6908
6896
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6909
6897
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6910
6898
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
6911
- headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
6912
- toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6913
6899
  selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
6914
6900
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6901
+ toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6915
6902
  }, z.core.$strip>;
6916
6903
  declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
6917
6904
  createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
@@ -7625,12 +7612,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
7625
7612
  in: {};
7626
7613
  }>;
7627
7614
  declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
7628
- id: z.ZodString;
7629
7615
  type: z.ZodString;
7630
7616
  name: z.ZodNullable<z.ZodString>;
7631
- description: z.ZodNullable<z.ZodString>;
7617
+ id: z.ZodString;
7632
7618
  createdAt: z.ZodString;
7633
7619
  updatedAt: z.ZodString;
7620
+ description: z.ZodNullable<z.ZodString>;
7634
7621
  metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
7635
7622
  contextId: z.ZodString;
7636
7623
  visibility: z.ZodNullable<z.ZodString>;
@@ -7643,12 +7630,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
7643
7630
  derivedFrom: z.ZodNullable<z.ZodString>;
7644
7631
  }, z.core.$strip>;
7645
7632
  declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
7646
- id: z.ZodString;
7647
7633
  type: z.ZodOptional<z.ZodString>;
7648
7634
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7649
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7635
+ id: z.ZodString;
7650
7636
  createdAt: z.ZodOptional<z.ZodString>;
7651
7637
  updatedAt: z.ZodOptional<z.ZodString>;
7638
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7652
7639
  metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
7653
7640
  contextId: z.ZodString;
7654
7641
  visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7661,12 +7648,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
7661
7648
  derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7662
7649
  }, z.core.$strip>;
7663
7650
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
7664
- id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7665
7651
  type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7666
7652
  name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7667
- description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7653
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7668
7654
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7669
7655
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7656
+ description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7670
7657
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
7671
7658
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7672
7659
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
@@ -7709,12 +7696,11 @@ declare const CanUseItemSchema: z.ZodObject<{
7709
7696
  headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
7710
7697
  }, z.core.$strip>;
7711
7698
  declare const FullAgentAgentInsertSchema: z.ZodObject<{
7712
- id: z.ZodString;
7713
7699
  name: z.ZodString;
7714
- description: z.ZodString;
7715
- prompt: z.ZodString;
7700
+ id: z.ZodString;
7716
7701
  createdAt: z.ZodOptional<z.ZodString>;
7717
7702
  updatedAt: z.ZodOptional<z.ZodString>;
7703
+ description: z.ZodString;
7718
7704
  models: z.ZodOptional<z.ZodObject<{
7719
7705
  base: z.ZodOptional<z.ZodObject<{
7720
7706
  model: z.ZodOptional<z.ZodString>;
@@ -7738,6 +7724,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
7738
7724
  }, {
7739
7725
  stepCountIs?: number | undefined;
7740
7726
  }>>>>;
7727
+ prompt: z.ZodString;
7741
7728
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
7742
7729
  type: z.ZodLiteral<"internal">;
7743
7730
  canUse: z.ZodArray<z.ZodObject<{
@@ -7753,19 +7740,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
7753
7740
  }, z.core.$strip>;
7754
7741
  declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
7755
7742
  name: z.ZodString;
7756
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7757
7743
  createdAt: z.ZodOptional<z.ZodString>;
7758
7744
  updatedAt: z.ZodOptional<z.ZodString>;
7745
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7759
7746
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7760
7747
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7761
7748
  id: z.ZodString;
7762
7749
  subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
7763
- id: z.ZodString;
7764
7750
  name: z.ZodString;
7765
- description: z.ZodString;
7766
- prompt: z.ZodString;
7751
+ id: z.ZodString;
7767
7752
  createdAt: z.ZodOptional<z.ZodString>;
7768
7753
  updatedAt: z.ZodOptional<z.ZodString>;
7754
+ description: z.ZodString;
7769
7755
  models: z.ZodOptional<z.ZodObject<{
7770
7756
  base: z.ZodOptional<z.ZodObject<{
7771
7757
  model: z.ZodOptional<z.ZodString>;
@@ -7789,6 +7775,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
7789
7775
  }, {
7790
7776
  stepCountIs?: number | undefined;
7791
7777
  }>>>>;
7778
+ prompt: z.ZodString;
7792
7779
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
7793
7780
  type: z.ZodLiteral<"internal">;
7794
7781
  canUse: z.ZodArray<z.ZodObject<{
@@ -7802,19 +7789,24 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
7802
7789
  canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7803
7790
  canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
7804
7791
  }, z.core.$strip>, z.ZodObject<{
7805
- id: z.ZodString;
7806
7792
  name: z.ZodString;
7807
- description: z.ZodString;
7808
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7793
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7794
+ id: z.ZodString;
7809
7795
  createdAt: z.ZodOptional<z.ZodString>;
7810
7796
  updatedAt: z.ZodOptional<z.ZodString>;
7797
+ description: z.ZodString;
7798
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7811
7799
  baseUrl: z.ZodString;
7812
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7813
7800
  }, z.core.$strip>]>>;
7814
7801
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7815
- id: z.ZodString;
7816
7802
  name: z.ZodString;
7803
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7804
+ id: z.ZodString;
7805
+ createdAt: z.ZodOptional<z.ZodString>;
7806
+ updatedAt: z.ZodOptional<z.ZodString>;
7817
7807
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7808
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7809
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7818
7810
  config: z.ZodObject<{
7819
7811
  type: z.ZodLiteral<"mcp">;
7820
7812
  mcp: z.ZodObject<{
@@ -7834,20 +7826,15 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
7834
7826
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
7835
7827
  }, z.core.$strip>;
7836
7828
  }, z.core.$strip>;
7837
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7838
- createdAt: z.ZodOptional<z.ZodString>;
7839
- updatedAt: z.ZodOptional<z.ZodString>;
7840
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
7841
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
7842
7829
  imageUrl: z.ZodOptional<z.ZodString>;
7843
7830
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7844
7831
  }, z.core.$strip>>>;
7845
7832
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7846
- id: z.ZodString;
7847
7833
  name: z.ZodString;
7848
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7834
+ id: z.ZodString;
7849
7835
  createdAt: z.ZodOptional<z.ZodString>;
7850
7836
  updatedAt: z.ZodOptional<z.ZodString>;
7837
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7851
7838
  functionId: z.ZodString;
7852
7839
  }, z.core.$strip>>>;
7853
7840
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -8036,35 +8023,6 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
8036
8023
  stepCountIs?: number | undefined;
8037
8024
  };
8038
8025
  }>;
8039
- sandboxConfig: drizzle_orm_sqlite_core.SQLiteColumn<{
8040
- name: "sandbox_config";
8041
- tableName: "projects";
8042
- dataType: "json";
8043
- columnType: "SQLiteTextJson";
8044
- data: {
8045
- provider: "vercel" | "local";
8046
- runtime: "node22" | "typescript";
8047
- timeout?: number;
8048
- vcpus?: number;
8049
- };
8050
- driverParam: string;
8051
- notNull: false;
8052
- hasDefault: false;
8053
- isPrimaryKey: false;
8054
- isAutoincrement: false;
8055
- hasRuntimeDefault: false;
8056
- enumValues: undefined;
8057
- baseColumn: never;
8058
- identity: undefined;
8059
- generated: undefined;
8060
- }, {}, {
8061
- $type: {
8062
- provider: "vercel" | "local";
8063
- runtime: "node22" | "typescript";
8064
- timeout?: number;
8065
- vcpus?: number;
8066
- };
8067
- }>;
8068
8026
  name: drizzle_orm_sqlite_core.SQLiteColumn<{
8069
8027
  name: "name";
8070
8028
  tableName: "projects";
@@ -8143,9 +8101,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
8143
8101
  }>;
8144
8102
  }, undefined, undefined>;
8145
8103
  declare const ProjectInsertSchema: z.ZodObject<{
8146
- tenantId: z.ZodString;
8147
- id: z.ZodString;
8148
8104
  name: z.ZodString;
8105
+ id: z.ZodString;
8106
+ tenantId: z.ZodString;
8149
8107
  description: z.ZodString;
8150
8108
  models: z.ZodObject<{
8151
8109
  base: z.ZodObject<{
@@ -8165,26 +8123,14 @@ declare const ProjectInsertSchema: z.ZodObject<{
8165
8123
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8166
8124
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8167
8125
  }, z.core.$strip>>;
8168
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8169
- provider: z.ZodEnum<{
8170
- vercel: "vercel";
8171
- local: "local";
8172
- }>;
8173
- runtime: z.ZodEnum<{
8174
- node22: "node22";
8175
- typescript: "typescript";
8176
- }>;
8177
- timeout: z.ZodOptional<z.ZodNumber>;
8178
- vcpus: z.ZodOptional<z.ZodNumber>;
8179
- }, z.core.$strip>>;
8180
8126
  }, {
8181
8127
  out: {};
8182
8128
  in: {};
8183
8129
  }>;
8184
8130
  declare const ProjectUpdateSchema: z.ZodObject<{
8185
- tenantId: z.ZodOptional<z.ZodString>;
8186
- id: z.ZodOptional<z.ZodString>;
8187
8131
  name: z.ZodOptional<z.ZodString>;
8132
+ id: z.ZodOptional<z.ZodString>;
8133
+ tenantId: z.ZodOptional<z.ZodString>;
8188
8134
  description: z.ZodOptional<z.ZodString>;
8189
8135
  models: z.ZodOptional<z.ZodObject<{
8190
8136
  base: z.ZodObject<{
@@ -8204,28 +8150,16 @@ declare const ProjectUpdateSchema: z.ZodObject<{
8204
8150
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8205
8151
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8206
8152
  }, z.core.$strip>>>;
8207
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8208
- provider: z.ZodEnum<{
8209
- vercel: "vercel";
8210
- local: "local";
8211
- }>;
8212
- runtime: z.ZodEnum<{
8213
- node22: "node22";
8214
- typescript: "typescript";
8215
- }>;
8216
- timeout: z.ZodOptional<z.ZodNumber>;
8217
- vcpus: z.ZodOptional<z.ZodNumber>;
8218
- }, z.core.$strip>>>;
8219
8153
  }, {
8220
8154
  out: {};
8221
8155
  in: {};
8222
8156
  }>;
8223
8157
  declare const ProjectApiSelectSchema: z.ZodObject<{
8224
- id: z.ZodString;
8225
8158
  name: z.ZodString;
8226
- description: z.ZodString;
8159
+ id: z.ZodString;
8227
8160
  createdAt: z.ZodString;
8228
8161
  updatedAt: z.ZodString;
8162
+ description: z.ZodString;
8229
8163
  models: z.ZodNullable<z.ZodType<{
8230
8164
  base: {
8231
8165
  model?: string | undefined;
@@ -8292,34 +8226,13 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
8292
8226
  transferCountIs?: number | undefined;
8293
8227
  stepCountIs?: number | undefined;
8294
8228
  }>>>;
8295
- sandboxConfig: z.ZodNullable<z.ZodType<{
8296
- provider: "vercel" | "local";
8297
- runtime: "node22" | "typescript";
8298
- timeout?: number;
8299
- vcpus?: number;
8300
- }, {
8301
- provider: "vercel" | "local";
8302
- runtime: "node22" | "typescript";
8303
- timeout?: number;
8304
- vcpus?: number;
8305
- }, z.core.$ZodTypeInternals<{
8306
- provider: "vercel" | "local";
8307
- runtime: "node22" | "typescript";
8308
- timeout?: number;
8309
- vcpus?: number;
8310
- }, {
8311
- provider: "vercel" | "local";
8312
- runtime: "node22" | "typescript";
8313
- timeout?: number;
8314
- vcpus?: number;
8315
- }>>>;
8316
8229
  }, {
8317
8230
  out: {};
8318
8231
  in: {};
8319
8232
  }>;
8320
8233
  declare const ProjectApiInsertSchema: z.ZodObject<{
8321
- id: z.ZodString;
8322
8234
  name: z.ZodString;
8235
+ id: z.ZodString;
8323
8236
  description: z.ZodString;
8324
8237
  models: z.ZodObject<{
8325
8238
  base: z.ZodObject<{
@@ -8339,25 +8252,13 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
8339
8252
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8340
8253
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8341
8254
  }, z.core.$strip>>;
8342
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8343
- provider: z.ZodEnum<{
8344
- vercel: "vercel";
8345
- local: "local";
8346
- }>;
8347
- runtime: z.ZodEnum<{
8348
- node22: "node22";
8349
- typescript: "typescript";
8350
- }>;
8351
- timeout: z.ZodOptional<z.ZodNumber>;
8352
- vcpus: z.ZodOptional<z.ZodNumber>;
8353
- }, z.core.$strip>>;
8354
8255
  }, {
8355
8256
  out: {};
8356
8257
  in: {};
8357
8258
  }>;
8358
8259
  declare const ProjectApiUpdateSchema: z.ZodObject<{
8359
- id: z.ZodOptional<z.ZodString>;
8360
8260
  name: z.ZodOptional<z.ZodString>;
8261
+ id: z.ZodOptional<z.ZodString>;
8361
8262
  description: z.ZodOptional<z.ZodString>;
8362
8263
  models: z.ZodOptional<z.ZodObject<{
8363
8264
  base: z.ZodObject<{
@@ -8377,25 +8278,13 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
8377
8278
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8378
8279
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8379
8280
  }, z.core.$strip>>>;
8380
- sandboxConfig: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8381
- provider: z.ZodEnum<{
8382
- vercel: "vercel";
8383
- local: "local";
8384
- }>;
8385
- runtime: z.ZodEnum<{
8386
- node22: "node22";
8387
- typescript: "typescript";
8388
- }>;
8389
- timeout: z.ZodOptional<z.ZodNumber>;
8390
- vcpus: z.ZodOptional<z.ZodNumber>;
8391
- }, z.core.$strip>>>;
8392
8281
  }, {
8393
8282
  out: {};
8394
8283
  in: {};
8395
8284
  }>;
8396
8285
  declare const FullProjectDefinitionSchema: z.ZodObject<{
8397
- id: z.ZodString;
8398
8286
  name: z.ZodString;
8287
+ id: z.ZodString;
8399
8288
  description: z.ZodString;
8400
8289
  models: z.ZodObject<{
8401
8290
  base: z.ZodObject<{
@@ -8415,33 +8304,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8415
8304
  transferCountIs: z.ZodOptional<z.ZodNumber>;
8416
8305
  stepCountIs: z.ZodOptional<z.ZodNumber>;
8417
8306
  }, z.core.$strip>>;
8418
- sandboxConfig: z.ZodOptional<z.ZodObject<{
8419
- provider: z.ZodEnum<{
8420
- vercel: "vercel";
8421
- local: "local";
8422
- }>;
8423
- runtime: z.ZodEnum<{
8424
- node22: "node22";
8425
- typescript: "typescript";
8426
- }>;
8427
- timeout: z.ZodOptional<z.ZodNumber>;
8428
- vcpus: z.ZodOptional<z.ZodNumber>;
8429
- }, z.core.$strip>>;
8430
8307
  agents: z.ZodRecord<z.ZodString, z.ZodObject<{
8431
8308
  name: z.ZodString;
8432
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8433
8309
  createdAt: z.ZodOptional<z.ZodString>;
8434
8310
  updatedAt: z.ZodOptional<z.ZodString>;
8311
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8435
8312
  defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8436
8313
  contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8437
8314
  id: z.ZodString;
8438
8315
  subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
8439
- id: z.ZodString;
8440
8316
  name: z.ZodString;
8441
- description: z.ZodString;
8442
- prompt: z.ZodString;
8317
+ id: z.ZodString;
8443
8318
  createdAt: z.ZodOptional<z.ZodString>;
8444
8319
  updatedAt: z.ZodOptional<z.ZodString>;
8320
+ description: z.ZodString;
8445
8321
  models: z.ZodOptional<z.ZodObject<{
8446
8322
  base: z.ZodOptional<z.ZodObject<{
8447
8323
  model: z.ZodOptional<z.ZodString>;
@@ -8465,6 +8341,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8465
8341
  }, {
8466
8342
  stepCountIs?: number | undefined;
8467
8343
  }>>>>;
8344
+ prompt: z.ZodString;
8468
8345
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
8469
8346
  type: z.ZodLiteral<"internal">;
8470
8347
  canUse: z.ZodArray<z.ZodObject<{
@@ -8478,19 +8355,24 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8478
8355
  canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
8479
8356
  canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
8480
8357
  }, z.core.$strip>, z.ZodObject<{
8481
- id: z.ZodString;
8482
8358
  name: z.ZodString;
8483
- description: z.ZodString;
8484
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8359
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8360
+ id: z.ZodString;
8485
8361
  createdAt: z.ZodOptional<z.ZodString>;
8486
8362
  updatedAt: z.ZodOptional<z.ZodString>;
8363
+ description: z.ZodString;
8364
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8487
8365
  baseUrl: z.ZodString;
8488
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8489
8366
  }, z.core.$strip>]>>;
8490
8367
  tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8491
- id: z.ZodString;
8492
8368
  name: z.ZodString;
8369
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8370
+ id: z.ZodString;
8371
+ createdAt: z.ZodOptional<z.ZodString>;
8372
+ updatedAt: z.ZodOptional<z.ZodString>;
8493
8373
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8374
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8375
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8494
8376
  config: z.ZodObject<{
8495
8377
  type: z.ZodLiteral<"mcp">;
8496
8378
  mcp: z.ZodObject<{
@@ -8510,20 +8392,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8510
8392
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
8511
8393
  }, z.core.$strip>;
8512
8394
  }, z.core.$strip>;
8513
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8514
- createdAt: z.ZodOptional<z.ZodString>;
8515
- updatedAt: z.ZodOptional<z.ZodString>;
8516
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8517
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8518
8395
  imageUrl: z.ZodOptional<z.ZodString>;
8519
8396
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8520
8397
  }, z.core.$strip>>>;
8521
8398
  functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8522
- id: z.ZodString;
8523
8399
  name: z.ZodString;
8524
- description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8400
+ id: z.ZodString;
8525
8401
  createdAt: z.ZodOptional<z.ZodString>;
8526
8402
  updatedAt: z.ZodOptional<z.ZodString>;
8403
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8527
8404
  functionId: z.ZodString;
8528
8405
  }, z.core.$strip>>>;
8529
8406
  functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -8574,9 +8451,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8574
8451
  prompt: z.ZodOptional<z.ZodString>;
8575
8452
  }, z.core.$strip>>;
8576
8453
  tools: z.ZodRecord<z.ZodString, z.ZodObject<{
8577
- id: z.ZodString;
8578
8454
  name: z.ZodString;
8455
+ headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8456
+ id: z.ZodString;
8457
+ createdAt: z.ZodOptional<z.ZodString>;
8458
+ updatedAt: z.ZodOptional<z.ZodString>;
8579
8459
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8460
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8461
+ capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8580
8462
  config: z.ZodObject<{
8581
8463
  type: z.ZodLiteral<"mcp">;
8582
8464
  mcp: z.ZodObject<{
@@ -8596,11 +8478,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8596
8478
  activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
8597
8479
  }, z.core.$strip>;
8598
8480
  }, z.core.$strip>;
8599
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8600
- createdAt: z.ZodOptional<z.ZodString>;
8601
- updatedAt: z.ZodOptional<z.ZodString>;
8602
- headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8603
- capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
8604
8481
  imageUrl: z.ZodOptional<z.ZodString>;
8605
8482
  lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8606
8483
  }, z.core.$strip>>;
@@ -8613,16 +8490,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8613
8490
  dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
8614
8491
  }, z.core.$strip>>>;
8615
8492
  dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8616
- id: z.ZodString;
8617
8493
  name: z.ZodString;
8618
- description: z.ZodString;
8494
+ id: z.ZodString;
8619
8495
  createdAt: z.ZodOptional<z.ZodString>;
8620
8496
  updatedAt: z.ZodOptional<z.ZodString>;
8497
+ description: z.ZodString;
8621
8498
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
8622
8499
  }, z.core.$strip>>>;
8623
8500
  artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8624
- id: z.ZodString;
8625
8501
  name: z.ZodString;
8502
+ id: z.ZodString;
8626
8503
  description: z.ZodString;
8627
8504
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
8628
8505
  }, {
@@ -8646,10 +8523,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8646
8523
  }, z.core.$strip>>;
8647
8524
  credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8648
8525
  id: z.ZodString;
8649
- createdAt: z.ZodOptional<z.ZodString>;
8650
- updatedAt: z.ZodOptional<z.ZodString>;
8651
8526
  credentialStoreId: z.ZodString;
8652
8527
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
8528
+ createdAt: z.ZodOptional<z.ZodString>;
8529
+ updatedAt: z.ZodOptional<z.ZodString>;
8653
8530
  type: z.ZodEnum<{
8654
8531
  readonly memory: "memory";
8655
8532
  readonly keychain: "keychain";
@@ -8664,11 +8541,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
8664
8541
  }>;
8665
8542
  declare const ProjectResponse: z.ZodObject<{
8666
8543
  data: z.ZodObject<{
8667
- id: z.ZodString;
8668
8544
  name: z.ZodString;
8669
- description: z.ZodString;
8545
+ id: z.ZodString;
8670
8546
  createdAt: z.ZodString;
8671
8547
  updatedAt: z.ZodString;
8548
+ description: z.ZodString;
8672
8549
  models: z.ZodNullable<z.ZodType<{
8673
8550
  base: {
8674
8551
  model?: string | undefined;
@@ -8735,27 +8612,6 @@ declare const ProjectResponse: z.ZodObject<{
8735
8612
  transferCountIs?: number | undefined;
8736
8613
  stepCountIs?: number | undefined;
8737
8614
  }>>>;
8738
- sandboxConfig: z.ZodNullable<z.ZodType<{
8739
- provider: "vercel" | "local";
8740
- runtime: "node22" | "typescript";
8741
- timeout?: number;
8742
- vcpus?: number;
8743
- }, {
8744
- provider: "vercel" | "local";
8745
- runtime: "node22" | "typescript";
8746
- timeout?: number;
8747
- vcpus?: number;
8748
- }, z.core.$ZodTypeInternals<{
8749
- provider: "vercel" | "local";
8750
- runtime: "node22" | "typescript";
8751
- timeout?: number;
8752
- vcpus?: number;
8753
- }, {
8754
- provider: "vercel" | "local";
8755
- runtime: "node22" | "typescript";
8756
- timeout?: number;
8757
- vcpus?: number;
8758
- }>>>;
8759
8615
  }, {
8760
8616
  out: {};
8761
8617
  in: {};
@@ -8763,12 +8619,11 @@ declare const ProjectResponse: z.ZodObject<{
8763
8619
  }, z.core.$strip>;
8764
8620
  declare const SubAgentResponse: z.ZodObject<{
8765
8621
  data: z.ZodObject<{
8766
- id: z.ZodString;
8767
8622
  name: z.ZodString;
8768
- description: z.ZodString;
8769
- prompt: z.ZodString;
8623
+ id: z.ZodString;
8770
8624
  createdAt: z.ZodString;
8771
8625
  updatedAt: z.ZodString;
8626
+ description: z.ZodString;
8772
8627
  models: z.ZodNullable<z.ZodType<{
8773
8628
  base?: {
8774
8629
  model?: string | undefined;
@@ -8831,17 +8686,17 @@ declare const SubAgentResponse: z.ZodObject<{
8831
8686
  }, {
8832
8687
  stepCountIs?: number | undefined;
8833
8688
  }>>>;
8689
+ prompt: z.ZodString;
8834
8690
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
8835
8691
  }, z.core.$strip>;
8836
8692
  }, z.core.$strip>;
8837
8693
  declare const AgentResponse: z.ZodObject<{
8838
8694
  data: z.ZodObject<{
8839
- id: z.ZodString;
8840
8695
  name: z.ZodString;
8841
- description: z.ZodNullable<z.ZodString>;
8842
- prompt: z.ZodNullable<z.ZodString>;
8696
+ id: z.ZodString;
8843
8697
  createdAt: z.ZodString;
8844
8698
  updatedAt: z.ZodString;
8699
+ description: z.ZodNullable<z.ZodString>;
8845
8700
  models: z.ZodNullable<z.ZodType<{
8846
8701
  base?: {
8847
8702
  model?: string | undefined;
@@ -8906,6 +8761,7 @@ declare const AgentResponse: z.ZodObject<{
8906
8761
  }>>>;
8907
8762
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
8908
8763
  contextConfigId: z.ZodNullable<z.ZodString>;
8764
+ prompt: z.ZodNullable<z.ZodString>;
8909
8765
  statusUpdates: z.ZodNullable<z.ZodType<{
8910
8766
  enabled?: boolean | undefined;
8911
8767
  numEvents?: number | undefined;
@@ -8967,9 +8823,14 @@ declare const AgentResponse: z.ZodObject<{
8967
8823
  }, z.core.$strip>;
8968
8824
  declare const ToolResponse: z.ZodObject<{
8969
8825
  data: z.ZodObject<{
8970
- id: z.ZodString;
8971
8826
  name: z.ZodString;
8827
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
8828
+ id: z.ZodString;
8829
+ createdAt: z.ZodString;
8830
+ updatedAt: z.ZodString;
8972
8831
  description: z.ZodNullable<z.ZodString>;
8832
+ credentialReferenceId: z.ZodNullable<z.ZodString>;
8833
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
8973
8834
  config: z.ZodType<{
8974
8835
  type: "mcp";
8975
8836
  mcp: ToolMcpConfig;
@@ -8983,25 +8844,20 @@ declare const ToolResponse: z.ZodObject<{
8983
8844
  type: "mcp";
8984
8845
  mcp: ToolMcpConfig;
8985
8846
  }>>;
8986
- credentialReferenceId: z.ZodNullable<z.ZodString>;
8987
- createdAt: z.ZodString;
8988
- updatedAt: z.ZodString;
8989
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
8990
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
8991
8847
  imageUrl: z.ZodNullable<z.ZodString>;
8992
8848
  lastError: z.ZodNullable<z.ZodString>;
8993
8849
  }, z.core.$strip>;
8994
8850
  }, z.core.$strip>;
8995
8851
  declare const ExternalAgentResponse: z.ZodObject<{
8996
8852
  data: z.ZodObject<{
8997
- id: z.ZodString;
8998
8853
  name: z.ZodString;
8999
- description: z.ZodString;
9000
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8854
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
8855
+ id: z.ZodString;
9001
8856
  createdAt: z.ZodString;
9002
8857
  updatedAt: z.ZodString;
8858
+ description: z.ZodString;
8859
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9003
8860
  baseUrl: z.ZodString;
9004
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
9005
8861
  }, z.core.$strip>;
9006
8862
  }, z.core.$strip>;
9007
8863
  declare const ContextConfigResponse: z.ZodObject<{
@@ -9015,15 +8871,15 @@ declare const ContextConfigResponse: z.ZodObject<{
9015
8871
  }, z.core.$strip>;
9016
8872
  declare const ApiKeyResponse: z.ZodObject<{
9017
8873
  data: z.ZodObject<{
9018
- id: z.ZodString;
9019
8874
  name: z.ZodNullable<z.ZodString>;
8875
+ id: z.ZodString;
8876
+ createdAt: z.ZodString;
8877
+ updatedAt: z.ZodString;
9020
8878
  agentId: z.ZodString;
9021
8879
  publicId: z.ZodString;
9022
8880
  keyPrefix: z.ZodString;
9023
8881
  lastUsedAt: z.ZodNullable<z.ZodString>;
9024
8882
  expiresAt: z.ZodNullable<z.ZodString>;
9025
- createdAt: z.ZodString;
9026
- updatedAt: z.ZodString;
9027
8883
  }, {
9028
8884
  out: {};
9029
8885
  in: {};
@@ -9032,10 +8888,10 @@ declare const ApiKeyResponse: z.ZodObject<{
9032
8888
  declare const CredentialReferenceResponse: z.ZodObject<{
9033
8889
  data: z.ZodObject<{
9034
8890
  id: z.ZodString;
9035
- createdAt: z.ZodString;
9036
- updatedAt: z.ZodString;
9037
8891
  credentialStoreId: z.ZodString;
9038
8892
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
8893
+ createdAt: z.ZodString;
8894
+ updatedAt: z.ZodString;
9039
8895
  type: z.ZodEnum<{
9040
8896
  readonly memory: "memory";
9041
8897
  readonly keychain: "keychain";
@@ -9310,32 +9166,32 @@ declare const FunctionResponse: z.ZodObject<{
9310
9166
  }, z.core.$strip>;
9311
9167
  declare const FunctionToolResponse: z.ZodObject<{
9312
9168
  data: z.ZodObject<{
9313
- id: z.ZodString;
9314
9169
  name: z.ZodString;
9315
- description: z.ZodNullable<z.ZodString>;
9316
- agentId: z.ZodString;
9170
+ id: z.ZodString;
9317
9171
  createdAt: z.ZodString;
9318
9172
  updatedAt: z.ZodString;
9173
+ description: z.ZodNullable<z.ZodString>;
9174
+ agentId: z.ZodString;
9319
9175
  functionId: z.ZodString;
9320
9176
  }, z.core.$strip>;
9321
9177
  }, z.core.$strip>;
9322
9178
  declare const DataComponentResponse: z.ZodObject<{
9323
9179
  data: z.ZodObject<{
9324
- id: z.ZodString;
9325
9180
  name: z.ZodString;
9326
- description: z.ZodString;
9181
+ id: z.ZodString;
9327
9182
  createdAt: z.ZodString;
9328
9183
  updatedAt: z.ZodString;
9184
+ description: z.ZodString;
9329
9185
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
9330
9186
  }, z.core.$strip>;
9331
9187
  }, z.core.$strip>;
9332
9188
  declare const ArtifactComponentResponse: z.ZodObject<{
9333
9189
  data: z.ZodObject<{
9334
- id: z.ZodString;
9335
9190
  name: z.ZodString;
9336
- description: z.ZodString;
9191
+ id: z.ZodString;
9337
9192
  createdAt: z.ZodString;
9338
9193
  updatedAt: z.ZodString;
9194
+ description: z.ZodString;
9339
9195
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
9340
9196
  }, z.core.$strip>;
9341
9197
  }, z.core.$strip>;
@@ -9352,21 +9208,21 @@ declare const SubAgentRelationResponse: z.ZodObject<{
9352
9208
  }, z.core.$strip>;
9353
9209
  declare const SubAgentToolRelationResponse: z.ZodObject<{
9354
9210
  data: z.ZodObject<{
9211
+ headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
9355
9212
  id: z.ZodString;
9356
9213
  createdAt: z.ZodString;
9357
9214
  updatedAt: z.ZodString;
9358
- headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
9359
- toolId: z.ZodString;
9360
9215
  selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
9361
9216
  subAgentId: z.ZodString;
9217
+ toolId: z.ZodString;
9362
9218
  }, z.core.$strip>;
9363
9219
  }, z.core.$strip>;
9364
9220
  declare const ConversationResponse: z.ZodObject<{
9365
9221
  data: z.ZodObject<{
9366
9222
  id: z.ZodString;
9367
- title: z.ZodNullable<z.ZodString>;
9368
9223
  createdAt: z.ZodString;
9369
9224
  updatedAt: z.ZodString;
9225
+ title: z.ZodNullable<z.ZodString>;
9370
9226
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
9371
9227
  userId: z.ZodNullable<z.ZodString>;
9372
9228
  activeSubAgentId: z.ZodString;
@@ -9396,11 +9252,11 @@ declare const MessageResponse: z.ZodObject<{
9396
9252
  }, z.core.$strip>;
9397
9253
  declare const ProjectListResponse: z.ZodObject<{
9398
9254
  data: z.ZodArray<z.ZodObject<{
9399
- id: z.ZodString;
9400
9255
  name: z.ZodString;
9401
- description: z.ZodString;
9256
+ id: z.ZodString;
9402
9257
  createdAt: z.ZodString;
9403
9258
  updatedAt: z.ZodString;
9259
+ description: z.ZodString;
9404
9260
  models: z.ZodNullable<z.ZodType<{
9405
9261
  base: {
9406
9262
  model?: string | undefined;
@@ -9467,27 +9323,6 @@ declare const ProjectListResponse: z.ZodObject<{
9467
9323
  transferCountIs?: number | undefined;
9468
9324
  stepCountIs?: number | undefined;
9469
9325
  }>>>;
9470
- sandboxConfig: z.ZodNullable<z.ZodType<{
9471
- provider: "vercel" | "local";
9472
- runtime: "node22" | "typescript";
9473
- timeout?: number;
9474
- vcpus?: number;
9475
- }, {
9476
- provider: "vercel" | "local";
9477
- runtime: "node22" | "typescript";
9478
- timeout?: number;
9479
- vcpus?: number;
9480
- }, z.core.$ZodTypeInternals<{
9481
- provider: "vercel" | "local";
9482
- runtime: "node22" | "typescript";
9483
- timeout?: number;
9484
- vcpus?: number;
9485
- }, {
9486
- provider: "vercel" | "local";
9487
- runtime: "node22" | "typescript";
9488
- timeout?: number;
9489
- vcpus?: number;
9490
- }>>>;
9491
9326
  }, {
9492
9327
  out: {};
9493
9328
  in: {};
@@ -9501,12 +9336,11 @@ declare const ProjectListResponse: z.ZodObject<{
9501
9336
  }, z.core.$strip>;
9502
9337
  declare const SubAgentListResponse: z.ZodObject<{
9503
9338
  data: z.ZodArray<z.ZodObject<{
9504
- id: z.ZodString;
9505
9339
  name: z.ZodString;
9506
- description: z.ZodString;
9507
- prompt: z.ZodString;
9340
+ id: z.ZodString;
9508
9341
  createdAt: z.ZodString;
9509
9342
  updatedAt: z.ZodString;
9343
+ description: z.ZodString;
9510
9344
  models: z.ZodNullable<z.ZodType<{
9511
9345
  base?: {
9512
9346
  model?: string | undefined;
@@ -9569,6 +9403,7 @@ declare const SubAgentListResponse: z.ZodObject<{
9569
9403
  }, {
9570
9404
  stepCountIs?: number | undefined;
9571
9405
  }>>>;
9406
+ prompt: z.ZodString;
9572
9407
  conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
9573
9408
  }, z.core.$strip>>;
9574
9409
  pagination: z.ZodObject<{
@@ -9580,12 +9415,11 @@ declare const SubAgentListResponse: z.ZodObject<{
9580
9415
  }, z.core.$strip>;
9581
9416
  declare const AgentListResponse: z.ZodObject<{
9582
9417
  data: z.ZodArray<z.ZodObject<{
9583
- id: z.ZodString;
9584
9418
  name: z.ZodString;
9585
- description: z.ZodNullable<z.ZodString>;
9586
- prompt: z.ZodNullable<z.ZodString>;
9419
+ id: z.ZodString;
9587
9420
  createdAt: z.ZodString;
9588
9421
  updatedAt: z.ZodString;
9422
+ description: z.ZodNullable<z.ZodString>;
9589
9423
  models: z.ZodNullable<z.ZodType<{
9590
9424
  base?: {
9591
9425
  model?: string | undefined;
@@ -9650,6 +9484,7 @@ declare const AgentListResponse: z.ZodObject<{
9650
9484
  }>>>;
9651
9485
  defaultSubAgentId: z.ZodNullable<z.ZodString>;
9652
9486
  contextConfigId: z.ZodNullable<z.ZodString>;
9487
+ prompt: z.ZodNullable<z.ZodString>;
9653
9488
  statusUpdates: z.ZodNullable<z.ZodType<{
9654
9489
  enabled?: boolean | undefined;
9655
9490
  numEvents?: number | undefined;
@@ -9717,9 +9552,14 @@ declare const AgentListResponse: z.ZodObject<{
9717
9552
  }, z.core.$strip>;
9718
9553
  declare const ToolListResponse: z.ZodObject<{
9719
9554
  data: z.ZodArray<z.ZodObject<{
9720
- id: z.ZodString;
9721
9555
  name: z.ZodString;
9556
+ headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
9557
+ id: z.ZodString;
9558
+ createdAt: z.ZodString;
9559
+ updatedAt: z.ZodString;
9722
9560
  description: z.ZodNullable<z.ZodString>;
9561
+ credentialReferenceId: z.ZodNullable<z.ZodString>;
9562
+ capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
9723
9563
  config: z.ZodType<{
9724
9564
  type: "mcp";
9725
9565
  mcp: ToolMcpConfig;
@@ -9733,11 +9573,6 @@ declare const ToolListResponse: z.ZodObject<{
9733
9573
  type: "mcp";
9734
9574
  mcp: ToolMcpConfig;
9735
9575
  }>>;
9736
- credentialReferenceId: z.ZodNullable<z.ZodString>;
9737
- createdAt: z.ZodString;
9738
- updatedAt: z.ZodString;
9739
- headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
9740
- capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
9741
9576
  imageUrl: z.ZodNullable<z.ZodString>;
9742
9577
  lastError: z.ZodNullable<z.ZodString>;
9743
9578
  }, z.core.$strip>>;
@@ -9750,14 +9585,14 @@ declare const ToolListResponse: z.ZodObject<{
9750
9585
  }, z.core.$strip>;
9751
9586
  declare const ExternalAgentListResponse: z.ZodObject<{
9752
9587
  data: z.ZodArray<z.ZodObject<{
9753
- id: z.ZodString;
9754
9588
  name: z.ZodString;
9755
- description: z.ZodString;
9756
- credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9589
+ headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
9590
+ id: z.ZodString;
9757
9591
  createdAt: z.ZodString;
9758
9592
  updatedAt: z.ZodString;
9593
+ description: z.ZodString;
9594
+ credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9759
9595
  baseUrl: z.ZodString;
9760
- headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
9761
9596
  }, z.core.$strip>>;
9762
9597
  pagination: z.ZodObject<{
9763
9598
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -9783,15 +9618,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
9783
9618
  }, z.core.$strip>;
9784
9619
  declare const ApiKeyListResponse: z.ZodObject<{
9785
9620
  data: z.ZodArray<z.ZodObject<{
9786
- id: z.ZodString;
9787
9621
  name: z.ZodNullable<z.ZodString>;
9622
+ id: z.ZodString;
9623
+ createdAt: z.ZodString;
9624
+ updatedAt: z.ZodString;
9788
9625
  agentId: z.ZodString;
9789
9626
  publicId: z.ZodString;
9790
9627
  keyPrefix: z.ZodString;
9791
9628
  lastUsedAt: z.ZodNullable<z.ZodString>;
9792
9629
  expiresAt: z.ZodNullable<z.ZodString>;
9793
- createdAt: z.ZodString;
9794
- updatedAt: z.ZodString;
9795
9630
  }, {
9796
9631
  out: {};
9797
9632
  in: {};
@@ -9806,10 +9641,10 @@ declare const ApiKeyListResponse: z.ZodObject<{
9806
9641
  declare const CredentialReferenceListResponse: z.ZodObject<{
9807
9642
  data: z.ZodArray<z.ZodObject<{
9808
9643
  id: z.ZodString;
9809
- createdAt: z.ZodString;
9810
- updatedAt: z.ZodString;
9811
9644
  credentialStoreId: z.ZodString;
9812
9645
  retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
9646
+ createdAt: z.ZodString;
9647
+ updatedAt: z.ZodString;
9813
9648
  type: z.ZodEnum<{
9814
9649
  readonly memory: "memory";
9815
9650
  readonly keychain: "keychain";
@@ -10096,12 +9931,12 @@ declare const FunctionListResponse: z.ZodObject<{
10096
9931
  }, z.core.$strip>;
10097
9932
  declare const FunctionToolListResponse: z.ZodObject<{
10098
9933
  data: z.ZodArray<z.ZodObject<{
10099
- id: z.ZodString;
10100
9934
  name: z.ZodString;
10101
- description: z.ZodNullable<z.ZodString>;
10102
- agentId: z.ZodString;
9935
+ id: z.ZodString;
10103
9936
  createdAt: z.ZodString;
10104
9937
  updatedAt: z.ZodString;
9938
+ description: z.ZodNullable<z.ZodString>;
9939
+ agentId: z.ZodString;
10105
9940
  functionId: z.ZodString;
10106
9941
  }, z.core.$strip>>;
10107
9942
  pagination: z.ZodObject<{
@@ -10113,11 +9948,11 @@ declare const FunctionToolListResponse: z.ZodObject<{
10113
9948
  }, z.core.$strip>;
10114
9949
  declare const DataComponentListResponse: z.ZodObject<{
10115
9950
  data: z.ZodArray<z.ZodObject<{
10116
- id: z.ZodString;
10117
9951
  name: z.ZodString;
10118
- description: z.ZodString;
9952
+ id: z.ZodString;
10119
9953
  createdAt: z.ZodString;
10120
9954
  updatedAt: z.ZodString;
9955
+ description: z.ZodString;
10121
9956
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
10122
9957
  }, z.core.$strip>>;
10123
9958
  pagination: z.ZodObject<{
@@ -10129,11 +9964,11 @@ declare const DataComponentListResponse: z.ZodObject<{
10129
9964
  }, z.core.$strip>;
10130
9965
  declare const ArtifactComponentListResponse: z.ZodObject<{
10131
9966
  data: z.ZodArray<z.ZodObject<{
10132
- id: z.ZodString;
10133
9967
  name: z.ZodString;
10134
- description: z.ZodString;
9968
+ id: z.ZodString;
10135
9969
  createdAt: z.ZodString;
10136
9970
  updatedAt: z.ZodString;
9971
+ description: z.ZodString;
10137
9972
  props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
10138
9973
  }, z.core.$strip>>;
10139
9974
  pagination: z.ZodObject<{
@@ -10162,13 +9997,13 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
10162
9997
  }, z.core.$strip>;
10163
9998
  declare const SubAgentToolRelationListResponse: z.ZodObject<{
10164
9999
  data: z.ZodArray<z.ZodObject<{
10000
+ headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
10165
10001
  id: z.ZodString;
10166
10002
  createdAt: z.ZodString;
10167
10003
  updatedAt: z.ZodString;
10168
- headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
10169
- toolId: z.ZodString;
10170
10004
  selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
10171
10005
  subAgentId: z.ZodString;
10006
+ toolId: z.ZodString;
10172
10007
  }, z.core.$strip>>;
10173
10008
  pagination: z.ZodObject<{
10174
10009
  page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
@@ -10180,9 +10015,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
10180
10015
  declare const ConversationListResponse: z.ZodObject<{
10181
10016
  data: z.ZodArray<z.ZodObject<{
10182
10017
  id: z.ZodString;
10183
- title: z.ZodNullable<z.ZodString>;
10184
10018
  createdAt: z.ZodString;
10185
10019
  updatedAt: z.ZodString;
10020
+ title: z.ZodNullable<z.ZodString>;
10186
10021
  metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
10187
10022
  userId: z.ZodNullable<z.ZodString>;
10188
10023
  activeSubAgentId: z.ZodString;
@@ -10697,4 +10532,4 @@ interface ExecutionContext {
10697
10532
  subAgentId?: string;
10698
10533
  }
10699
10534
 
10700
- export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalSubAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type AgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type SubAgentStopWhen as f, ProjectApiUpdateSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, type ModelSettings as g, FullProjectDefinitionSchema as g0, ProjectResponse as g1, SubAgentResponse as g2, AgentResponse as g3, ToolResponse as g4, ExternalAgentResponse as g5, ContextConfigResponse as g6, ApiKeyResponse as g7, CredentialReferenceResponse as g8, FunctionResponse as g9, SubAgentArtifactComponentListResponse as gA, HeadersScopeSchema as gB, TenantParamsSchema as gC, TenantIdParamsSchema as gD, TenantProjectParamsSchema as gE, TenantProjectIdParamsSchema as gF, TenantProjectAgentParamsSchema as gG, TenantProjectAgentIdParamsSchema as gH, TenantProjectAgentSubAgentParamsSchema as gI, TenantProjectAgentSubAgentIdParamsSchema as gJ, PaginationQueryParamsSchema as gK, FunctionToolResponse as ga, DataComponentResponse as gb, ArtifactComponentResponse as gc, SubAgentRelationResponse as gd, SubAgentToolRelationResponse as ge, ConversationResponse as gf, MessageResponse as gg, ProjectListResponse as gh, SubAgentListResponse as gi, AgentListResponse as gj, ToolListResponse as gk, ExternalAgentListResponse as gl, ContextConfigListResponse as gm, ApiKeyListResponse as gn, CredentialReferenceListResponse as go, FunctionListResponse as gp, FunctionToolListResponse as gq, DataComponentListResponse as gr, ArtifactComponentListResponse as gs, SubAgentRelationListResponse as gt, SubAgentToolRelationListResponse as gu, ConversationListResponse as gv, MessageListResponse as gw, SubAgentDataComponentResponse as gx, SubAgentArtifactComponentResponse as gy, SubAgentDataComponentListResponse as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
10535
+ export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ApiKeyInsert as E, FunctionApiInsertSchema as F, type ApiKeyUpdate as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type SubAgentScopeConfig as N, type ContextCacheSelect as O, type Part as P, type ContextCacheInsert as Q, type ContextConfigInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigUpdate as U, type ConversationSelect as V, type ConversationInsert as W, type ConversationUpdate as X, type CredentialReferenceSelect as Y, type ToolSelect as Z, type CredentialReferenceInsert as _, FullAgentAgentInsertSchema as a, type InvalidRequestError as a$, type DataComponentSelect as a0, type DataComponentInsert as a1, type DataComponentUpdate as a2, type ExternalAgentInsert as a3, type ExternalAgentSelect as a4, type ExternalAgentUpdate as a5, type FunctionApiInsert as a6, type FunctionToolApiInsert as a7, type FunctionToolApiUpdate as a8, type Artifact as a9, type FileBase as aA, type FileWithBytes as aB, type FileWithUri as aC, type FilePart as aD, type DataPart as aE, TaskState as aF, type AgentCapabilities as aG, type AgentProvider as aH, type AgentSkill as aI, type SecuritySchemeBase as aJ, type APIKeySecurityScheme as aK, type HTTPAuthSecurityScheme as aL, type OAuthFlows as aM, type AuthorizationCodeOAuthFlow as aN, type ClientCredentialsOAuthFlow as aO, type ImplicitOAuthFlow as aP, type PasswordOAuthFlow as aQ, type OAuth2SecurityScheme as aR, type OpenIdConnectSecurityScheme as aS, type SecurityScheme as aT, type AgentCard as aU, type Message as aV, type TaskStatus as aW, type Task as aX, type TaskStatusUpdateEvent as aY, type TaskArtifactUpdateEvent as aZ, type JSONParseError as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type SubAgentRelationInsert as al, type ExternalSubAgentRelationInsert as am, type SubAgentRelationUpdate as an, type SubAgentToolRelationUpdate as ao, type SubAgentInsert as ap, type SubAgentUpdate as aq, type SubAgentSelect as ar, type TaskInsert as as, type TaskSelect as at, type McpTool as au, type ToolInsert as av, type ToolUpdate as aw, type ExecutionContext as ax, type PartBase as ay, type TextPart as az, AgentStopWhenSchema as b, type TaskRelationUpdate as b$, type MethodNotFoundError as b0, type InvalidParamsError as b1, type InternalError as b2, type TaskNotFoundError as b3, type TaskNotCancelableError as b4, type PushNotificationNotSupportedError as b5, type UnsupportedOperationError as b6, type ContentTypeNotSupportedError as b7, type InvalidAgentResponseError as b8, type A2AError as b9, type CancelTaskResponse as bA, type SetTaskPushNotificationConfigSuccessResponse as bB, type SetTaskPushNotificationConfigResponse as bC, type GetTaskPushNotificationConfigSuccessResponse as bD, type GetTaskPushNotificationConfigResponse as bE, type A2ARequest as bF, type A2AResponse as bG, type MessagePart as bH, type TaskArtifact as bI, type SubAgentApiSelect as bJ, type SubAgentApiInsert as bK, type SubAgentApiUpdate as bL, type SubAgentRelationSelect as bM, type SubAgentRelationApiSelect as bN, type SubAgentRelationApiInsert as bO, type SubAgentRelationApiUpdate as bP, type SubAgentRelationQuery as bQ, type ExternalSubAgentRelationApiInsert as bR, type AgentApiSelect as bS, type AgentApiInsert as bT, type AgentApiUpdate as bU, type TaskUpdate as bV, type TaskApiSelect as bW, type TaskApiInsert as bX, type TaskApiUpdate as bY, type TaskRelationSelect as bZ, type TaskRelationInsert as b_, type PushNotificationAuthenticationInfo as ba, type PushNotificationConfig as bb, type TaskPushNotificationConfig as bc, type TaskIdParams as bd, type TaskQueryParams as be, type MessageSendConfiguration as bf, type MessageSendParams as bg, type JSONRPCMessage as bh, type JSONRPCRequest as bi, type JSONRPCError as bj, type JSONRPCResult as bk, type JSONRPCErrorResponse as bl, type SendMessageRequest as bm, type SendStreamingMessageRequest as bn, type GetTaskRequest as bo, type CancelTaskRequest as bp, type SetTaskPushNotificationConfigRequest as bq, type GetTaskPushNotificationConfigRequest as br, type TaskResubscriptionRequest as bs, type SendMessageSuccessResponse as bt, type SendMessageResponse as bu, type SendStreamingMessageSuccessResponse as bv, type SendStreamingMessageResponse as bw, type GetTaskSuccessResponse as bx, type GetTaskResponse as by, type CancelTaskSuccessResponse as bz, SubAgentStopWhenSchema as c, type LedgerArtifactApiSelect as c$, type TaskRelationApiSelect as c0, type TaskRelationApiInsert as c1, type TaskRelationApiUpdate as c2, type ToolApiSelect as c3, type ToolApiInsert as c4, type ToolApiUpdate as c5, type FunctionSelect as c6, type FunctionInsert as c7, type FunctionUpdate as c8, type FunctionApiSelect as c9, type SubAgentDataComponentApiUpdate as cA, type ArtifactComponentApiSelect as cB, type ArtifactComponentApiInsert as cC, type ArtifactComponentApiUpdate as cD, type SubAgentArtifactComponentSelect as cE, type SubAgentArtifactComponentInsert as cF, type SubAgentArtifactComponentUpdate as cG, type SubAgentArtifactComponentApiSelect as cH, type SubAgentArtifactComponentApiInsert as cI, type SubAgentArtifactComponentApiUpdate as cJ, type ExternalAgentApiSelect as cK, type ExternalSubAgentApiInsert as cL, type ExternalAgentApiUpdate as cM, type AllAgentSelect as cN, type ApiKeyApiSelect as cO, type ApiKeyApiInsert as cP, type ApiKeyApiUpdate as cQ, type ApiKeyApiCreationResponse as cR, type CredentialReferenceApiSelect as cS, type CredentialReferenceApiUpdate as cT, type SubAgentToolRelationSelect as cU, type SubAgentToolRelationInsert as cV, type SubAgentToolRelationApiSelect as cW, type SubAgentToolRelationApiInsert as cX, type SubAgentToolRelationApiUpdate as cY, type LedgerArtifactInsert as cZ, type LedgerArtifactUpdate as c_, type FunctionApiUpdate as ca, type FunctionToolApiSelect as cb, type ConversationApiSelect as cc, type ConversationApiInsert as cd, type ConversationApiUpdate as ce, type MessageSelect as cf, type MessageApiSelect as cg, type MessageApiInsert as ch, type MessageApiUpdate as ci, type ContextConfigApiSelect as cj, type ContextConfigApiInsert as ck, type ContextConfigApiUpdate as cl, type FetchDefinition as cm, type FetchConfig as cn, type ContextCacheUpdate as co, type ContextCacheApiSelect as cp, type ContextCacheApiInsert as cq, type ContextCacheApiUpdate as cr, type DataComponentApiSelect as cs, type DataComponentApiInsert as ct, type DataComponentApiUpdate as cu, type SubAgentDataComponentSelect as cv, type SubAgentDataComponentInsert as cw, type SubAgentDataComponentUpdate as cx, type SubAgentDataComponentApiSelect as cy, type SubAgentDataComponentApiInsert as cz, type StopWhen as d, TaskApiSelectSchema as d$, type LedgerArtifactApiInsert as d0, type LedgerArtifactApiUpdate as d1, type FullAgentAgentInsert as d2, type CanUseItem as d3, type InternalSubAgentDefinition as d4, type SubAgentDefinition as d5, type ToolDefinition as d6, type ProjectApiSelect as d7, type ProjectApiInsert as d8, type ProjectApiUpdate as d9, ProjectModelSchema as dA, FunctionToolConfigSchema as dB, type FunctionToolConfig as dC, SubAgentSelectSchema as dD, SubAgentInsertSchema as dE, SubAgentUpdateSchema as dF, SubAgentApiSelectSchema as dG, SubAgentApiInsertSchema as dH, SubAgentApiUpdateSchema as dI, SubAgentRelationSelectSchema as dJ, SubAgentRelationInsertSchema as dK, SubAgentRelationUpdateSchema as dL, SubAgentRelationApiSelectSchema as dM, SubAgentRelationApiInsertSchema as dN, SubAgentRelationApiUpdateSchema as dO, SubAgentRelationQuerySchema as dP, ExternalSubAgentRelationInsertSchema as dQ, ExternalSubAgentRelationApiInsertSchema as dR, AgentSelectSchema as dS, AgentInsertSchema as dT, AgentUpdateSchema as dU, AgentApiSelectSchema as dV, AgentApiInsertSchema as dW, AgentApiUpdateSchema as dX, TaskSelectSchema as dY, TaskInsertSchema as dZ, TaskUpdateSchema as d_, type Pagination as da, type SummaryEvent as db, type MessageType as dc, type MessageRole as dd, type MessageMode as de, type Models as df, type ProjectModels as dg, type StatusUpdateSettings as dh, type StatusComponent as di, type ConversationScopeOptions as dj, type AgentConversationHistoryConfig as dk, type ContextCacheEntry as dl, type McpAuthType as dm, type McpServerAuth as dn, type McpTransportConfig as dp, type McpServerCapabilities as dq, type McpToolDefinition as dr, TOOL_STATUS_VALUES as ds, VALID_RELATION_TYPES as dt, MCPServerType as du, MIN_ID_LENGTH as dv, MAX_ID_LENGTH as dw, URL_SAFE_ID_PATTERN as dx, resourceIdSchema as dy, ModelSchema as dz, type AgentStopWhen as e, ApiKeySelectSchema as e$, TaskApiInsertSchema as e0, TaskApiUpdateSchema as e1, TaskRelationSelectSchema as e2, TaskRelationInsertSchema as e3, TaskRelationUpdateSchema as e4, TaskRelationApiSelectSchema as e5, TaskRelationApiInsertSchema as e6, TaskRelationApiUpdateSchema as e7, McpTransportConfigSchema as e8, ToolStatusSchema as e9, DataComponentApiInsertSchema as eA, DataComponentApiUpdateSchema as eB, SubAgentDataComponentSelectSchema as eC, SubAgentDataComponentInsertSchema as eD, SubAgentDataComponentUpdateSchema as eE, SubAgentDataComponentApiSelectSchema as eF, SubAgentDataComponentApiInsertSchema as eG, SubAgentDataComponentApiUpdateSchema as eH, ArtifactComponentSelectSchema as eI, ArtifactComponentInsertSchema as eJ, ArtifactComponentUpdateSchema as eK, ArtifactComponentApiSelectSchema as eL, ArtifactComponentApiInsertSchema as eM, ArtifactComponentApiUpdateSchema as eN, SubAgentArtifactComponentSelectSchema as eO, SubAgentArtifactComponentInsertSchema as eP, SubAgentArtifactComponentUpdateSchema as eQ, SubAgentArtifactComponentApiSelectSchema as eR, SubAgentArtifactComponentApiInsertSchema as eS, SubAgentArtifactComponentApiUpdateSchema as eT, ExternalAgentSelectSchema as eU, ExternalAgentInsertSchema as eV, ExternalAgentUpdateSchema as eW, ExternalAgentApiSelectSchema as eX, ExternalAgentApiInsertSchema as eY, ExternalAgentApiUpdateSchema as eZ, AllAgentSchema as e_, McpToolDefinitionSchema as ea, ToolSelectSchema as eb, ToolInsertSchema as ec, ConversationSelectSchema as ed, ConversationInsertSchema as ee, ConversationUpdateSchema as ef, ConversationApiSelectSchema as eg, ConversationApiInsertSchema as eh, ConversationApiUpdateSchema as ei, MessageSelectSchema as ej, MessageInsertSchema as ek, MessageUpdateSchema as el, MessageApiSelectSchema as em, MessageApiInsertSchema as en, MessageApiUpdateSchema as eo, ContextCacheSelectSchema as ep, ContextCacheInsertSchema as eq, ContextCacheUpdateSchema as er, ContextCacheApiSelectSchema as es, ContextCacheApiInsertSchema as et, ContextCacheApiUpdateSchema as eu, DataComponentSelectSchema as ev, DataComponentInsertSchema as ew, DataComponentBaseSchema as ex, DataComponentUpdateSchema as ey, DataComponentApiSelectSchema as ez, type SubAgentStopWhen as f, ProjectResponse as f$, ApiKeyInsertSchema as f0, ApiKeyUpdateSchema as f1, ApiKeyApiSelectSchema as f2, ApiKeyApiCreationResponseSchema as f3, ApiKeyApiInsertSchema as f4, CredentialReferenceSelectSchema as f5, CredentialReferenceInsertSchema as f6, CredentialReferenceUpdateSchema as f7, CredentialReferenceApiSelectSchema as f8, CredentialReferenceApiInsertSchema as f9, SubAgentToolRelationUpdateSchema as fA, SubAgentToolRelationApiSelectSchema as fB, SubAgentToolRelationApiInsertSchema as fC, SubAgentToolRelationApiUpdateSchema as fD, LedgerArtifactSelectSchema as fE, LedgerArtifactInsertSchema as fF, LedgerArtifactUpdateSchema as fG, LedgerArtifactApiSelectSchema as fH, LedgerArtifactApiInsertSchema as fI, LedgerArtifactApiUpdateSchema as fJ, StatusComponentSchema as fK, StatusUpdateSchema as fL, CanUseItemSchema as fM, AgentWithinContextOfProjectSchema as fN, PaginationSchema as fO, ListResponseSchema as fP, SingleResponseSchema as fQ, ErrorResponseSchema as fR, ExistsResponseSchema as fS, RemovedResponseSchema as fT, ProjectSelectSchema as fU, ProjectInsertSchema as fV, ProjectUpdateSchema as fW, ProjectApiSelectSchema as fX, ProjectApiInsertSchema as fY, ProjectApiUpdateSchema as fZ, FullProjectDefinitionSchema as f_, CredentialReferenceApiUpdateSchema as fa, McpToolSchema as fb, MCPToolConfigSchema as fc, ToolUpdateSchema as fd, ToolApiSelectSchema as fe, ToolApiInsertSchema as ff, ToolApiUpdateSchema as fg, FunctionToolSelectSchema as fh, FunctionToolInsertSchema as fi, FunctionToolUpdateSchema as fj, FunctionToolApiSelectSchema as fk, FunctionToolApiInsertSchema as fl, FunctionToolApiUpdateSchema as fm, FunctionSelectSchema as fn, FunctionInsertSchema as fo, FunctionUpdateSchema as fp, FetchConfigSchema as fq, FetchDefinitionSchema as fr, ContextConfigSelectSchema as fs, ContextConfigInsertSchema as ft, ContextConfigUpdateSchema as fu, ContextConfigApiSelectSchema as fv, ContextConfigApiInsertSchema as fw, ContextConfigApiUpdateSchema as fx, SubAgentToolRelationSelectSchema as fy, SubAgentToolRelationInsertSchema as fz, type ModelSettings as g, SubAgentResponse as g0, AgentResponse as g1, ToolResponse as g2, ExternalAgentResponse as g3, ContextConfigResponse as g4, ApiKeyResponse as g5, CredentialReferenceResponse as g6, FunctionResponse as g7, FunctionToolResponse as g8, DataComponentResponse as g9, TenantParamsSchema as gA, TenantIdParamsSchema as gB, TenantProjectParamsSchema as gC, TenantProjectIdParamsSchema as gD, TenantProjectAgentParamsSchema as gE, TenantProjectAgentIdParamsSchema as gF, TenantProjectAgentSubAgentParamsSchema as gG, TenantProjectAgentSubAgentIdParamsSchema as gH, PaginationQueryParamsSchema as gI, ArtifactComponentResponse as ga, SubAgentRelationResponse as gb, SubAgentToolRelationResponse as gc, ConversationResponse as gd, MessageResponse as ge, ProjectListResponse as gf, SubAgentListResponse as gg, AgentListResponse as gh, ToolListResponse as gi, ExternalAgentListResponse as gj, ContextConfigListResponse as gk, ApiKeyListResponse as gl, CredentialReferenceListResponse as gm, FunctionListResponse as gn, FunctionToolListResponse as go, DataComponentListResponse as gp, ArtifactComponentListResponse as gq, SubAgentRelationListResponse as gr, SubAgentToolRelationListResponse as gs, ConversationListResponse as gt, MessageListResponse as gu, SubAgentDataComponentResponse as gv, SubAgentArtifactComponentResponse as gw, SubAgentDataComponentListResponse as gx, SubAgentArtifactComponentListResponse as gy, HeadersScopeSchema as gz, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type AgentScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentInsert as x, type AgentUpdate as y, type FullAgentDefinition as z };