@inkeep/agents-core 0.31.5 → 0.31.6
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-6OGGGVEI.js → chunk-PPBBIDK4.js} +1 -1
- package/dist/{chunk-37BY2EHU.js → chunk-RBUBOGX6.js} +47 -7
- package/dist/client-exports.cjs +46 -6
- package/dist/client-exports.d.cts +6 -6
- package/dist/client-exports.d.ts +6 -6
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +54 -6
- package/dist/index.d.cts +321 -321
- package/dist/index.d.ts +321 -321
- package/dist/index.js +4 -4
- package/dist/{schema-BWDgXp-e.d.ts → schema-BiVwgjkS.d.ts} +1 -1
- package/dist/{schema-uPzoiY7F.d.cts → schema-DcDuYlEP.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-fD4C61M4.d.cts → utility-DNsYIxBh.d.cts} +321 -267
- package/dist/{utility-fD4C61M4.d.ts → utility-DNsYIxBh.d.ts} +321 -267
- package/dist/validation/index.cjs +54 -6
- 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
|
@@ -774,11 +774,12 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
774
774
|
in: {};
|
|
775
775
|
}>;
|
|
776
776
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
777
|
-
name: z.ZodString;
|
|
778
777
|
id: z.ZodString;
|
|
778
|
+
name: z.ZodString;
|
|
779
|
+
description: z.ZodString;
|
|
780
|
+
prompt: z.ZodString;
|
|
779
781
|
createdAt: z.ZodString;
|
|
780
782
|
updatedAt: z.ZodString;
|
|
781
|
-
description: z.ZodString;
|
|
782
783
|
models: z.ZodNullable<z.ZodType<{
|
|
783
784
|
base?: {
|
|
784
785
|
model?: string | undefined;
|
|
@@ -841,15 +842,15 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
841
842
|
}, {
|
|
842
843
|
stepCountIs?: number | undefined;
|
|
843
844
|
}>>>;
|
|
844
|
-
prompt: z.ZodString;
|
|
845
845
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
846
846
|
}, z.core.$strip>;
|
|
847
847
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
848
|
-
name: z.ZodString;
|
|
849
848
|
id: z.ZodString;
|
|
849
|
+
name: z.ZodString;
|
|
850
|
+
description: z.ZodString;
|
|
851
|
+
prompt: z.ZodString;
|
|
850
852
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
851
853
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
852
|
-
description: z.ZodString;
|
|
853
854
|
models: z.ZodOptional<z.ZodObject<{
|
|
854
855
|
base: z.ZodOptional<z.ZodObject<{
|
|
855
856
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -873,15 +874,15 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
873
874
|
}, {
|
|
874
875
|
stepCountIs?: number | undefined;
|
|
875
876
|
}>>>>;
|
|
876
|
-
prompt: z.ZodString;
|
|
877
877
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
878
878
|
}, z.core.$strip>;
|
|
879
879
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
880
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
881
880
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
881
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
882
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
883
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
882
884
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
883
885
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
884
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
885
886
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
886
887
|
base: z.ZodOptional<z.ZodObject<{
|
|
887
888
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -905,7 +906,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
905
906
|
}, {
|
|
906
907
|
stepCountIs?: number | undefined;
|
|
907
908
|
}>>>>>>;
|
|
908
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
909
909
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
910
910
|
}, z.core.$strip>;
|
|
911
911
|
declare const SubAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -1170,9 +1170,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1170
1170
|
}>;
|
|
1171
1171
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1172
1172
|
id: z.ZodString;
|
|
1173
|
+
agentId: z.ZodString;
|
|
1173
1174
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1174
1175
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1175
|
-
agentId: z.ZodString;
|
|
1176
1176
|
sourceSubAgentId: z.ZodString;
|
|
1177
1177
|
targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1178
1178
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1754,11 +1754,12 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
1754
1754
|
in: {};
|
|
1755
1755
|
}>;
|
|
1756
1756
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
1757
|
-
name: z.ZodString;
|
|
1758
1757
|
id: z.ZodString;
|
|
1758
|
+
name: z.ZodString;
|
|
1759
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1760
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
1759
1761
|
createdAt: z.ZodString;
|
|
1760
1762
|
updatedAt: z.ZodString;
|
|
1761
|
-
description: z.ZodNullable<z.ZodString>;
|
|
1762
1763
|
models: z.ZodNullable<z.ZodType<{
|
|
1763
1764
|
base?: {
|
|
1764
1765
|
model?: string | undefined;
|
|
@@ -1823,7 +1824,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
1823
1824
|
}>>>;
|
|
1824
1825
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
1825
1826
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
1826
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
1827
1827
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
1828
1828
|
enabled?: boolean | undefined;
|
|
1829
1829
|
numEvents?: number | undefined;
|
|
@@ -1884,9 +1884,10 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
1884
1884
|
}, z.core.$strip>;
|
|
1885
1885
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
1886
1886
|
name: z.ZodString;
|
|
1887
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1888
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1887
1889
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1888
1890
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1889
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1890
1891
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1891
1892
|
base?: {
|
|
1892
1893
|
model?: string | undefined;
|
|
@@ -1951,7 +1952,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
1951
1952
|
}>>>>;
|
|
1952
1953
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1953
1954
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1954
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1955
1955
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1956
1956
|
enabled?: boolean | undefined;
|
|
1957
1957
|
numEvents?: number | undefined;
|
|
@@ -2012,11 +2012,12 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2012
2012
|
id: z.ZodString;
|
|
2013
2013
|
}, z.core.$strip>;
|
|
2014
2014
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2015
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2016
2015
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2016
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2017
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2018
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2017
2019
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2018
2020
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2019
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2020
2021
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2021
2022
|
base?: {
|
|
2022
2023
|
model?: string | undefined;
|
|
@@ -2081,7 +2082,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2081
2082
|
}>>>>>>;
|
|
2082
2083
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2083
2084
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2084
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2085
2085
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2086
2086
|
enabled?: boolean | undefined;
|
|
2087
2087
|
numEvents?: number | undefined;
|
|
@@ -2366,9 +2366,9 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2366
2366
|
}>;
|
|
2367
2367
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
2368
2368
|
id: z.ZodString;
|
|
2369
|
+
agentId: z.ZodString;
|
|
2369
2370
|
createdAt: z.ZodString;
|
|
2370
2371
|
updatedAt: z.ZodString;
|
|
2371
|
-
agentId: z.ZodString;
|
|
2372
2372
|
status: z.ZodString;
|
|
2373
2373
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2374
2374
|
contextId: z.ZodString;
|
|
@@ -2376,9 +2376,9 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
2376
2376
|
}, z.core.$strip>;
|
|
2377
2377
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2378
2378
|
id: z.ZodString;
|
|
2379
|
+
agentId: z.ZodString;
|
|
2379
2380
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2380
2381
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2381
|
-
agentId: z.ZodString;
|
|
2382
2382
|
status: z.ZodString;
|
|
2383
2383
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2384
2384
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
@@ -2387,9 +2387,9 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
2387
2387
|
}, z.core.$strip>;
|
|
2388
2388
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2389
2389
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2390
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2390
2391
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2391
2392
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2392
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2393
2393
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2394
2394
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2395
2395
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -3138,9 +3138,9 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
3138
3138
|
}>;
|
|
3139
3139
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
3140
3140
|
id: z.ZodString;
|
|
3141
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3141
3142
|
createdAt: z.ZodString;
|
|
3142
3143
|
updatedAt: z.ZodString;
|
|
3143
|
-
title: z.ZodNullable<z.ZodString>;
|
|
3144
3144
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3145
3145
|
userId: z.ZodNullable<z.ZodString>;
|
|
3146
3146
|
activeSubAgentId: z.ZodString;
|
|
@@ -3148,9 +3148,9 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
3148
3148
|
}, z.core.$strip>;
|
|
3149
3149
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
3150
3150
|
id: z.ZodString;
|
|
3151
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3151
3152
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3152
3153
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3153
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3154
3154
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3155
3155
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3156
3156
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3159,9 +3159,9 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3159
3159
|
}, z.core.$strip>;
|
|
3160
3160
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
3161
3161
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3162
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3162
3163
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3163
3164
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3164
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3165
3165
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3166
3166
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3167
3167
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4197,8 +4197,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
4197
4197
|
in: {};
|
|
4198
4198
|
}>;
|
|
4199
4199
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
4200
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4201
4200
|
id: z.ZodString;
|
|
4201
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4202
4202
|
createdAt: z.ZodString;
|
|
4203
4203
|
updatedAt: z.ZodString;
|
|
4204
4204
|
contextConfigId: z.ZodString;
|
|
@@ -4210,8 +4210,8 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
4210
4210
|
fetchDurationMs: z.ZodNullable<z.ZodInt>;
|
|
4211
4211
|
}, z.core.$strip>;
|
|
4212
4212
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
4213
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4214
4213
|
id: z.ZodString;
|
|
4214
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4215
4215
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4216
4216
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4217
4217
|
contextConfigId: z.ZodString;
|
|
@@ -4223,8 +4223,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
4223
4223
|
fetchDurationMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4224
4224
|
}, z.core.$strip>;
|
|
4225
4225
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
4226
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4227
4226
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4227
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4228
4228
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4229
4229
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4230
4230
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4441,10 +4441,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4441
4441
|
in: {};
|
|
4442
4442
|
}>;
|
|
4443
4443
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4444
|
-
name: z.ZodString;
|
|
4445
|
-
id: z.ZodString;
|
|
4446
|
-
projectId: z.ZodString;
|
|
4447
4444
|
tenantId: z.ZodString;
|
|
4445
|
+
projectId: z.ZodString;
|
|
4446
|
+
id: z.ZodString;
|
|
4447
|
+
name: z.ZodString;
|
|
4448
4448
|
description: z.ZodString;
|
|
4449
4449
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4450
4450
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -4491,11 +4491,11 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
4491
4491
|
in: {};
|
|
4492
4492
|
}>;
|
|
4493
4493
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
4494
|
-
name: z.ZodString;
|
|
4495
4494
|
id: z.ZodString;
|
|
4495
|
+
name: z.ZodString;
|
|
4496
|
+
description: z.ZodString;
|
|
4496
4497
|
createdAt: z.ZodString;
|
|
4497
4498
|
updatedAt: z.ZodString;
|
|
4498
|
-
description: z.ZodString;
|
|
4499
4499
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4500
4500
|
render: z.ZodNullable<z.ZodType<{
|
|
4501
4501
|
component: string;
|
|
@@ -4512,11 +4512,11 @@ declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
|
4512
4512
|
}>>>;
|
|
4513
4513
|
}, z.core.$strip>;
|
|
4514
4514
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
4515
|
-
name: z.ZodString;
|
|
4516
4515
|
id: z.ZodString;
|
|
4516
|
+
name: z.ZodString;
|
|
4517
|
+
description: z.ZodString;
|
|
4517
4518
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4518
4519
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4519
|
-
description: z.ZodString;
|
|
4520
4520
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4521
4521
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4522
4522
|
component: string;
|
|
@@ -4533,11 +4533,11 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
|
4533
4533
|
}>>>>;
|
|
4534
4534
|
}, z.core.$strip>;
|
|
4535
4535
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
4536
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4537
4536
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4537
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4538
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4538
4539
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4539
4540
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4540
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4541
4541
|
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>>>>>>>;
|
|
4542
4542
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4543
4543
|
component: string;
|
|
@@ -5036,16 +5036,16 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
5036
5036
|
in: {};
|
|
5037
5037
|
}>;
|
|
5038
5038
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
5039
|
-
name: z.ZodString;
|
|
5040
5039
|
id: z.ZodString;
|
|
5040
|
+
name: z.ZodString;
|
|
5041
|
+
description: z.ZodString;
|
|
5041
5042
|
createdAt: z.ZodString;
|
|
5042
5043
|
updatedAt: z.ZodString;
|
|
5043
|
-
description: z.ZodString;
|
|
5044
5044
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
5045
5045
|
}, z.core.$strip>;
|
|
5046
5046
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
5047
|
-
name: z.ZodString;
|
|
5048
5047
|
id: z.ZodString;
|
|
5048
|
+
name: z.ZodString;
|
|
5049
5049
|
description: z.ZodString;
|
|
5050
5050
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
5051
5051
|
}, {
|
|
@@ -5053,11 +5053,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
5053
5053
|
in: {};
|
|
5054
5054
|
}>;
|
|
5055
5055
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
5056
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5057
5056
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5057
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5058
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5058
5059
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5059
5060
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5060
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5061
5061
|
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>>>>>>>;
|
|
5062
5062
|
}, z.core.$strip>;
|
|
5063
5063
|
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5282,38 +5282,39 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5282
5282
|
in: {};
|
|
5283
5283
|
}>;
|
|
5284
5284
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
5285
|
-
name: z.ZodString;
|
|
5286
5285
|
id: z.ZodString;
|
|
5287
|
-
|
|
5288
|
-
updatedAt: z.ZodString;
|
|
5286
|
+
name: z.ZodString;
|
|
5289
5287
|
description: z.ZodString;
|
|
5290
5288
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5289
|
+
createdAt: z.ZodString;
|
|
5290
|
+
updatedAt: z.ZodString;
|
|
5291
5291
|
baseUrl: z.ZodString;
|
|
5292
5292
|
}, z.core.$strip>;
|
|
5293
5293
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5294
|
-
name: z.ZodString;
|
|
5295
5294
|
id: z.ZodString;
|
|
5296
|
-
|
|
5297
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5295
|
+
name: z.ZodString;
|
|
5298
5296
|
description: z.ZodString;
|
|
5299
5297
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5298
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5299
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5300
5300
|
baseUrl: z.ZodString;
|
|
5301
5301
|
}, z.core.$strip>;
|
|
5302
5302
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5303
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5304
5303
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5305
|
-
|
|
5306
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5304
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5307
5305
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5308
5306
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5307
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5308
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5309
5309
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5310
5310
|
}, z.core.$strip>;
|
|
5311
5311
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5312
|
-
name: z.ZodString;
|
|
5313
5312
|
id: z.ZodString;
|
|
5313
|
+
name: z.ZodString;
|
|
5314
|
+
description: z.ZodString;
|
|
5315
|
+
prompt: z.ZodString;
|
|
5314
5316
|
createdAt: z.ZodString;
|
|
5315
5317
|
updatedAt: z.ZodString;
|
|
5316
|
-
description: z.ZodString;
|
|
5317
5318
|
models: z.ZodNullable<z.ZodType<{
|
|
5318
5319
|
base?: {
|
|
5319
5320
|
model?: string | undefined;
|
|
@@ -5376,16 +5377,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5376
5377
|
}, {
|
|
5377
5378
|
stepCountIs?: number | undefined;
|
|
5378
5379
|
}>>>;
|
|
5379
|
-
prompt: z.ZodString;
|
|
5380
5380
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5381
5381
|
type: z.ZodLiteral<"internal">;
|
|
5382
5382
|
}, z.core.$strip>, z.ZodObject<{
|
|
5383
|
-
name: z.ZodString;
|
|
5384
5383
|
id: z.ZodString;
|
|
5385
|
-
|
|
5386
|
-
updatedAt: z.ZodString;
|
|
5384
|
+
name: z.ZodString;
|
|
5387
5385
|
description: z.ZodString;
|
|
5388
5386
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5387
|
+
createdAt: z.ZodString;
|
|
5388
|
+
updatedAt: z.ZodString;
|
|
5389
5389
|
baseUrl: z.ZodString;
|
|
5390
5390
|
type: z.ZodLiteral<"external">;
|
|
5391
5391
|
}, z.core.$strip>], "type">;
|
|
@@ -5638,24 +5638,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5638
5638
|
}>;
|
|
5639
5639
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5640
5640
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5641
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5642
5641
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5643
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5644
5642
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5643
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5644
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5645
5645
|
}, {
|
|
5646
5646
|
out: {};
|
|
5647
5647
|
in: {};
|
|
5648
5648
|
}>;
|
|
5649
5649
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5650
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5651
5650
|
id: z.ZodString;
|
|
5652
|
-
|
|
5653
|
-
updatedAt: z.ZodString;
|
|
5651
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5654
5652
|
agentId: z.ZodString;
|
|
5655
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5656
5653
|
publicId: z.ZodString;
|
|
5657
5654
|
keyPrefix: z.ZodString;
|
|
5658
5655
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5656
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5657
|
+
createdAt: z.ZodString;
|
|
5658
|
+
updatedAt: z.ZodString;
|
|
5659
5659
|
}, {
|
|
5660
5660
|
out: {};
|
|
5661
5661
|
in: {};
|
|
@@ -5663,15 +5663,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
5663
5663
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
5664
5664
|
data: z.ZodObject<{
|
|
5665
5665
|
apiKey: z.ZodObject<{
|
|
5666
|
-
name: z.ZodNullable<z.ZodString>;
|
|
5667
5666
|
id: z.ZodString;
|
|
5668
|
-
|
|
5669
|
-
updatedAt: z.ZodString;
|
|
5667
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5670
5668
|
agentId: z.ZodString;
|
|
5671
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5672
5669
|
publicId: z.ZodString;
|
|
5673
5670
|
keyPrefix: z.ZodString;
|
|
5674
5671
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5672
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5673
|
+
createdAt: z.ZodString;
|
|
5674
|
+
updatedAt: z.ZodString;
|
|
5675
5675
|
}, {
|
|
5676
5676
|
out: {};
|
|
5677
5677
|
in: {};
|
|
@@ -5681,20 +5681,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5681
5681
|
}, z.core.$strip>;
|
|
5682
5682
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5683
5683
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5684
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5685
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5686
5684
|
agentId: z.ZodString;
|
|
5687
5685
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5686
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5687
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5688
5688
|
}, {
|
|
5689
5689
|
out: {};
|
|
5690
5690
|
in: {};
|
|
5691
5691
|
}>;
|
|
5692
5692
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5693
5693
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5694
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5695
5694
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5696
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5697
5695
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5696
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5697
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5698
5698
|
}, {
|
|
5699
5699
|
out: {};
|
|
5700
5700
|
in: {};
|
|
@@ -5739,12 +5739,12 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
5739
5739
|
in: {};
|
|
5740
5740
|
}>;
|
|
5741
5741
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
5742
|
-
name: z.ZodString;
|
|
5743
5742
|
id: z.ZodString;
|
|
5744
|
-
|
|
5745
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5743
|
+
name: z.ZodString;
|
|
5746
5744
|
createdAt: z.ZodString;
|
|
5747
5745
|
updatedAt: z.ZodString;
|
|
5746
|
+
credentialStoreId: z.ZodString;
|
|
5747
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5748
5748
|
type: z.ZodEnum<{
|
|
5749
5749
|
readonly memory: "memory";
|
|
5750
5750
|
readonly keychain: "keychain";
|
|
@@ -6021,12 +6021,12 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
6021
6021
|
}>>>;
|
|
6022
6022
|
}, z.core.$strip>;
|
|
6023
6023
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
6024
|
-
name: z.ZodString;
|
|
6025
6024
|
id: z.ZodString;
|
|
6026
|
-
|
|
6027
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6025
|
+
name: z.ZodString;
|
|
6028
6026
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6029
6027
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6028
|
+
credentialStoreId: z.ZodString;
|
|
6029
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6030
6030
|
type: z.ZodEnum<{
|
|
6031
6031
|
readonly memory: "memory";
|
|
6032
6032
|
readonly keychain: "keychain";
|
|
@@ -6034,18 +6034,72 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
6034
6034
|
}>;
|
|
6035
6035
|
}, z.core.$strip>;
|
|
6036
6036
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
6037
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6038
6037
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
|
-
|
|
6040
|
-
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6038
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6041
6039
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6042
6040
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6041
|
+
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6042
|
+
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6043
6043
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6044
6044
|
readonly memory: "memory";
|
|
6045
6045
|
readonly keychain: "keychain";
|
|
6046
6046
|
readonly nango: "nango";
|
|
6047
6047
|
}>>;
|
|
6048
6048
|
}, z.core.$strip>;
|
|
6049
|
+
declare const CredentialStoreSchema: z.ZodObject<{
|
|
6050
|
+
id: z.ZodString;
|
|
6051
|
+
type: z.ZodEnum<{
|
|
6052
|
+
readonly memory: "memory";
|
|
6053
|
+
readonly keychain: "keychain";
|
|
6054
|
+
readonly nango: "nango";
|
|
6055
|
+
}>;
|
|
6056
|
+
available: z.ZodBoolean;
|
|
6057
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
6058
|
+
}, z.core.$strip>;
|
|
6059
|
+
declare const CredentialStoreListResponseSchema: z.ZodObject<{
|
|
6060
|
+
data: z.ZodArray<z.ZodObject<{
|
|
6061
|
+
id: z.ZodString;
|
|
6062
|
+
type: z.ZodEnum<{
|
|
6063
|
+
readonly memory: "memory";
|
|
6064
|
+
readonly keychain: "keychain";
|
|
6065
|
+
readonly nango: "nango";
|
|
6066
|
+
}>;
|
|
6067
|
+
available: z.ZodBoolean;
|
|
6068
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
6069
|
+
}, z.core.$strip>>;
|
|
6070
|
+
}, z.core.$strip>;
|
|
6071
|
+
declare const CreateCredentialInStoreRequestSchema: z.ZodObject<{
|
|
6072
|
+
key: z.ZodString;
|
|
6073
|
+
value: z.ZodString;
|
|
6074
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6075
|
+
}, z.core.$strip>;
|
|
6076
|
+
declare const CreateCredentialInStoreResponseSchema: z.ZodObject<{
|
|
6077
|
+
data: z.ZodObject<{
|
|
6078
|
+
key: z.ZodString;
|
|
6079
|
+
storeId: z.ZodString;
|
|
6080
|
+
createdAt: z.ZodString;
|
|
6081
|
+
}, z.core.$strip>;
|
|
6082
|
+
}, z.core.$strip>;
|
|
6083
|
+
declare const RelatedAgentInfoSchema: z.ZodObject<{
|
|
6084
|
+
id: z.ZodString;
|
|
6085
|
+
name: z.ZodString;
|
|
6086
|
+
description: z.ZodString;
|
|
6087
|
+
}, z.core.$strip>;
|
|
6088
|
+
declare const ComponentAssociationSchema: z.ZodObject<{
|
|
6089
|
+
subAgentId: z.ZodString;
|
|
6090
|
+
createdAt: z.ZodString;
|
|
6091
|
+
}, z.core.$strip>;
|
|
6092
|
+
declare const OAuthLoginQuerySchema: z.ZodObject<{
|
|
6093
|
+
tenantId: z.ZodString;
|
|
6094
|
+
projectId: z.ZodString;
|
|
6095
|
+
toolId: z.ZodString;
|
|
6096
|
+
}, z.core.$strip>;
|
|
6097
|
+
declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
6098
|
+
code: z.ZodString;
|
|
6099
|
+
state: z.ZodString;
|
|
6100
|
+
error: z.ZodOptional<z.ZodString>;
|
|
6101
|
+
error_description: z.ZodOptional<z.ZodString>;
|
|
6102
|
+
}, z.core.$strip>;
|
|
6049
6103
|
declare const McpToolSchema: z.ZodObject<{
|
|
6050
6104
|
name: z.ZodString;
|
|
6051
6105
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6096,10 +6150,10 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
6096
6150
|
in: {};
|
|
6097
6151
|
}>;
|
|
6098
6152
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
6099
|
-
name: z.ZodString;
|
|
6100
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6101
6153
|
id: z.ZodString;
|
|
6154
|
+
name: z.ZodString;
|
|
6102
6155
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
6156
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6103
6157
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6104
6158
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6105
6159
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6128,12 +6182,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
6128
6182
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
6129
6183
|
}, z.core.$strip>>;
|
|
6130
6184
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6131
|
-
name: z.ZodString;
|
|
6132
6185
|
id: z.ZodString;
|
|
6133
|
-
|
|
6134
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6186
|
+
name: z.ZodString;
|
|
6135
6187
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6136
6188
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6189
|
+
credentialStoreId: z.ZodString;
|
|
6190
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6137
6191
|
type: z.ZodEnum<{
|
|
6138
6192
|
readonly memory: "memory";
|
|
6139
6193
|
readonly keychain: "keychain";
|
|
@@ -6181,14 +6235,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6181
6235
|
in: {};
|
|
6182
6236
|
}>;
|
|
6183
6237
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
6184
|
-
name: z.ZodString;
|
|
6185
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6186
6238
|
id: z.ZodString;
|
|
6187
|
-
|
|
6188
|
-
updatedAt: z.ZodString;
|
|
6239
|
+
name: z.ZodString;
|
|
6189
6240
|
description: z.ZodNullable<z.ZodString>;
|
|
6190
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6191
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6192
6241
|
config: z.ZodType<{
|
|
6193
6242
|
type: "mcp";
|
|
6194
6243
|
mcp: ToolMcpConfig;
|
|
@@ -6202,18 +6251,18 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6202
6251
|
type: "mcp";
|
|
6203
6252
|
mcp: ToolMcpConfig;
|
|
6204
6253
|
}>>;
|
|
6254
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6255
|
+
createdAt: z.ZodString;
|
|
6256
|
+
updatedAt: z.ZodString;
|
|
6257
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6258
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6205
6259
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6206
6260
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6207
6261
|
}, z.core.$strip>;
|
|
6208
6262
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6209
|
-
name: z.ZodString;
|
|
6210
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6211
6263
|
id: z.ZodString;
|
|
6212
|
-
|
|
6213
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6264
|
+
name: z.ZodString;
|
|
6214
6265
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6215
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6216
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6217
6266
|
config: z.ZodObject<{
|
|
6218
6267
|
type: z.ZodLiteral<"mcp">;
|
|
6219
6268
|
mcp: z.ZodObject<{
|
|
@@ -6233,18 +6282,18 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6233
6282
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6234
6283
|
}, z.core.$strip>;
|
|
6235
6284
|
}, z.core.$strip>;
|
|
6285
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6286
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6287
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6288
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6289
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6236
6290
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6237
6291
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6238
6292
|
}, z.core.$strip>;
|
|
6239
6293
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6240
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6241
|
-
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>>>>>>>;
|
|
6242
6294
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6243
|
-
|
|
6244
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6295
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6245
6296
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6246
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6247
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6248
6297
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6249
6298
|
type: z.ZodLiteral<"mcp">;
|
|
6250
6299
|
mcp: z.ZodObject<{
|
|
@@ -6264,6 +6313,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6264
6313
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6265
6314
|
}, z.core.$strip>;
|
|
6266
6315
|
}, z.core.$strip>>>;
|
|
6316
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6317
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6318
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6319
|
+
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>>>>>>>;
|
|
6320
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6267
6321
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6268
6322
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6269
6323
|
}, z.core.$strip>;
|
|
@@ -6469,29 +6523,29 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
6469
6523
|
in: {};
|
|
6470
6524
|
}>;
|
|
6471
6525
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
6472
|
-
name: z.ZodString;
|
|
6473
6526
|
id: z.ZodString;
|
|
6474
|
-
|
|
6475
|
-
updatedAt: z.ZodString;
|
|
6527
|
+
name: z.ZodString;
|
|
6476
6528
|
description: z.ZodNullable<z.ZodString>;
|
|
6477
6529
|
agentId: z.ZodString;
|
|
6530
|
+
createdAt: z.ZodString;
|
|
6531
|
+
updatedAt: z.ZodString;
|
|
6478
6532
|
functionId: z.ZodString;
|
|
6479
6533
|
}, z.core.$strip>;
|
|
6480
6534
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
6481
|
-
name: z.ZodString;
|
|
6482
6535
|
id: z.ZodString;
|
|
6536
|
+
name: z.ZodString;
|
|
6537
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6483
6538
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6484
6539
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6485
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6486
6540
|
functionId: z.ZodString;
|
|
6487
6541
|
}, z.core.$strip>;
|
|
6488
6542
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
6489
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6490
6543
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6491
|
-
|
|
6492
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6544
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6493
6545
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6494
6546
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6547
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6548
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6495
6549
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6496
6550
|
}, z.core.$strip>;
|
|
6497
6551
|
declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -6736,12 +6790,12 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6736
6790
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
6737
6791
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
6738
6792
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6739
|
-
name: z.ZodString;
|
|
6740
6793
|
id: z.ZodString;
|
|
6741
|
-
|
|
6742
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6794
|
+
name: z.ZodString;
|
|
6743
6795
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6744
6796
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6797
|
+
credentialStoreId: z.ZodString;
|
|
6798
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6745
6799
|
type: z.ZodEnum<{
|
|
6746
6800
|
readonly memory: "memory";
|
|
6747
6801
|
readonly keychain: "keychain";
|
|
@@ -6763,23 +6817,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6763
6817
|
in: {};
|
|
6764
6818
|
}>;
|
|
6765
6819
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6766
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6767
|
-
projectId: z.ZodString;
|
|
6768
6820
|
tenantId: z.ZodString;
|
|
6821
|
+
projectId: z.ZodString;
|
|
6822
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6823
|
+
agentId: z.ZodString;
|
|
6769
6824
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6770
6825
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6771
|
-
agentId: z.ZodString;
|
|
6772
6826
|
}, {
|
|
6773
6827
|
out: {};
|
|
6774
6828
|
in: {};
|
|
6775
6829
|
}>;
|
|
6776
6830
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6777
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6778
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6779
6831
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6832
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6833
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6834
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
6780
6835
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
6781
6836
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
6782
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
6783
6837
|
}, {
|
|
6784
6838
|
out: {};
|
|
6785
6839
|
in: {};
|
|
@@ -7024,31 +7078,31 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
7024
7078
|
in: {};
|
|
7025
7079
|
}>;
|
|
7026
7080
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
7027
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7028
7081
|
id: z.ZodString;
|
|
7029
7082
|
createdAt: z.ZodString;
|
|
7030
7083
|
updatedAt: z.ZodString;
|
|
7084
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7085
|
+
toolId: z.ZodString;
|
|
7031
7086
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7032
7087
|
subAgentId: z.ZodString;
|
|
7033
|
-
toolId: z.ZodString;
|
|
7034
7088
|
}, z.core.$strip>;
|
|
7035
7089
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
7036
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7037
7090
|
id: z.ZodString;
|
|
7038
7091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7039
7092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7093
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7094
|
+
toolId: z.ZodString;
|
|
7040
7095
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7041
7096
|
subAgentId: z.ZodString;
|
|
7042
|
-
toolId: z.ZodString;
|
|
7043
7097
|
}, z.core.$strip>;
|
|
7044
7098
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
7045
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7046
7099
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7047
7100
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7048
7101
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7102
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7103
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7049
7104
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
7050
7105
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7051
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7052
7106
|
}, z.core.$strip>;
|
|
7053
7107
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
7054
7108
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7252,26 +7306,26 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
7252
7306
|
in: {};
|
|
7253
7307
|
}>;
|
|
7254
7308
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
7255
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7256
7309
|
id: z.ZodString;
|
|
7257
7310
|
createdAt: z.ZodString;
|
|
7258
7311
|
updatedAt: z.ZodString;
|
|
7259
|
-
|
|
7312
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7260
7313
|
externalAgentId: z.ZodString;
|
|
7314
|
+
subAgentId: z.ZodString;
|
|
7261
7315
|
}, z.core.$strip>;
|
|
7262
7316
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
7263
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7264
7317
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7265
7318
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7319
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7266
7320
|
externalAgentId: z.ZodString;
|
|
7267
7321
|
}, z.core.$strip>;
|
|
7268
7322
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
7269
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7270
7323
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7271
7324
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7272
7325
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7273
|
-
|
|
7326
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7274
7327
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7328
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7275
7329
|
}, z.core.$strip>;
|
|
7276
7330
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
7277
7331
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7475,24 +7529,24 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
7475
7529
|
in: {};
|
|
7476
7530
|
}>;
|
|
7477
7531
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
7478
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7479
7532
|
id: z.ZodString;
|
|
7480
7533
|
createdAt: z.ZodString;
|
|
7481
7534
|
updatedAt: z.ZodString;
|
|
7535
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7482
7536
|
subAgentId: z.ZodString;
|
|
7483
7537
|
targetAgentId: z.ZodString;
|
|
7484
7538
|
}, z.core.$strip>;
|
|
7485
7539
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
7486
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7487
7540
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7488
7541
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7542
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7489
7543
|
targetAgentId: z.ZodString;
|
|
7490
7544
|
}, z.core.$strip>;
|
|
7491
7545
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
7492
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7493
7546
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7494
7547
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7495
7548
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7549
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
7496
7550
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7497
7551
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7498
7552
|
}, z.core.$strip>;
|
|
@@ -8208,12 +8262,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
8208
8262
|
in: {};
|
|
8209
8263
|
}>;
|
|
8210
8264
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
8265
|
+
id: z.ZodString;
|
|
8211
8266
|
type: z.ZodString;
|
|
8212
8267
|
name: z.ZodNullable<z.ZodString>;
|
|
8213
|
-
|
|
8268
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8214
8269
|
createdAt: z.ZodString;
|
|
8215
8270
|
updatedAt: z.ZodString;
|
|
8216
|
-
description: z.ZodNullable<z.ZodString>;
|
|
8217
8271
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
8218
8272
|
contextId: z.ZodString;
|
|
8219
8273
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -8226,12 +8280,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
8226
8280
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
8227
8281
|
}, z.core.$strip>;
|
|
8228
8282
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
8283
|
+
id: z.ZodString;
|
|
8229
8284
|
type: z.ZodOptional<z.ZodString>;
|
|
8230
8285
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8231
|
-
|
|
8286
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8232
8287
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8233
8288
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8234
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8235
8289
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
8236
8290
|
contextId: z.ZodString;
|
|
8237
8291
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8244,12 +8298,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
8244
8298
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8245
8299
|
}, z.core.$strip>;
|
|
8246
8300
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
8301
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8247
8302
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8248
8303
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8249
|
-
|
|
8304
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8250
8305
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8251
8306
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8252
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8253
8307
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
8254
8308
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8255
8309
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8307,11 +8361,12 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
8307
8361
|
description: z.ZodString;
|
|
8308
8362
|
}, z.core.$strip>;
|
|
8309
8363
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
8310
|
-
name: z.ZodString;
|
|
8311
8364
|
id: z.ZodString;
|
|
8365
|
+
name: z.ZodString;
|
|
8366
|
+
description: z.ZodString;
|
|
8367
|
+
prompt: z.ZodString;
|
|
8312
8368
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8313
8369
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8314
|
-
description: z.ZodString;
|
|
8315
8370
|
models: z.ZodOptional<z.ZodObject<{
|
|
8316
8371
|
base: z.ZodOptional<z.ZodObject<{
|
|
8317
8372
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8335,7 +8390,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
8335
8390
|
}, {
|
|
8336
8391
|
stepCountIs?: number | undefined;
|
|
8337
8392
|
}>>>>;
|
|
8338
|
-
prompt: z.ZodString;
|
|
8339
8393
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8340
8394
|
type: z.ZodLiteral<"internal">;
|
|
8341
8395
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -8359,18 +8413,19 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
8359
8413
|
}, z.core.$strip>;
|
|
8360
8414
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
8361
8415
|
name: z.ZodString;
|
|
8416
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8362
8417
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8363
8418
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8364
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8365
8419
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8366
8420
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8367
8421
|
id: z.ZodString;
|
|
8368
8422
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8369
|
-
name: z.ZodString;
|
|
8370
8423
|
id: z.ZodString;
|
|
8424
|
+
name: z.ZodString;
|
|
8425
|
+
description: z.ZodString;
|
|
8426
|
+
prompt: z.ZodString;
|
|
8371
8427
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8372
8428
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8373
|
-
description: z.ZodString;
|
|
8374
8429
|
models: z.ZodOptional<z.ZodObject<{
|
|
8375
8430
|
base: z.ZodOptional<z.ZodObject<{
|
|
8376
8431
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8394,7 +8449,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8394
8449
|
}, {
|
|
8395
8450
|
stepCountIs?: number | undefined;
|
|
8396
8451
|
}>>>>;
|
|
8397
|
-
prompt: z.ZodString;
|
|
8398
8452
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8399
8453
|
type: z.ZodLiteral<"internal">;
|
|
8400
8454
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -8417,14 +8471,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8417
8471
|
}, z.core.$strip>]>>>;
|
|
8418
8472
|
}, z.core.$strip>>;
|
|
8419
8473
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8420
|
-
name: z.ZodString;
|
|
8421
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8422
8474
|
id: z.ZodString;
|
|
8423
|
-
|
|
8424
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8475
|
+
name: z.ZodString;
|
|
8425
8476
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8426
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8427
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8428
8477
|
config: z.ZodObject<{
|
|
8429
8478
|
type: z.ZodLiteral<"mcp">;
|
|
8430
8479
|
mcp: z.ZodObject<{
|
|
@@ -8444,16 +8493,21 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8444
8493
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8445
8494
|
}, z.core.$strip>;
|
|
8446
8495
|
}, z.core.$strip>;
|
|
8496
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8497
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8498
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8499
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8500
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8447
8501
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8448
8502
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8449
8503
|
}, z.core.$strip>>>;
|
|
8450
8504
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8451
|
-
name: z.ZodString;
|
|
8452
8505
|
id: z.ZodString;
|
|
8453
|
-
|
|
8454
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8506
|
+
name: z.ZodString;
|
|
8455
8507
|
description: z.ZodString;
|
|
8456
8508
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8509
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8510
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8457
8511
|
baseUrl: z.ZodString;
|
|
8458
8512
|
}, z.core.$strip>>>;
|
|
8459
8513
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -8462,11 +8516,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8462
8516
|
description: z.ZodString;
|
|
8463
8517
|
}, z.core.$strip>>>;
|
|
8464
8518
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8465
|
-
name: z.ZodString;
|
|
8466
8519
|
id: z.ZodString;
|
|
8520
|
+
name: z.ZodString;
|
|
8521
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8467
8522
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8468
8523
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8469
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8470
8524
|
functionId: z.ZodString;
|
|
8471
8525
|
}, z.core.$strip>>>;
|
|
8472
8526
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -8733,9 +8787,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
8733
8787
|
}>;
|
|
8734
8788
|
}, undefined, undefined>;
|
|
8735
8789
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
8736
|
-
name: z.ZodString;
|
|
8737
|
-
id: z.ZodString;
|
|
8738
8790
|
tenantId: z.ZodString;
|
|
8791
|
+
id: z.ZodString;
|
|
8792
|
+
name: z.ZodString;
|
|
8739
8793
|
description: z.ZodString;
|
|
8740
8794
|
models: z.ZodObject<{
|
|
8741
8795
|
base: z.ZodObject<{
|
|
@@ -8760,9 +8814,9 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
8760
8814
|
in: {};
|
|
8761
8815
|
}>;
|
|
8762
8816
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
8763
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8764
|
-
id: z.ZodOptional<z.ZodString>;
|
|
8765
8817
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
8818
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8819
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8766
8820
|
description: z.ZodOptional<z.ZodString>;
|
|
8767
8821
|
models: z.ZodOptional<z.ZodObject<{
|
|
8768
8822
|
base: z.ZodObject<{
|
|
@@ -8787,11 +8841,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
8787
8841
|
in: {};
|
|
8788
8842
|
}>;
|
|
8789
8843
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
8790
|
-
name: z.ZodString;
|
|
8791
8844
|
id: z.ZodString;
|
|
8845
|
+
name: z.ZodString;
|
|
8846
|
+
description: z.ZodString;
|
|
8792
8847
|
createdAt: z.ZodString;
|
|
8793
8848
|
updatedAt: z.ZodString;
|
|
8794
|
-
description: z.ZodString;
|
|
8795
8849
|
models: z.ZodNullable<z.ZodType<{
|
|
8796
8850
|
base: {
|
|
8797
8851
|
model?: string | undefined;
|
|
@@ -8863,8 +8917,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
8863
8917
|
in: {};
|
|
8864
8918
|
}>;
|
|
8865
8919
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
8866
|
-
name: z.ZodString;
|
|
8867
8920
|
id: z.ZodString;
|
|
8921
|
+
name: z.ZodString;
|
|
8868
8922
|
description: z.ZodString;
|
|
8869
8923
|
models: z.ZodObject<{
|
|
8870
8924
|
base: z.ZodObject<{
|
|
@@ -8889,8 +8943,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
8889
8943
|
in: {};
|
|
8890
8944
|
}>;
|
|
8891
8945
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
8892
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8893
8946
|
id: z.ZodOptional<z.ZodString>;
|
|
8947
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8894
8948
|
description: z.ZodOptional<z.ZodString>;
|
|
8895
8949
|
models: z.ZodOptional<z.ZodObject<{
|
|
8896
8950
|
base: z.ZodObject<{
|
|
@@ -8915,8 +8969,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
8915
8969
|
in: {};
|
|
8916
8970
|
}>;
|
|
8917
8971
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
8918
|
-
name: z.ZodString;
|
|
8919
8972
|
id: z.ZodString;
|
|
8973
|
+
name: z.ZodString;
|
|
8920
8974
|
description: z.ZodString;
|
|
8921
8975
|
models: z.ZodObject<{
|
|
8922
8976
|
base: z.ZodObject<{
|
|
@@ -8938,18 +8992,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8938
8992
|
}, z.core.$strip>>;
|
|
8939
8993
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8940
8994
|
name: z.ZodString;
|
|
8995
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8941
8996
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8942
8997
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8943
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8944
8998
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8945
8999
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8946
9000
|
id: z.ZodString;
|
|
8947
9001
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8948
|
-
name: z.ZodString;
|
|
8949
9002
|
id: z.ZodString;
|
|
9003
|
+
name: z.ZodString;
|
|
9004
|
+
description: z.ZodString;
|
|
9005
|
+
prompt: z.ZodString;
|
|
8950
9006
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8951
9007
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8952
|
-
description: z.ZodString;
|
|
8953
9008
|
models: z.ZodOptional<z.ZodObject<{
|
|
8954
9009
|
base: z.ZodOptional<z.ZodObject<{
|
|
8955
9010
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8973,7 +9028,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8973
9028
|
}, {
|
|
8974
9029
|
stepCountIs?: number | undefined;
|
|
8975
9030
|
}>>>>;
|
|
8976
|
-
prompt: z.ZodString;
|
|
8977
9031
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8978
9032
|
type: z.ZodLiteral<"internal">;
|
|
8979
9033
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -8996,14 +9050,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8996
9050
|
}, z.core.$strip>]>>>;
|
|
8997
9051
|
}, z.core.$strip>>;
|
|
8998
9052
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8999
|
-
name: z.ZodString;
|
|
9000
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9001
9053
|
id: z.ZodString;
|
|
9002
|
-
|
|
9003
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9054
|
+
name: z.ZodString;
|
|
9004
9055
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9005
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9006
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9007
9056
|
config: z.ZodObject<{
|
|
9008
9057
|
type: z.ZodLiteral<"mcp">;
|
|
9009
9058
|
mcp: z.ZodObject<{
|
|
@@ -9023,16 +9072,21 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9023
9072
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9024
9073
|
}, z.core.$strip>;
|
|
9025
9074
|
}, z.core.$strip>;
|
|
9075
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9076
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9077
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9078
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9079
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9026
9080
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9027
9081
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9028
9082
|
}, z.core.$strip>>>;
|
|
9029
9083
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9030
|
-
name: z.ZodString;
|
|
9031
9084
|
id: z.ZodString;
|
|
9032
|
-
|
|
9033
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9085
|
+
name: z.ZodString;
|
|
9034
9086
|
description: z.ZodString;
|
|
9035
9087
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9088
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9089
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9036
9090
|
baseUrl: z.ZodString;
|
|
9037
9091
|
}, z.core.$strip>>>;
|
|
9038
9092
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -9041,11 +9095,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9041
9095
|
description: z.ZodString;
|
|
9042
9096
|
}, z.core.$strip>>>;
|
|
9043
9097
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9044
|
-
name: z.ZodString;
|
|
9045
9098
|
id: z.ZodString;
|
|
9099
|
+
name: z.ZodString;
|
|
9100
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9046
9101
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9047
9102
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9048
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9049
9103
|
functionId: z.ZodString;
|
|
9050
9104
|
}, z.core.$strip>>>;
|
|
9051
9105
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -9096,14 +9150,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9096
9150
|
prompt: z.ZodOptional<z.ZodString>;
|
|
9097
9151
|
}, z.core.$strip>>;
|
|
9098
9152
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9099
|
-
name: z.ZodString;
|
|
9100
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9101
9153
|
id: z.ZodString;
|
|
9102
|
-
|
|
9103
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9154
|
+
name: z.ZodString;
|
|
9104
9155
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9105
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9106
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9107
9156
|
config: z.ZodObject<{
|
|
9108
9157
|
type: z.ZodLiteral<"mcp">;
|
|
9109
9158
|
mcp: z.ZodObject<{
|
|
@@ -9123,15 +9172,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9123
9172
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9124
9173
|
}, z.core.$strip>;
|
|
9125
9174
|
}, z.core.$strip>;
|
|
9175
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9176
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9177
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9178
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9179
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9126
9180
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9127
9181
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9128
9182
|
}, z.core.$strip>>;
|
|
9129
9183
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9130
|
-
name: z.ZodString;
|
|
9131
9184
|
id: z.ZodString;
|
|
9185
|
+
name: z.ZodString;
|
|
9186
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9132
9187
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9133
9188
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9134
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9135
9189
|
functionId: z.ZodString;
|
|
9136
9190
|
}, z.core.$strip>>>;
|
|
9137
9191
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -9143,11 +9197,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9143
9197
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9144
9198
|
}, z.core.$strip>>>;
|
|
9145
9199
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9146
|
-
name: z.ZodString;
|
|
9147
9200
|
id: z.ZodString;
|
|
9201
|
+
name: z.ZodString;
|
|
9202
|
+
description: z.ZodString;
|
|
9148
9203
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9149
9204
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9150
|
-
description: z.ZodString;
|
|
9151
9205
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
9152
9206
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9153
9207
|
component: string;
|
|
@@ -9164,8 +9218,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9164
9218
|
}>>>>;
|
|
9165
9219
|
}, z.core.$strip>>>;
|
|
9166
9220
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9167
|
-
name: z.ZodString;
|
|
9168
9221
|
id: z.ZodString;
|
|
9222
|
+
name: z.ZodString;
|
|
9169
9223
|
description: z.ZodString;
|
|
9170
9224
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
9171
9225
|
}, {
|
|
@@ -9173,12 +9227,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9173
9227
|
in: {};
|
|
9174
9228
|
}>>>;
|
|
9175
9229
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9176
|
-
name: z.ZodString;
|
|
9177
9230
|
id: z.ZodString;
|
|
9178
|
-
|
|
9179
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9231
|
+
name: z.ZodString;
|
|
9180
9232
|
description: z.ZodString;
|
|
9181
9233
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9234
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9235
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9182
9236
|
baseUrl: z.ZodString;
|
|
9183
9237
|
}, z.core.$strip>>>;
|
|
9184
9238
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
@@ -9197,12 +9251,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9197
9251
|
}, z.core.$strip>>>;
|
|
9198
9252
|
}, z.core.$strip>>;
|
|
9199
9253
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9200
|
-
name: z.ZodString;
|
|
9201
9254
|
id: z.ZodString;
|
|
9202
|
-
|
|
9203
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9255
|
+
name: z.ZodString;
|
|
9204
9256
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9205
9257
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9258
|
+
credentialStoreId: z.ZodString;
|
|
9259
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9206
9260
|
type: z.ZodEnum<{
|
|
9207
9261
|
readonly memory: "memory";
|
|
9208
9262
|
readonly keychain: "keychain";
|
|
@@ -9217,11 +9271,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
9217
9271
|
}>;
|
|
9218
9272
|
declare const ProjectResponse: z.ZodObject<{
|
|
9219
9273
|
data: z.ZodObject<{
|
|
9220
|
-
name: z.ZodString;
|
|
9221
9274
|
id: z.ZodString;
|
|
9275
|
+
name: z.ZodString;
|
|
9276
|
+
description: z.ZodString;
|
|
9222
9277
|
createdAt: z.ZodString;
|
|
9223
9278
|
updatedAt: z.ZodString;
|
|
9224
|
-
description: z.ZodString;
|
|
9225
9279
|
models: z.ZodNullable<z.ZodType<{
|
|
9226
9280
|
base: {
|
|
9227
9281
|
model?: string | undefined;
|
|
@@ -9295,11 +9349,12 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
9295
9349
|
}, z.core.$strip>;
|
|
9296
9350
|
declare const SubAgentResponse: z.ZodObject<{
|
|
9297
9351
|
data: z.ZodObject<{
|
|
9298
|
-
name: z.ZodString;
|
|
9299
9352
|
id: z.ZodString;
|
|
9353
|
+
name: z.ZodString;
|
|
9354
|
+
description: z.ZodString;
|
|
9355
|
+
prompt: z.ZodString;
|
|
9300
9356
|
createdAt: z.ZodString;
|
|
9301
9357
|
updatedAt: z.ZodString;
|
|
9302
|
-
description: z.ZodString;
|
|
9303
9358
|
models: z.ZodNullable<z.ZodType<{
|
|
9304
9359
|
base?: {
|
|
9305
9360
|
model?: string | undefined;
|
|
@@ -9362,17 +9417,17 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
9362
9417
|
}, {
|
|
9363
9418
|
stepCountIs?: number | undefined;
|
|
9364
9419
|
}>>>;
|
|
9365
|
-
prompt: z.ZodString;
|
|
9366
9420
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
9367
9421
|
}, z.core.$strip>;
|
|
9368
9422
|
}, z.core.$strip>;
|
|
9369
9423
|
declare const AgentResponse: z.ZodObject<{
|
|
9370
9424
|
data: z.ZodObject<{
|
|
9371
|
-
name: z.ZodString;
|
|
9372
9425
|
id: z.ZodString;
|
|
9426
|
+
name: z.ZodString;
|
|
9427
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9428
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
9373
9429
|
createdAt: z.ZodString;
|
|
9374
9430
|
updatedAt: z.ZodString;
|
|
9375
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9376
9431
|
models: z.ZodNullable<z.ZodType<{
|
|
9377
9432
|
base?: {
|
|
9378
9433
|
model?: string | undefined;
|
|
@@ -9437,7 +9492,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
9437
9492
|
}>>>;
|
|
9438
9493
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
9439
9494
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
9440
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
9441
9495
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
9442
9496
|
enabled?: boolean | undefined;
|
|
9443
9497
|
numEvents?: number | undefined;
|
|
@@ -9499,14 +9553,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
9499
9553
|
}, z.core.$strip>;
|
|
9500
9554
|
declare const ToolResponse: z.ZodObject<{
|
|
9501
9555
|
data: z.ZodObject<{
|
|
9502
|
-
name: z.ZodString;
|
|
9503
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9504
9556
|
id: z.ZodString;
|
|
9505
|
-
|
|
9506
|
-
updatedAt: z.ZodString;
|
|
9557
|
+
name: z.ZodString;
|
|
9507
9558
|
description: z.ZodNullable<z.ZodString>;
|
|
9508
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9509
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9510
9559
|
config: z.ZodType<{
|
|
9511
9560
|
type: "mcp";
|
|
9512
9561
|
mcp: ToolMcpConfig;
|
|
@@ -9520,18 +9569,23 @@ declare const ToolResponse: z.ZodObject<{
|
|
|
9520
9569
|
type: "mcp";
|
|
9521
9570
|
mcp: ToolMcpConfig;
|
|
9522
9571
|
}>>;
|
|
9572
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9573
|
+
createdAt: z.ZodString;
|
|
9574
|
+
updatedAt: z.ZodString;
|
|
9575
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9576
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9523
9577
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
9524
9578
|
lastError: z.ZodNullable<z.ZodString>;
|
|
9525
9579
|
}, z.core.$strip>;
|
|
9526
9580
|
}, z.core.$strip>;
|
|
9527
9581
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
9528
9582
|
data: z.ZodObject<{
|
|
9529
|
-
name: z.ZodString;
|
|
9530
9583
|
id: z.ZodString;
|
|
9531
|
-
|
|
9532
|
-
updatedAt: z.ZodString;
|
|
9584
|
+
name: z.ZodString;
|
|
9533
9585
|
description: z.ZodString;
|
|
9534
9586
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9587
|
+
createdAt: z.ZodString;
|
|
9588
|
+
updatedAt: z.ZodString;
|
|
9535
9589
|
baseUrl: z.ZodString;
|
|
9536
9590
|
}, z.core.$strip>;
|
|
9537
9591
|
}, z.core.$strip>;
|
|
@@ -9546,15 +9600,15 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
9546
9600
|
}, z.core.$strip>;
|
|
9547
9601
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
9548
9602
|
data: z.ZodObject<{
|
|
9549
|
-
name: z.ZodNullable<z.ZodString>;
|
|
9550
9603
|
id: z.ZodString;
|
|
9551
|
-
|
|
9552
|
-
updatedAt: z.ZodString;
|
|
9604
|
+
name: z.ZodNullable<z.ZodString>;
|
|
9553
9605
|
agentId: z.ZodString;
|
|
9554
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
9555
9606
|
publicId: z.ZodString;
|
|
9556
9607
|
keyPrefix: z.ZodString;
|
|
9557
9608
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
9609
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
9610
|
+
createdAt: z.ZodString;
|
|
9611
|
+
updatedAt: z.ZodString;
|
|
9558
9612
|
}, {
|
|
9559
9613
|
out: {};
|
|
9560
9614
|
in: {};
|
|
@@ -9562,12 +9616,12 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
9562
9616
|
}, z.core.$strip>;
|
|
9563
9617
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
9564
9618
|
data: z.ZodObject<{
|
|
9565
|
-
name: z.ZodString;
|
|
9566
9619
|
id: z.ZodString;
|
|
9567
|
-
|
|
9568
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9620
|
+
name: z.ZodString;
|
|
9569
9621
|
createdAt: z.ZodString;
|
|
9570
9622
|
updatedAt: z.ZodString;
|
|
9623
|
+
credentialStoreId: z.ZodString;
|
|
9624
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9571
9625
|
type: z.ZodEnum<{
|
|
9572
9626
|
readonly memory: "memory";
|
|
9573
9627
|
readonly keychain: "keychain";
|
|
@@ -9856,22 +9910,22 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
9856
9910
|
}, z.core.$strip>;
|
|
9857
9911
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
9858
9912
|
data: z.ZodObject<{
|
|
9859
|
-
name: z.ZodString;
|
|
9860
9913
|
id: z.ZodString;
|
|
9861
|
-
|
|
9862
|
-
updatedAt: z.ZodString;
|
|
9914
|
+
name: z.ZodString;
|
|
9863
9915
|
description: z.ZodNullable<z.ZodString>;
|
|
9864
9916
|
agentId: z.ZodString;
|
|
9917
|
+
createdAt: z.ZodString;
|
|
9918
|
+
updatedAt: z.ZodString;
|
|
9865
9919
|
functionId: z.ZodString;
|
|
9866
9920
|
}, z.core.$strip>;
|
|
9867
9921
|
}, z.core.$strip>;
|
|
9868
9922
|
declare const DataComponentResponse: z.ZodObject<{
|
|
9869
9923
|
data: z.ZodObject<{
|
|
9870
|
-
name: z.ZodString;
|
|
9871
9924
|
id: z.ZodString;
|
|
9925
|
+
name: z.ZodString;
|
|
9926
|
+
description: z.ZodString;
|
|
9872
9927
|
createdAt: z.ZodString;
|
|
9873
9928
|
updatedAt: z.ZodString;
|
|
9874
|
-
description: z.ZodString;
|
|
9875
9929
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
9876
9930
|
render: z.ZodNullable<z.ZodType<{
|
|
9877
9931
|
component: string;
|
|
@@ -9890,11 +9944,11 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
9890
9944
|
}, z.core.$strip>;
|
|
9891
9945
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
9892
9946
|
data: z.ZodObject<{
|
|
9893
|
-
name: z.ZodString;
|
|
9894
9947
|
id: z.ZodString;
|
|
9948
|
+
name: z.ZodString;
|
|
9949
|
+
description: z.ZodString;
|
|
9895
9950
|
createdAt: z.ZodString;
|
|
9896
9951
|
updatedAt: z.ZodString;
|
|
9897
|
-
description: z.ZodString;
|
|
9898
9952
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
9899
9953
|
}, z.core.$strip>;
|
|
9900
9954
|
}, z.core.$strip>;
|
|
@@ -9910,21 +9964,21 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
9910
9964
|
}, z.core.$strip>;
|
|
9911
9965
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
9912
9966
|
data: z.ZodObject<{
|
|
9913
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
9914
9967
|
id: z.ZodString;
|
|
9915
9968
|
createdAt: z.ZodString;
|
|
9916
9969
|
updatedAt: z.ZodString;
|
|
9970
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
9971
|
+
toolId: z.ZodString;
|
|
9917
9972
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
9918
9973
|
subAgentId: z.ZodString;
|
|
9919
|
-
toolId: z.ZodString;
|
|
9920
9974
|
}, z.core.$strip>;
|
|
9921
9975
|
}, z.core.$strip>;
|
|
9922
9976
|
declare const ConversationResponse: z.ZodObject<{
|
|
9923
9977
|
data: z.ZodObject<{
|
|
9924
9978
|
id: z.ZodString;
|
|
9979
|
+
title: z.ZodNullable<z.ZodString>;
|
|
9925
9980
|
createdAt: z.ZodString;
|
|
9926
9981
|
updatedAt: z.ZodString;
|
|
9927
|
-
title: z.ZodNullable<z.ZodString>;
|
|
9928
9982
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
9929
9983
|
userId: z.ZodNullable<z.ZodString>;
|
|
9930
9984
|
activeSubAgentId: z.ZodString;
|
|
@@ -9956,11 +10010,11 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
9956
10010
|
}, z.core.$strip>;
|
|
9957
10011
|
declare const ProjectListResponse: z.ZodObject<{
|
|
9958
10012
|
data: z.ZodArray<z.ZodObject<{
|
|
9959
|
-
name: z.ZodString;
|
|
9960
10013
|
id: z.ZodString;
|
|
10014
|
+
name: z.ZodString;
|
|
10015
|
+
description: z.ZodString;
|
|
9961
10016
|
createdAt: z.ZodString;
|
|
9962
10017
|
updatedAt: z.ZodString;
|
|
9963
|
-
description: z.ZodString;
|
|
9964
10018
|
models: z.ZodNullable<z.ZodType<{
|
|
9965
10019
|
base: {
|
|
9966
10020
|
model?: string | undefined;
|
|
@@ -10040,11 +10094,12 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
10040
10094
|
}, z.core.$strip>;
|
|
10041
10095
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
10042
10096
|
data: z.ZodArray<z.ZodObject<{
|
|
10043
|
-
name: z.ZodString;
|
|
10044
10097
|
id: z.ZodString;
|
|
10098
|
+
name: z.ZodString;
|
|
10099
|
+
description: z.ZodString;
|
|
10100
|
+
prompt: z.ZodString;
|
|
10045
10101
|
createdAt: z.ZodString;
|
|
10046
10102
|
updatedAt: z.ZodString;
|
|
10047
|
-
description: z.ZodString;
|
|
10048
10103
|
models: z.ZodNullable<z.ZodType<{
|
|
10049
10104
|
base?: {
|
|
10050
10105
|
model?: string | undefined;
|
|
@@ -10107,7 +10162,6 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
10107
10162
|
}, {
|
|
10108
10163
|
stepCountIs?: number | undefined;
|
|
10109
10164
|
}>>>;
|
|
10110
|
-
prompt: z.ZodString;
|
|
10111
10165
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
10112
10166
|
}, z.core.$strip>>;
|
|
10113
10167
|
pagination: z.ZodObject<{
|
|
@@ -10119,11 +10173,12 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
10119
10173
|
}, z.core.$strip>;
|
|
10120
10174
|
declare const AgentListResponse: z.ZodObject<{
|
|
10121
10175
|
data: z.ZodArray<z.ZodObject<{
|
|
10122
|
-
name: z.ZodString;
|
|
10123
10176
|
id: z.ZodString;
|
|
10177
|
+
name: z.ZodString;
|
|
10178
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10179
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
10124
10180
|
createdAt: z.ZodString;
|
|
10125
10181
|
updatedAt: z.ZodString;
|
|
10126
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10127
10182
|
models: z.ZodNullable<z.ZodType<{
|
|
10128
10183
|
base?: {
|
|
10129
10184
|
model?: string | undefined;
|
|
@@ -10188,7 +10243,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
10188
10243
|
}>>>;
|
|
10189
10244
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
10190
10245
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
10191
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
10192
10246
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
10193
10247
|
enabled?: boolean | undefined;
|
|
10194
10248
|
numEvents?: number | undefined;
|
|
@@ -10256,14 +10310,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
10256
10310
|
}, z.core.$strip>;
|
|
10257
10311
|
declare const ToolListResponse: z.ZodObject<{
|
|
10258
10312
|
data: z.ZodArray<z.ZodObject<{
|
|
10259
|
-
name: z.ZodString;
|
|
10260
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
10261
10313
|
id: z.ZodString;
|
|
10262
|
-
|
|
10263
|
-
updatedAt: z.ZodString;
|
|
10314
|
+
name: z.ZodString;
|
|
10264
10315
|
description: z.ZodNullable<z.ZodString>;
|
|
10265
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
10266
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
10267
10316
|
config: z.ZodType<{
|
|
10268
10317
|
type: "mcp";
|
|
10269
10318
|
mcp: ToolMcpConfig;
|
|
@@ -10277,6 +10326,11 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
10277
10326
|
type: "mcp";
|
|
10278
10327
|
mcp: ToolMcpConfig;
|
|
10279
10328
|
}>>;
|
|
10329
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
10330
|
+
createdAt: z.ZodString;
|
|
10331
|
+
updatedAt: z.ZodString;
|
|
10332
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
10333
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
10280
10334
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
10281
10335
|
lastError: z.ZodNullable<z.ZodString>;
|
|
10282
10336
|
}, z.core.$strip>>;
|
|
@@ -10289,12 +10343,12 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
10289
10343
|
}, z.core.$strip>;
|
|
10290
10344
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
10291
10345
|
data: z.ZodArray<z.ZodObject<{
|
|
10292
|
-
name: z.ZodString;
|
|
10293
10346
|
id: z.ZodString;
|
|
10294
|
-
|
|
10295
|
-
updatedAt: z.ZodString;
|
|
10347
|
+
name: z.ZodString;
|
|
10296
10348
|
description: z.ZodString;
|
|
10297
10349
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10350
|
+
createdAt: z.ZodString;
|
|
10351
|
+
updatedAt: z.ZodString;
|
|
10298
10352
|
baseUrl: z.ZodString;
|
|
10299
10353
|
}, z.core.$strip>>;
|
|
10300
10354
|
pagination: z.ZodObject<{
|
|
@@ -10321,15 +10375,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
10321
10375
|
}, z.core.$strip>;
|
|
10322
10376
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
10323
10377
|
data: z.ZodArray<z.ZodObject<{
|
|
10324
|
-
name: z.ZodNullable<z.ZodString>;
|
|
10325
10378
|
id: z.ZodString;
|
|
10326
|
-
|
|
10327
|
-
updatedAt: z.ZodString;
|
|
10379
|
+
name: z.ZodNullable<z.ZodString>;
|
|
10328
10380
|
agentId: z.ZodString;
|
|
10329
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
10330
10381
|
publicId: z.ZodString;
|
|
10331
10382
|
keyPrefix: z.ZodString;
|
|
10332
10383
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
10384
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
10385
|
+
createdAt: z.ZodString;
|
|
10386
|
+
updatedAt: z.ZodString;
|
|
10333
10387
|
}, {
|
|
10334
10388
|
out: {};
|
|
10335
10389
|
in: {};
|
|
@@ -10343,12 +10397,12 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
10343
10397
|
}, z.core.$strip>;
|
|
10344
10398
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
10345
10399
|
data: z.ZodArray<z.ZodObject<{
|
|
10346
|
-
name: z.ZodString;
|
|
10347
10400
|
id: z.ZodString;
|
|
10348
|
-
|
|
10349
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10401
|
+
name: z.ZodString;
|
|
10350
10402
|
createdAt: z.ZodString;
|
|
10351
10403
|
updatedAt: z.ZodString;
|
|
10404
|
+
credentialStoreId: z.ZodString;
|
|
10405
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10352
10406
|
type: z.ZodEnum<{
|
|
10353
10407
|
readonly memory: "memory";
|
|
10354
10408
|
readonly keychain: "keychain";
|
|
@@ -10649,12 +10703,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
10649
10703
|
}, z.core.$strip>;
|
|
10650
10704
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
10651
10705
|
data: z.ZodArray<z.ZodObject<{
|
|
10652
|
-
name: z.ZodString;
|
|
10653
10706
|
id: z.ZodString;
|
|
10654
|
-
|
|
10655
|
-
updatedAt: z.ZodString;
|
|
10707
|
+
name: z.ZodString;
|
|
10656
10708
|
description: z.ZodNullable<z.ZodString>;
|
|
10657
10709
|
agentId: z.ZodString;
|
|
10710
|
+
createdAt: z.ZodString;
|
|
10711
|
+
updatedAt: z.ZodString;
|
|
10658
10712
|
functionId: z.ZodString;
|
|
10659
10713
|
}, z.core.$strip>>;
|
|
10660
10714
|
pagination: z.ZodObject<{
|
|
@@ -10666,11 +10720,11 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
10666
10720
|
}, z.core.$strip>;
|
|
10667
10721
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
10668
10722
|
data: z.ZodArray<z.ZodObject<{
|
|
10669
|
-
name: z.ZodString;
|
|
10670
10723
|
id: z.ZodString;
|
|
10724
|
+
name: z.ZodString;
|
|
10725
|
+
description: z.ZodString;
|
|
10671
10726
|
createdAt: z.ZodString;
|
|
10672
10727
|
updatedAt: z.ZodString;
|
|
10673
|
-
description: z.ZodString;
|
|
10674
10728
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
10675
10729
|
render: z.ZodNullable<z.ZodType<{
|
|
10676
10730
|
component: string;
|
|
@@ -10695,11 +10749,11 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
10695
10749
|
}, z.core.$strip>;
|
|
10696
10750
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
10697
10751
|
data: z.ZodArray<z.ZodObject<{
|
|
10698
|
-
name: z.ZodString;
|
|
10699
10752
|
id: z.ZodString;
|
|
10753
|
+
name: z.ZodString;
|
|
10754
|
+
description: z.ZodString;
|
|
10700
10755
|
createdAt: z.ZodString;
|
|
10701
10756
|
updatedAt: z.ZodString;
|
|
10702
|
-
description: z.ZodString;
|
|
10703
10757
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
10704
10758
|
}, z.core.$strip>>;
|
|
10705
10759
|
pagination: z.ZodObject<{
|
|
@@ -10727,13 +10781,13 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
10727
10781
|
}, z.core.$strip>;
|
|
10728
10782
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
10729
10783
|
data: z.ZodArray<z.ZodObject<{
|
|
10730
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
10731
10784
|
id: z.ZodString;
|
|
10732
10785
|
createdAt: z.ZodString;
|
|
10733
10786
|
updatedAt: z.ZodString;
|
|
10787
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
10788
|
+
toolId: z.ZodString;
|
|
10734
10789
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
10735
10790
|
subAgentId: z.ZodString;
|
|
10736
|
-
toolId: z.ZodString;
|
|
10737
10791
|
}, z.core.$strip>>;
|
|
10738
10792
|
pagination: z.ZodObject<{
|
|
10739
10793
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -10745,9 +10799,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
10745
10799
|
declare const ConversationListResponse: z.ZodObject<{
|
|
10746
10800
|
data: z.ZodArray<z.ZodObject<{
|
|
10747
10801
|
id: z.ZodString;
|
|
10802
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10748
10803
|
createdAt: z.ZodString;
|
|
10749
10804
|
updatedAt: z.ZodString;
|
|
10750
|
-
title: z.ZodNullable<z.ZodString>;
|
|
10751
10805
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
10752
10806
|
userId: z.ZodNullable<z.ZodString>;
|
|
10753
10807
|
activeSubAgentId: z.ZodString;
|
|
@@ -11276,4 +11330,4 @@ interface ExecutionContext {
|
|
|
11276
11330
|
};
|
|
11277
11331
|
}
|
|
11278
11332
|
|
|
11279
|
-
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ApiKeyInsert as E, FunctionApiInsertSchema as F, type ApiKeyUpdate as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type SubAgentScopeConfig as N, type ContextCacheSelect as O, type Part as P, type ContextCacheInsert as Q, type ContextConfigInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigUpdate as U, type ConversationSelect as V, type ConversationInsert as W, type ConversationUpdate as X, type CredentialReferenceSelect as Y, type ToolSelect as Z, type ExternalAgentSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentUpdate as a5, type FunctionApiInsert as a6, type FunctionToolApiInsert as a7, type FunctionToolApiUpdate as a8, type Artifact as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type SubAgentExternalAgentRelationInsert as al, type SubAgentRelationInsert as am, type SubAgentRelationUpdate as an, type SubAgentToolRelationUpdate as ao, type SubAgentInsert as ap, type SubAgentUpdate as aq, type SubAgentSelect as ar, type SubAgentTeamAgentRelationInsert as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationSelect as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationInsert as bS, type ExternalSubAgentRelationApiInsert as bT, type AgentApiSelect as bU, type AgentApiInsert as bV, type AgentApiUpdate as bW, type TaskUpdate as bX, type TaskApiSelect as bY, type TaskApiInsert as bZ, type TaskApiUpdate as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type SubAgentExternalAgentRelationSelect as c$, type TaskRelationInsert as c0, type TaskRelationUpdate as c1, type TaskRelationApiSelect as c2, type TaskRelationApiInsert as c3, type TaskRelationApiUpdate as c4, type ToolApiSelect as c5, type ToolApiInsert as c6, type ToolApiUpdate as c7, type FunctionSelect as c8, type FunctionInsert as c9, type SubAgentDataComponentApiSelect as cA, type SubAgentDataComponentApiInsert as cB, type SubAgentDataComponentApiUpdate as cC, type ArtifactComponentApiSelect as cD, type ArtifactComponentApiInsert as cE, type ArtifactComponentApiUpdate as cF, type SubAgentArtifactComponentSelect as cG, type SubAgentArtifactComponentInsert as cH, type SubAgentArtifactComponentUpdate as cI, type SubAgentArtifactComponentApiSelect as cJ, type SubAgentArtifactComponentApiInsert as cK, type SubAgentArtifactComponentApiUpdate as cL, type ExternalAgentApiSelect as cM, type ExternalAgentApiInsert as cN, type ExternalAgentApiUpdate as cO, type AllAgentSelect as cP, type ApiKeyApiSelect as cQ, type ApiKeyApiInsert as cR, type ApiKeyApiUpdate as cS, type ApiKeyApiCreationResponse as cT, type CredentialReferenceApiSelect as cU, type CredentialReferenceApiUpdate as cV, type SubAgentToolRelationSelect as cW, type SubAgentToolRelationInsert as cX, type SubAgentToolRelationApiSelect as cY, type SubAgentToolRelationApiInsert as cZ, type SubAgentToolRelationApiUpdate as c_, type FunctionUpdate as ca, type FunctionApiSelect as cb, type FunctionApiUpdate as cc, type FunctionToolApiSelect as cd, type ConversationApiSelect as ce, type ConversationApiInsert as cf, type ConversationApiUpdate as cg, type MessageSelect as ch, type MessageApiSelect as ci, type MessageApiInsert as cj, type MessageApiUpdate as ck, type ContextConfigApiSelect as cl, type ContextConfigApiInsert as cm, type ContextConfigApiUpdate as cn, type FetchDefinition as co, type FetchConfig as cp, type ContextCacheUpdate as cq, type ContextCacheApiSelect as cr, type ContextCacheApiInsert as cs, type ContextCacheApiUpdate as ct, type DataComponentApiSelect as cu, type DataComponentApiInsert as cv, type DataComponentApiUpdate as cw, type SubAgentDataComponentSelect as cx, type SubAgentDataComponentInsert as cy, type SubAgentDataComponentUpdate as cz, type StopWhen as d, SubAgentRelationQuerySchema as d$, type SubAgentExternalAgentRelationUpdate as d0, type SubAgentExternalAgentRelationApiSelect as d1, type SubAgentExternalAgentRelationApiInsert as d2, type SubAgentExternalAgentRelationApiUpdate as d3, type SubAgentTeamAgentRelationSelect as d4, type SubAgentTeamAgentRelationUpdate as d5, type SubAgentTeamAgentRelationApiSelect as d6, type SubAgentTeamAgentRelationApiInsert as d7, type SubAgentTeamAgentRelationApiUpdate as d8, type LedgerArtifactInsert as d9, type McpServerAuth as dA, type McpTransportConfig as dB, type McpServerCapabilities as dC, type McpToolDefinition as dD, TOOL_STATUS_VALUES as dE, VALID_RELATION_TYPES as dF, MCPServerType as dG, MIN_ID_LENGTH as dH, MAX_ID_LENGTH as dI, URL_SAFE_ID_PATTERN as dJ, resourceIdSchema as dK, ModelSchema as dL, ProjectModelSchema as dM, FunctionToolConfigSchema as dN, type FunctionToolConfig as dO, SubAgentSelectSchema as dP, SubAgentInsertSchema as dQ, SubAgentUpdateSchema as dR, SubAgentApiSelectSchema as dS, SubAgentApiInsertSchema as dT, SubAgentApiUpdateSchema as dU, SubAgentRelationSelectSchema as dV, SubAgentRelationInsertSchema as dW, SubAgentRelationUpdateSchema as dX, SubAgentRelationApiSelectSchema as dY, SubAgentRelationApiInsertSchema as dZ, SubAgentRelationApiUpdateSchema as d_, type LedgerArtifactUpdate as da, type LedgerArtifactApiSelect as db, type LedgerArtifactApiInsert as dc, type LedgerArtifactApiUpdate as dd, type FullAgentAgentInsert as de, type CanUseItem as df, type CanDelegateToExternalAgent as dg, type SubAgentDefinition as dh, type ToolDefinition as di, type ProjectApiSelect as dj, type ProjectApiInsert as dk, type ProjectApiUpdate as dl, type Pagination as dm, type SummaryEvent as dn, type MessageType as dp, type MessageRole as dq, type MessageMode as dr, type Models as ds, type ProjectModels as dt, type StatusUpdateSettings as du, type StatusComponent as dv, type ConversationScopeOptions as dw, type AgentConversationHistoryConfig as dx, type ContextCacheEntry as dy, type McpAuthType as dz, type AgentStopWhen as e, SubAgentArtifactComponentInsertSchema as e$, ExternalSubAgentRelationInsertSchema as e0, ExternalSubAgentRelationApiInsertSchema as e1, AgentSelectSchema as e2, AgentInsertSchema as e3, AgentUpdateSchema as e4, AgentApiSelectSchema as e5, AgentApiInsertSchema as e6, AgentApiUpdateSchema as e7, TaskSelectSchema as e8, TaskInsertSchema as e9, MessageApiUpdateSchema as eA, ContextCacheSelectSchema as eB, ContextCacheInsertSchema as eC, ContextCacheUpdateSchema as eD, ContextCacheApiSelectSchema as eE, ContextCacheApiInsertSchema as eF, ContextCacheApiUpdateSchema as eG, DataComponentSelectSchema as eH, DataComponentInsertSchema as eI, DataComponentBaseSchema as eJ, DataComponentUpdateSchema as eK, DataComponentApiSelectSchema as eL, DataComponentApiInsertSchema as eM, DataComponentApiUpdateSchema as eN, SubAgentDataComponentSelectSchema as eO, SubAgentDataComponentInsertSchema as eP, SubAgentDataComponentUpdateSchema as eQ, SubAgentDataComponentApiSelectSchema as eR, SubAgentDataComponentApiInsertSchema as eS, SubAgentDataComponentApiUpdateSchema as eT, ArtifactComponentSelectSchema as eU, ArtifactComponentInsertSchema as eV, ArtifactComponentUpdateSchema as eW, ArtifactComponentApiSelectSchema as eX, ArtifactComponentApiInsertSchema as eY, ArtifactComponentApiUpdateSchema as eZ, SubAgentArtifactComponentSelectSchema as e_, TaskUpdateSchema as ea, TaskApiSelectSchema as eb, TaskApiInsertSchema as ec, TaskApiUpdateSchema as ed, TaskRelationSelectSchema as ee, TaskRelationInsertSchema as ef, TaskRelationUpdateSchema as eg, TaskRelationApiSelectSchema as eh, TaskRelationApiInsertSchema as ei, TaskRelationApiUpdateSchema as ej, McpTransportConfigSchema as ek, ToolStatusSchema as el, McpToolDefinitionSchema as em, ToolSelectSchema as en, ToolInsertSchema as eo, ConversationSelectSchema as ep, ConversationInsertSchema as eq, ConversationUpdateSchema as er, ConversationApiSelectSchema as es, ConversationApiInsertSchema as et, ConversationApiUpdateSchema as eu, MessageSelectSchema as ev, MessageInsertSchema as ew, MessageUpdateSchema as ex, MessageApiSelectSchema as ey, MessageApiInsertSchema as ez, type SubAgentStopWhen as f, SubAgentTeamAgentRelationApiUpdateSchema as f$, SubAgentArtifactComponentUpdateSchema as f0, SubAgentArtifactComponentApiSelectSchema as f1, SubAgentArtifactComponentApiInsertSchema as f2, SubAgentArtifactComponentApiUpdateSchema as f3, ExternalAgentSelectSchema as f4, ExternalAgentInsertSchema as f5, ExternalAgentUpdateSchema as f6, ExternalAgentApiSelectSchema as f7, ExternalAgentApiInsertSchema as f8, ExternalAgentApiUpdateSchema as f9, FunctionInsertSchema as fA, FunctionUpdateSchema as fB, FetchConfigSchema as fC, FetchDefinitionSchema as fD, ContextConfigSelectSchema as fE, ContextConfigInsertSchema as fF, ContextConfigUpdateSchema as fG, ContextConfigApiSelectSchema as fH, ContextConfigApiInsertSchema as fI, ContextConfigApiUpdateSchema as fJ, SubAgentToolRelationSelectSchema as fK, SubAgentToolRelationInsertSchema as fL, SubAgentToolRelationUpdateSchema as fM, SubAgentToolRelationApiSelectSchema as fN, SubAgentToolRelationApiInsertSchema as fO, SubAgentToolRelationApiUpdateSchema as fP, SubAgentExternalAgentRelationSelectSchema as fQ, SubAgentExternalAgentRelationInsertSchema as fR, SubAgentExternalAgentRelationUpdateSchema as fS, SubAgentExternalAgentRelationApiSelectSchema as fT, SubAgentExternalAgentRelationApiInsertSchema as fU, SubAgentExternalAgentRelationApiUpdateSchema as fV, SubAgentTeamAgentRelationSelectSchema as fW, SubAgentTeamAgentRelationInsertSchema as fX, SubAgentTeamAgentRelationUpdateSchema as fY, SubAgentTeamAgentRelationApiSelectSchema as fZ, SubAgentTeamAgentRelationApiInsertSchema as f_, AllAgentSchema as fa, ApiKeySelectSchema as fb, ApiKeyInsertSchema as fc, ApiKeyUpdateSchema as fd, ApiKeyApiSelectSchema as fe, ApiKeyApiCreationResponseSchema as ff, ApiKeyApiInsertSchema as fg, CredentialReferenceSelectSchema as fh, CredentialReferenceInsertSchema as fi, CredentialReferenceUpdateSchema as fj, CredentialReferenceApiSelectSchema as fk, CredentialReferenceApiInsertSchema as fl, CredentialReferenceApiUpdateSchema as fm, McpToolSchema as fn, MCPToolConfigSchema as fo, ToolUpdateSchema as fp, ToolApiSelectSchema as fq, ToolApiInsertSchema as fr, ToolApiUpdateSchema as fs, FunctionToolSelectSchema as ft, FunctionToolInsertSchema as fu, FunctionToolUpdateSchema as fv, FunctionToolApiSelectSchema as fw, FunctionToolApiInsertSchema as fx, FunctionToolApiUpdateSchema as fy, FunctionSelectSchema as fz, type ModelSettings as g, TenantParamsSchema as g$, LedgerArtifactSelectSchema as g0, LedgerArtifactInsertSchema as g1, LedgerArtifactUpdateSchema as g2, LedgerArtifactApiSelectSchema as g3, LedgerArtifactApiInsertSchema as g4, LedgerArtifactApiUpdateSchema as g5, StatusComponentSchema as g6, StatusUpdateSchema as g7, CanUseItemSchema as g8, canDelegateToExternalAgentSchema as g9, DataComponentResponse as gA, ArtifactComponentResponse as gB, SubAgentRelationResponse as gC, SubAgentToolRelationResponse as gD, ConversationResponse as gE, MessageResponse as gF, ProjectListResponse as gG, SubAgentListResponse as gH, AgentListResponse as gI, ToolListResponse as gJ, ExternalAgentListResponse as gK, ContextConfigListResponse as gL, ApiKeyListResponse as gM, CredentialReferenceListResponse as gN, FunctionListResponse as gO, FunctionToolListResponse as gP, DataComponentListResponse as gQ, ArtifactComponentListResponse as gR, SubAgentRelationListResponse as gS, SubAgentToolRelationListResponse as gT, ConversationListResponse as gU, MessageListResponse as gV, SubAgentDataComponentResponse as gW, SubAgentArtifactComponentResponse as gX, SubAgentDataComponentListResponse as gY, SubAgentArtifactComponentListResponse as gZ, HeadersScopeSchema as g_, canDelegateToTeamAgentSchema as ga, TeamAgentSchema as gb, AgentWithinContextOfProjectSchema as gc, PaginationSchema as gd, ListResponseSchema as ge, SingleResponseSchema as gf, ErrorResponseSchema as gg, ExistsResponseSchema as gh, RemovedResponseSchema as gi, ProjectSelectSchema as gj, ProjectInsertSchema as gk, ProjectUpdateSchema as gl, ProjectApiSelectSchema as gm, ProjectApiInsertSchema as gn, ProjectApiUpdateSchema as go, FullProjectDefinitionSchema as gp, ProjectResponse as gq, SubAgentResponse as gr, AgentResponse as gs, ToolResponse as gt, ExternalAgentResponse as gu, ContextConfigResponse as gv, ApiKeyResponse as gw, CredentialReferenceResponse as gx, FunctionResponse as gy, FunctionToolResponse as gz, CredentialStoreType as h, TenantIdParamsSchema as h0, TenantProjectParamsSchema as h1, TenantProjectIdParamsSchema as h2, TenantProjectAgentParamsSchema as h3, TenantProjectAgentIdParamsSchema as h4, TenantProjectAgentSubAgentParamsSchema as h5, TenantProjectAgentSubAgentIdParamsSchema as h6, PaginationQueryParamsSchema as h7, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type ProjectScopeConfig as u, type FullAgentDefinition as v, type AgentScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
|
|
11333
|
+
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ApiKeyInsert as E, FunctionApiInsertSchema as F, type ApiKeyUpdate as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type SubAgentScopeConfig as N, type ContextCacheSelect as O, type Part as P, type ContextCacheInsert as Q, type ContextConfigInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigUpdate as U, type ConversationSelect as V, type ConversationInsert as W, type ConversationUpdate as X, type CredentialReferenceSelect as Y, type ToolSelect as Z, type ExternalAgentSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentUpdate as a5, type FunctionApiInsert as a6, type FunctionToolApiInsert as a7, type FunctionToolApiUpdate as a8, type Artifact as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type SubAgentExternalAgentRelationInsert as al, type SubAgentRelationInsert as am, type SubAgentRelationUpdate as an, type SubAgentToolRelationUpdate as ao, type SubAgentInsert as ap, type SubAgentUpdate as aq, type SubAgentSelect as ar, type SubAgentTeamAgentRelationInsert as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationSelect as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationInsert as bS, type ExternalSubAgentRelationApiInsert as bT, type AgentApiSelect as bU, type AgentApiInsert as bV, type AgentApiUpdate as bW, type TaskUpdate as bX, type TaskApiSelect as bY, type TaskApiInsert as bZ, type TaskApiUpdate as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type SubAgentExternalAgentRelationSelect as c$, type TaskRelationInsert as c0, type TaskRelationUpdate as c1, type TaskRelationApiSelect as c2, type TaskRelationApiInsert as c3, type TaskRelationApiUpdate as c4, type ToolApiSelect as c5, type ToolApiInsert as c6, type ToolApiUpdate as c7, type FunctionSelect as c8, type FunctionInsert as c9, type SubAgentDataComponentApiSelect as cA, type SubAgentDataComponentApiInsert as cB, type SubAgentDataComponentApiUpdate as cC, type ArtifactComponentApiSelect as cD, type ArtifactComponentApiInsert as cE, type ArtifactComponentApiUpdate as cF, type SubAgentArtifactComponentSelect as cG, type SubAgentArtifactComponentInsert as cH, type SubAgentArtifactComponentUpdate as cI, type SubAgentArtifactComponentApiSelect as cJ, type SubAgentArtifactComponentApiInsert as cK, type SubAgentArtifactComponentApiUpdate as cL, type ExternalAgentApiSelect as cM, type ExternalAgentApiInsert as cN, type ExternalAgentApiUpdate as cO, type AllAgentSelect as cP, type ApiKeyApiSelect as cQ, type ApiKeyApiInsert as cR, type ApiKeyApiUpdate as cS, type ApiKeyApiCreationResponse as cT, type CredentialReferenceApiSelect as cU, type CredentialReferenceApiUpdate as cV, type SubAgentToolRelationSelect as cW, type SubAgentToolRelationInsert as cX, type SubAgentToolRelationApiSelect as cY, type SubAgentToolRelationApiInsert as cZ, type SubAgentToolRelationApiUpdate as c_, type FunctionUpdate as ca, type FunctionApiSelect as cb, type FunctionApiUpdate as cc, type FunctionToolApiSelect as cd, type ConversationApiSelect as ce, type ConversationApiInsert as cf, type ConversationApiUpdate as cg, type MessageSelect as ch, type MessageApiSelect as ci, type MessageApiInsert as cj, type MessageApiUpdate as ck, type ContextConfigApiSelect as cl, type ContextConfigApiInsert as cm, type ContextConfigApiUpdate as cn, type FetchDefinition as co, type FetchConfig as cp, type ContextCacheUpdate as cq, type ContextCacheApiSelect as cr, type ContextCacheApiInsert as cs, type ContextCacheApiUpdate as ct, type DataComponentApiSelect as cu, type DataComponentApiInsert as cv, type DataComponentApiUpdate as cw, type SubAgentDataComponentSelect as cx, type SubAgentDataComponentInsert as cy, type SubAgentDataComponentUpdate as cz, type StopWhen as d, SubAgentRelationQuerySchema as d$, type SubAgentExternalAgentRelationUpdate as d0, type SubAgentExternalAgentRelationApiSelect as d1, type SubAgentExternalAgentRelationApiInsert as d2, type SubAgentExternalAgentRelationApiUpdate as d3, type SubAgentTeamAgentRelationSelect as d4, type SubAgentTeamAgentRelationUpdate as d5, type SubAgentTeamAgentRelationApiSelect as d6, type SubAgentTeamAgentRelationApiInsert as d7, type SubAgentTeamAgentRelationApiUpdate as d8, type LedgerArtifactInsert as d9, type McpServerAuth as dA, type McpTransportConfig as dB, type McpServerCapabilities as dC, type McpToolDefinition as dD, TOOL_STATUS_VALUES as dE, VALID_RELATION_TYPES as dF, MCPServerType as dG, MIN_ID_LENGTH as dH, MAX_ID_LENGTH as dI, URL_SAFE_ID_PATTERN as dJ, resourceIdSchema as dK, ModelSchema as dL, ProjectModelSchema as dM, FunctionToolConfigSchema as dN, type FunctionToolConfig as dO, SubAgentSelectSchema as dP, SubAgentInsertSchema as dQ, SubAgentUpdateSchema as dR, SubAgentApiSelectSchema as dS, SubAgentApiInsertSchema as dT, SubAgentApiUpdateSchema as dU, SubAgentRelationSelectSchema as dV, SubAgentRelationInsertSchema as dW, SubAgentRelationUpdateSchema as dX, SubAgentRelationApiSelectSchema as dY, SubAgentRelationApiInsertSchema as dZ, SubAgentRelationApiUpdateSchema as d_, type LedgerArtifactUpdate as da, type LedgerArtifactApiSelect as db, type LedgerArtifactApiInsert as dc, type LedgerArtifactApiUpdate as dd, type FullAgentAgentInsert as de, type CanUseItem as df, type CanDelegateToExternalAgent as dg, type SubAgentDefinition as dh, type ToolDefinition as di, type ProjectApiSelect as dj, type ProjectApiInsert as dk, type ProjectApiUpdate as dl, type Pagination as dm, type SummaryEvent as dn, type MessageType as dp, type MessageRole as dq, type MessageMode as dr, type Models as ds, type ProjectModels as dt, type StatusUpdateSettings as du, type StatusComponent as dv, type ConversationScopeOptions as dw, type AgentConversationHistoryConfig as dx, type ContextCacheEntry as dy, type McpAuthType as dz, type AgentStopWhen as e, SubAgentArtifactComponentInsertSchema as e$, ExternalSubAgentRelationInsertSchema as e0, ExternalSubAgentRelationApiInsertSchema as e1, AgentSelectSchema as e2, AgentInsertSchema as e3, AgentUpdateSchema as e4, AgentApiSelectSchema as e5, AgentApiInsertSchema as e6, AgentApiUpdateSchema as e7, TaskSelectSchema as e8, TaskInsertSchema as e9, MessageApiUpdateSchema as eA, ContextCacheSelectSchema as eB, ContextCacheInsertSchema as eC, ContextCacheUpdateSchema as eD, ContextCacheApiSelectSchema as eE, ContextCacheApiInsertSchema as eF, ContextCacheApiUpdateSchema as eG, DataComponentSelectSchema as eH, DataComponentInsertSchema as eI, DataComponentBaseSchema as eJ, DataComponentUpdateSchema as eK, DataComponentApiSelectSchema as eL, DataComponentApiInsertSchema as eM, DataComponentApiUpdateSchema as eN, SubAgentDataComponentSelectSchema as eO, SubAgentDataComponentInsertSchema as eP, SubAgentDataComponentUpdateSchema as eQ, SubAgentDataComponentApiSelectSchema as eR, SubAgentDataComponentApiInsertSchema as eS, SubAgentDataComponentApiUpdateSchema as eT, ArtifactComponentSelectSchema as eU, ArtifactComponentInsertSchema as eV, ArtifactComponentUpdateSchema as eW, ArtifactComponentApiSelectSchema as eX, ArtifactComponentApiInsertSchema as eY, ArtifactComponentApiUpdateSchema as eZ, SubAgentArtifactComponentSelectSchema as e_, TaskUpdateSchema as ea, TaskApiSelectSchema as eb, TaskApiInsertSchema as ec, TaskApiUpdateSchema as ed, TaskRelationSelectSchema as ee, TaskRelationInsertSchema as ef, TaskRelationUpdateSchema as eg, TaskRelationApiSelectSchema as eh, TaskRelationApiInsertSchema as ei, TaskRelationApiUpdateSchema as ej, McpTransportConfigSchema as ek, ToolStatusSchema as el, McpToolDefinitionSchema as em, ToolSelectSchema as en, ToolInsertSchema as eo, ConversationSelectSchema as ep, ConversationInsertSchema as eq, ConversationUpdateSchema as er, ConversationApiSelectSchema as es, ConversationApiInsertSchema as et, ConversationApiUpdateSchema as eu, MessageSelectSchema as ev, MessageInsertSchema as ew, MessageUpdateSchema as ex, MessageApiSelectSchema as ey, MessageApiInsertSchema as ez, type SubAgentStopWhen as f, SubAgentExternalAgentRelationApiSelectSchema as f$, SubAgentArtifactComponentUpdateSchema as f0, SubAgentArtifactComponentApiSelectSchema as f1, SubAgentArtifactComponentApiInsertSchema as f2, SubAgentArtifactComponentApiUpdateSchema as f3, ExternalAgentSelectSchema as f4, ExternalAgentInsertSchema as f5, ExternalAgentUpdateSchema as f6, ExternalAgentApiSelectSchema as f7, ExternalAgentApiInsertSchema as f8, ExternalAgentApiUpdateSchema as f9, ToolApiUpdateSchema as fA, FunctionToolSelectSchema as fB, FunctionToolInsertSchema as fC, FunctionToolUpdateSchema as fD, FunctionToolApiSelectSchema as fE, FunctionToolApiInsertSchema as fF, FunctionToolApiUpdateSchema as fG, FunctionSelectSchema as fH, FunctionInsertSchema as fI, FunctionUpdateSchema as fJ, FetchConfigSchema as fK, FetchDefinitionSchema as fL, ContextConfigSelectSchema as fM, ContextConfigInsertSchema as fN, ContextConfigUpdateSchema as fO, ContextConfigApiSelectSchema as fP, ContextConfigApiInsertSchema as fQ, ContextConfigApiUpdateSchema as fR, SubAgentToolRelationSelectSchema as fS, SubAgentToolRelationInsertSchema as fT, SubAgentToolRelationUpdateSchema as fU, SubAgentToolRelationApiSelectSchema as fV, SubAgentToolRelationApiInsertSchema as fW, SubAgentToolRelationApiUpdateSchema as fX, SubAgentExternalAgentRelationSelectSchema as fY, SubAgentExternalAgentRelationInsertSchema as fZ, SubAgentExternalAgentRelationUpdateSchema as f_, AllAgentSchema as fa, ApiKeySelectSchema as fb, ApiKeyInsertSchema as fc, ApiKeyUpdateSchema as fd, ApiKeyApiSelectSchema as fe, ApiKeyApiCreationResponseSchema as ff, ApiKeyApiInsertSchema as fg, CredentialReferenceSelectSchema as fh, CredentialReferenceInsertSchema as fi, CredentialReferenceUpdateSchema as fj, CredentialReferenceApiSelectSchema as fk, CredentialReferenceApiInsertSchema as fl, CredentialReferenceApiUpdateSchema as fm, CredentialStoreSchema as fn, CredentialStoreListResponseSchema as fo, CreateCredentialInStoreRequestSchema as fp, CreateCredentialInStoreResponseSchema as fq, RelatedAgentInfoSchema as fr, ComponentAssociationSchema as fs, OAuthLoginQuerySchema as ft, OAuthCallbackQuerySchema as fu, McpToolSchema as fv, MCPToolConfigSchema as fw, ToolUpdateSchema as fx, ToolApiSelectSchema as fy, ToolApiInsertSchema as fz, type ModelSettings as g, SubAgentToolRelationListResponse as g$, SubAgentExternalAgentRelationApiInsertSchema as g0, SubAgentExternalAgentRelationApiUpdateSchema as g1, SubAgentTeamAgentRelationSelectSchema as g2, SubAgentTeamAgentRelationInsertSchema as g3, SubAgentTeamAgentRelationUpdateSchema as g4, SubAgentTeamAgentRelationApiSelectSchema as g5, SubAgentTeamAgentRelationApiInsertSchema as g6, SubAgentTeamAgentRelationApiUpdateSchema as g7, LedgerArtifactSelectSchema as g8, LedgerArtifactInsertSchema as g9, AgentResponse as gA, ToolResponse as gB, ExternalAgentResponse as gC, ContextConfigResponse as gD, ApiKeyResponse as gE, CredentialReferenceResponse as gF, FunctionResponse as gG, FunctionToolResponse as gH, DataComponentResponse as gI, ArtifactComponentResponse as gJ, SubAgentRelationResponse as gK, SubAgentToolRelationResponse as gL, ConversationResponse as gM, MessageResponse as gN, ProjectListResponse as gO, SubAgentListResponse as gP, AgentListResponse as gQ, ToolListResponse as gR, ExternalAgentListResponse as gS, ContextConfigListResponse as gT, ApiKeyListResponse as gU, CredentialReferenceListResponse as gV, FunctionListResponse as gW, FunctionToolListResponse as gX, DataComponentListResponse as gY, ArtifactComponentListResponse as gZ, SubAgentRelationListResponse as g_, LedgerArtifactUpdateSchema as ga, LedgerArtifactApiSelectSchema as gb, LedgerArtifactApiInsertSchema as gc, LedgerArtifactApiUpdateSchema as gd, StatusComponentSchema as ge, StatusUpdateSchema as gf, CanUseItemSchema as gg, canDelegateToExternalAgentSchema as gh, canDelegateToTeamAgentSchema as gi, TeamAgentSchema as gj, AgentWithinContextOfProjectSchema as gk, PaginationSchema as gl, ListResponseSchema as gm, SingleResponseSchema as gn, ErrorResponseSchema as go, ExistsResponseSchema as gp, RemovedResponseSchema as gq, ProjectSelectSchema as gr, ProjectInsertSchema as gs, ProjectUpdateSchema as gt, ProjectApiSelectSchema as gu, ProjectApiInsertSchema as gv, ProjectApiUpdateSchema as gw, FullProjectDefinitionSchema as gx, ProjectResponse as gy, SubAgentResponse as gz, CredentialStoreType as h, ConversationListResponse as h0, MessageListResponse as h1, SubAgentDataComponentResponse as h2, SubAgentArtifactComponentResponse as h3, SubAgentDataComponentListResponse as h4, SubAgentArtifactComponentListResponse as h5, HeadersScopeSchema as h6, TenantParamsSchema as h7, TenantIdParamsSchema as h8, TenantProjectParamsSchema as h9, TenantProjectIdParamsSchema as ha, TenantProjectAgentParamsSchema as hb, TenantProjectAgentIdParamsSchema as hc, TenantProjectAgentSubAgentParamsSchema as hd, TenantProjectAgentSubAgentIdParamsSchema as he, PaginationQueryParamsSchema as hf, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type ProjectScopeConfig as u, type FullAgentDefinition as v, type AgentScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
|