@inkeep/agents-core 0.16.1 → 0.16.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-L53XWAYG.js → chunk-N43VFJD3.js} +1 -1
- package/dist/client-exports.d.cts +6 -6
- package/dist/client-exports.d.ts +6 -6
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.d.cts +228 -228
- package/dist/index.d.ts +228 -228
- package/dist/index.js +6 -6
- package/dist/{schema-BtdvdyOA.d.ts → schema-BQk_FMBV.d.ts} +1 -1
- package/dist/{schema-DVnfWYwH.d.cts → schema-Ct2NlO81.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +5 -1
- package/dist/{chunk-TO2HNKGP.js → chunk-72MXE5SX.js} +1 -1
- package/dist/{utility-BaVsvScm.d.cts → utility-s9c5CVOe.d.cts} +164 -164
- package/dist/{utility-BaVsvScm.d.ts → utility-s9c5CVOe.d.ts} +164 -164
|
@@ -788,11 +788,12 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
788
788
|
in: {};
|
|
789
789
|
}>;
|
|
790
790
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
791
|
-
name: z.ZodString;
|
|
792
791
|
id: z.ZodString;
|
|
792
|
+
name: z.ZodString;
|
|
793
|
+
description: z.ZodString;
|
|
794
|
+
prompt: z.ZodString;
|
|
793
795
|
createdAt: z.ZodString;
|
|
794
796
|
updatedAt: z.ZodString;
|
|
795
|
-
description: z.ZodString;
|
|
796
797
|
models: z.ZodNullable<z.ZodType<{
|
|
797
798
|
base?: {
|
|
798
799
|
model?: string | undefined;
|
|
@@ -855,15 +856,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
855
856
|
}, {
|
|
856
857
|
stepCountIs?: number | undefined;
|
|
857
858
|
}>>>;
|
|
858
|
-
prompt: z.ZodString;
|
|
859
859
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
860
860
|
}, z.core.$strip>;
|
|
861
861
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
862
|
-
name: z.ZodString;
|
|
863
862
|
id: z.ZodString;
|
|
863
|
+
name: z.ZodString;
|
|
864
|
+
description: z.ZodString;
|
|
865
|
+
prompt: z.ZodString;
|
|
864
866
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
865
867
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
866
|
-
description: z.ZodString;
|
|
867
868
|
models: z.ZodOptional<z.ZodObject<{
|
|
868
869
|
base: z.ZodOptional<z.ZodObject<{
|
|
869
870
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -887,15 +888,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
887
888
|
}, {
|
|
888
889
|
stepCountIs?: number | undefined;
|
|
889
890
|
}>>>>;
|
|
890
|
-
prompt: z.ZodString;
|
|
891
891
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
892
892
|
}, z.core.$strip>;
|
|
893
893
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
894
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
895
894
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
895
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
896
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
897
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
896
898
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
897
899
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
898
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
899
900
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
900
901
|
base: z.ZodOptional<z.ZodObject<{
|
|
901
902
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -919,7 +920,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
919
920
|
}, {
|
|
920
921
|
stepCountIs?: number | undefined;
|
|
921
922
|
}>>>>>>;
|
|
922
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
923
923
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
924
924
|
}, z.core.$strip>;
|
|
925
925
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -1199,9 +1199,9 @@ declare const ExternalAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1199
1199
|
}>;
|
|
1200
1200
|
declare const ExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1201
1201
|
id: z.ZodString;
|
|
1202
|
+
graphId: z.ZodString;
|
|
1202
1203
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1203
1204
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1204
|
-
graphId: z.ZodString;
|
|
1205
1205
|
sourceAgentId: z.ZodString;
|
|
1206
1206
|
targetAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1207
1207
|
externalAgentId: z.ZodString;
|
|
@@ -1783,11 +1783,11 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1783
1783
|
in: {};
|
|
1784
1784
|
}>;
|
|
1785
1785
|
declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
1786
|
-
name: z.ZodString;
|
|
1787
1786
|
id: z.ZodString;
|
|
1787
|
+
name: z.ZodString;
|
|
1788
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1788
1789
|
createdAt: z.ZodString;
|
|
1789
1790
|
updatedAt: z.ZodString;
|
|
1790
|
-
description: z.ZodNullable<z.ZodString>;
|
|
1791
1791
|
models: z.ZodNullable<z.ZodType<{
|
|
1792
1792
|
base?: {
|
|
1793
1793
|
model?: string | undefined;
|
|
@@ -1913,9 +1913,9 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1913
1913
|
}, z.core.$strip>;
|
|
1914
1914
|
declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
1915
1915
|
name: z.ZodString;
|
|
1916
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1916
1917
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1917
1918
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1918
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1919
1919
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1920
1920
|
base?: {
|
|
1921
1921
|
model?: string | undefined;
|
|
@@ -2041,11 +2041,11 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
2041
2041
|
id: z.ZodString;
|
|
2042
2042
|
}, z.core.$strip>;
|
|
2043
2043
|
declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
2044
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2045
2044
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2045
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2046
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2046
2047
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2047
2048
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2048
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2049
2049
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2050
2050
|
base?: {
|
|
2051
2051
|
model?: string | undefined;
|
|
@@ -2395,9 +2395,9 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2395
2395
|
}>;
|
|
2396
2396
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
2397
2397
|
id: z.ZodString;
|
|
2398
|
+
graphId: z.ZodString;
|
|
2398
2399
|
createdAt: z.ZodString;
|
|
2399
2400
|
updatedAt: z.ZodString;
|
|
2400
|
-
graphId: z.ZodString;
|
|
2401
2401
|
status: z.ZodString;
|
|
2402
2402
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2403
2403
|
contextId: z.ZodString;
|
|
@@ -2405,9 +2405,9 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
2405
2405
|
}, z.core.$strip>;
|
|
2406
2406
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2407
2407
|
id: z.ZodString;
|
|
2408
|
+
graphId: z.ZodString;
|
|
2408
2409
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2409
2410
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2410
|
-
graphId: z.ZodString;
|
|
2411
2411
|
status: z.ZodString;
|
|
2412
2412
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2413
2413
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
@@ -2416,9 +2416,9 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
2416
2416
|
}, z.core.$strip>;
|
|
2417
2417
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2418
2418
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2419
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2419
2420
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2420
2421
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2421
|
-
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2422
2422
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2423
2423
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2424
2424
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -4239,9 +4239,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
4239
4239
|
}>;
|
|
4240
4240
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
4241
4241
|
id: z.ZodString;
|
|
4242
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4242
4243
|
createdAt: z.ZodString;
|
|
4243
4244
|
updatedAt: z.ZodString;
|
|
4244
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4245
4245
|
contextConfigId: z.ZodString;
|
|
4246
4246
|
conversationId: z.ZodString;
|
|
4247
4247
|
contextVariableKey: z.ZodString;
|
|
@@ -4252,9 +4252,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
4252
4252
|
}, z.core.$strip>;
|
|
4253
4253
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
4254
4254
|
id: z.ZodString;
|
|
4255
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4255
4256
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4256
4257
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4257
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4258
4258
|
contextConfigId: z.ZodString;
|
|
4259
4259
|
conversationId: z.ZodString;
|
|
4260
4260
|
contextVariableKey: z.ZodString;
|
|
@@ -4265,9 +4265,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
4265
4265
|
}, z.core.$strip>;
|
|
4266
4266
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
4267
4267
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4268
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4268
4269
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4269
4270
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4270
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4271
4271
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4272
4272
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4273
4273
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4444,10 +4444,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4444
4444
|
in: {};
|
|
4445
4445
|
}>;
|
|
4446
4446
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4447
|
-
name: z.ZodString;
|
|
4448
|
-
id: z.ZodString;
|
|
4449
|
-
projectId: z.ZodString;
|
|
4450
4447
|
tenantId: z.ZodString;
|
|
4448
|
+
projectId: z.ZodString;
|
|
4449
|
+
id: z.ZodString;
|
|
4450
|
+
name: z.ZodString;
|
|
4451
4451
|
description: z.ZodString;
|
|
4452
4452
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4453
4453
|
}, {
|
|
@@ -4468,27 +4468,27 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
4468
4468
|
in: {};
|
|
4469
4469
|
}>;
|
|
4470
4470
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
4471
|
-
name: z.ZodString;
|
|
4472
4471
|
id: z.ZodString;
|
|
4472
|
+
name: z.ZodString;
|
|
4473
|
+
description: z.ZodString;
|
|
4473
4474
|
createdAt: z.ZodString;
|
|
4474
4475
|
updatedAt: z.ZodString;
|
|
4475
|
-
description: z.ZodString;
|
|
4476
4476
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4477
4477
|
}, z.core.$strip>;
|
|
4478
4478
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
4479
|
-
name: z.ZodString;
|
|
4480
4479
|
id: z.ZodString;
|
|
4480
|
+
name: z.ZodString;
|
|
4481
|
+
description: z.ZodString;
|
|
4481
4482
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4482
4483
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4483
|
-
description: z.ZodString;
|
|
4484
4484
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4485
4485
|
}, z.core.$strip>;
|
|
4486
4486
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
4487
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4488
4487
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4488
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4489
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4489
4490
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4490
4491
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4491
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4492
4492
|
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>>>>>>>;
|
|
4493
4493
|
}, z.core.$strip>;
|
|
4494
4494
|
declare const AgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -4974,16 +4974,16 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
4974
4974
|
in: {};
|
|
4975
4975
|
}>;
|
|
4976
4976
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
4977
|
-
name: z.ZodString;
|
|
4978
4977
|
id: z.ZodString;
|
|
4978
|
+
name: z.ZodString;
|
|
4979
|
+
description: z.ZodString;
|
|
4979
4980
|
createdAt: z.ZodString;
|
|
4980
4981
|
updatedAt: z.ZodString;
|
|
4981
|
-
description: z.ZodString;
|
|
4982
4982
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4983
4983
|
}, z.core.$strip>;
|
|
4984
4984
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
4985
|
-
name: z.ZodString;
|
|
4986
4985
|
id: z.ZodString;
|
|
4986
|
+
name: z.ZodString;
|
|
4987
4987
|
description: z.ZodString;
|
|
4988
4988
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4989
4989
|
}, {
|
|
@@ -4991,11 +4991,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
4991
4991
|
in: {};
|
|
4992
4992
|
}>;
|
|
4993
4993
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
4994
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4995
4994
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4995
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4996
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4996
4997
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4997
4998
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4998
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4999
4999
|
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>>>>>>>;
|
|
5000
5000
|
}, z.core.$strip>;
|
|
5001
5001
|
declare const AgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5226,41 +5226,42 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5226
5226
|
in: {};
|
|
5227
5227
|
}>;
|
|
5228
5228
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5229
|
-
name: z.ZodString;
|
|
5230
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5231
5229
|
id: z.ZodString;
|
|
5232
|
-
|
|
5233
|
-
updatedAt: z.ZodString;
|
|
5230
|
+
name: z.ZodString;
|
|
5234
5231
|
description: z.ZodString;
|
|
5235
5232
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5233
|
+
createdAt: z.ZodString;
|
|
5234
|
+
updatedAt: z.ZodString;
|
|
5236
5235
|
baseUrl: z.ZodString;
|
|
5236
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5237
5237
|
}, z.core.$strip>;
|
|
5238
5238
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5239
|
-
name: z.ZodString;
|
|
5240
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5241
5239
|
id: z.ZodString;
|
|
5242
|
-
|
|
5243
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5240
|
+
name: z.ZodString;
|
|
5244
5241
|
description: z.ZodString;
|
|
5245
5242
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5243
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5244
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5246
5245
|
baseUrl: z.ZodString;
|
|
5246
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5247
5247
|
}, z.core.$strip>;
|
|
5248
5248
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5249
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5250
|
-
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>>>>>>>;
|
|
5251
5249
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5252
|
-
|
|
5253
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5250
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5254
5251
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5255
5252
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5253
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5254
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5256
5255
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5256
|
+
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>>>>>>>;
|
|
5257
5257
|
}, z.core.$strip>;
|
|
5258
5258
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5259
|
-
name: z.ZodString;
|
|
5260
5259
|
id: z.ZodString;
|
|
5260
|
+
name: z.ZodString;
|
|
5261
|
+
description: z.ZodString;
|
|
5262
|
+
prompt: z.ZodString;
|
|
5261
5263
|
createdAt: z.ZodString;
|
|
5262
5264
|
updatedAt: z.ZodString;
|
|
5263
|
-
description: z.ZodString;
|
|
5264
5265
|
models: z.ZodNullable<z.ZodType<{
|
|
5265
5266
|
base?: {
|
|
5266
5267
|
model?: string | undefined;
|
|
@@ -5323,18 +5324,17 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5323
5324
|
}, {
|
|
5324
5325
|
stepCountIs?: number | undefined;
|
|
5325
5326
|
}>>>;
|
|
5326
|
-
prompt: z.ZodString;
|
|
5327
5327
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5328
5328
|
type: z.ZodLiteral<"internal">;
|
|
5329
5329
|
}, z.core.$strip>, z.ZodObject<{
|
|
5330
|
-
name: z.ZodString;
|
|
5331
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5332
5330
|
id: z.ZodString;
|
|
5333
|
-
|
|
5334
|
-
updatedAt: z.ZodString;
|
|
5331
|
+
name: z.ZodString;
|
|
5335
5332
|
description: z.ZodString;
|
|
5336
5333
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5334
|
+
createdAt: z.ZodString;
|
|
5335
|
+
updatedAt: z.ZodString;
|
|
5337
5336
|
baseUrl: z.ZodString;
|
|
5337
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5338
5338
|
type: z.ZodLiteral<"external">;
|
|
5339
5339
|
}, z.core.$strip>], "type">;
|
|
5340
5340
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5586,24 +5586,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5586
5586
|
}>;
|
|
5587
5587
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5588
5588
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5589
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5590
5589
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5591
5590
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5592
5591
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5592
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5593
5593
|
}, {
|
|
5594
5594
|
out: {};
|
|
5595
5595
|
in: {};
|
|
5596
5596
|
}>;
|
|
5597
5597
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5598
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5599
5598
|
id: z.ZodString;
|
|
5600
|
-
|
|
5601
|
-
updatedAt: z.ZodString;
|
|
5599
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5602
5600
|
graphId: z.ZodString;
|
|
5603
5601
|
publicId: z.ZodString;
|
|
5604
5602
|
keyPrefix: z.ZodString;
|
|
5605
5603
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5606
5604
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5605
|
+
createdAt: z.ZodString;
|
|
5606
|
+
updatedAt: z.ZodString;
|
|
5607
5607
|
}, {
|
|
5608
5608
|
out: {};
|
|
5609
5609
|
in: {};
|
|
@@ -5611,15 +5611,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
5611
5611
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
5612
5612
|
data: z.ZodObject<{
|
|
5613
5613
|
apiKey: z.ZodObject<{
|
|
5614
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5615
5614
|
id: z.ZodString;
|
|
5616
|
-
|
|
5617
|
-
updatedAt: z.ZodString;
|
|
5615
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5618
5616
|
graphId: z.ZodString;
|
|
5619
5617
|
publicId: z.ZodString;
|
|
5620
5618
|
keyPrefix: z.ZodString;
|
|
5621
5619
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5622
5620
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5621
|
+
createdAt: z.ZodString;
|
|
5622
|
+
updatedAt: z.ZodString;
|
|
5623
5623
|
}, {
|
|
5624
5624
|
out: {};
|
|
5625
5625
|
in: {};
|
|
@@ -5629,20 +5629,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5629
5629
|
}, z.core.$strip>;
|
|
5630
5630
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5631
5631
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5632
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5633
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5634
5632
|
graphId: z.ZodString;
|
|
5635
5633
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5634
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5635
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5636
5636
|
}, {
|
|
5637
5637
|
out: {};
|
|
5638
5638
|
in: {};
|
|
5639
5639
|
}>;
|
|
5640
5640
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5641
5641
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5642
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5643
5642
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5644
5643
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5645
5644
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5645
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5646
5646
|
}, {
|
|
5647
5647
|
out: {};
|
|
5648
5648
|
in: {};
|
|
@@ -5685,10 +5685,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
5685
5685
|
}>;
|
|
5686
5686
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
5687
5687
|
id: z.ZodString;
|
|
5688
|
-
credentialStoreId: z.ZodString;
|
|
5689
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5690
5688
|
createdAt: z.ZodString;
|
|
5691
5689
|
updatedAt: z.ZodString;
|
|
5690
|
+
credentialStoreId: z.ZodString;
|
|
5691
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5692
5692
|
type: z.ZodEnum<{
|
|
5693
5693
|
readonly memory: "memory";
|
|
5694
5694
|
readonly keychain: "keychain";
|
|
@@ -5985,10 +5985,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
5985
5985
|
}, z.core.$strip>;
|
|
5986
5986
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
5987
5987
|
id: z.ZodString;
|
|
5988
|
-
credentialStoreId: z.ZodString;
|
|
5989
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5990
5988
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5991
5989
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5990
|
+
credentialStoreId: z.ZodString;
|
|
5991
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5992
5992
|
type: z.ZodEnum<{
|
|
5993
5993
|
readonly memory: "memory";
|
|
5994
5994
|
readonly keychain: "keychain";
|
|
@@ -5997,10 +5997,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
5997
5997
|
}, z.core.$strip>;
|
|
5998
5998
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
5999
5999
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6000
|
-
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6001
|
-
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6002
6000
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6003
6001
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6002
|
+
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6003
|
+
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6004
6004
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6005
6005
|
readonly memory: "memory";
|
|
6006
6006
|
readonly keychain: "keychain";
|
|
@@ -6059,9 +6059,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
6059
6059
|
in: {};
|
|
6060
6060
|
}>;
|
|
6061
6061
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
6062
|
+
id: z.ZodString;
|
|
6062
6063
|
name: z.ZodString;
|
|
6063
6064
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6064
|
-
id: z.ZodString;
|
|
6065
6065
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6066
6066
|
functionId: z.ZodOptional<z.ZodString>;
|
|
6067
6067
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -6092,10 +6092,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
6092
6092
|
}, z.core.$strip>>;
|
|
6093
6093
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6094
6094
|
id: z.ZodString;
|
|
6095
|
-
credentialStoreId: z.ZodString;
|
|
6096
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6097
6095
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6098
6096
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6097
|
+
credentialStoreId: z.ZodString;
|
|
6098
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6099
6099
|
type: z.ZodEnum<{
|
|
6100
6100
|
readonly memory: "memory";
|
|
6101
6101
|
readonly keychain: "keychain";
|
|
@@ -6146,14 +6146,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6146
6146
|
in: {};
|
|
6147
6147
|
}>;
|
|
6148
6148
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
6149
|
-
name: z.ZodString;
|
|
6150
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6151
6149
|
id: z.ZodString;
|
|
6152
|
-
|
|
6153
|
-
updatedAt: z.ZodString;
|
|
6150
|
+
name: z.ZodString;
|
|
6154
6151
|
description: z.ZodNullable<z.ZodString>;
|
|
6155
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6156
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6157
6152
|
config: z.ZodType<{
|
|
6158
6153
|
type: "mcp";
|
|
6159
6154
|
mcp: ToolMcpConfig;
|
|
@@ -6195,19 +6190,19 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6195
6190
|
dependencies: Record<string, unknown>;
|
|
6196
6191
|
};
|
|
6197
6192
|
}>>;
|
|
6193
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6194
|
+
createdAt: z.ZodString;
|
|
6195
|
+
updatedAt: z.ZodString;
|
|
6196
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6197
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6198
6198
|
functionId: z.ZodNullable<z.ZodString>;
|
|
6199
6199
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6200
6200
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6201
6201
|
}, z.core.$strip>;
|
|
6202
6202
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6203
|
-
name: z.ZodString;
|
|
6204
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6205
6203
|
id: z.ZodString;
|
|
6206
|
-
|
|
6207
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6204
|
+
name: z.ZodString;
|
|
6208
6205
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6209
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6210
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6211
6206
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6212
6207
|
type: z.ZodLiteral<"mcp">;
|
|
6213
6208
|
mcp: z.ZodObject<{
|
|
@@ -6229,19 +6224,19 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6229
6224
|
}, z.core.$strip>, z.ZodObject<{
|
|
6230
6225
|
type: z.ZodLiteral<"function">;
|
|
6231
6226
|
}, z.core.$strip>], "type">;
|
|
6227
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6228
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6229
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6230
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6231
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6232
6232
|
functionId: z.ZodOptional<z.ZodString>;
|
|
6233
6233
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6234
6234
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6235
6235
|
}, z.core.$strip>;
|
|
6236
6236
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6237
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6238
|
-
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>>>>>>>;
|
|
6239
6237
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6240
|
-
|
|
6241
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6238
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6242
6239
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6243
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6244
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6245
6240
|
config: z.ZodOptional<z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6246
6241
|
type: z.ZodLiteral<"mcp">;
|
|
6247
6242
|
mcp: z.ZodObject<{
|
|
@@ -6263,6 +6258,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6263
6258
|
}, z.core.$strip>, z.ZodObject<{
|
|
6264
6259
|
type: z.ZodLiteral<"function">;
|
|
6265
6260
|
}, z.core.$strip>], "type">>>;
|
|
6261
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6262
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6263
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6264
|
+
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>>>>>>>;
|
|
6265
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6266
6266
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6267
6267
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6268
6268
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6510,10 +6510,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6510
6510
|
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
6511
6511
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6512
6512
|
id: z.ZodString;
|
|
6513
|
-
credentialStoreId: z.ZodString;
|
|
6514
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6515
6513
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6516
6514
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6515
|
+
credentialStoreId: z.ZodString;
|
|
6516
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6517
6517
|
type: z.ZodEnum<{
|
|
6518
6518
|
readonly memory: "memory";
|
|
6519
6519
|
readonly keychain: "keychain";
|
|
@@ -6535,23 +6535,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6535
6535
|
in: {};
|
|
6536
6536
|
}>;
|
|
6537
6537
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6538
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6539
|
-
projectId: z.ZodString;
|
|
6540
6538
|
tenantId: z.ZodString;
|
|
6539
|
+
projectId: z.ZodString;
|
|
6540
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6541
|
+
graphId: z.ZodString;
|
|
6541
6542
|
headersSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6542
6543
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6543
|
-
graphId: z.ZodString;
|
|
6544
6544
|
}, {
|
|
6545
6545
|
out: {};
|
|
6546
6546
|
in: {};
|
|
6547
6547
|
}>;
|
|
6548
6548
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6549
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6550
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6551
6549
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6550
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6551
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6552
|
+
graphId: z.ZodOptional<z.ZodString>;
|
|
6552
6553
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6553
6554
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
6554
|
-
graphId: z.ZodOptional<z.ZodString>;
|
|
6555
6555
|
}, {
|
|
6556
6556
|
out: {};
|
|
6557
6557
|
in: {};
|
|
@@ -6796,31 +6796,31 @@ declare const AgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
6796
6796
|
in: {};
|
|
6797
6797
|
}>;
|
|
6798
6798
|
declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
6799
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6800
6799
|
id: z.ZodString;
|
|
6801
6800
|
createdAt: z.ZodString;
|
|
6802
6801
|
updatedAt: z.ZodString;
|
|
6802
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6803
|
+
toolId: z.ZodString;
|
|
6803
6804
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6804
6805
|
agentId: z.ZodString;
|
|
6805
|
-
toolId: z.ZodString;
|
|
6806
6806
|
}, z.core.$strip>;
|
|
6807
6807
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6808
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6809
6808
|
id: z.ZodString;
|
|
6810
6809
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6811
6810
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6811
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6812
|
+
toolId: z.ZodString;
|
|
6812
6813
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6813
6814
|
agentId: z.ZodString;
|
|
6814
|
-
toolId: z.ZodString;
|
|
6815
6815
|
}, z.core.$strip>;
|
|
6816
6816
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6817
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6818
6817
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6819
6818
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6820
6819
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6820
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6821
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6821
6822
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6822
6823
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6823
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6824
6824
|
}, z.core.$strip>;
|
|
6825
6825
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6826
6826
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7534,12 +7534,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7534
7534
|
in: {};
|
|
7535
7535
|
}>;
|
|
7536
7536
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7537
|
+
id: z.ZodString;
|
|
7537
7538
|
type: z.ZodString;
|
|
7538
7539
|
name: z.ZodNullable<z.ZodString>;
|
|
7539
|
-
|
|
7540
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7540
7541
|
createdAt: z.ZodString;
|
|
7541
7542
|
updatedAt: z.ZodString;
|
|
7542
|
-
description: z.ZodNullable<z.ZodString>;
|
|
7543
7543
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7544
7544
|
contextId: z.ZodString;
|
|
7545
7545
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7552,12 +7552,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7552
7552
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7553
7553
|
}, z.core.$strip>;
|
|
7554
7554
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7555
|
+
id: z.ZodString;
|
|
7555
7556
|
type: z.ZodOptional<z.ZodString>;
|
|
7556
7557
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7557
|
-
|
|
7558
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7558
7559
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7559
7560
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7560
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7561
7561
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7562
7562
|
contextId: z.ZodString;
|
|
7563
7563
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7570,12 +7570,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7570
7570
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7571
7571
|
}, z.core.$strip>;
|
|
7572
7572
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7573
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7573
7574
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7574
7575
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7575
|
-
|
|
7576
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7576
7577
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7577
7578
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7578
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7579
7579
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7580
7580
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7581
7581
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7618,11 +7618,12 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7618
7618
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7619
7619
|
}, z.core.$strip>;
|
|
7620
7620
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7621
|
-
name: z.ZodString;
|
|
7622
7621
|
id: z.ZodString;
|
|
7622
|
+
name: z.ZodString;
|
|
7623
|
+
description: z.ZodString;
|
|
7624
|
+
prompt: z.ZodString;
|
|
7623
7625
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7624
7626
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7625
|
-
description: z.ZodString;
|
|
7626
7627
|
models: z.ZodOptional<z.ZodObject<{
|
|
7627
7628
|
base: z.ZodOptional<z.ZodObject<{
|
|
7628
7629
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7646,7 +7647,6 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7646
7647
|
}, {
|
|
7647
7648
|
stepCountIs?: number | undefined;
|
|
7648
7649
|
}>>>>;
|
|
7649
|
-
prompt: z.ZodString;
|
|
7650
7650
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7651
7651
|
type: z.ZodLiteral<"internal">;
|
|
7652
7652
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -7662,18 +7662,19 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7662
7662
|
}, z.core.$strip>;
|
|
7663
7663
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7664
7664
|
name: z.ZodString;
|
|
7665
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7665
7666
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7666
7667
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7667
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7668
7668
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7669
7669
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7670
7670
|
id: z.ZodString;
|
|
7671
7671
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7672
|
-
name: z.ZodString;
|
|
7673
7672
|
id: z.ZodString;
|
|
7673
|
+
name: z.ZodString;
|
|
7674
|
+
description: z.ZodString;
|
|
7675
|
+
prompt: z.ZodString;
|
|
7674
7676
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7675
7677
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7676
|
-
description: z.ZodString;
|
|
7677
7678
|
models: z.ZodOptional<z.ZodObject<{
|
|
7678
7679
|
base: z.ZodOptional<z.ZodObject<{
|
|
7679
7680
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7697,7 +7698,6 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7697
7698
|
}, {
|
|
7698
7699
|
stepCountIs?: number | undefined;
|
|
7699
7700
|
}>>>>;
|
|
7700
|
-
prompt: z.ZodString;
|
|
7701
7701
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7702
7702
|
type: z.ZodLiteral<"internal">;
|
|
7703
7703
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -7711,24 +7711,19 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7711
7711
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7712
7712
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7713
7713
|
}, z.core.$strip>, z.ZodObject<{
|
|
7714
|
-
name: z.ZodString;
|
|
7715
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7716
7714
|
id: z.ZodString;
|
|
7717
|
-
|
|
7718
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7715
|
+
name: z.ZodString;
|
|
7719
7716
|
description: z.ZodString;
|
|
7720
7717
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7718
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7719
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7721
7720
|
baseUrl: z.ZodString;
|
|
7721
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7722
7722
|
}, z.core.$strip>]>>;
|
|
7723
7723
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7724
|
-
name: z.ZodString;
|
|
7725
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7726
7724
|
id: z.ZodString;
|
|
7727
|
-
|
|
7728
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7725
|
+
name: z.ZodString;
|
|
7729
7726
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7730
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7731
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7732
7727
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7733
7728
|
type: z.ZodLiteral<"mcp">;
|
|
7734
7729
|
mcp: z.ZodObject<{
|
|
@@ -7750,6 +7745,11 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7750
7745
|
}, z.core.$strip>, z.ZodObject<{
|
|
7751
7746
|
type: z.ZodLiteral<"function">;
|
|
7752
7747
|
}, z.core.$strip>], "type">;
|
|
7748
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7749
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7750
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7751
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7752
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7753
7753
|
functionId: z.ZodOptional<z.ZodString>;
|
|
7754
7754
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7755
7755
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7803,18 +7803,19 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7803
7803
|
}, z.core.$strip>;
|
|
7804
7804
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7805
7805
|
name: z.ZodString;
|
|
7806
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7806
7807
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7807
7808
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7808
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7809
7809
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7810
7810
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7811
7811
|
id: z.ZodString;
|
|
7812
7812
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7813
|
-
name: z.ZodString;
|
|
7814
7813
|
id: z.ZodString;
|
|
7814
|
+
name: z.ZodString;
|
|
7815
|
+
description: z.ZodString;
|
|
7816
|
+
prompt: z.ZodString;
|
|
7815
7817
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7816
7818
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7817
|
-
description: z.ZodString;
|
|
7818
7819
|
models: z.ZodOptional<z.ZodObject<{
|
|
7819
7820
|
base: z.ZodOptional<z.ZodObject<{
|
|
7820
7821
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7838,7 +7839,6 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7838
7839
|
}, {
|
|
7839
7840
|
stepCountIs?: number | undefined;
|
|
7840
7841
|
}>>>>;
|
|
7841
|
-
prompt: z.ZodString;
|
|
7842
7842
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7843
7843
|
type: z.ZodLiteral<"internal">;
|
|
7844
7844
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -7852,14 +7852,14 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7852
7852
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7853
7853
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7854
7854
|
}, z.core.$strip>, z.ZodObject<{
|
|
7855
|
-
name: z.ZodString;
|
|
7856
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7857
7855
|
id: z.ZodString;
|
|
7858
|
-
|
|
7859
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7856
|
+
name: z.ZodString;
|
|
7860
7857
|
description: z.ZodString;
|
|
7861
7858
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7859
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7860
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7862
7861
|
baseUrl: z.ZodString;
|
|
7862
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7863
7863
|
type: z.ZodLiteral<"external">;
|
|
7864
7864
|
}, z.core.$strip>], "type">>;
|
|
7865
7865
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -8147,9 +8147,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
8147
8147
|
}>;
|
|
8148
8148
|
}, undefined, undefined>;
|
|
8149
8149
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
8150
|
-
name: z.ZodString;
|
|
8151
|
-
id: z.ZodString;
|
|
8152
8150
|
tenantId: z.ZodString;
|
|
8151
|
+
id: z.ZodString;
|
|
8152
|
+
name: z.ZodString;
|
|
8153
8153
|
description: z.ZodString;
|
|
8154
8154
|
models: z.ZodObject<{
|
|
8155
8155
|
base: z.ZodObject<{
|
|
@@ -8186,9 +8186,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
8186
8186
|
in: {};
|
|
8187
8187
|
}>;
|
|
8188
8188
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
8189
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8190
|
-
id: z.ZodOptional<z.ZodString>;
|
|
8191
8189
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
8190
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8191
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8192
8192
|
description: z.ZodOptional<z.ZodString>;
|
|
8193
8193
|
models: z.ZodOptional<z.ZodObject<{
|
|
8194
8194
|
base: z.ZodObject<{
|
|
@@ -8225,11 +8225,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
8225
8225
|
in: {};
|
|
8226
8226
|
}>;
|
|
8227
8227
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
8228
|
-
name: z.ZodString;
|
|
8229
8228
|
id: z.ZodString;
|
|
8229
|
+
name: z.ZodString;
|
|
8230
|
+
description: z.ZodString;
|
|
8230
8231
|
createdAt: z.ZodString;
|
|
8231
8232
|
updatedAt: z.ZodString;
|
|
8232
|
-
description: z.ZodString;
|
|
8233
8233
|
models: z.ZodNullable<z.ZodType<{
|
|
8234
8234
|
base: {
|
|
8235
8235
|
model?: string | undefined;
|
|
@@ -8322,8 +8322,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
8322
8322
|
in: {};
|
|
8323
8323
|
}>;
|
|
8324
8324
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
8325
|
-
name: z.ZodString;
|
|
8326
8325
|
id: z.ZodString;
|
|
8326
|
+
name: z.ZodString;
|
|
8327
8327
|
description: z.ZodString;
|
|
8328
8328
|
models: z.ZodObject<{
|
|
8329
8329
|
base: z.ZodObject<{
|
|
@@ -8360,8 +8360,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
8360
8360
|
in: {};
|
|
8361
8361
|
}>;
|
|
8362
8362
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
8363
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8364
8363
|
id: z.ZodOptional<z.ZodString>;
|
|
8364
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8365
8365
|
description: z.ZodOptional<z.ZodString>;
|
|
8366
8366
|
models: z.ZodOptional<z.ZodObject<{
|
|
8367
8367
|
base: z.ZodObject<{
|
|
@@ -8398,8 +8398,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
8398
8398
|
in: {};
|
|
8399
8399
|
}>;
|
|
8400
8400
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
8401
|
-
name: z.ZodString;
|
|
8402
8401
|
id: z.ZodString;
|
|
8402
|
+
name: z.ZodString;
|
|
8403
8403
|
description: z.ZodString;
|
|
8404
8404
|
models: z.ZodObject<{
|
|
8405
8405
|
base: z.ZodObject<{
|
|
@@ -8433,18 +8433,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8433
8433
|
}, z.core.$strip>>;
|
|
8434
8434
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8435
8435
|
name: z.ZodString;
|
|
8436
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8436
8437
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8437
8438
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8438
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8439
8439
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8440
8440
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8441
8441
|
id: z.ZodString;
|
|
8442
8442
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8443
|
-
name: z.ZodString;
|
|
8444
8443
|
id: z.ZodString;
|
|
8444
|
+
name: z.ZodString;
|
|
8445
|
+
description: z.ZodString;
|
|
8446
|
+
prompt: z.ZodString;
|
|
8445
8447
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8446
8448
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8447
|
-
description: z.ZodString;
|
|
8448
8449
|
models: z.ZodOptional<z.ZodObject<{
|
|
8449
8450
|
base: z.ZodOptional<z.ZodObject<{
|
|
8450
8451
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8468,7 +8469,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8468
8469
|
}, {
|
|
8469
8470
|
stepCountIs?: number | undefined;
|
|
8470
8471
|
}>>>>;
|
|
8471
|
-
prompt: z.ZodString;
|
|
8472
8472
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8473
8473
|
type: z.ZodLiteral<"internal">;
|
|
8474
8474
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -8482,14 +8482,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8482
8482
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8483
8483
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8484
8484
|
}, z.core.$strip>, z.ZodObject<{
|
|
8485
|
-
name: z.ZodString;
|
|
8486
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8487
8485
|
id: z.ZodString;
|
|
8488
|
-
|
|
8489
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8486
|
+
name: z.ZodString;
|
|
8490
8487
|
description: z.ZodString;
|
|
8491
8488
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8489
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8490
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8492
8491
|
baseUrl: z.ZodString;
|
|
8492
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8493
8493
|
type: z.ZodLiteral<"external">;
|
|
8494
8494
|
}, z.core.$strip>], "type">>;
|
|
8495
8495
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -8532,14 +8532,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8532
8532
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8533
8533
|
}, z.core.$strip>>;
|
|
8534
8534
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8535
|
-
name: z.ZodString;
|
|
8536
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8537
8535
|
id: z.ZodString;
|
|
8538
|
-
|
|
8539
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8536
|
+
name: z.ZodString;
|
|
8540
8537
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8541
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8542
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8543
8538
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8544
8539
|
type: z.ZodLiteral<"mcp">;
|
|
8545
8540
|
mcp: z.ZodObject<{
|
|
@@ -8561,6 +8556,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8561
8556
|
}, z.core.$strip>, z.ZodObject<{
|
|
8562
8557
|
type: z.ZodLiteral<"function">;
|
|
8563
8558
|
}, z.core.$strip>], "type">;
|
|
8559
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8560
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8561
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8562
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8563
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8564
8564
|
functionId: z.ZodOptional<z.ZodString>;
|
|
8565
8565
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8566
8566
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8574,16 +8574,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8574
8574
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8575
8575
|
}, z.core.$strip>>>;
|
|
8576
8576
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8577
|
-
name: z.ZodString;
|
|
8578
8577
|
id: z.ZodString;
|
|
8578
|
+
name: z.ZodString;
|
|
8579
|
+
description: z.ZodString;
|
|
8579
8580
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8580
8581
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8581
|
-
description: z.ZodString;
|
|
8582
8582
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8583
8583
|
}, z.core.$strip>>>;
|
|
8584
8584
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8585
|
-
name: z.ZodString;
|
|
8586
8585
|
id: z.ZodString;
|
|
8586
|
+
name: z.ZodString;
|
|
8587
8587
|
description: z.ZodString;
|
|
8588
8588
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8589
8589
|
}, {
|
|
@@ -8607,10 +8607,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8607
8607
|
}, z.core.$strip>>;
|
|
8608
8608
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8609
8609
|
id: z.ZodString;
|
|
8610
|
-
credentialStoreId: z.ZodString;
|
|
8611
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8612
8610
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8613
8611
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8612
|
+
credentialStoreId: z.ZodString;
|
|
8613
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8614
8614
|
type: z.ZodEnum<{
|
|
8615
8615
|
readonly memory: "memory";
|
|
8616
8616
|
readonly keychain: "keychain";
|