@inkeep/agents-core 0.0.0-dev-20251008194140 → 0.0.0-dev-20251008200151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-AHSEMW6N.js → chunk-5ZHSPLXI.js} +1 -2
- package/dist/{chunk-FMCAYVO7.js → chunk-BNXFEUNP.js} +105 -2
- package/dist/{chunk-FLKAMXLV.js → chunk-PR7XWHED.js} +1 -1
- package/dist/chunk-R2EERZSW.js +223 -0
- package/dist/client-exports.cjs +110 -9
- package/dist/client-exports.d.cts +14 -11
- package/dist/client-exports.d.ts +14 -11
- package/dist/client-exports.js +4 -10
- package/dist/db/schema.cjs +1 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +549 -371
- package/dist/index.d.cts +262 -265
- package/dist/index.d.ts +262 -265
- package/dist/index.js +41 -188
- package/dist/props-validation-BMR1qNiy.d.cts +15 -0
- package/dist/props-validation-BMR1qNiy.d.ts +15 -0
- package/dist/{schema-D0E2bG9V.d.ts → schema-BYR5XAeI.d.ts} +3 -22
- package/dist/{schema-CTBfyt-o.d.cts → schema-Cn2ZkYOh.d.cts} +3 -22
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-BMAHFZX6.d.cts → utility-6UlHR5nQ.d.cts} +191 -216
- package/dist/{utility-BMAHFZX6.d.ts → utility-6UlHR5nQ.d.ts} +191 -216
- package/dist/utils/schema-conversion.cjs +236 -0
- package/dist/utils/schema-conversion.d.cts +26 -0
- package/dist/utils/schema-conversion.d.ts +26 -0
- package/dist/utils/schema-conversion.js +1 -0
- package/dist/validation/index.cjs +109 -2
- package/dist/validation/index.d.cts +3 -2
- package/dist/validation/index.d.ts +3 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/0002_bumpy_romulus.sql +3 -0
- package/drizzle/meta/0002_snapshot.json +2428 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -765,13 +765,11 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
765
765
|
in: {};
|
|
766
766
|
}>;
|
|
767
767
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
768
|
-
id: z.ZodString;
|
|
769
768
|
name: z.ZodString;
|
|
770
|
-
|
|
771
|
-
prompt: z.ZodString;
|
|
769
|
+
id: z.ZodString;
|
|
772
770
|
createdAt: z.ZodString;
|
|
773
771
|
updatedAt: z.ZodString;
|
|
774
|
-
|
|
772
|
+
description: z.ZodString;
|
|
775
773
|
models: z.ZodNullable<z.ZodType<{
|
|
776
774
|
base?: {
|
|
777
775
|
model?: string | undefined;
|
|
@@ -834,15 +832,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
834
832
|
}, {
|
|
835
833
|
stepCountIs?: number | undefined;
|
|
836
834
|
}>>>;
|
|
835
|
+
prompt: z.ZodString;
|
|
836
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
837
837
|
}, z.core.$strip>;
|
|
838
838
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
839
|
-
id: z.ZodString;
|
|
840
839
|
name: z.ZodString;
|
|
841
|
-
|
|
842
|
-
prompt: z.ZodString;
|
|
840
|
+
id: z.ZodString;
|
|
843
841
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
844
842
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
845
|
-
|
|
843
|
+
description: z.ZodString;
|
|
846
844
|
models: z.ZodOptional<z.ZodObject<{
|
|
847
845
|
base: z.ZodOptional<z.ZodObject<{
|
|
848
846
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -866,15 +864,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
866
864
|
}, {
|
|
867
865
|
stepCountIs?: number | undefined;
|
|
868
866
|
}>>>>;
|
|
867
|
+
prompt: z.ZodString;
|
|
868
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
869
869
|
}, z.core.$strip>;
|
|
870
870
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
871
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
871
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
873
|
-
|
|
874
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
875
873
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
876
874
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
877
|
-
|
|
875
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
878
876
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
879
877
|
base: z.ZodOptional<z.ZodObject<{
|
|
880
878
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -898,6 +896,8 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
898
896
|
}, {
|
|
899
897
|
stepCountIs?: number | undefined;
|
|
900
898
|
}>>>>>>;
|
|
899
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
900
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
901
901
|
}, z.core.$strip>;
|
|
902
902
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
903
903
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -1176,9 +1176,9 @@ declare const ExternalAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1176
1176
|
}>;
|
|
1177
1177
|
declare const ExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1178
1178
|
id: z.ZodString;
|
|
1179
|
-
graphId: z.ZodString;
|
|
1180
1179
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1181
1180
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
graphId: z.ZodString;
|
|
1182
1182
|
sourceAgentId: z.ZodString;
|
|
1183
1183
|
targetAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1184
1184
|
externalAgentId: z.ZodString;
|
|
@@ -1760,12 +1760,11 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1760
1760
|
in: {};
|
|
1761
1761
|
}>;
|
|
1762
1762
|
declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
1763
|
-
id: z.ZodString;
|
|
1764
1763
|
name: z.ZodString;
|
|
1765
|
-
|
|
1764
|
+
id: z.ZodString;
|
|
1766
1765
|
createdAt: z.ZodString;
|
|
1767
1766
|
updatedAt: z.ZodString;
|
|
1768
|
-
|
|
1767
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1769
1768
|
models: z.ZodNullable<z.ZodType<{
|
|
1770
1769
|
base?: {
|
|
1771
1770
|
model?: string | undefined;
|
|
@@ -1828,6 +1827,7 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1828
1827
|
}, {
|
|
1829
1828
|
transferCountIs?: number | undefined;
|
|
1830
1829
|
}>>>;
|
|
1830
|
+
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
1831
1831
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
1832
1832
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
1833
1833
|
enabled?: boolean | undefined;
|
|
@@ -1890,10 +1890,9 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1890
1890
|
}, z.core.$strip>;
|
|
1891
1891
|
declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
1892
1892
|
name: z.ZodString;
|
|
1893
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1894
1893
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1895
1894
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1896
|
-
|
|
1895
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1897
1896
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1898
1897
|
base?: {
|
|
1899
1898
|
model?: string | undefined;
|
|
@@ -1956,6 +1955,7 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1956
1955
|
}, {
|
|
1957
1956
|
transferCountIs?: number | undefined;
|
|
1958
1957
|
}>>>>;
|
|
1958
|
+
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1959
1959
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1960
1960
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1961
1961
|
enabled?: boolean | undefined;
|
|
@@ -2018,12 +2018,11 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
2018
2018
|
id: z.ZodString;
|
|
2019
2019
|
}, z.core.$strip>;
|
|
2020
2020
|
declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
2021
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2022
2021
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2023
|
-
|
|
2022
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2024
2023
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2025
2024
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2026
|
-
|
|
2025
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2027
2026
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2028
2027
|
base?: {
|
|
2029
2028
|
model?: string | undefined;
|
|
@@ -2086,6 +2085,7 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2086
2085
|
}, {
|
|
2087
2086
|
transferCountIs?: number | undefined;
|
|
2088
2087
|
}>>>>>>;
|
|
2088
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2089
2089
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2090
2090
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2091
2091
|
enabled?: boolean | undefined;
|
|
@@ -2372,32 +2372,32 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2372
2372
|
}>;
|
|
2373
2373
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
2374
2374
|
id: z.ZodString;
|
|
2375
|
-
graphId: z.ZodString;
|
|
2376
2375
|
createdAt: z.ZodString;
|
|
2377
2376
|
updatedAt: z.ZodString;
|
|
2378
|
-
|
|
2377
|
+
graphId: z.ZodString;
|
|
2379
2378
|
status: z.ZodString;
|
|
2379
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2380
2380
|
contextId: z.ZodString;
|
|
2381
2381
|
agentId: z.ZodString;
|
|
2382
2382
|
}, z.core.$strip>;
|
|
2383
2383
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2384
2384
|
id: z.ZodString;
|
|
2385
|
-
graphId: z.ZodString;
|
|
2386
2385
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2387
2386
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2388
|
-
|
|
2387
|
+
graphId: z.ZodString;
|
|
2389
2388
|
status: z.ZodString;
|
|
2389
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2390
2390
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
2391
2391
|
contextId: z.ZodString;
|
|
2392
2392
|
agentId: z.ZodString;
|
|
2393
2393
|
}, z.core.$strip>;
|
|
2394
2394
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2395
2395
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2396
|
-
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2397
2396
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2398
2397
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2399
|
-
|
|
2398
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2400
2399
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2400
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2401
2401
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2402
2402
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2403
2403
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3130,8 +3130,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3130
3130
|
id: z.ZodString;
|
|
3131
3131
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3132
3132
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3133
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3134
3133
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3134
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3135
3135
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3136
3136
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3137
3137
|
activeAgentId: z.ZodString;
|
|
@@ -3141,8 +3141,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
3141
3141
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3142
3142
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3143
3143
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3144
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3145
3144
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3145
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3146
3146
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3147
3147
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3148
3148
|
activeAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4154,9 +4154,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
4154
4154
|
}>;
|
|
4155
4155
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
4156
4156
|
id: z.ZodString;
|
|
4157
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4158
4157
|
createdAt: z.ZodString;
|
|
4159
4158
|
updatedAt: z.ZodString;
|
|
4159
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4160
4160
|
contextConfigId: z.ZodString;
|
|
4161
4161
|
conversationId: z.ZodString;
|
|
4162
4162
|
contextVariableKey: z.ZodString;
|
|
@@ -4167,9 +4167,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
4167
4167
|
}, z.core.$strip>;
|
|
4168
4168
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
4169
4169
|
id: z.ZodString;
|
|
4170
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4171
4170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4172
4171
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4172
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4173
4173
|
contextConfigId: z.ZodString;
|
|
4174
4174
|
conversationId: z.ZodString;
|
|
4175
4175
|
contextVariableKey: z.ZodString;
|
|
@@ -4180,9 +4180,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
4180
4180
|
}, z.core.$strip>;
|
|
4181
4181
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
4182
4182
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4183
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4184
4183
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4185
4184
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4185
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4186
4186
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4187
4187
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4188
4188
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4359,10 +4359,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4359
4359
|
in: {};
|
|
4360
4360
|
}>;
|
|
4361
4361
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4362
|
-
tenantId: z.ZodString;
|
|
4363
|
-
projectId: z.ZodString;
|
|
4364
|
-
id: z.ZodString;
|
|
4365
4362
|
name: z.ZodString;
|
|
4363
|
+
id: z.ZodString;
|
|
4364
|
+
projectId: z.ZodString;
|
|
4365
|
+
tenantId: z.ZodString;
|
|
4366
4366
|
description: z.ZodString;
|
|
4367
4367
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4368
4368
|
}, {
|
|
@@ -4383,27 +4383,27 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
4383
4383
|
in: {};
|
|
4384
4384
|
}>;
|
|
4385
4385
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
4386
|
-
id: z.ZodString;
|
|
4387
4386
|
name: z.ZodString;
|
|
4388
|
-
|
|
4387
|
+
id: z.ZodString;
|
|
4389
4388
|
createdAt: z.ZodString;
|
|
4390
4389
|
updatedAt: z.ZodString;
|
|
4390
|
+
description: z.ZodString;
|
|
4391
4391
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4392
4392
|
}, z.core.$strip>;
|
|
4393
4393
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
4394
|
-
id: z.ZodString;
|
|
4395
4394
|
name: z.ZodString;
|
|
4396
|
-
|
|
4395
|
+
id: z.ZodString;
|
|
4397
4396
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4398
4397
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4398
|
+
description: z.ZodString;
|
|
4399
4399
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4400
4400
|
}, z.core.$strip>;
|
|
4401
4401
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
4402
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4403
4402
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4404
|
-
|
|
4403
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4405
4404
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4406
4405
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4406
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4407
4407
|
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>>>>>>>;
|
|
4408
4408
|
}, z.core.$strip>;
|
|
4409
4409
|
declare const AgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -4747,27 +4747,8 @@ declare const ArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
4747
4747
|
}, {}, {
|
|
4748
4748
|
length: number | undefined;
|
|
4749
4749
|
}>;
|
|
4750
|
-
|
|
4751
|
-
name: "
|
|
4752
|
-
tableName: "artifact_components";
|
|
4753
|
-
dataType: "json";
|
|
4754
|
-
columnType: "SQLiteBlobJson";
|
|
4755
|
-
data: Record<string, unknown>;
|
|
4756
|
-
driverParam: Buffer<ArrayBufferLike>;
|
|
4757
|
-
notNull: false;
|
|
4758
|
-
hasDefault: false;
|
|
4759
|
-
isPrimaryKey: false;
|
|
4760
|
-
isAutoincrement: false;
|
|
4761
|
-
hasRuntimeDefault: false;
|
|
4762
|
-
enumValues: undefined;
|
|
4763
|
-
baseColumn: never;
|
|
4764
|
-
identity: undefined;
|
|
4765
|
-
generated: undefined;
|
|
4766
|
-
}, {}, {
|
|
4767
|
-
$type: Record<string, unknown>;
|
|
4768
|
-
}>;
|
|
4769
|
-
fullProps: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
4770
|
-
name: "full_props";
|
|
4750
|
+
props: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
4751
|
+
name: "props";
|
|
4771
4752
|
tableName: "artifact_components";
|
|
4772
4753
|
dataType: "json";
|
|
4773
4754
|
columnType: "SQLiteBlobJson";
|
|
@@ -4884,8 +4865,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
4884
4865
|
declare const ArtifactComponentInsertSchema: z.ZodObject<{
|
|
4885
4866
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4886
4867
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4887
|
-
|
|
4888
|
-
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4868
|
+
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4889
4869
|
name: z.ZodString;
|
|
4890
4870
|
description: z.ZodString;
|
|
4891
4871
|
projectId: z.ZodString;
|
|
@@ -4898,8 +4878,7 @@ declare const ArtifactComponentInsertSchema: z.ZodObject<{
|
|
|
4898
4878
|
declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
4899
4879
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4900
4880
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4901
|
-
|
|
4902
|
-
fullProps: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
4881
|
+
props: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
4903
4882
|
name: z.ZodOptional<z.ZodString>;
|
|
4904
4883
|
description: z.ZodOptional<z.ZodString>;
|
|
4905
4884
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -4910,32 +4889,29 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
4910
4889
|
in: {};
|
|
4911
4890
|
}>;
|
|
4912
4891
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
4913
|
-
id: z.ZodString;
|
|
4914
4892
|
name: z.ZodString;
|
|
4915
|
-
|
|
4893
|
+
id: z.ZodString;
|
|
4916
4894
|
createdAt: z.ZodString;
|
|
4917
4895
|
updatedAt: z.ZodString;
|
|
4918
|
-
|
|
4919
|
-
|
|
4896
|
+
description: z.ZodString;
|
|
4897
|
+
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4920
4898
|
}, z.core.$strip>;
|
|
4921
4899
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
4922
|
-
id: z.ZodString;
|
|
4923
4900
|
name: z.ZodString;
|
|
4901
|
+
id: z.ZodString;
|
|
4924
4902
|
description: z.ZodString;
|
|
4925
|
-
|
|
4926
|
-
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4903
|
+
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4927
4904
|
}, {
|
|
4928
4905
|
out: {};
|
|
4929
4906
|
in: {};
|
|
4930
4907
|
}>;
|
|
4931
4908
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
4932
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4933
4909
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4934
|
-
|
|
4910
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4935
4911
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4936
4912
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4937
|
-
|
|
4938
|
-
|
|
4913
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4914
|
+
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
4939
4915
|
}, z.core.$strip>;
|
|
4940
4916
|
declare const AgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
4941
4917
|
artifactComponentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -5165,43 +5141,41 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5165
5141
|
in: {};
|
|
5166
5142
|
}>;
|
|
5167
5143
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5168
|
-
id: z.ZodString;
|
|
5169
5144
|
name: z.ZodString;
|
|
5170
|
-
|
|
5171
|
-
|
|
5145
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5146
|
+
id: z.ZodString;
|
|
5172
5147
|
createdAt: z.ZodString;
|
|
5173
5148
|
updatedAt: z.ZodString;
|
|
5149
|
+
description: z.ZodString;
|
|
5150
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5174
5151
|
baseUrl: z.ZodString;
|
|
5175
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5176
5152
|
}, z.core.$strip>;
|
|
5177
5153
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5178
|
-
id: z.ZodString;
|
|
5179
5154
|
name: z.ZodString;
|
|
5180
|
-
|
|
5181
|
-
|
|
5155
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5156
|
+
id: z.ZodString;
|
|
5182
5157
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5183
5158
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5159
|
+
description: z.ZodString;
|
|
5160
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5184
5161
|
baseUrl: z.ZodString;
|
|
5185
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5186
5162
|
}, z.core.$strip>;
|
|
5187
5163
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5188
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5189
5164
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5190
|
-
|
|
5191
|
-
|
|
5165
|
+
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>>>>>>>;
|
|
5166
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5192
5167
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5193
5168
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5169
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5170
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5194
5171
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5195
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
5196
5172
|
}, z.core.$strip>;
|
|
5197
5173
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5198
|
-
id: z.ZodString;
|
|
5199
5174
|
name: z.ZodString;
|
|
5200
|
-
|
|
5201
|
-
prompt: z.ZodString;
|
|
5175
|
+
id: z.ZodString;
|
|
5202
5176
|
createdAt: z.ZodString;
|
|
5203
5177
|
updatedAt: z.ZodString;
|
|
5204
|
-
|
|
5178
|
+
description: z.ZodString;
|
|
5205
5179
|
models: z.ZodNullable<z.ZodType<{
|
|
5206
5180
|
base?: {
|
|
5207
5181
|
model?: string | undefined;
|
|
@@ -5264,16 +5238,18 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5264
5238
|
}, {
|
|
5265
5239
|
stepCountIs?: number | undefined;
|
|
5266
5240
|
}>>>;
|
|
5241
|
+
prompt: z.ZodString;
|
|
5242
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5267
5243
|
type: z.ZodLiteral<"internal">;
|
|
5268
5244
|
}, z.core.$strip>, z.ZodObject<{
|
|
5269
|
-
id: z.ZodString;
|
|
5270
5245
|
name: z.ZodString;
|
|
5271
|
-
|
|
5272
|
-
|
|
5246
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5247
|
+
id: z.ZodString;
|
|
5273
5248
|
createdAt: z.ZodString;
|
|
5274
5249
|
updatedAt: z.ZodString;
|
|
5250
|
+
description: z.ZodString;
|
|
5251
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5275
5252
|
baseUrl: z.ZodString;
|
|
5276
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5277
5253
|
type: z.ZodLiteral<"external">;
|
|
5278
5254
|
}, z.core.$strip>], "type">;
|
|
5279
5255
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5525,24 +5501,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5525
5501
|
}>;
|
|
5526
5502
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5527
5503
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5504
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5528
5505
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5529
5506
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5530
5507
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5531
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5532
5508
|
}, {
|
|
5533
5509
|
out: {};
|
|
5534
5510
|
in: {};
|
|
5535
5511
|
}>;
|
|
5536
5512
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5537
|
-
id: z.ZodString;
|
|
5538
5513
|
name: z.ZodNullable<z.ZodString>;
|
|
5514
|
+
id: z.ZodString;
|
|
5515
|
+
createdAt: z.ZodString;
|
|
5516
|
+
updatedAt: z.ZodString;
|
|
5539
5517
|
graphId: z.ZodString;
|
|
5540
5518
|
publicId: z.ZodString;
|
|
5541
5519
|
keyPrefix: z.ZodString;
|
|
5542
5520
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5543
5521
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5544
|
-
createdAt: z.ZodString;
|
|
5545
|
-
updatedAt: z.ZodString;
|
|
5546
5522
|
}, {
|
|
5547
5523
|
out: {};
|
|
5548
5524
|
in: {};
|
|
@@ -5550,15 +5526,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
5550
5526
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
5551
5527
|
data: z.ZodObject<{
|
|
5552
5528
|
apiKey: z.ZodObject<{
|
|
5553
|
-
id: z.ZodString;
|
|
5554
5529
|
name: z.ZodNullable<z.ZodString>;
|
|
5530
|
+
id: z.ZodString;
|
|
5531
|
+
createdAt: z.ZodString;
|
|
5532
|
+
updatedAt: z.ZodString;
|
|
5555
5533
|
graphId: z.ZodString;
|
|
5556
5534
|
publicId: z.ZodString;
|
|
5557
5535
|
keyPrefix: z.ZodString;
|
|
5558
5536
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5559
5537
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5560
|
-
createdAt: z.ZodString;
|
|
5561
|
-
updatedAt: z.ZodString;
|
|
5562
5538
|
}, {
|
|
5563
5539
|
out: {};
|
|
5564
5540
|
in: {};
|
|
@@ -5568,20 +5544,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5568
5544
|
}, z.core.$strip>;
|
|
5569
5545
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5570
5546
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5571
|
-
graphId: z.ZodString;
|
|
5572
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5573
5547
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5574
5548
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5549
|
+
graphId: z.ZodString;
|
|
5550
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5575
5551
|
}, {
|
|
5576
5552
|
out: {};
|
|
5577
5553
|
in: {};
|
|
5578
5554
|
}>;
|
|
5579
5555
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5580
5556
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5557
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5581
5558
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5582
5559
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5583
5560
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5584
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5585
5561
|
}, {
|
|
5586
5562
|
out: {};
|
|
5587
5563
|
in: {};
|
|
@@ -5624,10 +5600,10 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
5624
5600
|
}>;
|
|
5625
5601
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
5626
5602
|
id: z.ZodString;
|
|
5627
|
-
createdAt: z.ZodString;
|
|
5628
|
-
updatedAt: z.ZodString;
|
|
5629
5603
|
credentialStoreId: z.ZodString;
|
|
5630
5604
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5605
|
+
createdAt: z.ZodString;
|
|
5606
|
+
updatedAt: z.ZodString;
|
|
5631
5607
|
type: z.ZodEnum<{
|
|
5632
5608
|
readonly memory: "memory";
|
|
5633
5609
|
readonly keychain: "keychain";
|
|
@@ -5872,10 +5848,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
5872
5848
|
}, z.core.$strip>;
|
|
5873
5849
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
5874
5850
|
id: z.ZodString;
|
|
5875
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5876
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5877
5851
|
credentialStoreId: z.ZodString;
|
|
5878
5852
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5853
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5854
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5879
5855
|
type: z.ZodEnum<{
|
|
5880
5856
|
readonly memory: "memory";
|
|
5881
5857
|
readonly keychain: "keychain";
|
|
@@ -5884,10 +5860,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
5884
5860
|
}, z.core.$strip>;
|
|
5885
5861
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
5886
5862
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5887
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5888
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5889
5863
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5890
5864
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
5865
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5866
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5891
5867
|
type: z.ZodOptional<z.ZodEnum<{
|
|
5892
5868
|
readonly memory: "memory";
|
|
5893
5869
|
readonly keychain: "keychain";
|
|
@@ -5936,9 +5912,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
5936
5912
|
in: {};
|
|
5937
5913
|
}>;
|
|
5938
5914
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
5939
|
-
id: z.ZodString;
|
|
5940
5915
|
name: z.ZodString;
|
|
5941
5916
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5917
|
+
id: z.ZodString;
|
|
5942
5918
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5943
5919
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5944
5920
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5968,10 +5944,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
5968
5944
|
}, z.core.$strip>>;
|
|
5969
5945
|
credential: z.ZodOptional<z.ZodObject<{
|
|
5970
5946
|
id: z.ZodString;
|
|
5971
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5972
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5973
5947
|
credentialStoreId: z.ZodString;
|
|
5974
5948
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5949
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5950
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5975
5951
|
type: z.ZodEnum<{
|
|
5976
5952
|
readonly memory: "memory";
|
|
5977
5953
|
readonly keychain: "keychain";
|
|
@@ -6012,8 +5988,13 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6012
5988
|
in: {};
|
|
6013
5989
|
}>;
|
|
6014
5990
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
6015
|
-
id: z.ZodString;
|
|
6016
5991
|
name: z.ZodString;
|
|
5992
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5993
|
+
id: z.ZodString;
|
|
5994
|
+
createdAt: z.ZodString;
|
|
5995
|
+
updatedAt: z.ZodString;
|
|
5996
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
5997
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6017
5998
|
config: z.ZodType<{
|
|
6018
5999
|
type: "mcp";
|
|
6019
6000
|
mcp: ToolMcpConfig;
|
|
@@ -6027,17 +6008,17 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6027
6008
|
type: "mcp";
|
|
6028
6009
|
mcp: ToolMcpConfig;
|
|
6029
6010
|
}>>;
|
|
6030
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6031
|
-
createdAt: z.ZodString;
|
|
6032
|
-
updatedAt: z.ZodString;
|
|
6033
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6034
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6035
6011
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6036
6012
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6037
6013
|
}, z.core.$strip>;
|
|
6038
6014
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6039
|
-
id: z.ZodString;
|
|
6040
6015
|
name: z.ZodString;
|
|
6016
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6017
|
+
id: z.ZodString;
|
|
6018
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6019
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6020
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6021
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6041
6022
|
config: z.ZodType<{
|
|
6042
6023
|
type: "mcp";
|
|
6043
6024
|
mcp: ToolMcpConfig;
|
|
@@ -6051,17 +6032,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6051
6032
|
type: "mcp";
|
|
6052
6033
|
mcp: ToolMcpConfig;
|
|
6053
6034
|
}>>;
|
|
6054
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6055
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6056
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6057
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6058
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6059
6035
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6060
6036
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6061
6037
|
}, z.core.$strip>;
|
|
6062
6038
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6063
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6064
6039
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6040
|
+
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>>>>>>>;
|
|
6041
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6042
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6043
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6044
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6045
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6065
6046
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6066
6047
|
type: "mcp";
|
|
6067
6048
|
mcp: ToolMcpConfig;
|
|
@@ -6075,11 +6056,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6075
6056
|
type: "mcp";
|
|
6076
6057
|
mcp: ToolMcpConfig;
|
|
6077
6058
|
}>>>>;
|
|
6078
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6079
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6080
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6081
|
-
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>>>>>>>;
|
|
6082
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6083
6059
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6084
6060
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6085
6061
|
}, z.core.$strip>;
|
|
@@ -6122,10 +6098,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6122
6098
|
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
6123
6099
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6124
6100
|
id: z.ZodString;
|
|
6125
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6126
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6127
6101
|
credentialStoreId: z.ZodString;
|
|
6128
6102
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6103
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6104
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6129
6105
|
type: z.ZodEnum<{
|
|
6130
6106
|
readonly memory: "memory";
|
|
6131
6107
|
readonly keychain: "keychain";
|
|
@@ -6149,50 +6125,50 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6149
6125
|
in: {};
|
|
6150
6126
|
}>;
|
|
6151
6127
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6152
|
-
tenantId: z.ZodString;
|
|
6153
|
-
projectId: z.ZodString;
|
|
6154
|
-
id: z.ZodString;
|
|
6155
6128
|
name: z.ZodString;
|
|
6129
|
+
id: z.ZodString;
|
|
6130
|
+
projectId: z.ZodString;
|
|
6131
|
+
tenantId: z.ZodString;
|
|
6156
6132
|
description: z.ZodString;
|
|
6157
|
-
graphId: z.ZodString;
|
|
6158
6133
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6159
6134
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6135
|
+
graphId: z.ZodString;
|
|
6160
6136
|
}, {
|
|
6161
6137
|
out: {};
|
|
6162
6138
|
in: {};
|
|
6163
6139
|
}>;
|
|
6164
6140
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6165
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
6166
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6167
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6168
6141
|
name: z.ZodOptional<z.ZodString>;
|
|
6142
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6143
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6144
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
6169
6145
|
description: z.ZodOptional<z.ZodString>;
|
|
6170
|
-
graphId: z.ZodOptional<z.ZodString>;
|
|
6171
6146
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6172
6147
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
6148
|
+
graphId: z.ZodOptional<z.ZodString>;
|
|
6173
6149
|
}, {
|
|
6174
6150
|
out: {};
|
|
6175
6151
|
in: {};
|
|
6176
6152
|
}>;
|
|
6177
6153
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
6178
|
-
id: z.ZodString;
|
|
6179
6154
|
name: z.ZodString;
|
|
6180
|
-
|
|
6155
|
+
id: z.ZodString;
|
|
6181
6156
|
createdAt: z.ZodString;
|
|
6182
6157
|
updatedAt: z.ZodString;
|
|
6158
|
+
description: z.ZodString;
|
|
6183
6159
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6184
6160
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6185
6161
|
}, z.core.$strip>;
|
|
6186
6162
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6187
|
-
id: z.ZodString;
|
|
6188
6163
|
name: z.ZodString;
|
|
6164
|
+
id: z.ZodString;
|
|
6189
6165
|
description: z.ZodString;
|
|
6190
6166
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6191
6167
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6192
6168
|
}, z.core.$strip>;
|
|
6193
6169
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6194
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6195
6170
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6171
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6196
6172
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6197
6173
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodUnknown>>>;
|
|
6198
6174
|
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>>>>>>>;
|
|
@@ -6420,31 +6396,31 @@ declare const AgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
6420
6396
|
in: {};
|
|
6421
6397
|
}>;
|
|
6422
6398
|
declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
6399
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6423
6400
|
id: z.ZodString;
|
|
6424
6401
|
createdAt: z.ZodString;
|
|
6425
6402
|
updatedAt: z.ZodString;
|
|
6426
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6427
|
-
toolId: z.ZodString;
|
|
6428
6403
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6429
6404
|
agentId: z.ZodString;
|
|
6405
|
+
toolId: z.ZodString;
|
|
6430
6406
|
}, z.core.$strip>;
|
|
6431
6407
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6408
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6432
6409
|
id: z.ZodString;
|
|
6433
6410
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6434
6411
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6435
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6436
|
-
toolId: z.ZodString;
|
|
6437
6412
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6438
6413
|
agentId: z.ZodString;
|
|
6414
|
+
toolId: z.ZodString;
|
|
6439
6415
|
}, z.core.$strip>;
|
|
6440
6416
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6417
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6441
6418
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6442
6419
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6443
6420
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6444
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6445
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6446
6421
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6447
6422
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6423
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6448
6424
|
}, z.core.$strip>;
|
|
6449
6425
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6450
6426
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7158,12 +7134,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7158
7134
|
in: {};
|
|
7159
7135
|
}>;
|
|
7160
7136
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7161
|
-
id: z.ZodString;
|
|
7162
7137
|
type: z.ZodString;
|
|
7163
7138
|
name: z.ZodNullable<z.ZodString>;
|
|
7164
|
-
|
|
7139
|
+
id: z.ZodString;
|
|
7165
7140
|
createdAt: z.ZodString;
|
|
7166
7141
|
updatedAt: z.ZodString;
|
|
7142
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7167
7143
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7168
7144
|
contextId: z.ZodString;
|
|
7169
7145
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7176,12 +7152,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7176
7152
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7177
7153
|
}, z.core.$strip>;
|
|
7178
7154
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7179
|
-
id: z.ZodString;
|
|
7180
7155
|
type: z.ZodOptional<z.ZodString>;
|
|
7181
7156
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7182
|
-
|
|
7157
|
+
id: z.ZodString;
|
|
7183
7158
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7184
7159
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7160
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7185
7161
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7186
7162
|
contextId: z.ZodString;
|
|
7187
7163
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7194,12 +7170,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7194
7170
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7195
7171
|
}, z.core.$strip>;
|
|
7196
7172
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7197
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7198
7173
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7199
7174
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7200
|
-
|
|
7175
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7201
7176
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7202
7177
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7178
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7203
7179
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7204
7180
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7205
7181
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7242,13 +7218,11 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7242
7218
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7243
7219
|
}, z.core.$strip>;
|
|
7244
7220
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7245
|
-
id: z.ZodString;
|
|
7246
7221
|
name: z.ZodString;
|
|
7247
|
-
|
|
7248
|
-
prompt: z.ZodString;
|
|
7222
|
+
id: z.ZodString;
|
|
7249
7223
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7250
7224
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7251
|
-
|
|
7225
|
+
description: z.ZodString;
|
|
7252
7226
|
models: z.ZodOptional<z.ZodObject<{
|
|
7253
7227
|
base: z.ZodOptional<z.ZodObject<{
|
|
7254
7228
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7272,6 +7246,8 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7272
7246
|
}, {
|
|
7273
7247
|
stepCountIs?: number | undefined;
|
|
7274
7248
|
}>>>>;
|
|
7249
|
+
prompt: z.ZodString;
|
|
7250
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7275
7251
|
type: z.ZodLiteral<"internal">;
|
|
7276
7252
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7277
7253
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7286,20 +7262,18 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7286
7262
|
}, z.core.$strip>;
|
|
7287
7263
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7288
7264
|
name: z.ZodString;
|
|
7289
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7290
7265
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7291
7266
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7267
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7292
7268
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7293
7269
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7294
7270
|
id: z.ZodString;
|
|
7295
7271
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7296
|
-
id: z.ZodString;
|
|
7297
7272
|
name: z.ZodString;
|
|
7298
|
-
|
|
7299
|
-
prompt: z.ZodString;
|
|
7273
|
+
id: z.ZodString;
|
|
7300
7274
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7301
7275
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7302
|
-
|
|
7276
|
+
description: z.ZodString;
|
|
7303
7277
|
models: z.ZodOptional<z.ZodObject<{
|
|
7304
7278
|
base: z.ZodOptional<z.ZodObject<{
|
|
7305
7279
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7323,6 +7297,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7323
7297
|
}, {
|
|
7324
7298
|
stepCountIs?: number | undefined;
|
|
7325
7299
|
}>>>>;
|
|
7300
|
+
prompt: z.ZodString;
|
|
7301
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7326
7302
|
type: z.ZodLiteral<"internal">;
|
|
7327
7303
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7328
7304
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7335,18 +7311,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7335
7311
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7336
7312
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7337
7313
|
}, z.core.$strip>, z.ZodObject<{
|
|
7338
|
-
id: z.ZodString;
|
|
7339
7314
|
name: z.ZodString;
|
|
7340
|
-
|
|
7341
|
-
|
|
7315
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7316
|
+
id: z.ZodString;
|
|
7342
7317
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7343
7318
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7319
|
+
description: z.ZodString;
|
|
7320
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7344
7321
|
baseUrl: z.ZodString;
|
|
7345
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7346
7322
|
}, z.core.$strip>]>>;
|
|
7347
7323
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7348
|
-
id: z.ZodString;
|
|
7349
7324
|
name: z.ZodString;
|
|
7325
|
+
id: z.ZodString;
|
|
7350
7326
|
description: z.ZodString;
|
|
7351
7327
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7352
7328
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7387,20 +7363,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7387
7363
|
}, z.core.$strip>;
|
|
7388
7364
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7389
7365
|
name: z.ZodString;
|
|
7390
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7391
7366
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7392
7367
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7368
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7393
7369
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7394
7370
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7395
7371
|
id: z.ZodString;
|
|
7396
7372
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7397
|
-
id: z.ZodString;
|
|
7398
7373
|
name: z.ZodString;
|
|
7399
|
-
|
|
7400
|
-
prompt: z.ZodString;
|
|
7374
|
+
id: z.ZodString;
|
|
7401
7375
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7402
7376
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7403
|
-
|
|
7377
|
+
description: z.ZodString;
|
|
7404
7378
|
models: z.ZodOptional<z.ZodObject<{
|
|
7405
7379
|
base: z.ZodOptional<z.ZodObject<{
|
|
7406
7380
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7424,6 +7398,8 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7424
7398
|
}, {
|
|
7425
7399
|
stepCountIs?: number | undefined;
|
|
7426
7400
|
}>>>>;
|
|
7401
|
+
prompt: z.ZodString;
|
|
7402
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7427
7403
|
type: z.ZodLiteral<"internal">;
|
|
7428
7404
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7429
7405
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7436,19 +7412,19 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7436
7412
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7437
7413
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7438
7414
|
}, z.core.$strip>, z.ZodObject<{
|
|
7439
|
-
id: z.ZodString;
|
|
7440
7415
|
name: z.ZodString;
|
|
7441
|
-
|
|
7442
|
-
|
|
7416
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7417
|
+
id: z.ZodString;
|
|
7443
7418
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7444
7419
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7420
|
+
description: z.ZodString;
|
|
7421
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7445
7422
|
baseUrl: z.ZodString;
|
|
7446
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7447
7423
|
type: z.ZodLiteral<"external">;
|
|
7448
7424
|
}, z.core.$strip>], "type">>;
|
|
7449
7425
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7450
|
-
id: z.ZodString;
|
|
7451
7426
|
name: z.ZodString;
|
|
7427
|
+
id: z.ZodString;
|
|
7452
7428
|
description: z.ZodString;
|
|
7453
7429
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7454
7430
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7704,9 +7680,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7704
7680
|
}>;
|
|
7705
7681
|
}, undefined, undefined>;
|
|
7706
7682
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
7707
|
-
tenantId: z.ZodString;
|
|
7708
|
-
id: z.ZodString;
|
|
7709
7683
|
name: z.ZodString;
|
|
7684
|
+
id: z.ZodString;
|
|
7685
|
+
tenantId: z.ZodString;
|
|
7710
7686
|
description: z.ZodString;
|
|
7711
7687
|
models: z.ZodObject<{
|
|
7712
7688
|
base: z.ZodObject<{
|
|
@@ -7731,9 +7707,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7731
7707
|
in: {};
|
|
7732
7708
|
}>;
|
|
7733
7709
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
7734
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
7735
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7736
7710
|
name: z.ZodOptional<z.ZodString>;
|
|
7711
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7712
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
7737
7713
|
description: z.ZodOptional<z.ZodString>;
|
|
7738
7714
|
models: z.ZodOptional<z.ZodObject<{
|
|
7739
7715
|
base: z.ZodObject<{
|
|
@@ -7758,11 +7734,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7758
7734
|
in: {};
|
|
7759
7735
|
}>;
|
|
7760
7736
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
7761
|
-
id: z.ZodString;
|
|
7762
7737
|
name: z.ZodString;
|
|
7763
|
-
|
|
7738
|
+
id: z.ZodString;
|
|
7764
7739
|
createdAt: z.ZodString;
|
|
7765
7740
|
updatedAt: z.ZodString;
|
|
7741
|
+
description: z.ZodString;
|
|
7766
7742
|
models: z.ZodNullable<z.ZodType<{
|
|
7767
7743
|
base: {
|
|
7768
7744
|
model?: string | undefined;
|
|
@@ -7834,8 +7810,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7834
7810
|
in: {};
|
|
7835
7811
|
}>;
|
|
7836
7812
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
7837
|
-
id: z.ZodString;
|
|
7838
7813
|
name: z.ZodString;
|
|
7814
|
+
id: z.ZodString;
|
|
7839
7815
|
description: z.ZodString;
|
|
7840
7816
|
models: z.ZodObject<{
|
|
7841
7817
|
base: z.ZodObject<{
|
|
@@ -7860,8 +7836,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7860
7836
|
in: {};
|
|
7861
7837
|
}>;
|
|
7862
7838
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
7863
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7864
7839
|
name: z.ZodOptional<z.ZodString>;
|
|
7840
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7865
7841
|
description: z.ZodOptional<z.ZodString>;
|
|
7866
7842
|
models: z.ZodOptional<z.ZodObject<{
|
|
7867
7843
|
base: z.ZodObject<{
|
|
@@ -7886,8 +7862,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7886
7862
|
in: {};
|
|
7887
7863
|
}>;
|
|
7888
7864
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
7889
|
-
id: z.ZodString;
|
|
7890
7865
|
name: z.ZodString;
|
|
7866
|
+
id: z.ZodString;
|
|
7891
7867
|
description: z.ZodString;
|
|
7892
7868
|
models: z.ZodObject<{
|
|
7893
7869
|
base: z.ZodObject<{
|
|
@@ -7909,20 +7885,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7909
7885
|
}, z.core.$strip>>;
|
|
7910
7886
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7911
7887
|
name: z.ZodString;
|
|
7912
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7913
7888
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7914
7889
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7890
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7915
7891
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7916
7892
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7917
7893
|
id: z.ZodString;
|
|
7918
7894
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7919
|
-
id: z.ZodString;
|
|
7920
7895
|
name: z.ZodString;
|
|
7921
|
-
|
|
7922
|
-
prompt: z.ZodString;
|
|
7896
|
+
id: z.ZodString;
|
|
7923
7897
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7924
7898
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7925
|
-
|
|
7899
|
+
description: z.ZodString;
|
|
7926
7900
|
models: z.ZodOptional<z.ZodObject<{
|
|
7927
7901
|
base: z.ZodOptional<z.ZodObject<{
|
|
7928
7902
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7946,6 +7920,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7946
7920
|
}, {
|
|
7947
7921
|
stepCountIs?: number | undefined;
|
|
7948
7922
|
}>>>>;
|
|
7923
|
+
prompt: z.ZodString;
|
|
7924
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7949
7925
|
type: z.ZodLiteral<"internal">;
|
|
7950
7926
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7951
7927
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7958,19 +7934,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7958
7934
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7959
7935
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7960
7936
|
}, z.core.$strip>, z.ZodObject<{
|
|
7961
|
-
id: z.ZodString;
|
|
7962
7937
|
name: z.ZodString;
|
|
7963
|
-
|
|
7964
|
-
|
|
7938
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7939
|
+
id: z.ZodString;
|
|
7965
7940
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7966
7941
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7942
|
+
description: z.ZodString;
|
|
7943
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7967
7944
|
baseUrl: z.ZodString;
|
|
7968
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7969
7945
|
type: z.ZodLiteral<"external">;
|
|
7970
7946
|
}, z.core.$strip>], "type">>;
|
|
7971
7947
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7972
|
-
id: z.ZodString;
|
|
7973
7948
|
name: z.ZodString;
|
|
7949
|
+
id: z.ZodString;
|
|
7974
7950
|
description: z.ZodString;
|
|
7975
7951
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7976
7952
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -8010,8 +7986,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8010
7986
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8011
7987
|
}, z.core.$strip>>;
|
|
8012
7988
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8013
|
-
id: z.ZodString;
|
|
8014
7989
|
name: z.ZodString;
|
|
7990
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7991
|
+
id: z.ZodString;
|
|
7992
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7993
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7994
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7995
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8015
7996
|
config: z.ZodType<{
|
|
8016
7997
|
type: "mcp";
|
|
8017
7998
|
mcp: ToolMcpConfig;
|
|
@@ -8025,28 +8006,22 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8025
8006
|
type: "mcp";
|
|
8026
8007
|
mcp: ToolMcpConfig;
|
|
8027
8008
|
}>>;
|
|
8028
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8029
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8030
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8031
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8032
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8033
8009
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8034
8010
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8035
8011
|
}, z.core.$strip>>;
|
|
8036
8012
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8037
|
-
id: z.ZodString;
|
|
8038
8013
|
name: z.ZodString;
|
|
8039
|
-
|
|
8014
|
+
id: z.ZodString;
|
|
8040
8015
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8041
8016
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8017
|
+
description: z.ZodString;
|
|
8042
8018
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8043
8019
|
}, z.core.$strip>>>;
|
|
8044
8020
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8045
|
-
id: z.ZodString;
|
|
8046
8021
|
name: z.ZodString;
|
|
8022
|
+
id: z.ZodString;
|
|
8047
8023
|
description: z.ZodString;
|
|
8048
|
-
|
|
8049
|
-
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8024
|
+
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8050
8025
|
}, {
|
|
8051
8026
|
out: {};
|
|
8052
8027
|
in: {};
|
|
@@ -8068,10 +8043,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8068
8043
|
}, z.core.$strip>>;
|
|
8069
8044
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8070
8045
|
id: z.ZodString;
|
|
8071
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8072
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8073
8046
|
credentialStoreId: z.ZodString;
|
|
8074
8047
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8048
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8049
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8075
8050
|
type: z.ZodEnum<{
|
|
8076
8051
|
readonly memory: "memory";
|
|
8077
8052
|
readonly keychain: "keychain";
|