@inkeep/agents-core 0.14.5 → 0.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client-exports.d.cts +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +12 -7
- package/dist/index.d.cts +272 -256
- package/dist/index.d.ts +272 -256
- package/dist/index.js +12 -8
- package/dist/{schema-CFoAzEjh.d.ts → schema-BUMYiuQO.d.cts} +1 -1
- package/dist/{schema-Cb-8k7aM.d.cts → schema-iVTOUsW8.d.ts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/{utility-POey8vOB.d.cts → utility-COYxGpY5.d.cts} +186 -186
- package/dist/{utility-POey8vOB.d.ts → utility-COYxGpY5.d.ts} +186 -186
|
@@ -764,11 +764,13 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
764
764
|
in: {};
|
|
765
765
|
}>;
|
|
766
766
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
767
|
-
name: z.ZodString;
|
|
768
767
|
id: z.ZodString;
|
|
768
|
+
name: z.ZodString;
|
|
769
|
+
description: z.ZodString;
|
|
770
|
+
prompt: z.ZodString;
|
|
769
771
|
createdAt: z.ZodString;
|
|
770
772
|
updatedAt: z.ZodString;
|
|
771
|
-
|
|
773
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
772
774
|
models: z.ZodNullable<z.ZodType<{
|
|
773
775
|
base?: {
|
|
774
776
|
model?: string | undefined;
|
|
@@ -831,15 +833,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
831
833
|
}, {
|
|
832
834
|
stepCountIs?: number | undefined;
|
|
833
835
|
}>>>;
|
|
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
|
-
name: z.ZodString;
|
|
839
838
|
id: z.ZodString;
|
|
839
|
+
name: z.ZodString;
|
|
840
|
+
description: z.ZodString;
|
|
841
|
+
prompt: z.ZodString;
|
|
840
842
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
841
843
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
842
|
-
|
|
844
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
843
845
|
models: z.ZodOptional<z.ZodObject<{
|
|
844
846
|
base: z.ZodOptional<z.ZodObject<{
|
|
845
847
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -863,15 +865,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
863
865
|
}, {
|
|
864
866
|
stepCountIs?: number | undefined;
|
|
865
867
|
}>>>>;
|
|
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
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
871
870
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
871
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
873
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
874
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
873
875
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
874
|
-
|
|
876
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
875
877
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
876
878
|
base: z.ZodOptional<z.ZodObject<{
|
|
877
879
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -895,8 +897,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
895
897
|
}, {
|
|
896
898
|
stepCountIs?: number | undefined;
|
|
897
899
|
}>>>>>>;
|
|
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;
|
|
1178
1179
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1179
1180
|
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,11 +1759,12 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1759
1759
|
in: {};
|
|
1760
1760
|
}>;
|
|
1761
1761
|
declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
1762
|
-
name: z.ZodString;
|
|
1763
1762
|
id: z.ZodString;
|
|
1763
|
+
name: z.ZodString;
|
|
1764
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1764
1765
|
createdAt: z.ZodString;
|
|
1765
1766
|
updatedAt: z.ZodString;
|
|
1766
|
-
|
|
1767
|
+
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
1767
1768
|
models: z.ZodNullable<z.ZodType<{
|
|
1768
1769
|
base?: {
|
|
1769
1770
|
model?: string | undefined;
|
|
@@ -1826,7 +1827,6 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1826
1827
|
}, {
|
|
1827
1828
|
transferCountIs?: number | undefined;
|
|
1828
1829
|
}>>>;
|
|
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,9 +1889,10 @@ 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>>;
|
|
1892
1893
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1893
1894
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1894
|
-
|
|
1895
|
+
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1895
1896
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1896
1897
|
base?: {
|
|
1897
1898
|
model?: string | undefined;
|
|
@@ -1954,7 +1955,6 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1954
1955
|
}, {
|
|
1955
1956
|
transferCountIs?: number | undefined;
|
|
1956
1957
|
}>>>>;
|
|
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,11 +2017,12 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
2017
2017
|
id: z.ZodString;
|
|
2018
2018
|
}, z.core.$strip>;
|
|
2019
2019
|
declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
2020
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2021
2020
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2021
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2022
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2022
2023
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2023
2024
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2024
|
-
|
|
2025
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2025
2026
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2026
2027
|
base?: {
|
|
2027
2028
|
model?: string | undefined;
|
|
@@ -2084,7 +2085,6 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2084
2085
|
}, {
|
|
2085
2086
|
transferCountIs?: number | undefined;
|
|
2086
2087
|
}>>>>>>;
|
|
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;
|
|
2374
2375
|
createdAt: z.ZodString;
|
|
2375
2376
|
updatedAt: z.ZodString;
|
|
2376
2377
|
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;
|
|
2384
2385
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2385
2386
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2386
2387
|
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>>;
|
|
2395
2396
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2396
2397
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2397
2398
|
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>;
|
|
3132
3133
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3133
3134
|
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>>>;
|
|
3143
3144
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3144
3145
|
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>>;
|
|
4156
4157
|
createdAt: z.ZodString;
|
|
4157
4158
|
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>>;
|
|
4169
4170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4170
4171
|
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>>>>;
|
|
4182
4183
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4183
4184
|
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
|
-
name: z.ZodString;
|
|
4362
|
-
id: z.ZodString;
|
|
4363
|
-
projectId: z.ZodString;
|
|
4364
4361
|
tenantId: z.ZodString;
|
|
4362
|
+
projectId: z.ZodString;
|
|
4363
|
+
id: z.ZodString;
|
|
4364
|
+
name: 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
|
-
name: z.ZodString;
|
|
4386
4385
|
id: z.ZodString;
|
|
4386
|
+
name: z.ZodString;
|
|
4387
|
+
description: z.ZodString;
|
|
4387
4388
|
createdAt: z.ZodString;
|
|
4388
4389
|
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
|
-
name: z.ZodString;
|
|
4394
4393
|
id: z.ZodString;
|
|
4394
|
+
name: z.ZodString;
|
|
4395
|
+
description: z.ZodString;
|
|
4395
4396
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4396
4397
|
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
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4402
4401
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4402
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4403
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4403
4404
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4404
4405
|
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
|
-
name: z.ZodString;
|
|
4913
4912
|
id: z.ZodString;
|
|
4913
|
+
name: z.ZodString;
|
|
4914
|
+
description: z.ZodString;
|
|
4914
4915
|
createdAt: z.ZodString;
|
|
4915
4916
|
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
|
-
name: z.ZodString;
|
|
4922
4921
|
id: z.ZodString;
|
|
4922
|
+
name: 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
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4932
4931
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4932
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4933
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4933
4934
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4934
4935
|
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,41 +5164,43 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5164
5164
|
in: {};
|
|
5165
5165
|
}>;
|
|
5166
5166
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5167
|
-
name: z.ZodString;
|
|
5168
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5169
5167
|
id: z.ZodString;
|
|
5170
|
-
|
|
5171
|
-
updatedAt: z.ZodString;
|
|
5168
|
+
name: z.ZodString;
|
|
5172
5169
|
description: z.ZodString;
|
|
5173
5170
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5171
|
+
createdAt: z.ZodString;
|
|
5172
|
+
updatedAt: z.ZodString;
|
|
5174
5173
|
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
|
-
name: z.ZodString;
|
|
5178
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5179
5177
|
id: z.ZodString;
|
|
5180
|
-
|
|
5181
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5178
|
+
name: z.ZodString;
|
|
5182
5179
|
description: z.ZodString;
|
|
5183
5180
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5181
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5184
5183
|
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
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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
5187
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5190
|
-
|
|
5191
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5188
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5192
5189
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5193
5190
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5191
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5192
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5194
5193
|
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
|
-
name: z.ZodString;
|
|
5198
5197
|
id: z.ZodString;
|
|
5198
|
+
name: z.ZodString;
|
|
5199
|
+
description: z.ZodString;
|
|
5200
|
+
prompt: z.ZodString;
|
|
5199
5201
|
createdAt: z.ZodString;
|
|
5200
5202
|
updatedAt: z.ZodString;
|
|
5201
|
-
|
|
5203
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5202
5204
|
models: z.ZodNullable<z.ZodType<{
|
|
5203
5205
|
base?: {
|
|
5204
5206
|
model?: string | undefined;
|
|
@@ -5261,18 +5263,16 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5261
5263
|
}, {
|
|
5262
5264
|
stepCountIs?: number | undefined;
|
|
5263
5265
|
}>>>;
|
|
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
|
-
name: z.ZodString;
|
|
5269
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5270
5268
|
id: z.ZodString;
|
|
5271
|
-
|
|
5272
|
-
updatedAt: z.ZodString;
|
|
5269
|
+
name: z.ZodString;
|
|
5273
5270
|
description: z.ZodString;
|
|
5274
5271
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5272
|
+
createdAt: z.ZodString;
|
|
5273
|
+
updatedAt: z.ZodString;
|
|
5275
5274
|
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>>;
|
|
5528
5527
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5529
5528
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5530
5529
|
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
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5537
5536
|
id: z.ZodString;
|
|
5538
|
-
|
|
5539
|
-
updatedAt: z.ZodString;
|
|
5537
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5540
5538
|
graphId: z.ZodString;
|
|
5541
5539
|
publicId: z.ZodString;
|
|
5542
5540
|
keyPrefix: z.ZodString;
|
|
5543
5541
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5544
5542
|
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
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5553
5552
|
id: z.ZodString;
|
|
5554
|
-
|
|
5555
|
-
updatedAt: z.ZodString;
|
|
5553
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5556
5554
|
graphId: z.ZodString;
|
|
5557
5555
|
publicId: z.ZodString;
|
|
5558
5556
|
keyPrefix: z.ZodString;
|
|
5559
5557
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5560
5558
|
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
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5571
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5572
5570
|
graphId: z.ZodString;
|
|
5573
5571
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5572
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5573
|
+
updatedAt: z.ZodOptional<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>>;
|
|
5581
5580
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5582
5581
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5583
5582
|
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
|
-
credentialStoreId: z.ZodString;
|
|
5627
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5628
5626
|
createdAt: z.ZodString;
|
|
5629
5627
|
updatedAt: z.ZodString;
|
|
5628
|
+
credentialStoreId: z.ZodString;
|
|
5629
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
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
|
-
credentialStoreId: z.ZodString;
|
|
5875
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5876
5874
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5877
5875
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5876
|
+
credentialStoreId: z.ZodString;
|
|
5877
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
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
|
-
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5887
|
-
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
5888
5886
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5889
5887
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5888
|
+
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5889
|
+
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
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;
|
|
5938
5939
|
name: z.ZodString;
|
|
5939
5940
|
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
|
-
credentialStoreId: z.ZodString;
|
|
5971
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5972
5970
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5973
5971
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5972
|
+
credentialStoreId: z.ZodString;
|
|
5973
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5974
5974
|
type: z.ZodEnum<{
|
|
5975
5975
|
readonly memory: "memory";
|
|
5976
5976
|
readonly keychain: "keychain";
|
|
@@ -6011,13 +6011,8 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6011
6011
|
in: {};
|
|
6012
6012
|
}>;
|
|
6013
6013
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
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
6014
|
id: z.ZodString;
|
|
6017
|
-
|
|
6018
|
-
updatedAt: z.ZodString;
|
|
6019
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6020
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6015
|
+
name: z.ZodString;
|
|
6021
6016
|
config: z.ZodType<{
|
|
6022
6017
|
type: "mcp";
|
|
6023
6018
|
mcp: ToolMcpConfig;
|
|
@@ -6031,17 +6026,17 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6031
6026
|
type: "mcp";
|
|
6032
6027
|
mcp: ToolMcpConfig;
|
|
6033
6028
|
}>>;
|
|
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
|
-
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
6038
|
id: z.ZodString;
|
|
6041
|
-
|
|
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>>>>;
|
|
6039
|
+
name: z.ZodString;
|
|
6045
6040
|
config: z.ZodType<{
|
|
6046
6041
|
type: "mcp";
|
|
6047
6042
|
mcp: ToolMcpConfig;
|
|
@@ -6055,17 +6050,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6055
6050
|
type: "mcp";
|
|
6056
6051
|
mcp: ToolMcpConfig;
|
|
6057
6052
|
}>>;
|
|
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
|
-
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
6062
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6065
|
-
|
|
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>>>>>>;
|
|
6063
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6069
6064
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6070
6065
|
type: "mcp";
|
|
6071
6066
|
mcp: ToolMcpConfig;
|
|
@@ -6079,6 +6074,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6079
6074
|
type: "mcp";
|
|
6080
6075
|
mcp: ToolMcpConfig;
|
|
6081
6076
|
}>>>>;
|
|
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
|
-
credentialStoreId: z.ZodString;
|
|
6125
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6126
6124
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6127
6125
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6126
|
+
credentialStoreId: z.ZodString;
|
|
6127
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6128
6128
|
type: z.ZodEnum<{
|
|
6129
6129
|
readonly memory: "memory";
|
|
6130
6130
|
readonly keychain: "keychain";
|
|
@@ -6148,56 +6148,56 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6148
6148
|
in: {};
|
|
6149
6149
|
}>;
|
|
6150
6150
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6151
|
-
name: z.ZodString;
|
|
6152
|
-
id: z.ZodString;
|
|
6153
|
-
projectId: z.ZodString;
|
|
6154
6151
|
tenantId: z.ZodString;
|
|
6152
|
+
projectId: z.ZodString;
|
|
6153
|
+
id: z.ZodString;
|
|
6154
|
+
name: z.ZodString;
|
|
6155
6155
|
description: z.ZodString;
|
|
6156
|
+
graphId: z.ZodString;
|
|
6156
6157
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6157
6158
|
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;
|
|
6159
6159
|
}, {
|
|
6160
6160
|
out: {};
|
|
6161
6161
|
in: {};
|
|
6162
6162
|
}>;
|
|
6163
6163
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6164
|
-
name: z.ZodOptional<z.ZodString>;
|
|
6165
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6166
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6167
6164
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6165
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6166
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6167
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6168
6168
|
description: z.ZodOptional<z.ZodString>;
|
|
6169
|
+
graphId: z.ZodOptional<z.ZodString>;
|
|
6169
6170
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6170
6171
|
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>;
|
|
6172
6172
|
}, {
|
|
6173
6173
|
out: {};
|
|
6174
6174
|
in: {};
|
|
6175
6175
|
}>;
|
|
6176
6176
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
6177
|
-
name: z.ZodString;
|
|
6178
6177
|
id: z.ZodString;
|
|
6178
|
+
name: z.ZodString;
|
|
6179
|
+
description: z.ZodString;
|
|
6180
|
+
graphId: z.ZodString;
|
|
6179
6181
|
createdAt: z.ZodString;
|
|
6180
6182
|
updatedAt: z.ZodString;
|
|
6181
|
-
description: z.ZodString;
|
|
6182
6183
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6183
6184
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6184
|
-
graphId: z.ZodString;
|
|
6185
6185
|
}, z.core.$strip>;
|
|
6186
6186
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6187
|
-
name: z.ZodString;
|
|
6188
6187
|
id: z.ZodString;
|
|
6188
|
+
name: z.ZodString;
|
|
6189
6189
|
description: z.ZodString;
|
|
6190
|
+
graphId: z.ZodString;
|
|
6190
6191
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6191
6192
|
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;
|
|
6193
6193
|
}, z.core.$strip>;
|
|
6194
6194
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6195
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6196
6195
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6196
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6197
6197
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6198
|
+
graphId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6198
6199
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodUnknown>>>;
|
|
6199
6200
|
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>>;
|
|
6201
6201
|
}, z.core.$strip>;
|
|
6202
6202
|
declare const AgentToolRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6203
6203
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -6422,31 +6422,31 @@ declare const AgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
6422
6422
|
in: {};
|
|
6423
6423
|
}>;
|
|
6424
6424
|
declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
6425
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6426
6425
|
id: z.ZodString;
|
|
6427
6426
|
createdAt: z.ZodString;
|
|
6428
6427
|
updatedAt: z.ZodString;
|
|
6428
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6429
|
+
toolId: z.ZodString;
|
|
6429
6430
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6430
6431
|
agentId: z.ZodString;
|
|
6431
|
-
toolId: z.ZodString;
|
|
6432
6432
|
}, z.core.$strip>;
|
|
6433
6433
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6434
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6435
6434
|
id: z.ZodString;
|
|
6436
6435
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6437
6436
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6437
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6438
|
+
toolId: z.ZodString;
|
|
6438
6439
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6439
6440
|
agentId: z.ZodString;
|
|
6440
|
-
toolId: z.ZodString;
|
|
6441
6441
|
}, z.core.$strip>;
|
|
6442
6442
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6443
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6444
6443
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6445
6444
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6446
6445
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6446
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6447
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6447
6448
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6448
6449
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6449
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6450
6450
|
}, z.core.$strip>;
|
|
6451
6451
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6452
6452
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7160,12 +7160,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7160
7160
|
in: {};
|
|
7161
7161
|
}>;
|
|
7162
7162
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7163
|
+
id: z.ZodString;
|
|
7163
7164
|
type: z.ZodString;
|
|
7164
7165
|
name: z.ZodNullable<z.ZodString>;
|
|
7165
|
-
|
|
7166
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7166
7167
|
createdAt: z.ZodString;
|
|
7167
7168
|
updatedAt: z.ZodString;
|
|
7168
|
-
description: z.ZodNullable<z.ZodString>;
|
|
7169
7169
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7170
7170
|
contextId: z.ZodString;
|
|
7171
7171
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -7178,12 +7178,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7178
7178
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
7179
7179
|
}, z.core.$strip>;
|
|
7180
7180
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7181
|
+
id: z.ZodString;
|
|
7181
7182
|
type: z.ZodOptional<z.ZodString>;
|
|
7182
7183
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7183
|
-
|
|
7184
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7184
7185
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7185
7186
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7186
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7187
7187
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7188
7188
|
contextId: z.ZodString;
|
|
7189
7189
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7196,12 +7196,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7196
7196
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7197
7197
|
}, z.core.$strip>;
|
|
7198
7198
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7199
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7199
7200
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7200
7201
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7201
|
-
|
|
7202
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7202
7203
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7203
7204
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7204
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7205
7205
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7206
7206
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7207
7207
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7244,11 +7244,13 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7244
7244
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7245
7245
|
}, z.core.$strip>;
|
|
7246
7246
|
declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
7247
|
-
name: z.ZodString;
|
|
7248
7247
|
id: z.ZodString;
|
|
7248
|
+
name: z.ZodString;
|
|
7249
|
+
description: z.ZodString;
|
|
7250
|
+
prompt: z.ZodString;
|
|
7249
7251
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7250
7252
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7251
|
-
|
|
7253
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7252
7254
|
models: z.ZodOptional<z.ZodObject<{
|
|
7253
7255
|
base: z.ZodOptional<z.ZodObject<{
|
|
7254
7256
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7272,8 +7274,6 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7272
7274
|
}, {
|
|
7273
7275
|
stepCountIs?: number | undefined;
|
|
7274
7276
|
}>>>>;
|
|
7275
|
-
prompt: z.ZodString;
|
|
7276
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7277
7277
|
type: z.ZodLiteral<"internal">;
|
|
7278
7278
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7279
7279
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7288,18 +7288,20 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7288
7288
|
}, z.core.$strip>;
|
|
7289
7289
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
7290
7290
|
name: z.ZodString;
|
|
7291
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7291
7292
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7292
7293
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7293
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7294
7294
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7295
7295
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7296
7296
|
id: z.ZodString;
|
|
7297
7297
|
agents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
7298
|
-
name: z.ZodString;
|
|
7299
7298
|
id: z.ZodString;
|
|
7299
|
+
name: z.ZodString;
|
|
7300
|
+
description: z.ZodString;
|
|
7301
|
+
prompt: z.ZodString;
|
|
7300
7302
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7301
7303
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7302
|
-
|
|
7304
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7303
7305
|
models: z.ZodOptional<z.ZodObject<{
|
|
7304
7306
|
base: z.ZodOptional<z.ZodObject<{
|
|
7305
7307
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7323,8 +7325,6 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7323
7325
|
}, {
|
|
7324
7326
|
stepCountIs?: number | undefined;
|
|
7325
7327
|
}>>>>;
|
|
7326
|
-
prompt: z.ZodString;
|
|
7327
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7328
7328
|
type: z.ZodLiteral<"internal">;
|
|
7329
7329
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7330
7330
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7337,22 +7337,22 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7337
7337
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7338
7338
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7339
7339
|
}, z.core.$strip>, z.ZodObject<{
|
|
7340
|
-
name: 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
7340
|
id: z.ZodString;
|
|
7343
|
-
|
|
7344
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7341
|
+
name: z.ZodString;
|
|
7345
7342
|
description: z.ZodString;
|
|
7346
7343
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7344
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7345
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7347
7346
|
baseUrl: z.ZodString;
|
|
7347
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7348
7348
|
}, z.core.$strip>]>>;
|
|
7349
7349
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7350
|
-
name: z.ZodString;
|
|
7351
7350
|
id: z.ZodString;
|
|
7351
|
+
name: z.ZodString;
|
|
7352
7352
|
description: z.ZodString;
|
|
7353
|
+
graphId: z.ZodString;
|
|
7353
7354
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7354
7355
|
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;
|
|
7356
7356
|
}, z.core.$strip>>;
|
|
7357
7357
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7358
7358
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7390,18 +7390,20 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7390
7390
|
}, z.core.$strip>;
|
|
7391
7391
|
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7392
7392
|
name: z.ZodString;
|
|
7393
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7393
7394
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7394
7395
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7395
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7396
7396
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7397
7397
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7398
7398
|
id: z.ZodString;
|
|
7399
7399
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7400
|
-
name: z.ZodString;
|
|
7401
7400
|
id: z.ZodString;
|
|
7401
|
+
name: z.ZodString;
|
|
7402
|
+
description: z.ZodString;
|
|
7403
|
+
prompt: z.ZodString;
|
|
7402
7404
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7403
7405
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7404
|
-
|
|
7406
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7405
7407
|
models: z.ZodOptional<z.ZodObject<{
|
|
7406
7408
|
base: z.ZodOptional<z.ZodObject<{
|
|
7407
7409
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7425,8 +7427,6 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7425
7427
|
}, {
|
|
7426
7428
|
stepCountIs?: number | undefined;
|
|
7427
7429
|
}>>>>;
|
|
7428
|
-
prompt: z.ZodString;
|
|
7429
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7430
7430
|
type: z.ZodLiteral<"internal">;
|
|
7431
7431
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7432
7432
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7439,23 +7439,23 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7439
7439
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7440
7440
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7441
7441
|
}, z.core.$strip>, z.ZodObject<{
|
|
7442
|
-
name: z.ZodString;
|
|
7443
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7444
7442
|
id: z.ZodString;
|
|
7445
|
-
|
|
7446
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7443
|
+
name: z.ZodString;
|
|
7447
7444
|
description: z.ZodString;
|
|
7448
7445
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7446
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7447
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7449
7448
|
baseUrl: z.ZodString;
|
|
7449
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7450
7450
|
type: z.ZodLiteral<"external">;
|
|
7451
7451
|
}, z.core.$strip>], "type">>;
|
|
7452
7452
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7453
|
-
name: z.ZodString;
|
|
7454
7453
|
id: z.ZodString;
|
|
7454
|
+
name: z.ZodString;
|
|
7455
7455
|
description: z.ZodString;
|
|
7456
|
+
graphId: z.ZodString;
|
|
7456
7457
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7457
7458
|
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;
|
|
7459
7459
|
}, z.core.$strip>>;
|
|
7460
7460
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7461
7461
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7708,9 +7708,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7708
7708
|
}>;
|
|
7709
7709
|
}, undefined, undefined>;
|
|
7710
7710
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
7711
|
-
name: z.ZodString;
|
|
7712
|
-
id: z.ZodString;
|
|
7713
7711
|
tenantId: z.ZodString;
|
|
7712
|
+
id: z.ZodString;
|
|
7713
|
+
name: z.ZodString;
|
|
7714
7714
|
description: z.ZodString;
|
|
7715
7715
|
models: z.ZodObject<{
|
|
7716
7716
|
base: z.ZodObject<{
|
|
@@ -7735,9 +7735,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7735
7735
|
in: {};
|
|
7736
7736
|
}>;
|
|
7737
7737
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
7738
|
-
name: z.ZodOptional<z.ZodString>;
|
|
7739
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7740
7738
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
7739
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7740
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7741
7741
|
description: z.ZodOptional<z.ZodString>;
|
|
7742
7742
|
models: z.ZodOptional<z.ZodObject<{
|
|
7743
7743
|
base: z.ZodObject<{
|
|
@@ -7762,11 +7762,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7762
7762
|
in: {};
|
|
7763
7763
|
}>;
|
|
7764
7764
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
7765
|
-
name: z.ZodString;
|
|
7766
7765
|
id: z.ZodString;
|
|
7766
|
+
name: z.ZodString;
|
|
7767
|
+
description: z.ZodString;
|
|
7767
7768
|
createdAt: z.ZodString;
|
|
7768
7769
|
updatedAt: z.ZodString;
|
|
7769
|
-
description: z.ZodString;
|
|
7770
7770
|
models: z.ZodNullable<z.ZodType<{
|
|
7771
7771
|
base: {
|
|
7772
7772
|
model?: string | undefined;
|
|
@@ -7838,8 +7838,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7838
7838
|
in: {};
|
|
7839
7839
|
}>;
|
|
7840
7840
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
7841
|
-
name: z.ZodString;
|
|
7842
7841
|
id: z.ZodString;
|
|
7842
|
+
name: z.ZodString;
|
|
7843
7843
|
description: z.ZodString;
|
|
7844
7844
|
models: z.ZodObject<{
|
|
7845
7845
|
base: z.ZodObject<{
|
|
@@ -7864,8 +7864,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7864
7864
|
in: {};
|
|
7865
7865
|
}>;
|
|
7866
7866
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
7867
|
-
name: z.ZodOptional<z.ZodString>;
|
|
7868
7867
|
id: z.ZodOptional<z.ZodString>;
|
|
7868
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7869
7869
|
description: z.ZodOptional<z.ZodString>;
|
|
7870
7870
|
models: z.ZodOptional<z.ZodObject<{
|
|
7871
7871
|
base: z.ZodObject<{
|
|
@@ -7890,8 +7890,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7890
7890
|
in: {};
|
|
7891
7891
|
}>;
|
|
7892
7892
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
7893
|
-
name: z.ZodString;
|
|
7894
7893
|
id: z.ZodString;
|
|
7894
|
+
name: z.ZodString;
|
|
7895
7895
|
description: z.ZodString;
|
|
7896
7896
|
models: z.ZodObject<{
|
|
7897
7897
|
base: z.ZodObject<{
|
|
@@ -7913,18 +7913,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7913
7913
|
}, z.core.$strip>>;
|
|
7914
7914
|
graphs: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7915
7915
|
name: z.ZodString;
|
|
7916
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7916
7917
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7917
7918
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7918
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7919
7919
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7920
7920
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7921
7921
|
id: z.ZodString;
|
|
7922
7922
|
agents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7923
|
-
name: z.ZodString;
|
|
7924
7923
|
id: z.ZodString;
|
|
7924
|
+
name: z.ZodString;
|
|
7925
|
+
description: z.ZodString;
|
|
7926
|
+
prompt: z.ZodString;
|
|
7925
7927
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7926
7928
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7927
|
-
|
|
7929
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7928
7930
|
models: z.ZodOptional<z.ZodObject<{
|
|
7929
7931
|
base: z.ZodOptional<z.ZodObject<{
|
|
7930
7932
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7948,8 +7950,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7948
7950
|
}, {
|
|
7949
7951
|
stepCountIs?: number | undefined;
|
|
7950
7952
|
}>>>>;
|
|
7951
|
-
prompt: z.ZodString;
|
|
7952
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7953
7953
|
type: z.ZodLiteral<"internal">;
|
|
7954
7954
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7955
7955
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -7962,23 +7962,23 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7962
7962
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7963
7963
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7964
7964
|
}, z.core.$strip>, z.ZodObject<{
|
|
7965
|
-
name: z.ZodString;
|
|
7966
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7967
7965
|
id: z.ZodString;
|
|
7968
|
-
|
|
7969
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7966
|
+
name: z.ZodString;
|
|
7970
7967
|
description: z.ZodString;
|
|
7971
7968
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7969
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7970
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7972
7971
|
baseUrl: z.ZodString;
|
|
7972
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7973
7973
|
type: z.ZodLiteral<"external">;
|
|
7974
7974
|
}, z.core.$strip>], "type">>;
|
|
7975
7975
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7976
|
-
name: z.ZodString;
|
|
7977
7976
|
id: z.ZodString;
|
|
7977
|
+
name: z.ZodString;
|
|
7978
7978
|
description: z.ZodString;
|
|
7979
|
+
graphId: z.ZodString;
|
|
7979
7980
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7980
7981
|
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;
|
|
7982
7982
|
}, z.core.$strip>>;
|
|
7983
7983
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7984
7984
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8015,13 +8015,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8015
8015
|
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
8016
8016
|
}, z.core.$strip>>;
|
|
8017
8017
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
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
8018
|
id: z.ZodString;
|
|
8021
|
-
|
|
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>>>>;
|
|
8019
|
+
name: z.ZodString;
|
|
8025
8020
|
config: z.ZodType<{
|
|
8026
8021
|
type: "mcp";
|
|
8027
8022
|
mcp: ToolMcpConfig;
|
|
@@ -8035,20 +8030,25 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8035
8030
|
type: "mcp";
|
|
8036
8031
|
mcp: ToolMcpConfig;
|
|
8037
8032
|
}>>;
|
|
8033
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8034
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8035
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8036
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8037
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8038
8038
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8039
8039
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8040
8040
|
}, z.core.$strip>>;
|
|
8041
8041
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8042
|
-
name: z.ZodString;
|
|
8043
8042
|
id: z.ZodString;
|
|
8043
|
+
name: z.ZodString;
|
|
8044
|
+
description: z.ZodString;
|
|
8044
8045
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8045
8046
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8046
|
-
description: z.ZodString;
|
|
8047
8047
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8048
8048
|
}, z.core.$strip>>>;
|
|
8049
8049
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8050
|
-
name: z.ZodString;
|
|
8051
8050
|
id: z.ZodString;
|
|
8051
|
+
name: z.ZodString;
|
|
8052
8052
|
description: z.ZodString;
|
|
8053
8053
|
summaryProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
8054
8054
|
fullProps: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
@@ -8073,10 +8073,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8073
8073
|
}, z.core.$strip>>;
|
|
8074
8074
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8075
8075
|
id: z.ZodString;
|
|
8076
|
-
credentialStoreId: z.ZodString;
|
|
8077
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8078
8076
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8079
8077
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8078
|
+
credentialStoreId: z.ZodString;
|
|
8079
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8080
8080
|
type: z.ZodEnum<{
|
|
8081
8081
|
readonly memory: "memory";
|
|
8082
8082
|
readonly keychain: "keychain";
|