@inkeep/agents-core 0.9.0 → 0.10.1
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/client-exports.d.cts +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +192 -73
- package/dist/index.d.cts +135 -156
- package/dist/index.d.ts +135 -156
- package/dist/index.js +193 -73
- package/dist/{schema-B0z-X5Hq.d.cts → schema-BXVLXPQq.d.cts} +1 -1
- package/dist/{schema-BQoMyAN6.d.ts → schema-D66X7wP_.d.ts} +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/package.json +4 -2
- package/dist/{utility-8RXSemmL.d.cts → utility-D7QP8MkV.d.cts} +163 -163
- package/dist/{utility-8RXSemmL.d.ts → utility-D7QP8MkV.d.ts} +163 -163
|
@@ -764,13 +764,11 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
764
764
|
in: {};
|
|
765
765
|
}>;
|
|
766
766
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
767
|
-
id: z.ZodString;
|
|
768
767
|
name: z.ZodString;
|
|
769
|
-
|
|
770
|
-
prompt: z.ZodString;
|
|
768
|
+
id: z.ZodString;
|
|
771
769
|
createdAt: z.ZodString;
|
|
772
770
|
updatedAt: z.ZodString;
|
|
773
|
-
|
|
771
|
+
description: z.ZodString;
|
|
774
772
|
models: z.ZodNullable<z.ZodType<{
|
|
775
773
|
base?: {
|
|
776
774
|
model?: string | undefined;
|
|
@@ -833,15 +831,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
833
831
|
}, {
|
|
834
832
|
stepCountIs?: number | undefined;
|
|
835
833
|
}>>>;
|
|
834
|
+
prompt: z.ZodString;
|
|
835
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
836
836
|
}, z.core.$strip>;
|
|
837
837
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
838
|
-
id: z.ZodString;
|
|
839
838
|
name: z.ZodString;
|
|
840
|
-
|
|
841
|
-
prompt: z.ZodString;
|
|
839
|
+
id: z.ZodString;
|
|
842
840
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
843
841
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
844
|
-
|
|
842
|
+
description: z.ZodString;
|
|
845
843
|
models: z.ZodOptional<z.ZodObject<{
|
|
846
844
|
base: z.ZodOptional<z.ZodObject<{
|
|
847
845
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -865,15 +863,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
865
863
|
}, {
|
|
866
864
|
stepCountIs?: number | undefined;
|
|
867
865
|
}>>>>;
|
|
866
|
+
prompt: z.ZodString;
|
|
867
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
868
868
|
}, z.core.$strip>;
|
|
869
869
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
870
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
871
870
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
|
-
|
|
873
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
871
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
874
872
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
875
873
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
876
|
-
|
|
874
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
875
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
878
876
|
base: z.ZodOptional<z.ZodObject<{
|
|
879
877
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -897,6 +895,8 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
897
895
|
}, {
|
|
898
896
|
stepCountIs?: number | undefined;
|
|
899
897
|
}>>>>>>;
|
|
898
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
899
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
900
900
|
}, z.core.$strip>;
|
|
901
901
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
902
902
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -1175,9 +1175,9 @@ declare const ExternalAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1175
1175
|
}>;
|
|
1176
1176
|
declare const ExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1177
1177
|
id: z.ZodString;
|
|
1178
|
-
graphId: z.ZodString;
|
|
1179
1178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1180
1179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
graphId: z.ZodString;
|
|
1181
1181
|
sourceAgentId: z.ZodString;
|
|
1182
1182
|
targetAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1183
1183
|
externalAgentId: z.ZodString;
|
|
@@ -1759,12 +1759,11 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1759
1759
|
in: {};
|
|
1760
1760
|
}>;
|
|
1761
1761
|
declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
1762
|
-
id: z.ZodString;
|
|
1763
1762
|
name: z.ZodString;
|
|
1764
|
-
|
|
1763
|
+
id: z.ZodString;
|
|
1765
1764
|
createdAt: z.ZodString;
|
|
1766
1765
|
updatedAt: z.ZodString;
|
|
1767
|
-
|
|
1766
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1768
1767
|
models: z.ZodNullable<z.ZodType<{
|
|
1769
1768
|
base?: {
|
|
1770
1769
|
model?: string | undefined;
|
|
@@ -1827,6 +1826,7 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1827
1826
|
}, {
|
|
1828
1827
|
transferCountIs?: number | undefined;
|
|
1829
1828
|
}>>>;
|
|
1829
|
+
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
1830
1830
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
1831
1831
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
1832
1832
|
enabled?: boolean | undefined;
|
|
@@ -1889,10 +1889,9 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1889
1889
|
}, z.core.$strip>;
|
|
1890
1890
|
declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
1891
1891
|
name: z.ZodString;
|
|
1892
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1893
1892
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1894
1893
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1895
|
-
|
|
1894
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1896
1895
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1897
1896
|
base?: {
|
|
1898
1897
|
model?: string | undefined;
|
|
@@ -1955,6 +1954,7 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1955
1954
|
}, {
|
|
1956
1955
|
transferCountIs?: number | undefined;
|
|
1957
1956
|
}>>>>;
|
|
1957
|
+
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1958
1958
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1959
1959
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1960
1960
|
enabled?: boolean | undefined;
|
|
@@ -2017,12 +2017,11 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
2017
2017
|
id: z.ZodString;
|
|
2018
2018
|
}, z.core.$strip>;
|
|
2019
2019
|
declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
2020
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2021
2020
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2022
|
-
|
|
2021
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2023
2022
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2024
2023
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2025
|
-
|
|
2024
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2026
2025
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2027
2026
|
base?: {
|
|
2028
2027
|
model?: string | undefined;
|
|
@@ -2085,6 +2084,7 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2085
2084
|
}, {
|
|
2086
2085
|
transferCountIs?: number | undefined;
|
|
2087
2086
|
}>>>>>>;
|
|
2087
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2088
2088
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2089
2089
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2090
2090
|
enabled?: boolean | undefined;
|
|
@@ -3105,9 +3105,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3105
3105
|
id: z.ZodString;
|
|
3106
3106
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3107
3107
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3108
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3109
3108
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3110
3109
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3110
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3111
3111
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3112
3112
|
activeAgentId: z.ZodString;
|
|
3113
3113
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3116,9 +3116,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
3116
3116
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3117
3117
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3118
3118
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3119
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3120
3119
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3121
3120
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3121
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3122
3122
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3123
3123
|
activeAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3124
3124
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4129,9 +4129,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
4129
4129
|
}>;
|
|
4130
4130
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
4131
4131
|
id: z.ZodString;
|
|
4132
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4133
4132
|
createdAt: z.ZodString;
|
|
4134
4133
|
updatedAt: z.ZodString;
|
|
4134
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4135
4135
|
contextConfigId: z.ZodString;
|
|
4136
4136
|
conversationId: z.ZodString;
|
|
4137
4137
|
contextVariableKey: z.ZodString;
|
|
@@ -4142,9 +4142,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
4142
4142
|
}, z.core.$strip>;
|
|
4143
4143
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
4144
4144
|
id: z.ZodString;
|
|
4145
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4146
4145
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4147
4146
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4147
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4148
4148
|
contextConfigId: z.ZodString;
|
|
4149
4149
|
conversationId: z.ZodString;
|
|
4150
4150
|
contextVariableKey: z.ZodString;
|
|
@@ -4155,9 +4155,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
4155
4155
|
}, z.core.$strip>;
|
|
4156
4156
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
4157
4157
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4158
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4159
4158
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4160
4159
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4160
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4161
4161
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4162
4162
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4163
4163
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4334,10 +4334,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4334
4334
|
in: {};
|
|
4335
4335
|
}>;
|
|
4336
4336
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4337
|
+
name: z.ZodString;
|
|
4337
4338
|
tenantId: z.ZodString;
|
|
4338
4339
|
projectId: z.ZodString;
|
|
4339
4340
|
id: z.ZodString;
|
|
4340
|
-
name: z.ZodString;
|
|
4341
4341
|
description: z.ZodString;
|
|
4342
4342
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4343
4343
|
}, {
|
|
@@ -4358,27 +4358,27 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
4358
4358
|
in: {};
|
|
4359
4359
|
}>;
|
|
4360
4360
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
4361
|
-
id: z.ZodString;
|
|
4362
4361
|
name: z.ZodString;
|
|
4363
|
-
|
|
4362
|
+
id: z.ZodString;
|
|
4364
4363
|
createdAt: z.ZodString;
|
|
4365
4364
|
updatedAt: z.ZodString;
|
|
4365
|
+
description: z.ZodString;
|
|
4366
4366
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4367
4367
|
}, z.core.$strip>;
|
|
4368
4368
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
4369
|
-
id: z.ZodString;
|
|
4370
4369
|
name: z.ZodString;
|
|
4371
|
-
|
|
4370
|
+
id: z.ZodString;
|
|
4372
4371
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4373
4372
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4373
|
+
description: z.ZodString;
|
|
4374
4374
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4375
4375
|
}, z.core.$strip>;
|
|
4376
4376
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
4377
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4378
4377
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4379
|
-
|
|
4378
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4380
4379
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4381
4380
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4381
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4382
4382
|
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>>>>>>>;
|
|
4383
4383
|
}, z.core.$strip>;
|
|
4384
4384
|
declare const AgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -4885,17 +4885,17 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
4885
4885
|
in: {};
|
|
4886
4886
|
}>;
|
|
4887
4887
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
4888
|
-
id: z.ZodString;
|
|
4889
4888
|
name: z.ZodString;
|
|
4890
|
-
|
|
4889
|
+
id: z.ZodString;
|
|
4891
4890
|
createdAt: z.ZodString;
|
|
4892
4891
|
updatedAt: z.ZodString;
|
|
4892
|
+
description: z.ZodString;
|
|
4893
4893
|
summaryProps: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4894
4894
|
fullProps: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4895
4895
|
}, z.core.$strip>;
|
|
4896
4896
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
4897
|
-
id: z.ZodString;
|
|
4898
4897
|
name: z.ZodString;
|
|
4898
|
+
id: z.ZodString;
|
|
4899
4899
|
description: z.ZodString;
|
|
4900
4900
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4901
4901
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -4904,11 +4904,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
4904
4904
|
in: {};
|
|
4905
4905
|
}>;
|
|
4906
4906
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
4907
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4908
4907
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4909
|
-
|
|
4908
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4910
4909
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4911
4910
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4911
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4912
4912
|
summaryProps: 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>>>>>>>;
|
|
4913
4913
|
fullProps: 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>>>>>>>;
|
|
4914
4914
|
}, z.core.$strip>;
|
|
@@ -5140,43 +5140,41 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5140
5140
|
in: {};
|
|
5141
5141
|
}>;
|
|
5142
5142
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5143
|
-
id: z.ZodString;
|
|
5144
5143
|
name: z.ZodString;
|
|
5145
|
-
|
|
5146
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5144
|
+
id: z.ZodString;
|
|
5147
5145
|
createdAt: z.ZodString;
|
|
5148
5146
|
updatedAt: z.ZodString;
|
|
5149
|
-
|
|
5147
|
+
description: z.ZodString;
|
|
5148
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5150
5149
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5150
|
+
baseUrl: z.ZodString;
|
|
5151
5151
|
}, z.core.$strip>;
|
|
5152
5152
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5153
|
-
id: z.ZodString;
|
|
5154
5153
|
name: z.ZodString;
|
|
5155
|
-
|
|
5156
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5154
|
+
id: z.ZodString;
|
|
5157
5155
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5158
5156
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5159
|
-
|
|
5157
|
+
description: z.ZodString;
|
|
5158
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5160
5159
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5160
|
+
baseUrl: z.ZodString;
|
|
5161
5161
|
}, z.core.$strip>;
|
|
5162
5162
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5163
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5164
5163
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5165
|
-
|
|
5166
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5164
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5167
5165
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5168
5166
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5169
|
-
|
|
5167
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5168
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5170
5169
|
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>>>>>>>;
|
|
5170
|
+
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5171
5171
|
}, z.core.$strip>;
|
|
5172
5172
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5173
|
-
id: z.ZodString;
|
|
5174
5173
|
name: z.ZodString;
|
|
5175
|
-
|
|
5176
|
-
prompt: z.ZodString;
|
|
5174
|
+
id: z.ZodString;
|
|
5177
5175
|
createdAt: z.ZodString;
|
|
5178
5176
|
updatedAt: z.ZodString;
|
|
5179
|
-
|
|
5177
|
+
description: z.ZodString;
|
|
5180
5178
|
models: z.ZodNullable<z.ZodType<{
|
|
5181
5179
|
base?: {
|
|
5182
5180
|
model?: string | undefined;
|
|
@@ -5239,16 +5237,18 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5239
5237
|
}, {
|
|
5240
5238
|
stepCountIs?: number | undefined;
|
|
5241
5239
|
}>>>;
|
|
5240
|
+
prompt: z.ZodString;
|
|
5241
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5242
5242
|
type: z.ZodLiteral<"internal">;
|
|
5243
5243
|
}, z.core.$strip>, z.ZodObject<{
|
|
5244
|
-
id: z.ZodString;
|
|
5245
5244
|
name: z.ZodString;
|
|
5246
|
-
|
|
5247
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5245
|
+
id: z.ZodString;
|
|
5248
5246
|
createdAt: z.ZodString;
|
|
5249
5247
|
updatedAt: z.ZodString;
|
|
5250
|
-
|
|
5248
|
+
description: z.ZodString;
|
|
5249
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5251
5250
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5251
|
+
baseUrl: z.ZodString;
|
|
5252
5252
|
type: z.ZodLiteral<"external">;
|
|
5253
5253
|
}, z.core.$strip>], "type">;
|
|
5254
5254
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5500,24 +5500,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5500
5500
|
}>;
|
|
5501
5501
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5502
5502
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5503
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5503
5504
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5504
5505
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5505
5506
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5506
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5507
5507
|
}, {
|
|
5508
5508
|
out: {};
|
|
5509
5509
|
in: {};
|
|
5510
5510
|
}>;
|
|
5511
5511
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5512
|
-
id: z.ZodString;
|
|
5513
5512
|
name: z.ZodNullable<z.ZodString>;
|
|
5513
|
+
id: z.ZodString;
|
|
5514
|
+
createdAt: z.ZodString;
|
|
5515
|
+
updatedAt: z.ZodString;
|
|
5514
5516
|
graphId: z.ZodString;
|
|
5515
5517
|
publicId: z.ZodString;
|
|
5516
5518
|
keyPrefix: z.ZodString;
|
|
5517
5519
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5518
5520
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5519
|
-
createdAt: z.ZodString;
|
|
5520
|
-
updatedAt: z.ZodString;
|
|
5521
5521
|
}, {
|
|
5522
5522
|
out: {};
|
|
5523
5523
|
in: {};
|
|
@@ -5525,15 +5525,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
5525
5525
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
5526
5526
|
data: z.ZodObject<{
|
|
5527
5527
|
apiKey: z.ZodObject<{
|
|
5528
|
-
id: z.ZodString;
|
|
5529
5528
|
name: z.ZodNullable<z.ZodString>;
|
|
5529
|
+
id: z.ZodString;
|
|
5530
|
+
createdAt: z.ZodString;
|
|
5531
|
+
updatedAt: z.ZodString;
|
|
5530
5532
|
graphId: z.ZodString;
|
|
5531
5533
|
publicId: z.ZodString;
|
|
5532
5534
|
keyPrefix: z.ZodString;
|
|
5533
5535
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5534
5536
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5535
|
-
createdAt: z.ZodString;
|
|
5536
|
-
updatedAt: z.ZodString;
|
|
5537
5537
|
}, {
|
|
5538
5538
|
out: {};
|
|
5539
5539
|
in: {};
|
|
@@ -5543,20 +5543,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5543
5543
|
}, z.core.$strip>;
|
|
5544
5544
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5545
5545
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5546
|
-
graphId: z.ZodString;
|
|
5547
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5548
5546
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5549
5547
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5548
|
+
graphId: z.ZodString;
|
|
5549
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5550
5550
|
}, {
|
|
5551
5551
|
out: {};
|
|
5552
5552
|
in: {};
|
|
5553
5553
|
}>;
|
|
5554
5554
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5555
5555
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5556
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5556
5557
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5557
5558
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5558
5559
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5559
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5560
5560
|
}, {
|
|
5561
5561
|
out: {};
|
|
5562
5562
|
in: {};
|
|
@@ -5599,10 +5599,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
5599
5599
|
}>;
|
|
5600
5600
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
5601
5601
|
id: z.ZodString;
|
|
5602
|
-
createdAt: z.ZodString;
|
|
5603
|
-
updatedAt: z.ZodString;
|
|
5604
5602
|
credentialStoreId: z.ZodString;
|
|
5605
5603
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5604
|
+
createdAt: z.ZodString;
|
|
5605
|
+
updatedAt: z.ZodString;
|
|
5606
5606
|
type: z.ZodEnum<{
|
|
5607
5607
|
readonly memory: "memory";
|
|
5608
5608
|
readonly keychain: "keychain";
|
|
@@ -5847,10 +5847,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
5847
5847
|
}, z.core.$strip>;
|
|
5848
5848
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
5849
5849
|
id: z.ZodString;
|
|
5850
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5851
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5852
5850
|
credentialStoreId: z.ZodString;
|
|
5853
5851
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5852
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5853
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5854
5854
|
type: z.ZodEnum<{
|
|
5855
5855
|
readonly memory: "memory";
|
|
5856
5856
|
readonly keychain: "keychain";
|
|
@@ -5859,10 +5859,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
5859
5859
|
}, z.core.$strip>;
|
|
5860
5860
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
5861
5861
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5862
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5863
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5864
5862
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5865
5863
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
5864
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5865
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5866
5866
|
type: z.ZodOptional<z.ZodEnum<{
|
|
5867
5867
|
readonly memory: "memory";
|
|
5868
5868
|
readonly keychain: "keychain";
|
|
@@ -5911,8 +5911,8 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
5911
5911
|
in: {};
|
|
5912
5912
|
}>;
|
|
5913
5913
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
5914
|
-
id: z.ZodString;
|
|
5915
5914
|
name: z.ZodString;
|
|
5915
|
+
id: z.ZodString;
|
|
5916
5916
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5917
5917
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5918
5918
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -5943,10 +5943,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
5943
5943
|
}, z.core.$strip>>;
|
|
5944
5944
|
credential: z.ZodOptional<z.ZodObject<{
|
|
5945
5945
|
id: z.ZodString;
|
|
5946
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5947
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5948
5946
|
credentialStoreId: z.ZodString;
|
|
5949
5947
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5948
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5949
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5950
5950
|
type: z.ZodEnum<{
|
|
5951
5951
|
readonly memory: "memory";
|
|
5952
5952
|
readonly keychain: "keychain";
|
|
@@ -5987,8 +5987,13 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
5987
5987
|
in: {};
|
|
5988
5988
|
}>;
|
|
5989
5989
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
5990
|
-
id: z.ZodString;
|
|
5991
5990
|
name: z.ZodString;
|
|
5991
|
+
id: z.ZodString;
|
|
5992
|
+
createdAt: z.ZodString;
|
|
5993
|
+
updatedAt: z.ZodString;
|
|
5994
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
5995
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5996
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
5992
5997
|
config: z.ZodType<{
|
|
5993
5998
|
type: "mcp";
|
|
5994
5999
|
mcp: ToolMcpConfig;
|
|
@@ -6002,17 +6007,17 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6002
6007
|
type: "mcp";
|
|
6003
6008
|
mcp: ToolMcpConfig;
|
|
6004
6009
|
}>>;
|
|
6005
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6006
|
-
createdAt: z.ZodString;
|
|
6007
|
-
updatedAt: z.ZodString;
|
|
6008
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6009
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6010
6010
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6011
6011
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6012
6012
|
}, z.core.$strip>;
|
|
6013
6013
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6014
|
-
id: z.ZodString;
|
|
6015
6014
|
name: z.ZodString;
|
|
6015
|
+
id: z.ZodString;
|
|
6016
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6017
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6018
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6019
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6020
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6016
6021
|
config: z.ZodType<{
|
|
6017
6022
|
type: "mcp";
|
|
6018
6023
|
mcp: ToolMcpConfig;
|
|
@@ -6026,17 +6031,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6026
6031
|
type: "mcp";
|
|
6027
6032
|
mcp: ToolMcpConfig;
|
|
6028
6033
|
}>>;
|
|
6029
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6030
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6031
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6032
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6033
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6034
6034
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6035
6035
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6036
6036
|
}, z.core.$strip>;
|
|
6037
6037
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6038
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
6038
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6040
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6041
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6042
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6043
|
+
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>>>>>>>;
|
|
6044
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6040
6045
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6041
6046
|
type: "mcp";
|
|
6042
6047
|
mcp: ToolMcpConfig;
|
|
@@ -6050,11 +6055,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6050
6055
|
type: "mcp";
|
|
6051
6056
|
mcp: ToolMcpConfig;
|
|
6052
6057
|
}>>>>;
|
|
6053
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6054
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6055
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6056
|
-
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>>>>>>>;
|
|
6057
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6058
6058
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6059
6059
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6060
6060
|
}, z.core.$strip>;
|
|
@@ -6097,10 +6097,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6097
6097
|
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
6098
6098
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6099
6099
|
id: z.ZodString;
|
|
6100
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6101
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6102
6100
|
credentialStoreId: z.ZodString;
|
|
6103
6101
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6102
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6103
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6104
6104
|
type: z.ZodEnum<{
|
|
6105
6105
|
readonly memory: "memory";
|
|
6106
6106
|
readonly keychain: "keychain";
|
|
@@ -6123,10 +6123,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6123
6123
|
in: {};
|
|
6124
6124
|
}>;
|
|
6125
6125
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6126
|
+
name: z.ZodString;
|
|
6126
6127
|
tenantId: z.ZodString;
|
|
6127
6128
|
projectId: z.ZodString;
|
|
6128
6129
|
id: z.ZodString;
|
|
6129
|
-
name: z.ZodString;
|
|
6130
6130
|
description: z.ZodString;
|
|
6131
6131
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6132
6132
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -6135,10 +6135,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
6135
6135
|
in: {};
|
|
6136
6136
|
}>;
|
|
6137
6137
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6138
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6138
6139
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6139
6140
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6140
6141
|
id: z.ZodOptional<z.ZodString>;
|
|
6141
|
-
name: z.ZodOptional<z.ZodString>;
|
|
6142
6142
|
description: z.ZodOptional<z.ZodString>;
|
|
6143
6143
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6144
6144
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
@@ -6147,24 +6147,24 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
6147
6147
|
in: {};
|
|
6148
6148
|
}>;
|
|
6149
6149
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
6150
|
-
id: z.ZodString;
|
|
6151
6150
|
name: z.ZodString;
|
|
6152
|
-
|
|
6151
|
+
id: z.ZodString;
|
|
6153
6152
|
createdAt: z.ZodString;
|
|
6154
6153
|
updatedAt: z.ZodString;
|
|
6154
|
+
description: z.ZodString;
|
|
6155
6155
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6156
6156
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6157
6157
|
}, z.core.$strip>;
|
|
6158
6158
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6159
|
-
id: z.ZodString;
|
|
6160
6159
|
name: z.ZodString;
|
|
6160
|
+
id: z.ZodString;
|
|
6161
6161
|
description: z.ZodString;
|
|
6162
6162
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6163
6163
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6164
6164
|
}, z.core.$strip>;
|
|
6165
6165
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6166
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6167
6166
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6167
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6168
6168
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6169
6169
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodUnknown>>>;
|
|
6170
6170
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>>;
|
|
@@ -6396,27 +6396,27 @@ declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
6396
6396
|
createdAt: z.ZodString;
|
|
6397
6397
|
updatedAt: z.ZodString;
|
|
6398
6398
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6399
|
-
toolId: z.ZodString;
|
|
6400
6399
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6401
6400
|
agentId: z.ZodString;
|
|
6401
|
+
toolId: z.ZodString;
|
|
6402
6402
|
}, z.core.$strip>;
|
|
6403
6403
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6404
6404
|
id: z.ZodString;
|
|
6405
6405
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6406
6406
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6407
6407
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6408
|
-
toolId: z.ZodString;
|
|
6409
6408
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6410
6409
|
agentId: z.ZodString;
|
|
6410
|
+
toolId: z.ZodString;
|
|
6411
6411
|
}, z.core.$strip>;
|
|
6412
6412
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6413
6413
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6414
6414
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6415
6415
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6416
6416
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6417
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6418
6417
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6419
6418
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6419
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6420
6420
|
}, z.core.$strip>;
|
|
6421
6421
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6422
6422
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7130,12 +7130,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7130
7130
|
in: {};
|
|
7131
7131
|
}>;
|
|
7132
7132
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7133
|
-
id: z.ZodString;
|
|
7134
7133
|
type: z.ZodString;
|
|
7135
7134
|
name: z.ZodNullable<z.ZodString>;
|
|
7136
|
-
|
|
7135
|
+
id: z.ZodString;
|
|
7137
7136
|
createdAt: z.ZodString;
|
|
7138
7137
|
updatedAt: z.ZodString;
|
|
7138
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7139
7139
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7140
7140
|
contextId: z.ZodString;
|
|
7141
7141
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7148,12 +7148,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7148
7148
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7149
7149
|
}, z.core.$strip>;
|
|
7150
7150
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7151
|
-
id: z.ZodString;
|
|
7152
7151
|
type: z.ZodOptional<z.ZodString>;
|
|
7153
7152
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7154
|
-
|
|
7153
|
+
id: z.ZodString;
|
|
7155
7154
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7156
7155
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7156
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7157
7157
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7158
7158
|
contextId: z.ZodString;
|
|
7159
7159
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7166,12 +7166,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7166
7166
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7167
7167
|
}, z.core.$strip>;
|
|
7168
7168
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7169
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7170
7169
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7171
7170
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7172
|
-
|
|
7171
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7173
7172
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7174
7173
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7174
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7175
7175
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7176
7176
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7177
7177
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7214,13 +7214,11 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7214
7214
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7215
7215
|
}, z.core.$strip>;
|
|
7216
7216
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7217
|
-
id: z.ZodString;
|
|
7218
7217
|
name: z.ZodString;
|
|
7219
|
-
|
|
7220
|
-
prompt: z.ZodString;
|
|
7218
|
+
id: z.ZodString;
|
|
7221
7219
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7222
7220
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7223
|
-
|
|
7221
|
+
description: z.ZodString;
|
|
7224
7222
|
models: z.ZodOptional<z.ZodObject<{
|
|
7225
7223
|
base: z.ZodOptional<z.ZodObject<{
|
|
7226
7224
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7244,6 +7242,8 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7244
7242
|
}, {
|
|
7245
7243
|
stepCountIs?: number | undefined;
|
|
7246
7244
|
}>>>>;
|
|
7245
|
+
prompt: z.ZodString;
|
|
7246
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7247
7247
|
type: z.ZodLiteral<"internal">;
|
|
7248
7248
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7249
7249
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7258,20 +7258,18 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7258
7258
|
}, z.core.$strip>;
|
|
7259
7259
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7260
7260
|
name: z.ZodString;
|
|
7261
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7262
7261
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7263
7262
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7263
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7264
7264
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7265
7265
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7266
7266
|
id: z.ZodString;
|
|
7267
7267
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7268
|
-
id: z.ZodString;
|
|
7269
7268
|
name: z.ZodString;
|
|
7270
|
-
|
|
7271
|
-
prompt: z.ZodString;
|
|
7269
|
+
id: z.ZodString;
|
|
7272
7270
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7273
7271
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7274
|
-
|
|
7272
|
+
description: z.ZodString;
|
|
7275
7273
|
models: z.ZodOptional<z.ZodObject<{
|
|
7276
7274
|
base: z.ZodOptional<z.ZodObject<{
|
|
7277
7275
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7295,6 +7293,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7295
7293
|
}, {
|
|
7296
7294
|
stepCountIs?: number | undefined;
|
|
7297
7295
|
}>>>>;
|
|
7296
|
+
prompt: z.ZodString;
|
|
7297
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7298
7298
|
type: z.ZodLiteral<"internal">;
|
|
7299
7299
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7300
7300
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7307,18 +7307,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7307
7307
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7308
7308
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7309
7309
|
}, z.core.$strip>, z.ZodObject<{
|
|
7310
|
-
id: z.ZodString;
|
|
7311
7310
|
name: z.ZodString;
|
|
7312
|
-
|
|
7313
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7311
|
+
id: z.ZodString;
|
|
7314
7312
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7315
7313
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7316
|
-
|
|
7314
|
+
description: z.ZodString;
|
|
7315
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7317
7316
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7317
|
+
baseUrl: z.ZodString;
|
|
7318
7318
|
}, z.core.$strip>]>>;
|
|
7319
7319
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7320
|
-
id: z.ZodString;
|
|
7321
7320
|
name: z.ZodString;
|
|
7321
|
+
id: z.ZodString;
|
|
7322
7322
|
description: z.ZodString;
|
|
7323
7323
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7324
7324
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7359,9 +7359,9 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7359
7359
|
}, z.core.$strip>;
|
|
7360
7360
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7361
7361
|
name: z.ZodString;
|
|
7362
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7363
7362
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7364
7363
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7364
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7365
7365
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7366
7366
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7367
7367
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7423,13 +7423,11 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7423
7423
|
}>>>>;
|
|
7424
7424
|
id: z.ZodString;
|
|
7425
7425
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7426
|
-
id: z.ZodString;
|
|
7427
7426
|
name: z.ZodString;
|
|
7428
|
-
|
|
7429
|
-
prompt: z.ZodString;
|
|
7427
|
+
id: z.ZodString;
|
|
7430
7428
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7431
7429
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7432
|
-
|
|
7430
|
+
description: z.ZodString;
|
|
7433
7431
|
models: z.ZodOptional<z.ZodObject<{
|
|
7434
7432
|
base: z.ZodOptional<z.ZodObject<{
|
|
7435
7433
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7453,6 +7451,8 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7453
7451
|
}, {
|
|
7454
7452
|
stepCountIs?: number | undefined;
|
|
7455
7453
|
}>>>>;
|
|
7454
|
+
prompt: z.ZodString;
|
|
7455
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7456
7456
|
type: z.ZodLiteral<"internal">;
|
|
7457
7457
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7458
7458
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7465,14 +7465,14 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7465
7465
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7466
7466
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7467
7467
|
}, z.core.$strip>, z.ZodObject<{
|
|
7468
|
-
id: z.ZodString;
|
|
7469
7468
|
name: z.ZodString;
|
|
7470
|
-
|
|
7471
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7469
|
+
id: z.ZodString;
|
|
7472
7470
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7473
7471
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7474
|
-
|
|
7472
|
+
description: z.ZodString;
|
|
7473
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7475
7474
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7475
|
+
baseUrl: z.ZodString;
|
|
7476
7476
|
type: z.ZodLiteral<"external">;
|
|
7477
7477
|
}, z.core.$strip>], "type">>;
|
|
7478
7478
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -7711,9 +7711,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7711
7711
|
}>;
|
|
7712
7712
|
}, undefined, undefined>;
|
|
7713
7713
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
7714
|
+
name: z.ZodString;
|
|
7714
7715
|
tenantId: z.ZodString;
|
|
7715
7716
|
id: z.ZodString;
|
|
7716
|
-
name: z.ZodString;
|
|
7717
7717
|
description: z.ZodString;
|
|
7718
7718
|
models: z.ZodOptional<z.ZodObject<{
|
|
7719
7719
|
base: z.ZodObject<{
|
|
@@ -7738,9 +7738,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7738
7738
|
in: {};
|
|
7739
7739
|
}>;
|
|
7740
7740
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
7741
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7741
7742
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
7742
7743
|
id: z.ZodOptional<z.ZodString>;
|
|
7743
|
-
name: z.ZodOptional<z.ZodString>;
|
|
7744
7744
|
description: z.ZodOptional<z.ZodString>;
|
|
7745
7745
|
models: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7746
7746
|
base: z.ZodObject<{
|
|
@@ -7765,11 +7765,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7765
7765
|
in: {};
|
|
7766
7766
|
}>;
|
|
7767
7767
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
7768
|
-
id: z.ZodString;
|
|
7769
7768
|
name: z.ZodString;
|
|
7770
|
-
|
|
7769
|
+
id: z.ZodString;
|
|
7771
7770
|
createdAt: z.ZodString;
|
|
7772
7771
|
updatedAt: z.ZodString;
|
|
7772
|
+
description: z.ZodString;
|
|
7773
7773
|
models: z.ZodNullable<z.ZodType<{
|
|
7774
7774
|
base: {
|
|
7775
7775
|
model?: string | undefined;
|
|
@@ -7841,8 +7841,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7841
7841
|
in: {};
|
|
7842
7842
|
}>;
|
|
7843
7843
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
7844
|
-
id: z.ZodString;
|
|
7845
7844
|
name: z.ZodString;
|
|
7845
|
+
id: z.ZodString;
|
|
7846
7846
|
description: z.ZodString;
|
|
7847
7847
|
models: z.ZodOptional<z.ZodObject<{
|
|
7848
7848
|
base: z.ZodObject<{
|
|
@@ -7867,8 +7867,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7867
7867
|
in: {};
|
|
7868
7868
|
}>;
|
|
7869
7869
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
7870
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7871
7870
|
name: z.ZodOptional<z.ZodString>;
|
|
7871
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7872
7872
|
description: z.ZodOptional<z.ZodString>;
|
|
7873
7873
|
models: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7874
7874
|
base: z.ZodObject<{
|
|
@@ -7893,8 +7893,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7893
7893
|
in: {};
|
|
7894
7894
|
}>;
|
|
7895
7895
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
7896
|
-
id: z.ZodString;
|
|
7897
7896
|
name: z.ZodString;
|
|
7897
|
+
id: z.ZodString;
|
|
7898
7898
|
description: z.ZodString;
|
|
7899
7899
|
models: z.ZodOptional<z.ZodObject<{
|
|
7900
7900
|
base: z.ZodObject<{
|
|
@@ -7916,9 +7916,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7916
7916
|
}, z.core.$strip>>;
|
|
7917
7917
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7918
7918
|
name: z.ZodString;
|
|
7919
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7920
7919
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7921
7920
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7921
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7922
7922
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7923
7923
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7924
7924
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7980,13 +7980,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7980
7980
|
}>>>>;
|
|
7981
7981
|
id: z.ZodString;
|
|
7982
7982
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7983
|
-
id: z.ZodString;
|
|
7984
7983
|
name: z.ZodString;
|
|
7985
|
-
|
|
7986
|
-
prompt: z.ZodString;
|
|
7984
|
+
id: z.ZodString;
|
|
7987
7985
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7988
7986
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7989
|
-
|
|
7987
|
+
description: z.ZodString;
|
|
7990
7988
|
models: z.ZodOptional<z.ZodObject<{
|
|
7991
7989
|
base: z.ZodOptional<z.ZodObject<{
|
|
7992
7990
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8010,6 +8008,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8010
8008
|
}, {
|
|
8011
8009
|
stepCountIs?: number | undefined;
|
|
8012
8010
|
}>>>>;
|
|
8011
|
+
prompt: z.ZodString;
|
|
8012
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8013
8013
|
type: z.ZodLiteral<"internal">;
|
|
8014
8014
|
canUse: z.ZodArray<z.ZodObject<{
|
|
8015
8015
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -8022,14 +8022,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8022
8022
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8023
8023
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8024
8024
|
}, z.core.$strip>, z.ZodObject<{
|
|
8025
|
-
id: z.ZodString;
|
|
8026
8025
|
name: z.ZodString;
|
|
8027
|
-
|
|
8028
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8026
|
+
id: z.ZodString;
|
|
8029
8027
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8030
8028
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8031
|
-
|
|
8029
|
+
description: z.ZodString;
|
|
8030
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8032
8031
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8032
|
+
baseUrl: z.ZodString;
|
|
8033
8033
|
type: z.ZodLiteral<"external">;
|
|
8034
8034
|
}, z.core.$strip>], "type">>;
|
|
8035
8035
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -8052,8 +8052,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8052
8052
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8053
8053
|
}, z.core.$strip>>;
|
|
8054
8054
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8055
|
-
id: z.ZodString;
|
|
8056
8055
|
name: z.ZodString;
|
|
8056
|
+
id: z.ZodString;
|
|
8057
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8058
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8059
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8060
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8061
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8057
8062
|
config: z.ZodType<{
|
|
8058
8063
|
type: "mcp";
|
|
8059
8064
|
mcp: ToolMcpConfig;
|
|
@@ -8067,25 +8072,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8067
8072
|
type: "mcp";
|
|
8068
8073
|
mcp: ToolMcpConfig;
|
|
8069
8074
|
}>>;
|
|
8070
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8071
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8072
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8073
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8074
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8075
8075
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8076
8076
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8077
8077
|
}, z.core.$strip>>;
|
|
8078
8078
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8079
|
-
id: z.ZodString;
|
|
8080
8079
|
name: z.ZodString;
|
|
8081
|
-
|
|
8080
|
+
id: z.ZodString;
|
|
8082
8081
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8083
8082
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8083
|
+
description: z.ZodString;
|
|
8084
8084
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8085
8085
|
}, z.core.$strip>>>;
|
|
8086
8086
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8087
|
-
id: z.ZodString;
|
|
8088
8087
|
name: z.ZodString;
|
|
8088
|
+
id: z.ZodString;
|
|
8089
8089
|
description: z.ZodString;
|
|
8090
8090
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8091
8091
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -8094,8 +8094,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8094
8094
|
in: {};
|
|
8095
8095
|
}>>>;
|
|
8096
8096
|
contextConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8097
|
-
id: z.ZodString;
|
|
8098
8097
|
name: z.ZodString;
|
|
8098
|
+
id: z.ZodString;
|
|
8099
8099
|
description: z.ZodString;
|
|
8100
8100
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
8101
8101
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -8117,10 +8117,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8117
8117
|
}, z.core.$strip>>;
|
|
8118
8118
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8119
8119
|
id: z.ZodString;
|
|
8120
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8121
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8122
8120
|
credentialStoreId: z.ZodString;
|
|
8123
8121
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8122
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8123
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8124
8124
|
type: z.ZodEnum<{
|
|
8125
8125
|
readonly memory: "memory";
|
|
8126
8126
|
readonly keychain: "keychain";
|