@inkeep/agents-core 0.0.0-dev-20251003002436 → 0.0.0-dev-20251003162502
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.d.cts +247 -247
- package/dist/index.d.ts +247 -247
- package/dist/index.js +1 -1
- package/dist/{schema-BB_Q_YNK.d.ts → schema-DeUmRJk-.d.cts} +1 -1
- package/dist/{schema-DDUpvlcp.d.cts → schema-DhRzICV3.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 +1 -1
- package/dist/{utility-Cd0qsewS.d.cts → utility-BOfzG3mF.d.cts} +178 -178
- package/dist/{utility-Cd0qsewS.d.ts → utility-BOfzG3mF.d.ts} +178 -178
|
@@ -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
|
createdAt: 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;
|
|
@@ -2371,33 +2371,33 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2371
2371
|
}>;
|
|
2372
2372
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
2373
2373
|
id: z.ZodString;
|
|
2374
|
-
graphId: z.ZodString;
|
|
2375
2374
|
createdAt: z.ZodString;
|
|
2376
2375
|
updatedAt: z.ZodString;
|
|
2377
2376
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2378
2377
|
status: z.ZodString;
|
|
2378
|
+
graphId: z.ZodString;
|
|
2379
2379
|
contextId: z.ZodString;
|
|
2380
2380
|
agentId: z.ZodString;
|
|
2381
2381
|
}, z.core.$strip>;
|
|
2382
2382
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2383
2383
|
id: z.ZodString;
|
|
2384
|
-
graphId: z.ZodString;
|
|
2385
2384
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2386
2385
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2387
2386
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2388
2387
|
status: z.ZodString;
|
|
2389
2388
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
2389
|
+
graphId: z.ZodString;
|
|
2390
2390
|
contextId: z.ZodString;
|
|
2391
2391
|
agentId: z.ZodString;
|
|
2392
2392
|
}, z.core.$strip>;
|
|
2393
2393
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2394
2394
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2395
|
-
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2396
2395
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2397
2396
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2398
2397
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2399
2398
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2400
2399
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2400
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2401
2401
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2402
2402
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2403
2403
|
}, z.core.$strip>;
|
|
@@ -3129,9 +3129,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3129
3129
|
id: z.ZodString;
|
|
3130
3130
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3131
3131
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3132
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3133
3132
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3134
3133
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3134
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3135
3135
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3136
3136
|
activeAgentId: z.ZodString;
|
|
3137
3137
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3140,9 +3140,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
3140
3140
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3141
3141
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3142
3142
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3143
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3144
3143
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3145
3144
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3145
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3146
3146
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3147
3147
|
activeAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3148
3148
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4153,9 +4153,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
4153
4153
|
}>;
|
|
4154
4154
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
4155
4155
|
id: z.ZodString;
|
|
4156
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4157
4156
|
createdAt: z.ZodString;
|
|
4158
4157
|
updatedAt: z.ZodString;
|
|
4158
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4159
4159
|
contextConfigId: z.ZodString;
|
|
4160
4160
|
conversationId: z.ZodString;
|
|
4161
4161
|
contextVariableKey: z.ZodString;
|
|
@@ -4166,9 +4166,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
4166
4166
|
}, z.core.$strip>;
|
|
4167
4167
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
4168
4168
|
id: z.ZodString;
|
|
4169
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4170
4169
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4171
4170
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4171
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4172
4172
|
contextConfigId: z.ZodString;
|
|
4173
4173
|
conversationId: z.ZodString;
|
|
4174
4174
|
contextVariableKey: z.ZodString;
|
|
@@ -4179,9 +4179,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
4179
4179
|
}, z.core.$strip>;
|
|
4180
4180
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
4181
4181
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4182
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4183
4182
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4184
4183
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4184
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4185
4185
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4186
4186
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4187
4187
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4358,10 +4358,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4358
4358
|
in: {};
|
|
4359
4359
|
}>;
|
|
4360
4360
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4361
|
-
tenantId: z.ZodString;
|
|
4362
|
-
projectId: z.ZodString;
|
|
4363
|
-
id: z.ZodString;
|
|
4364
4361
|
name: z.ZodString;
|
|
4362
|
+
id: z.ZodString;
|
|
4363
|
+
projectId: z.ZodString;
|
|
4364
|
+
tenantId: z.ZodString;
|
|
4365
4365
|
description: z.ZodString;
|
|
4366
4366
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4367
4367
|
}, {
|
|
@@ -4382,27 +4382,27 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
4382
4382
|
in: {};
|
|
4383
4383
|
}>;
|
|
4384
4384
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
4385
|
-
id: z.ZodString;
|
|
4386
4385
|
name: z.ZodString;
|
|
4387
|
-
|
|
4386
|
+
id: z.ZodString;
|
|
4388
4387
|
createdAt: z.ZodString;
|
|
4389
4388
|
updatedAt: z.ZodString;
|
|
4389
|
+
description: z.ZodString;
|
|
4390
4390
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4391
4391
|
}, z.core.$strip>;
|
|
4392
4392
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
4393
|
-
id: z.ZodString;
|
|
4394
4393
|
name: z.ZodString;
|
|
4395
|
-
|
|
4394
|
+
id: z.ZodString;
|
|
4396
4395
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4397
4396
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4397
|
+
description: z.ZodString;
|
|
4398
4398
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4399
4399
|
}, z.core.$strip>;
|
|
4400
4400
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
4401
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4402
4401
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4403
|
-
|
|
4402
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4404
4403
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4405
4404
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4405
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4406
4406
|
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>>>>>>>;
|
|
4407
4407
|
}, z.core.$strip>;
|
|
4408
4408
|
declare const AgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -4909,17 +4909,17 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
4909
4909
|
in: {};
|
|
4910
4910
|
}>;
|
|
4911
4911
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
4912
|
-
id: z.ZodString;
|
|
4913
4912
|
name: z.ZodString;
|
|
4914
|
-
|
|
4913
|
+
id: z.ZodString;
|
|
4915
4914
|
createdAt: z.ZodString;
|
|
4916
4915
|
updatedAt: z.ZodString;
|
|
4916
|
+
description: z.ZodString;
|
|
4917
4917
|
summaryProps: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4918
4918
|
fullProps: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4919
4919
|
}, z.core.$strip>;
|
|
4920
4920
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
4921
|
-
id: z.ZodString;
|
|
4922
4921
|
name: z.ZodString;
|
|
4922
|
+
id: z.ZodString;
|
|
4923
4923
|
description: z.ZodString;
|
|
4924
4924
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4925
4925
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -4928,11 +4928,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
4928
4928
|
in: {};
|
|
4929
4929
|
}>;
|
|
4930
4930
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
4931
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4932
4931
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4933
|
-
|
|
4932
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4934
4933
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4935
4934
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4935
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4936
4936
|
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>>>>>>>;
|
|
4937
4937
|
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>>>>>>>;
|
|
4938
4938
|
}, z.core.$strip>;
|
|
@@ -5164,43 +5164,41 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5164
5164
|
in: {};
|
|
5165
5165
|
}>;
|
|
5166
5166
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5167
|
-
id: z.ZodString;
|
|
5168
5167
|
name: z.ZodString;
|
|
5169
|
-
|
|
5170
|
-
|
|
5168
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5169
|
+
id: z.ZodString;
|
|
5171
5170
|
createdAt: z.ZodString;
|
|
5172
5171
|
updatedAt: z.ZodString;
|
|
5172
|
+
description: z.ZodString;
|
|
5173
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5173
5174
|
baseUrl: z.ZodString;
|
|
5174
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5175
5175
|
}, z.core.$strip>;
|
|
5176
5176
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5177
|
-
id: z.ZodString;
|
|
5178
5177
|
name: z.ZodString;
|
|
5179
|
-
|
|
5180
|
-
|
|
5178
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5179
|
+
id: z.ZodString;
|
|
5181
5180
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5182
5181
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
description: z.ZodString;
|
|
5183
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5183
5184
|
baseUrl: z.ZodString;
|
|
5184
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5185
5185
|
}, z.core.$strip>;
|
|
5186
5186
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5187
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5188
5187
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5189
|
-
|
|
5190
|
-
|
|
5188
|
+
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>>>>>>>;
|
|
5189
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5191
5190
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5192
5191
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5192
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5193
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5193
5194
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5194
|
-
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>>>>>>>;
|
|
5195
5195
|
}, z.core.$strip>;
|
|
5196
5196
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5197
|
-
id: z.ZodString;
|
|
5198
5197
|
name: z.ZodString;
|
|
5199
|
-
|
|
5200
|
-
prompt: z.ZodString;
|
|
5198
|
+
id: z.ZodString;
|
|
5201
5199
|
createdAt: z.ZodString;
|
|
5202
5200
|
updatedAt: z.ZodString;
|
|
5203
|
-
|
|
5201
|
+
description: z.ZodString;
|
|
5204
5202
|
models: z.ZodNullable<z.ZodType<{
|
|
5205
5203
|
base?: {
|
|
5206
5204
|
model?: string | undefined;
|
|
@@ -5263,16 +5261,18 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5263
5261
|
}, {
|
|
5264
5262
|
stepCountIs?: number | undefined;
|
|
5265
5263
|
}>>>;
|
|
5264
|
+
prompt: z.ZodString;
|
|
5265
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5266
5266
|
type: z.ZodLiteral<"internal">;
|
|
5267
5267
|
}, z.core.$strip>, z.ZodObject<{
|
|
5268
|
-
id: z.ZodString;
|
|
5269
5268
|
name: z.ZodString;
|
|
5270
|
-
|
|
5271
|
-
|
|
5269
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5270
|
+
id: z.ZodString;
|
|
5272
5271
|
createdAt: z.ZodString;
|
|
5273
5272
|
updatedAt: z.ZodString;
|
|
5273
|
+
description: z.ZodString;
|
|
5274
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5274
5275
|
baseUrl: z.ZodString;
|
|
5275
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5276
5276
|
type: z.ZodLiteral<"external">;
|
|
5277
5277
|
}, z.core.$strip>], "type">;
|
|
5278
5278
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5524,24 +5524,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5524
5524
|
}>;
|
|
5525
5525
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5526
5526
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5527
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5527
5528
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5528
5529
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5529
5530
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5530
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5531
5531
|
}, {
|
|
5532
5532
|
out: {};
|
|
5533
5533
|
in: {};
|
|
5534
5534
|
}>;
|
|
5535
5535
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5536
|
-
id: z.ZodString;
|
|
5537
5536
|
name: z.ZodNullable<z.ZodString>;
|
|
5537
|
+
id: z.ZodString;
|
|
5538
|
+
createdAt: z.ZodString;
|
|
5539
|
+
updatedAt: z.ZodString;
|
|
5538
5540
|
graphId: z.ZodString;
|
|
5539
5541
|
publicId: z.ZodString;
|
|
5540
5542
|
keyPrefix: z.ZodString;
|
|
5541
5543
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5542
5544
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5543
|
-
createdAt: z.ZodString;
|
|
5544
|
-
updatedAt: z.ZodString;
|
|
5545
5545
|
}, {
|
|
5546
5546
|
out: {};
|
|
5547
5547
|
in: {};
|
|
@@ -5549,15 +5549,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
5549
5549
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
5550
5550
|
data: z.ZodObject<{
|
|
5551
5551
|
apiKey: z.ZodObject<{
|
|
5552
|
-
id: z.ZodString;
|
|
5553
5552
|
name: z.ZodNullable<z.ZodString>;
|
|
5553
|
+
id: z.ZodString;
|
|
5554
|
+
createdAt: z.ZodString;
|
|
5555
|
+
updatedAt: z.ZodString;
|
|
5554
5556
|
graphId: z.ZodString;
|
|
5555
5557
|
publicId: z.ZodString;
|
|
5556
5558
|
keyPrefix: z.ZodString;
|
|
5557
5559
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5558
5560
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5559
|
-
createdAt: z.ZodString;
|
|
5560
|
-
updatedAt: z.ZodString;
|
|
5561
5561
|
}, {
|
|
5562
5562
|
out: {};
|
|
5563
5563
|
in: {};
|
|
@@ -5567,20 +5567,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5567
5567
|
}, z.core.$strip>;
|
|
5568
5568
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5569
5569
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5570
|
-
graphId: z.ZodString;
|
|
5571
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5572
5570
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5573
5571
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5572
|
+
graphId: z.ZodString;
|
|
5573
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5574
5574
|
}, {
|
|
5575
5575
|
out: {};
|
|
5576
5576
|
in: {};
|
|
5577
5577
|
}>;
|
|
5578
5578
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5579
5579
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5580
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5580
5581
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5581
5582
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5582
5583
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5583
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5584
5584
|
}, {
|
|
5585
5585
|
out: {};
|
|
5586
5586
|
in: {};
|
|
@@ -5623,10 +5623,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
5623
5623
|
}>;
|
|
5624
5624
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
5625
5625
|
id: z.ZodString;
|
|
5626
|
-
createdAt: z.ZodString;
|
|
5627
|
-
updatedAt: z.ZodString;
|
|
5628
5626
|
credentialStoreId: z.ZodString;
|
|
5629
5627
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5628
|
+
createdAt: z.ZodString;
|
|
5629
|
+
updatedAt: z.ZodString;
|
|
5630
5630
|
type: z.ZodEnum<{
|
|
5631
5631
|
readonly memory: "memory";
|
|
5632
5632
|
readonly keychain: "keychain";
|
|
@@ -5871,10 +5871,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
5871
5871
|
}, z.core.$strip>;
|
|
5872
5872
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
5873
5873
|
id: z.ZodString;
|
|
5874
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5875
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5876
5874
|
credentialStoreId: z.ZodString;
|
|
5877
5875
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5876
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5877
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5878
5878
|
type: z.ZodEnum<{
|
|
5879
5879
|
readonly memory: "memory";
|
|
5880
5880
|
readonly keychain: "keychain";
|
|
@@ -5883,10 +5883,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
5883
5883
|
}, z.core.$strip>;
|
|
5884
5884
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
5885
5885
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5886
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5887
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5888
5886
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5889
5887
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
5888
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5889
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5890
5890
|
type: z.ZodOptional<z.ZodEnum<{
|
|
5891
5891
|
readonly memory: "memory";
|
|
5892
5892
|
readonly keychain: "keychain";
|
|
@@ -5935,9 +5935,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
5935
5935
|
in: {};
|
|
5936
5936
|
}>;
|
|
5937
5937
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
5938
|
-
id: z.ZodString;
|
|
5939
5938
|
name: z.ZodString;
|
|
5940
5939
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5940
|
+
id: z.ZodString;
|
|
5941
5941
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5942
5942
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5943
5943
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5967,10 +5967,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
5967
5967
|
}, z.core.$strip>>;
|
|
5968
5968
|
credential: z.ZodOptional<z.ZodObject<{
|
|
5969
5969
|
id: z.ZodString;
|
|
5970
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5971
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5972
5970
|
credentialStoreId: z.ZodString;
|
|
5973
5971
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5972
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5973
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5974
5974
|
type: z.ZodEnum<{
|
|
5975
5975
|
readonly memory: "memory";
|
|
5976
5976
|
readonly keychain: "keychain";
|
|
@@ -6011,8 +6011,13 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6011
6011
|
in: {};
|
|
6012
6012
|
}>;
|
|
6013
6013
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
6014
|
-
id: z.ZodString;
|
|
6015
6014
|
name: z.ZodString;
|
|
6015
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6016
|
+
id: z.ZodString;
|
|
6017
|
+
createdAt: z.ZodString;
|
|
6018
|
+
updatedAt: z.ZodString;
|
|
6019
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6020
|
+
capabilities: 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 ToolApiSelectSchema: z.ZodObject<{
|
|
|
6026
6031
|
type: "mcp";
|
|
6027
6032
|
mcp: ToolMcpConfig;
|
|
6028
6033
|
}>>;
|
|
6029
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6030
|
-
createdAt: z.ZodString;
|
|
6031
|
-
updatedAt: z.ZodString;
|
|
6032
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6033
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6034
6034
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6035
6035
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6036
6036
|
}, z.core.$strip>;
|
|
6037
6037
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6038
|
-
id: z.ZodString;
|
|
6039
6038
|
name: z.ZodString;
|
|
6039
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6040
|
+
id: z.ZodString;
|
|
6041
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6042
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6043
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6044
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6040
6045
|
config: z.ZodType<{
|
|
6041
6046
|
type: "mcp";
|
|
6042
6047
|
mcp: ToolMcpConfig;
|
|
@@ -6050,17 +6055,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6050
6055
|
type: "mcp";
|
|
6051
6056
|
mcp: ToolMcpConfig;
|
|
6052
6057
|
}>>;
|
|
6053
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6054
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6055
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6056
|
-
headers: 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.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6058
6058
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6059
6059
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6060
6060
|
}, z.core.$strip>;
|
|
6061
6061
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6062
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6063
6062
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6063
|
+
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>>>>>>>;
|
|
6064
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6065
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6066
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6067
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6068
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6064
6069
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6065
6070
|
type: "mcp";
|
|
6066
6071
|
mcp: ToolMcpConfig;
|
|
@@ -6074,11 +6079,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6074
6079
|
type: "mcp";
|
|
6075
6080
|
mcp: ToolMcpConfig;
|
|
6076
6081
|
}>>>>;
|
|
6077
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6078
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6079
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6080
|
-
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>>>>>>>;
|
|
6081
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6082
6082
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6083
6083
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6084
6084
|
}, z.core.$strip>;
|
|
@@ -6121,10 +6121,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6121
6121
|
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
6122
6122
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6123
6123
|
id: z.ZodString;
|
|
6124
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6125
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6126
6124
|
credentialStoreId: z.ZodString;
|
|
6127
6125
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6126
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6127
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6128
6128
|
type: z.ZodEnum<{
|
|
6129
6129
|
readonly memory: "memory";
|
|
6130
6130
|
readonly keychain: "keychain";
|
|
@@ -6147,10 +6147,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6147
6147
|
in: {};
|
|
6148
6148
|
}>;
|
|
6149
6149
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6150
|
-
tenantId: z.ZodString;
|
|
6151
|
-
projectId: z.ZodString;
|
|
6152
|
-
id: z.ZodString;
|
|
6153
6150
|
name: z.ZodString;
|
|
6151
|
+
id: z.ZodString;
|
|
6152
|
+
projectId: z.ZodString;
|
|
6153
|
+
tenantId: z.ZodString;
|
|
6154
6154
|
description: z.ZodString;
|
|
6155
6155
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6156
6156
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -6159,10 +6159,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
6159
6159
|
in: {};
|
|
6160
6160
|
}>;
|
|
6161
6161
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6162
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
6163
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6164
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6165
6162
|
name: z.ZodOptional<z.ZodString>;
|
|
6163
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6164
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6165
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
6166
6166
|
description: z.ZodOptional<z.ZodString>;
|
|
6167
6167
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6168
6168
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
@@ -6171,24 +6171,24 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
6171
6171
|
in: {};
|
|
6172
6172
|
}>;
|
|
6173
6173
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
6174
|
-
id: z.ZodString;
|
|
6175
6174
|
name: z.ZodString;
|
|
6176
|
-
|
|
6175
|
+
id: z.ZodString;
|
|
6177
6176
|
createdAt: z.ZodString;
|
|
6178
6177
|
updatedAt: z.ZodString;
|
|
6178
|
+
description: z.ZodString;
|
|
6179
6179
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6180
6180
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6181
6181
|
}, z.core.$strip>;
|
|
6182
6182
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6183
|
-
id: z.ZodString;
|
|
6184
6183
|
name: z.ZodString;
|
|
6184
|
+
id: z.ZodString;
|
|
6185
6185
|
description: z.ZodString;
|
|
6186
6186
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6187
6187
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6188
6188
|
}, z.core.$strip>;
|
|
6189
6189
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6190
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6191
6190
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6191
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6192
6192
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6193
6193
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodUnknown>>>;
|
|
6194
6194
|
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>>>>>>>;
|
|
@@ -6416,31 +6416,31 @@ declare const AgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
6416
6416
|
in: {};
|
|
6417
6417
|
}>;
|
|
6418
6418
|
declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
6419
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6419
6420
|
id: z.ZodString;
|
|
6420
6421
|
createdAt: z.ZodString;
|
|
6421
6422
|
updatedAt: z.ZodString;
|
|
6422
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6423
|
-
toolId: z.ZodString;
|
|
6424
6423
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6425
6424
|
agentId: z.ZodString;
|
|
6425
|
+
toolId: z.ZodString;
|
|
6426
6426
|
}, z.core.$strip>;
|
|
6427
6427
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6428
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6428
6429
|
id: z.ZodString;
|
|
6429
6430
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6430
6431
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6431
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6432
|
-
toolId: z.ZodString;
|
|
6433
6432
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6434
6433
|
agentId: z.ZodString;
|
|
6434
|
+
toolId: z.ZodString;
|
|
6435
6435
|
}, z.core.$strip>;
|
|
6436
6436
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6437
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6437
6438
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6438
6439
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6439
6440
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6440
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6441
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6442
6441
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6443
6442
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6443
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6444
6444
|
}, z.core.$strip>;
|
|
6445
6445
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6446
6446
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7154,12 +7154,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7154
7154
|
in: {};
|
|
7155
7155
|
}>;
|
|
7156
7156
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7157
|
-
id: z.ZodString;
|
|
7158
7157
|
type: z.ZodString;
|
|
7159
7158
|
name: z.ZodNullable<z.ZodString>;
|
|
7160
|
-
|
|
7159
|
+
id: z.ZodString;
|
|
7161
7160
|
createdAt: z.ZodString;
|
|
7162
7161
|
updatedAt: z.ZodString;
|
|
7162
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7163
7163
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7164
7164
|
contextId: z.ZodString;
|
|
7165
7165
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7172,12 +7172,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7172
7172
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7173
7173
|
}, z.core.$strip>;
|
|
7174
7174
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7175
|
-
id: z.ZodString;
|
|
7176
7175
|
type: z.ZodOptional<z.ZodString>;
|
|
7177
7176
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7178
|
-
|
|
7177
|
+
id: z.ZodString;
|
|
7179
7178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7180
7179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7180
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7181
7181
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7182
7182
|
contextId: z.ZodString;
|
|
7183
7183
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7190,12 +7190,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7190
7190
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7191
7191
|
}, z.core.$strip>;
|
|
7192
7192
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7193
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7194
7193
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7195
7194
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7196
|
-
|
|
7195
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7197
7196
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7198
7197
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7198
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7199
7199
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7200
7200
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7201
7201
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7238,13 +7238,11 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7238
7238
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7239
7239
|
}, z.core.$strip>;
|
|
7240
7240
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7241
|
-
id: z.ZodString;
|
|
7242
7241
|
name: z.ZodString;
|
|
7243
|
-
|
|
7244
|
-
prompt: z.ZodString;
|
|
7242
|
+
id: z.ZodString;
|
|
7245
7243
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7246
7244
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7247
|
-
|
|
7245
|
+
description: z.ZodString;
|
|
7248
7246
|
models: z.ZodOptional<z.ZodObject<{
|
|
7249
7247
|
base: z.ZodOptional<z.ZodObject<{
|
|
7250
7248
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7268,6 +7266,8 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7268
7266
|
}, {
|
|
7269
7267
|
stepCountIs?: number | undefined;
|
|
7270
7268
|
}>>>>;
|
|
7269
|
+
prompt: z.ZodString;
|
|
7270
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7271
7271
|
type: z.ZodLiteral<"internal">;
|
|
7272
7272
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7273
7273
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7282,20 +7282,18 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7282
7282
|
}, z.core.$strip>;
|
|
7283
7283
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7284
7284
|
name: z.ZodString;
|
|
7285
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7286
7285
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7287
7286
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7287
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7288
7288
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7289
7289
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7290
7290
|
id: z.ZodString;
|
|
7291
7291
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7292
|
-
id: z.ZodString;
|
|
7293
7292
|
name: z.ZodString;
|
|
7294
|
-
|
|
7295
|
-
prompt: z.ZodString;
|
|
7293
|
+
id: z.ZodString;
|
|
7296
7294
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7297
7295
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7298
|
-
|
|
7296
|
+
description: z.ZodString;
|
|
7299
7297
|
models: z.ZodOptional<z.ZodObject<{
|
|
7300
7298
|
base: z.ZodOptional<z.ZodObject<{
|
|
7301
7299
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7319,6 +7317,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7319
7317
|
}, {
|
|
7320
7318
|
stepCountIs?: number | undefined;
|
|
7321
7319
|
}>>>>;
|
|
7320
|
+
prompt: z.ZodString;
|
|
7321
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7322
7322
|
type: z.ZodLiteral<"internal">;
|
|
7323
7323
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7324
7324
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7331,18 +7331,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7331
7331
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7332
7332
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7333
7333
|
}, z.core.$strip>, z.ZodObject<{
|
|
7334
|
-
id: z.ZodString;
|
|
7335
7334
|
name: z.ZodString;
|
|
7336
|
-
|
|
7337
|
-
|
|
7335
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7336
|
+
id: z.ZodString;
|
|
7338
7337
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7339
7338
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7339
|
+
description: z.ZodString;
|
|
7340
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7340
7341
|
baseUrl: z.ZodString;
|
|
7341
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7342
7342
|
}, z.core.$strip>]>>;
|
|
7343
7343
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7344
|
-
id: z.ZodString;
|
|
7345
7344
|
name: z.ZodString;
|
|
7345
|
+
id: z.ZodString;
|
|
7346
7346
|
description: z.ZodString;
|
|
7347
7347
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7348
7348
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7383,20 +7383,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7383
7383
|
}, z.core.$strip>;
|
|
7384
7384
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7385
7385
|
name: z.ZodString;
|
|
7386
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7387
7386
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7388
7387
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7388
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7389
7389
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7390
7390
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7391
7391
|
id: z.ZodString;
|
|
7392
7392
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7393
|
-
id: z.ZodString;
|
|
7394
7393
|
name: z.ZodString;
|
|
7395
|
-
|
|
7396
|
-
prompt: z.ZodString;
|
|
7394
|
+
id: z.ZodString;
|
|
7397
7395
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7398
7396
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7399
|
-
|
|
7397
|
+
description: z.ZodString;
|
|
7400
7398
|
models: z.ZodOptional<z.ZodObject<{
|
|
7401
7399
|
base: z.ZodOptional<z.ZodObject<{
|
|
7402
7400
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7420,6 +7418,8 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7420
7418
|
}, {
|
|
7421
7419
|
stepCountIs?: number | undefined;
|
|
7422
7420
|
}>>>>;
|
|
7421
|
+
prompt: z.ZodString;
|
|
7422
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7423
7423
|
type: z.ZodLiteral<"internal">;
|
|
7424
7424
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7425
7425
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7432,19 +7432,19 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7432
7432
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7433
7433
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7434
7434
|
}, z.core.$strip>, z.ZodObject<{
|
|
7435
|
-
id: z.ZodString;
|
|
7436
7435
|
name: z.ZodString;
|
|
7437
|
-
|
|
7438
|
-
|
|
7436
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7437
|
+
id: z.ZodString;
|
|
7439
7438
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7440
7439
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7440
|
+
description: z.ZodString;
|
|
7441
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7441
7442
|
baseUrl: z.ZodString;
|
|
7442
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7443
7443
|
type: z.ZodLiteral<"external">;
|
|
7444
7444
|
}, z.core.$strip>], "type">>;
|
|
7445
7445
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7446
|
-
id: z.ZodString;
|
|
7447
7446
|
name: z.ZodString;
|
|
7447
|
+
id: z.ZodString;
|
|
7448
7448
|
description: z.ZodString;
|
|
7449
7449
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7450
7450
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7700,9 +7700,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7700
7700
|
}>;
|
|
7701
7701
|
}, undefined, undefined>;
|
|
7702
7702
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
7703
|
-
tenantId: z.ZodString;
|
|
7704
|
-
id: z.ZodString;
|
|
7705
7703
|
name: z.ZodString;
|
|
7704
|
+
id: z.ZodString;
|
|
7705
|
+
tenantId: z.ZodString;
|
|
7706
7706
|
description: z.ZodString;
|
|
7707
7707
|
models: z.ZodObject<{
|
|
7708
7708
|
base: z.ZodObject<{
|
|
@@ -7727,9 +7727,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7727
7727
|
in: {};
|
|
7728
7728
|
}>;
|
|
7729
7729
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
7730
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
7731
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7732
7730
|
name: z.ZodOptional<z.ZodString>;
|
|
7731
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7732
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
7733
7733
|
description: z.ZodOptional<z.ZodString>;
|
|
7734
7734
|
models: z.ZodOptional<z.ZodObject<{
|
|
7735
7735
|
base: z.ZodObject<{
|
|
@@ -7754,11 +7754,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7754
7754
|
in: {};
|
|
7755
7755
|
}>;
|
|
7756
7756
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
7757
|
-
id: z.ZodString;
|
|
7758
7757
|
name: z.ZodString;
|
|
7759
|
-
|
|
7758
|
+
id: z.ZodString;
|
|
7760
7759
|
createdAt: z.ZodString;
|
|
7761
7760
|
updatedAt: z.ZodString;
|
|
7761
|
+
description: z.ZodString;
|
|
7762
7762
|
models: z.ZodNullable<z.ZodType<{
|
|
7763
7763
|
base: {
|
|
7764
7764
|
model?: string | undefined;
|
|
@@ -7830,8 +7830,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7830
7830
|
in: {};
|
|
7831
7831
|
}>;
|
|
7832
7832
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
7833
|
-
id: z.ZodString;
|
|
7834
7833
|
name: z.ZodString;
|
|
7834
|
+
id: z.ZodString;
|
|
7835
7835
|
description: z.ZodString;
|
|
7836
7836
|
models: z.ZodObject<{
|
|
7837
7837
|
base: z.ZodObject<{
|
|
@@ -7856,8 +7856,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7856
7856
|
in: {};
|
|
7857
7857
|
}>;
|
|
7858
7858
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
7859
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7860
7859
|
name: z.ZodOptional<z.ZodString>;
|
|
7860
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7861
7861
|
description: z.ZodOptional<z.ZodString>;
|
|
7862
7862
|
models: z.ZodOptional<z.ZodObject<{
|
|
7863
7863
|
base: z.ZodObject<{
|
|
@@ -7882,8 +7882,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7882
7882
|
in: {};
|
|
7883
7883
|
}>;
|
|
7884
7884
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
7885
|
-
id: z.ZodString;
|
|
7886
7885
|
name: z.ZodString;
|
|
7886
|
+
id: z.ZodString;
|
|
7887
7887
|
description: z.ZodString;
|
|
7888
7888
|
models: z.ZodObject<{
|
|
7889
7889
|
base: z.ZodObject<{
|
|
@@ -7905,20 +7905,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7905
7905
|
}, z.core.$strip>>;
|
|
7906
7906
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7907
7907
|
name: z.ZodString;
|
|
7908
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7909
7908
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7910
7909
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7910
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7911
7911
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7912
7912
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7913
7913
|
id: z.ZodString;
|
|
7914
7914
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7915
|
-
id: z.ZodString;
|
|
7916
7915
|
name: z.ZodString;
|
|
7917
|
-
|
|
7918
|
-
prompt: z.ZodString;
|
|
7916
|
+
id: z.ZodString;
|
|
7919
7917
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7920
7918
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7921
|
-
|
|
7919
|
+
description: z.ZodString;
|
|
7922
7920
|
models: z.ZodOptional<z.ZodObject<{
|
|
7923
7921
|
base: z.ZodOptional<z.ZodObject<{
|
|
7924
7922
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7942,6 +7940,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7942
7940
|
}, {
|
|
7943
7941
|
stepCountIs?: number | undefined;
|
|
7944
7942
|
}>>>>;
|
|
7943
|
+
prompt: z.ZodString;
|
|
7944
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7945
7945
|
type: z.ZodLiteral<"internal">;
|
|
7946
7946
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7947
7947
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7954,19 +7954,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7954
7954
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7955
7955
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7956
7956
|
}, z.core.$strip>, z.ZodObject<{
|
|
7957
|
-
id: z.ZodString;
|
|
7958
7957
|
name: z.ZodString;
|
|
7959
|
-
|
|
7960
|
-
|
|
7958
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7959
|
+
id: z.ZodString;
|
|
7961
7960
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7962
7961
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7962
|
+
description: z.ZodString;
|
|
7963
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7963
7964
|
baseUrl: z.ZodString;
|
|
7964
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7965
7965
|
type: z.ZodLiteral<"external">;
|
|
7966
7966
|
}, z.core.$strip>], "type">>;
|
|
7967
7967
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7968
|
-
id: z.ZodString;
|
|
7969
7968
|
name: z.ZodString;
|
|
7969
|
+
id: z.ZodString;
|
|
7970
7970
|
description: z.ZodString;
|
|
7971
7971
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7972
7972
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -8006,8 +8006,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8006
8006
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8007
8007
|
}, z.core.$strip>>;
|
|
8008
8008
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8009
|
-
id: z.ZodString;
|
|
8010
8009
|
name: z.ZodString;
|
|
8010
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8011
|
+
id: z.ZodString;
|
|
8012
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8013
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8014
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8015
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8011
8016
|
config: z.ZodType<{
|
|
8012
8017
|
type: "mcp";
|
|
8013
8018
|
mcp: ToolMcpConfig;
|
|
@@ -8021,25 +8026,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8021
8026
|
type: "mcp";
|
|
8022
8027
|
mcp: ToolMcpConfig;
|
|
8023
8028
|
}>>;
|
|
8024
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8025
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8026
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8027
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8028
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8029
8029
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8030
8030
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8031
8031
|
}, z.core.$strip>>;
|
|
8032
8032
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8033
|
-
id: z.ZodString;
|
|
8034
8033
|
name: z.ZodString;
|
|
8035
|
-
|
|
8034
|
+
id: z.ZodString;
|
|
8036
8035
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8037
8036
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8037
|
+
description: z.ZodString;
|
|
8038
8038
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8039
8039
|
}, z.core.$strip>>>;
|
|
8040
8040
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8041
|
-
id: z.ZodString;
|
|
8042
8041
|
name: z.ZodString;
|
|
8042
|
+
id: z.ZodString;
|
|
8043
8043
|
description: z.ZodString;
|
|
8044
8044
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8045
8045
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -8064,10 +8064,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8064
8064
|
}, z.core.$strip>>;
|
|
8065
8065
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8066
8066
|
id: z.ZodString;
|
|
8067
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8068
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8069
8067
|
credentialStoreId: z.ZodString;
|
|
8070
8068
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8069
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8070
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8071
8071
|
type: z.ZodEnum<{
|
|
8072
8072
|
readonly memory: "memory";
|
|
8073
8073
|
readonly keychain: "keychain";
|