@inkeep/agents-core 0.14.3 → 0.14.5
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-KBRQN63H.js → chunk-AHSEMW6N.js} +5 -5
- package/dist/{chunk-AGEHLZUK.js → chunk-C4PFKKRE.js} +1 -1
- package/dist/{chunk-ZVLDWUCT.js → chunk-OWZRYYBR.js} +1 -1
- package/dist/client-exports.cjs +5 -5
- package/dist/client-exports.d.cts +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.cjs +5 -5
- 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 +61 -11
- package/dist/index.d.cts +262 -248
- package/dist/index.d.ts +262 -248
- package/dist/index.js +62 -12
- package/dist/{schema-DDUpvlcp.d.cts → schema-CFoAzEjh.d.ts} +20 -1
- package/dist/{schema-BB_Q_YNK.d.ts → schema-Cb-8k7aM.d.cts} +20 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-Cd0qsewS.d.cts → utility-POey8vOB.d.cts} +187 -178
- package/dist/{utility-Cd0qsewS.d.ts → utility-POey8vOB.d.ts} +187 -178
- package/dist/validation/index.cjs +5 -5
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -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,20 +2371,20 @@ 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>>>;
|
|
2377
|
+
graphId: z.ZodString;
|
|
2378
2378
|
status: 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>>>>;
|
|
2387
|
+
graphId: z.ZodString;
|
|
2388
2388
|
status: z.ZodString;
|
|
2389
2389
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
2390
2390
|
contextId: z.ZodString;
|
|
@@ -2392,10 +2392,10 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
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>>>>>>;
|
|
2398
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2399
2399
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2400
2400
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2401
2401
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -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";
|
|
@@ -6138,6 +6138,7 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6138
6138
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6139
6139
|
name: z.ZodString;
|
|
6140
6140
|
description: z.ZodString;
|
|
6141
|
+
graphId: z.ZodString;
|
|
6141
6142
|
projectId: z.ZodString;
|
|
6142
6143
|
tenantId: z.ZodString;
|
|
6143
6144
|
id: z.ZodString;
|
|
@@ -6147,51 +6148,56 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6147
6148
|
in: {};
|
|
6148
6149
|
}>;
|
|
6149
6150
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6150
|
-
tenantId: z.ZodString;
|
|
6151
|
-
projectId: z.ZodString;
|
|
6152
|
-
id: z.ZodString;
|
|
6153
6151
|
name: z.ZodString;
|
|
6152
|
+
id: z.ZodString;
|
|
6153
|
+
projectId: z.ZodString;
|
|
6154
|
+
tenantId: z.ZodString;
|
|
6154
6155
|
description: z.ZodString;
|
|
6155
6156
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6156
6157
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6158
|
+
graphId: z.ZodString;
|
|
6157
6159
|
}, {
|
|
6158
6160
|
out: {};
|
|
6159
6161
|
in: {};
|
|
6160
6162
|
}>;
|
|
6161
6163
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6162
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
6163
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6164
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6165
6164
|
name: z.ZodOptional<z.ZodString>;
|
|
6165
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6166
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6167
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
6166
6168
|
description: z.ZodOptional<z.ZodString>;
|
|
6167
6169
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6168
6170
|
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
|
+
graphId: z.ZodOptional<z.ZodString>;
|
|
6169
6172
|
}, {
|
|
6170
6173
|
out: {};
|
|
6171
6174
|
in: {};
|
|
6172
6175
|
}>;
|
|
6173
6176
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
6174
|
-
id: z.ZodString;
|
|
6175
6177
|
name: z.ZodString;
|
|
6176
|
-
|
|
6178
|
+
id: z.ZodString;
|
|
6177
6179
|
createdAt: z.ZodString;
|
|
6178
6180
|
updatedAt: z.ZodString;
|
|
6181
|
+
description: z.ZodString;
|
|
6179
6182
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6180
6183
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6184
|
+
graphId: z.ZodString;
|
|
6181
6185
|
}, z.core.$strip>;
|
|
6182
6186
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6183
|
-
id: z.ZodString;
|
|
6184
6187
|
name: z.ZodString;
|
|
6188
|
+
id: z.ZodString;
|
|
6185
6189
|
description: z.ZodString;
|
|
6186
6190
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6187
6191
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6192
|
+
graphId: z.ZodString;
|
|
6188
6193
|
}, z.core.$strip>;
|
|
6189
6194
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6190
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6191
6195
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6196
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6192
6197
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6193
6198
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodUnknown>>>;
|
|
6194
6199
|
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>>>>>>>;
|
|
6200
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6195
6201
|
}, z.core.$strip>;
|
|
6196
6202
|
declare const AgentToolRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6197
6203
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -6416,31 +6422,31 @@ declare const AgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
6416
6422
|
in: {};
|
|
6417
6423
|
}>;
|
|
6418
6424
|
declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
6425
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6419
6426
|
id: z.ZodString;
|
|
6420
6427
|
createdAt: z.ZodString;
|
|
6421
6428
|
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
6429
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6425
6430
|
agentId: z.ZodString;
|
|
6431
|
+
toolId: z.ZodString;
|
|
6426
6432
|
}, z.core.$strip>;
|
|
6427
6433
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6434
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6428
6435
|
id: z.ZodString;
|
|
6429
6436
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6430
6437
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6431
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6432
|
-
toolId: z.ZodString;
|
|
6433
6438
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6434
6439
|
agentId: z.ZodString;
|
|
6440
|
+
toolId: z.ZodString;
|
|
6435
6441
|
}, z.core.$strip>;
|
|
6436
6442
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6443
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6437
6444
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6438
6445
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6439
6446
|
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
6447
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6443
6448
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6449
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6444
6450
|
}, z.core.$strip>;
|
|
6445
6451
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6446
6452
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7154,12 +7160,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7154
7160
|
in: {};
|
|
7155
7161
|
}>;
|
|
7156
7162
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7157
|
-
id: z.ZodString;
|
|
7158
7163
|
type: z.ZodString;
|
|
7159
7164
|
name: z.ZodNullable<z.ZodString>;
|
|
7160
|
-
|
|
7165
|
+
id: z.ZodString;
|
|
7161
7166
|
createdAt: z.ZodString;
|
|
7162
7167
|
updatedAt: z.ZodString;
|
|
7168
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7163
7169
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7164
7170
|
contextId: z.ZodString;
|
|
7165
7171
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7172,12 +7178,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7172
7178
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7173
7179
|
}, z.core.$strip>;
|
|
7174
7180
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7175
|
-
id: z.ZodString;
|
|
7176
7181
|
type: z.ZodOptional<z.ZodString>;
|
|
7177
7182
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7178
|
-
|
|
7183
|
+
id: z.ZodString;
|
|
7179
7184
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7180
7185
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7186
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7181
7187
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7182
7188
|
contextId: z.ZodString;
|
|
7183
7189
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7190,12 +7196,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7190
7196
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7191
7197
|
}, z.core.$strip>;
|
|
7192
7198
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7193
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7194
7199
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7195
7200
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7196
|
-
|
|
7201
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7197
7202
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7198
7203
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7204
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7199
7205
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7200
7206
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7201
7207
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7238,13 +7244,11 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7238
7244
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7239
7245
|
}, z.core.$strip>;
|
|
7240
7246
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7241
|
-
id: z.ZodString;
|
|
7242
7247
|
name: z.ZodString;
|
|
7243
|
-
|
|
7244
|
-
prompt: z.ZodString;
|
|
7248
|
+
id: z.ZodString;
|
|
7245
7249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7246
7250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7247
|
-
|
|
7251
|
+
description: z.ZodString;
|
|
7248
7252
|
models: z.ZodOptional<z.ZodObject<{
|
|
7249
7253
|
base: z.ZodOptional<z.ZodObject<{
|
|
7250
7254
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7268,6 +7272,8 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7268
7272
|
}, {
|
|
7269
7273
|
stepCountIs?: number | undefined;
|
|
7270
7274
|
}>>>>;
|
|
7275
|
+
prompt: z.ZodString;
|
|
7276
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7271
7277
|
type: z.ZodLiteral<"internal">;
|
|
7272
7278
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7273
7279
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7282,20 +7288,18 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7282
7288
|
}, z.core.$strip>;
|
|
7283
7289
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7284
7290
|
name: z.ZodString;
|
|
7285
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7286
7291
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7287
7292
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7293
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7288
7294
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7289
7295
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7290
7296
|
id: z.ZodString;
|
|
7291
7297
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7292
|
-
id: z.ZodString;
|
|
7293
7298
|
name: z.ZodString;
|
|
7294
|
-
|
|
7295
|
-
prompt: z.ZodString;
|
|
7299
|
+
id: z.ZodString;
|
|
7296
7300
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7297
7301
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7298
|
-
|
|
7302
|
+
description: z.ZodString;
|
|
7299
7303
|
models: z.ZodOptional<z.ZodObject<{
|
|
7300
7304
|
base: z.ZodOptional<z.ZodObject<{
|
|
7301
7305
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7319,6 +7323,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7319
7323
|
}, {
|
|
7320
7324
|
stepCountIs?: number | undefined;
|
|
7321
7325
|
}>>>>;
|
|
7326
|
+
prompt: z.ZodString;
|
|
7327
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7322
7328
|
type: z.ZodLiteral<"internal">;
|
|
7323
7329
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7324
7330
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7331,21 +7337,22 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7331
7337
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7332
7338
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7333
7339
|
}, z.core.$strip>, z.ZodObject<{
|
|
7334
|
-
id: z.ZodString;
|
|
7335
7340
|
name: z.ZodString;
|
|
7336
|
-
|
|
7337
|
-
|
|
7341
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7342
|
+
id: z.ZodString;
|
|
7338
7343
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7339
7344
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7345
|
+
description: z.ZodString;
|
|
7346
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7340
7347
|
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
7348
|
}, z.core.$strip>]>>;
|
|
7343
7349
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7344
|
-
id: z.ZodString;
|
|
7345
7350
|
name: z.ZodString;
|
|
7351
|
+
id: z.ZodString;
|
|
7346
7352
|
description: z.ZodString;
|
|
7347
7353
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7348
7354
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
7355
|
+
graphId: z.ZodString;
|
|
7349
7356
|
}, z.core.$strip>>;
|
|
7350
7357
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7351
7358
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7383,20 +7390,18 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7383
7390
|
}, z.core.$strip>;
|
|
7384
7391
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7385
7392
|
name: z.ZodString;
|
|
7386
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7387
7393
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7388
7394
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7395
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7389
7396
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7390
7397
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7391
7398
|
id: z.ZodString;
|
|
7392
7399
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7393
|
-
id: z.ZodString;
|
|
7394
7400
|
name: z.ZodString;
|
|
7395
|
-
|
|
7396
|
-
prompt: z.ZodString;
|
|
7401
|
+
id: z.ZodString;
|
|
7397
7402
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7398
7403
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7399
|
-
|
|
7404
|
+
description: z.ZodString;
|
|
7400
7405
|
models: z.ZodOptional<z.ZodObject<{
|
|
7401
7406
|
base: z.ZodOptional<z.ZodObject<{
|
|
7402
7407
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7420,6 +7425,8 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7420
7425
|
}, {
|
|
7421
7426
|
stepCountIs?: number | undefined;
|
|
7422
7427
|
}>>>>;
|
|
7428
|
+
prompt: z.ZodString;
|
|
7429
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7423
7430
|
type: z.ZodLiteral<"internal">;
|
|
7424
7431
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7425
7432
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7432,22 +7439,23 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7432
7439
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7433
7440
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7434
7441
|
}, z.core.$strip>, z.ZodObject<{
|
|
7435
|
-
id: z.ZodString;
|
|
7436
7442
|
name: z.ZodString;
|
|
7437
|
-
|
|
7438
|
-
|
|
7443
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7444
|
+
id: z.ZodString;
|
|
7439
7445
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7440
7446
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7447
|
+
description: z.ZodString;
|
|
7448
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7441
7449
|
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
7450
|
type: z.ZodLiteral<"external">;
|
|
7444
7451
|
}, z.core.$strip>], "type">>;
|
|
7445
7452
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7446
|
-
id: z.ZodString;
|
|
7447
7453
|
name: z.ZodString;
|
|
7454
|
+
id: z.ZodString;
|
|
7448
7455
|
description: z.ZodString;
|
|
7449
7456
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7450
7457
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
7458
|
+
graphId: z.ZodString;
|
|
7451
7459
|
}, z.core.$strip>>;
|
|
7452
7460
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7453
7461
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7700,9 +7708,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7700
7708
|
}>;
|
|
7701
7709
|
}, undefined, undefined>;
|
|
7702
7710
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
7703
|
-
tenantId: z.ZodString;
|
|
7704
|
-
id: z.ZodString;
|
|
7705
7711
|
name: z.ZodString;
|
|
7712
|
+
id: z.ZodString;
|
|
7713
|
+
tenantId: z.ZodString;
|
|
7706
7714
|
description: z.ZodString;
|
|
7707
7715
|
models: z.ZodObject<{
|
|
7708
7716
|
base: z.ZodObject<{
|
|
@@ -7727,9 +7735,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7727
7735
|
in: {};
|
|
7728
7736
|
}>;
|
|
7729
7737
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
7730
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
7731
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7732
7738
|
name: z.ZodOptional<z.ZodString>;
|
|
7739
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7740
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
7733
7741
|
description: z.ZodOptional<z.ZodString>;
|
|
7734
7742
|
models: z.ZodOptional<z.ZodObject<{
|
|
7735
7743
|
base: z.ZodObject<{
|
|
@@ -7754,11 +7762,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7754
7762
|
in: {};
|
|
7755
7763
|
}>;
|
|
7756
7764
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
7757
|
-
id: z.ZodString;
|
|
7758
7765
|
name: z.ZodString;
|
|
7759
|
-
|
|
7766
|
+
id: z.ZodString;
|
|
7760
7767
|
createdAt: z.ZodString;
|
|
7761
7768
|
updatedAt: z.ZodString;
|
|
7769
|
+
description: z.ZodString;
|
|
7762
7770
|
models: z.ZodNullable<z.ZodType<{
|
|
7763
7771
|
base: {
|
|
7764
7772
|
model?: string | undefined;
|
|
@@ -7830,8 +7838,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7830
7838
|
in: {};
|
|
7831
7839
|
}>;
|
|
7832
7840
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
7833
|
-
id: z.ZodString;
|
|
7834
7841
|
name: z.ZodString;
|
|
7842
|
+
id: z.ZodString;
|
|
7835
7843
|
description: z.ZodString;
|
|
7836
7844
|
models: z.ZodObject<{
|
|
7837
7845
|
base: z.ZodObject<{
|
|
@@ -7856,8 +7864,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7856
7864
|
in: {};
|
|
7857
7865
|
}>;
|
|
7858
7866
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
7859
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7860
7867
|
name: z.ZodOptional<z.ZodString>;
|
|
7868
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7861
7869
|
description: z.ZodOptional<z.ZodString>;
|
|
7862
7870
|
models: z.ZodOptional<z.ZodObject<{
|
|
7863
7871
|
base: z.ZodObject<{
|
|
@@ -7882,8 +7890,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7882
7890
|
in: {};
|
|
7883
7891
|
}>;
|
|
7884
7892
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
7885
|
-
id: z.ZodString;
|
|
7886
7893
|
name: z.ZodString;
|
|
7894
|
+
id: z.ZodString;
|
|
7887
7895
|
description: z.ZodString;
|
|
7888
7896
|
models: z.ZodObject<{
|
|
7889
7897
|
base: z.ZodObject<{
|
|
@@ -7905,20 +7913,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7905
7913
|
}, z.core.$strip>>;
|
|
7906
7914
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7907
7915
|
name: z.ZodString;
|
|
7908
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7909
7916
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7910
7917
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7918
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7911
7919
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7912
7920
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7913
7921
|
id: z.ZodString;
|
|
7914
7922
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7915
|
-
id: z.ZodString;
|
|
7916
7923
|
name: z.ZodString;
|
|
7917
|
-
|
|
7918
|
-
prompt: z.ZodString;
|
|
7924
|
+
id: z.ZodString;
|
|
7919
7925
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7920
7926
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7921
|
-
|
|
7927
|
+
description: z.ZodString;
|
|
7922
7928
|
models: z.ZodOptional<z.ZodObject<{
|
|
7923
7929
|
base: z.ZodOptional<z.ZodObject<{
|
|
7924
7930
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7942,6 +7948,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7942
7948
|
}, {
|
|
7943
7949
|
stepCountIs?: number | undefined;
|
|
7944
7950
|
}>>>>;
|
|
7951
|
+
prompt: z.ZodString;
|
|
7952
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7945
7953
|
type: z.ZodLiteral<"internal">;
|
|
7946
7954
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7947
7955
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7954,22 +7962,23 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7954
7962
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7955
7963
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7956
7964
|
}, z.core.$strip>, z.ZodObject<{
|
|
7957
|
-
id: z.ZodString;
|
|
7958
7965
|
name: z.ZodString;
|
|
7959
|
-
|
|
7960
|
-
|
|
7966
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7967
|
+
id: z.ZodString;
|
|
7961
7968
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7962
7969
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7970
|
+
description: z.ZodString;
|
|
7971
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7963
7972
|
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
7973
|
type: z.ZodLiteral<"external">;
|
|
7966
7974
|
}, z.core.$strip>], "type">>;
|
|
7967
7975
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7968
|
-
id: z.ZodString;
|
|
7969
7976
|
name: z.ZodString;
|
|
7977
|
+
id: z.ZodString;
|
|
7970
7978
|
description: z.ZodString;
|
|
7971
7979
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7972
7980
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
7981
|
+
graphId: z.ZodString;
|
|
7973
7982
|
}, z.core.$strip>>;
|
|
7974
7983
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7975
7984
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8006,8 +8015,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8006
8015
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8007
8016
|
}, z.core.$strip>>;
|
|
8008
8017
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8009
|
-
id: z.ZodString;
|
|
8010
8018
|
name: z.ZodString;
|
|
8019
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8020
|
+
id: z.ZodString;
|
|
8021
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8022
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8023
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8024
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8011
8025
|
config: z.ZodType<{
|
|
8012
8026
|
type: "mcp";
|
|
8013
8027
|
mcp: ToolMcpConfig;
|
|
@@ -8021,25 +8035,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8021
8035
|
type: "mcp";
|
|
8022
8036
|
mcp: ToolMcpConfig;
|
|
8023
8037
|
}>>;
|
|
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
8038
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8030
8039
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8031
8040
|
}, z.core.$strip>>;
|
|
8032
8041
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8033
|
-
id: z.ZodString;
|
|
8034
8042
|
name: z.ZodString;
|
|
8035
|
-
|
|
8043
|
+
id: z.ZodString;
|
|
8036
8044
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8037
8045
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8046
|
+
description: z.ZodString;
|
|
8038
8047
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8039
8048
|
}, z.core.$strip>>>;
|
|
8040
8049
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8041
|
-
id: z.ZodString;
|
|
8042
8050
|
name: z.ZodString;
|
|
8051
|
+
id: z.ZodString;
|
|
8043
8052
|
description: z.ZodString;
|
|
8044
8053
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8045
8054
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -8064,10 +8073,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8064
8073
|
}, z.core.$strip>>;
|
|
8065
8074
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8066
8075
|
id: z.ZodString;
|
|
8067
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8068
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8069
8076
|
credentialStoreId: z.ZodString;
|
|
8070
8077
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8078
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8079
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8071
8080
|
type: z.ZodEnum<{
|
|
8072
8081
|
readonly memory: "memory";
|
|
8073
8082
|
readonly keychain: "keychain";
|