@inkeep/agents-core 0.0.0-dev-20251125083010 → 0.0.0-dev-20251125085423
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/auth/auth-schema.d.ts +47 -1
- package/dist/auth/auth-schema.js +1 -1
- package/dist/auth/auth-validation-schemas.d.ts +34 -0
- package/dist/auth/auth-validation-schemas.js +1 -1
- package/dist/auth/auth.d.ts +22 -22
- package/dist/auth/auth.js +9 -2
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/auth/permissions.js +1 -1
- package/dist/{chunk-W3QDM7WH.js → chunk-4FHCJ65J.js} +1 -1
- package/dist/{chunk-PVRIMF6N.js → chunk-DEYPSEXR.js} +1 -1
- package/dist/chunk-GENLXHZ4.js +159 -0
- package/dist/{chunk-VMSYBWFH.js → chunk-JNBVHWXX.js} +7 -4
- package/dist/{chunk-K6GMXJPW.js → chunk-XHODTX4H.js} +1 -1
- package/dist/{chunk-I6IF7ZTL.js → chunk-ZSYMSL55.js} +2 -2
- package/dist/{client-CD-dO-so.d.ts → client-B_3j-V4-.d.ts} +1 -1
- package/dist/client-exports.d.ts +5 -5
- package/dist/client-exports.js +2 -2
- package/dist/credential-stores/index.d.ts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +2 -2
- package/dist/db/test-client.d.ts +3 -3
- package/dist/db/test-client.js +1 -1
- package/dist/index.d.ts +253 -253
- package/dist/index.js +9 -9
- package/dist/{schema-BGPkUUmn.d.ts → schema-DKbG39on.d.ts} +1 -1
- package/dist/{server-DuzlQdBX.d.ts → server-BXoUiBMg.d.ts} +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-Cw2pFmu3.d.ts → utility-Lo5NoRHK.d.ts} +300 -300
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/0002_puzzling_goblin_queen.sql +8 -0
- package/drizzle/meta/0002_snapshot.json +3637 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +1 -1
- package/dist/chunk-NFTJ5JBY.js +0 -82
|
@@ -1013,11 +1013,12 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
1013
1013
|
in: {};
|
|
1014
1014
|
}>;
|
|
1015
1015
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
1016
|
-
name: z.ZodString;
|
|
1017
1016
|
id: z.ZodString;
|
|
1017
|
+
name: z.ZodString;
|
|
1018
|
+
description: z.ZodString;
|
|
1019
|
+
prompt: z.ZodString;
|
|
1018
1020
|
createdAt: z.ZodString;
|
|
1019
1021
|
updatedAt: z.ZodString;
|
|
1020
|
-
description: z.ZodString;
|
|
1021
1022
|
models: z.ZodNullable<z.ZodType<{
|
|
1022
1023
|
base?: {
|
|
1023
1024
|
model?: string | undefined;
|
|
@@ -1080,15 +1081,15 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
1080
1081
|
}, {
|
|
1081
1082
|
stepCountIs?: number | undefined;
|
|
1082
1083
|
}>>>;
|
|
1083
|
-
prompt: z.ZodString;
|
|
1084
1084
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
1085
1085
|
}, z.core.$strip>;
|
|
1086
1086
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
1087
|
-
name: z.ZodString;
|
|
1088
1087
|
id: z.ZodString;
|
|
1088
|
+
name: z.ZodString;
|
|
1089
|
+
description: z.ZodString;
|
|
1090
|
+
prompt: z.ZodString;
|
|
1089
1091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1090
1092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1091
|
-
description: z.ZodString;
|
|
1092
1093
|
models: z.ZodOptional<z.ZodObject<{
|
|
1093
1094
|
base: z.ZodOptional<z.ZodObject<{
|
|
1094
1095
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1112,15 +1113,15 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
1112
1113
|
}, {
|
|
1113
1114
|
stepCountIs?: number | undefined;
|
|
1114
1115
|
}>>>>;
|
|
1115
|
-
prompt: z.ZodString;
|
|
1116
1116
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
1117
1117
|
}, z.core.$strip>;
|
|
1118
1118
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
1119
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1120
1119
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1120
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1121
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1122
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1121
1123
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1122
1124
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1123
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1124
1125
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1125
1126
|
base: z.ZodOptional<z.ZodObject<{
|
|
1126
1127
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1144,7 +1145,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1144
1145
|
}, {
|
|
1145
1146
|
stepCountIs?: number | undefined;
|
|
1146
1147
|
}>>>>>>;
|
|
1147
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1148
1148
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
1149
1149
|
}, z.core.$strip>;
|
|
1150
1150
|
declare const SubAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -1573,9 +1573,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1573
1573
|
}>;
|
|
1574
1574
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1575
1575
|
id: z.ZodString;
|
|
1576
|
+
agentId: z.ZodString;
|
|
1576
1577
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1577
1578
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1578
|
-
agentId: z.ZodString;
|
|
1579
1579
|
sourceSubAgentId: z.ZodString;
|
|
1580
1580
|
targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1581
1581
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2447,11 +2447,12 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2447
2447
|
in: {};
|
|
2448
2448
|
}>;
|
|
2449
2449
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2450
|
-
name: z.ZodString;
|
|
2451
2450
|
id: z.ZodString;
|
|
2451
|
+
name: z.ZodString;
|
|
2452
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2453
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2452
2454
|
createdAt: z.ZodString;
|
|
2453
2455
|
updatedAt: z.ZodString;
|
|
2454
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2455
2456
|
models: z.ZodNullable<z.ZodType<{
|
|
2456
2457
|
base?: {
|
|
2457
2458
|
model?: string | undefined;
|
|
@@ -2516,7 +2517,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2516
2517
|
}>>>;
|
|
2517
2518
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2518
2519
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2519
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
2520
2520
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2521
2521
|
enabled?: boolean | undefined;
|
|
2522
2522
|
numEvents?: number | undefined;
|
|
@@ -2577,9 +2577,10 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2577
2577
|
}, z.core.$strip>;
|
|
2578
2578
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2579
2579
|
name: z.ZodString;
|
|
2580
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2581
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2580
2582
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2581
2583
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2582
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2583
2584
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2584
2585
|
base?: {
|
|
2585
2586
|
model?: string | undefined;
|
|
@@ -2644,7 +2645,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2644
2645
|
}>>>>;
|
|
2645
2646
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2646
2647
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2647
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2648
2648
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2649
2649
|
enabled?: boolean | undefined;
|
|
2650
2650
|
numEvents?: number | undefined;
|
|
@@ -2705,11 +2705,12 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2705
2705
|
id: z.ZodString;
|
|
2706
2706
|
}, z.core.$strip>;
|
|
2707
2707
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2708
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2709
2708
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2709
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2710
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2711
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2710
2712
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2711
2713
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2712
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2713
2714
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2714
2715
|
base?: {
|
|
2715
2716
|
model?: string | undefined;
|
|
@@ -2774,7 +2775,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2774
2775
|
}>>>>>>;
|
|
2775
2776
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2776
2777
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2777
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2778
2778
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2779
2779
|
enabled?: boolean | undefined;
|
|
2780
2780
|
numEvents?: number | undefined;
|
|
@@ -3242,32 +3242,32 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
3242
3242
|
}>;
|
|
3243
3243
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
3244
3244
|
id: z.ZodString;
|
|
3245
|
+
agentId: z.ZodString;
|
|
3245
3246
|
createdAt: z.ZodString;
|
|
3246
3247
|
updatedAt: z.ZodString;
|
|
3247
3248
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
3248
3249
|
status: z.ZodString;
|
|
3249
|
-
agentId: z.ZodString;
|
|
3250
3250
|
contextId: z.ZodString;
|
|
3251
3251
|
subAgentId: z.ZodString;
|
|
3252
3252
|
}, z.core.$strip>;
|
|
3253
3253
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
3254
3254
|
id: z.ZodString;
|
|
3255
|
+
agentId: z.ZodString;
|
|
3255
3256
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3256
3257
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3257
3258
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
3258
3259
|
status: z.ZodString;
|
|
3259
|
-
agentId: z.ZodString;
|
|
3260
3260
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
3261
3261
|
contextId: z.ZodString;
|
|
3262
3262
|
subAgentId: z.ZodString;
|
|
3263
3263
|
}, z.core.$strip>;
|
|
3264
3264
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
3265
3265
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3266
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3266
3267
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3267
3268
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3268
3269
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
3269
3270
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3270
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3271
3271
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3272
3272
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3273
3273
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4568,33 +4568,33 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
4568
4568
|
}>;
|
|
4569
4569
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
4570
4570
|
id: z.ZodString;
|
|
4571
|
+
title: z.ZodNullable<z.ZodString>;
|
|
4571
4572
|
createdAt: z.ZodString;
|
|
4572
4573
|
updatedAt: z.ZodString;
|
|
4573
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
4574
4574
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
4575
|
-
|
|
4575
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
4576
4576
|
activeSubAgentId: z.ZodString;
|
|
4577
4577
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
4578
4578
|
}, z.core.$strip>;
|
|
4579
4579
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
4580
4580
|
id: z.ZodString;
|
|
4581
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4581
4582
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4582
4583
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4583
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4584
4584
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
4585
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4586
4585
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
4586
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4587
4587
|
activeSubAgentId: z.ZodString;
|
|
4588
4588
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4589
4589
|
}, z.core.$strip>;
|
|
4590
4590
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
4591
4591
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4592
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4592
4593
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4593
4594
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4594
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4595
4595
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
4596
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4597
4596
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4597
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4598
4598
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4599
4599
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4600
4600
|
}, z.core.$strip>;
|
|
@@ -5448,8 +5448,8 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
5448
5448
|
createdAt: z.ZodString;
|
|
5449
5449
|
updatedAt: z.ZodString;
|
|
5450
5450
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
5451
|
-
role: z.ZodString;
|
|
5452
5451
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5452
|
+
role: z.ZodString;
|
|
5453
5453
|
conversationId: z.ZodString;
|
|
5454
5454
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
5455
5455
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -5469,8 +5469,8 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
5469
5469
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5470
5470
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5471
5471
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
5472
|
-
role: z.ZodString;
|
|
5473
5472
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5473
|
+
role: z.ZodString;
|
|
5474
5474
|
conversationId: z.ZodString;
|
|
5475
5475
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5476
5476
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5490,8 +5490,8 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
5490
5490
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5491
5491
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5492
5492
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
5493
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5494
5493
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
5494
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5495
5495
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5496
5496
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5497
5497
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6467,7 +6467,7 @@ declare const ContextCacheInsertSchema: drizzle_zod.BuildSchema<"insert", {
|
|
|
6467
6467
|
}, {}, {
|
|
6468
6468
|
length: 256;
|
|
6469
6469
|
}>;
|
|
6470
|
-
}, "
|
|
6470
|
+
}, "tenantId" | "projectId" | "id" | "value" | "createdAt" | "updatedAt" | "contextConfigId" | "conversationId" | "contextVariableKey" | "requestHash" | "fetchedAt" | "fetchSource" | "fetchDurationMs">, undefined>, undefined>;
|
|
6471
6471
|
declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
6472
6472
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6473
6473
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6488,9 +6488,9 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
6488
6488
|
}>;
|
|
6489
6489
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
6490
6490
|
id: z.ZodString;
|
|
6491
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
6491
6492
|
createdAt: z.ZodString;
|
|
6492
6493
|
updatedAt: z.ZodString;
|
|
6493
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
6494
6494
|
contextConfigId: z.ZodString;
|
|
6495
6495
|
conversationId: z.ZodString;
|
|
6496
6496
|
contextVariableKey: z.ZodString;
|
|
@@ -6501,9 +6501,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
6501
6501
|
}, z.core.$strip>;
|
|
6502
6502
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
6503
6503
|
id: z.ZodString;
|
|
6504
|
+
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
6504
6505
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6505
6506
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6506
|
-
value: z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
6507
6507
|
contextConfigId: z.ZodString;
|
|
6508
6508
|
conversationId: z.ZodString;
|
|
6509
6509
|
contextVariableKey: z.ZodString;
|
|
@@ -6514,9 +6514,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
6514
6514
|
}, z.core.$strip>;
|
|
6515
6515
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
6516
6516
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6517
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
6517
6518
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6518
6519
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6519
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
6520
6520
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6521
6521
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6522
6522
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6897,11 +6897,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
6897
6897
|
in: {};
|
|
6898
6898
|
}>;
|
|
6899
6899
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
6900
|
-
|
|
6900
|
+
tenantId: z.ZodString;
|
|
6901
|
+
projectId: z.ZodString;
|
|
6901
6902
|
id: z.ZodString;
|
|
6903
|
+
name: z.ZodString;
|
|
6902
6904
|
description: z.ZodString;
|
|
6903
|
-
projectId: z.ZodString;
|
|
6904
|
-
tenantId: z.ZodString;
|
|
6905
6905
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
6906
6906
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6907
6907
|
component: string;
|
|
@@ -6947,11 +6947,11 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
6947
6947
|
in: {};
|
|
6948
6948
|
}>;
|
|
6949
6949
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
6950
|
-
name: z.ZodString;
|
|
6951
6950
|
id: z.ZodString;
|
|
6951
|
+
name: z.ZodString;
|
|
6952
|
+
description: z.ZodString;
|
|
6952
6953
|
createdAt: z.ZodString;
|
|
6953
6954
|
updatedAt: z.ZodString;
|
|
6954
|
-
description: z.ZodString;
|
|
6955
6955
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
6956
6956
|
render: z.ZodNullable<z.ZodType<{
|
|
6957
6957
|
component: string;
|
|
@@ -6968,11 +6968,11 @@ declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
|
6968
6968
|
}>>>;
|
|
6969
6969
|
}, z.core.$strip>;
|
|
6970
6970
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
6971
|
-
name: z.ZodString;
|
|
6972
6971
|
id: z.ZodString;
|
|
6972
|
+
name: z.ZodString;
|
|
6973
|
+
description: z.ZodString;
|
|
6973
6974
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6974
6975
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6975
|
-
description: z.ZodString;
|
|
6976
6976
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
6977
6977
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6978
6978
|
component: string;
|
|
@@ -6989,11 +6989,11 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
|
6989
6989
|
}>>>>;
|
|
6990
6990
|
}, z.core.$strip>;
|
|
6991
6991
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
6992
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6993
6992
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6993
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6994
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6994
6995
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6995
6996
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6996
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6997
6997
|
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>>>>>>>;
|
|
6998
6998
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6999
6999
|
component: string;
|
|
@@ -7538,7 +7538,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod.BuildSchema<"insert
|
|
|
7538
7538
|
}, {}, {
|
|
7539
7539
|
length: 256;
|
|
7540
7540
|
}>;
|
|
7541
|
-
}, "
|
|
7541
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
7542
7542
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
7543
7543
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
7544
7544
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7893,16 +7893,16 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
7893
7893
|
in: {};
|
|
7894
7894
|
}>;
|
|
7895
7895
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
7896
|
-
name: z.ZodString;
|
|
7897
7896
|
id: z.ZodString;
|
|
7897
|
+
name: z.ZodString;
|
|
7898
|
+
description: z.ZodString;
|
|
7898
7899
|
createdAt: z.ZodString;
|
|
7899
7900
|
updatedAt: z.ZodString;
|
|
7900
|
-
description: z.ZodString;
|
|
7901
7901
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
7902
7902
|
}, z.core.$strip>;
|
|
7903
7903
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
7904
|
-
name: z.ZodString;
|
|
7905
7904
|
id: z.ZodString;
|
|
7905
|
+
name: z.ZodString;
|
|
7906
7906
|
description: z.ZodString;
|
|
7907
7907
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
7908
7908
|
}, {
|
|
@@ -7910,11 +7910,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
7910
7910
|
in: {};
|
|
7911
7911
|
}>;
|
|
7912
7912
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
7913
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7914
7913
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7914
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7915
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7915
7916
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7916
7917
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7917
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7918
7918
|
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>>>>>>>;
|
|
7919
7919
|
}, z.core.$strip>;
|
|
7920
7920
|
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -8269,38 +8269,39 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
8269
8269
|
in: {};
|
|
8270
8270
|
}>;
|
|
8271
8271
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
8272
|
-
name: z.ZodString;
|
|
8273
8272
|
id: z.ZodString;
|
|
8274
|
-
|
|
8275
|
-
updatedAt: z.ZodString;
|
|
8273
|
+
name: z.ZodString;
|
|
8276
8274
|
description: z.ZodString;
|
|
8277
8275
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8276
|
+
createdAt: z.ZodString;
|
|
8277
|
+
updatedAt: z.ZodString;
|
|
8278
8278
|
baseUrl: z.ZodString;
|
|
8279
8279
|
}, z.core.$strip>;
|
|
8280
8280
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
8281
|
-
name: z.ZodString;
|
|
8282
8281
|
id: z.ZodString;
|
|
8283
|
-
|
|
8284
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8282
|
+
name: z.ZodString;
|
|
8285
8283
|
description: z.ZodString;
|
|
8286
8284
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8285
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8286
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8287
8287
|
baseUrl: z.ZodString;
|
|
8288
8288
|
}, z.core.$strip>;
|
|
8289
8289
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
8290
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8291
8290
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8292
|
-
|
|
8293
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8291
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8294
8292
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8295
8293
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8294
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8295
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8296
8296
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8297
8297
|
}, z.core.$strip>;
|
|
8298
8298
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8299
|
-
name: z.ZodString;
|
|
8300
8299
|
id: z.ZodString;
|
|
8300
|
+
name: z.ZodString;
|
|
8301
|
+
description: z.ZodString;
|
|
8302
|
+
prompt: z.ZodString;
|
|
8301
8303
|
createdAt: z.ZodString;
|
|
8302
8304
|
updatedAt: z.ZodString;
|
|
8303
|
-
description: z.ZodString;
|
|
8304
8305
|
models: z.ZodNullable<z.ZodType<{
|
|
8305
8306
|
base?: {
|
|
8306
8307
|
model?: string | undefined;
|
|
@@ -8363,16 +8364,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8363
8364
|
}, {
|
|
8364
8365
|
stepCountIs?: number | undefined;
|
|
8365
8366
|
}>>>;
|
|
8366
|
-
prompt: z.ZodString;
|
|
8367
8367
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
8368
8368
|
type: z.ZodLiteral<"internal">;
|
|
8369
8369
|
}, z.core.$strip>, z.ZodObject<{
|
|
8370
|
-
name: z.ZodString;
|
|
8371
8370
|
id: z.ZodString;
|
|
8372
|
-
|
|
8373
|
-
updatedAt: z.ZodString;
|
|
8371
|
+
name: z.ZodString;
|
|
8374
8372
|
description: z.ZodString;
|
|
8375
8373
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8374
|
+
createdAt: z.ZodString;
|
|
8375
|
+
updatedAt: z.ZodString;
|
|
8376
8376
|
baseUrl: z.ZodString;
|
|
8377
8377
|
type: z.ZodLiteral<"external">;
|
|
8378
8378
|
}, z.core.$strip>], "type">;
|
|
@@ -8838,24 +8838,24 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
8838
8838
|
}>;
|
|
8839
8839
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
8840
8840
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8841
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8842
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8843
8841
|
agentId: z.ZodOptional<z.ZodString>;
|
|
8844
8842
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8843
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8844
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8845
8845
|
}, {
|
|
8846
8846
|
out: {};
|
|
8847
8847
|
in: {};
|
|
8848
8848
|
}>;
|
|
8849
8849
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
8850
|
-
name: z.ZodNullable<z.ZodString>;
|
|
8851
8850
|
id: z.ZodString;
|
|
8852
|
-
|
|
8853
|
-
updatedAt: z.ZodString;
|
|
8854
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
8851
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8855
8852
|
agentId: z.ZodString;
|
|
8856
8853
|
publicId: z.ZodString;
|
|
8857
8854
|
keyPrefix: z.ZodString;
|
|
8858
8855
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
8856
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
8857
|
+
createdAt: z.ZodString;
|
|
8858
|
+
updatedAt: z.ZodString;
|
|
8859
8859
|
}, {
|
|
8860
8860
|
out: {};
|
|
8861
8861
|
in: {};
|
|
@@ -8863,15 +8863,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
8863
8863
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
8864
8864
|
data: z.ZodObject<{
|
|
8865
8865
|
apiKey: z.ZodObject<{
|
|
8866
|
-
name: z.ZodNullable<z.ZodString>;
|
|
8867
8866
|
id: z.ZodString;
|
|
8868
|
-
|
|
8869
|
-
updatedAt: z.ZodString;
|
|
8870
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
8867
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8871
8868
|
agentId: z.ZodString;
|
|
8872
8869
|
publicId: z.ZodString;
|
|
8873
8870
|
keyPrefix: z.ZodString;
|
|
8874
8871
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
8872
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
8873
|
+
createdAt: z.ZodString;
|
|
8874
|
+
updatedAt: z.ZodString;
|
|
8875
8875
|
}, {
|
|
8876
8876
|
out: {};
|
|
8877
8877
|
in: {};
|
|
@@ -8881,20 +8881,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
8881
8881
|
}, z.core.$strip>;
|
|
8882
8882
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
8883
8883
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8884
|
+
agentId: z.ZodString;
|
|
8885
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8884
8886
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8885
8887
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8886
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8887
|
-
agentId: z.ZodString;
|
|
8888
8888
|
}, {
|
|
8889
8889
|
out: {};
|
|
8890
8890
|
in: {};
|
|
8891
8891
|
}>;
|
|
8892
8892
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
8893
8893
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8894
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8895
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8896
8894
|
agentId: z.ZodOptional<z.ZodString>;
|
|
8897
8895
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8896
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8897
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8898
8898
|
}, {
|
|
8899
8899
|
out: {};
|
|
8900
8900
|
in: {};
|
|
@@ -8939,8 +8939,8 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
8939
8939
|
in: {};
|
|
8940
8940
|
}>;
|
|
8941
8941
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
8942
|
-
name: z.ZodString;
|
|
8943
8942
|
id: z.ZodString;
|
|
8943
|
+
name: z.ZodString;
|
|
8944
8944
|
createdAt: z.ZodString;
|
|
8945
8945
|
updatedAt: z.ZodString;
|
|
8946
8946
|
credentialStoreId: z.ZodString;
|
|
@@ -9455,8 +9455,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
9455
9455
|
}>>>;
|
|
9456
9456
|
}, z.core.$strip>;
|
|
9457
9457
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
9458
|
-
name: z.ZodString;
|
|
9459
9458
|
id: z.ZodString;
|
|
9459
|
+
name: z.ZodString;
|
|
9460
9460
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9461
9461
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9462
9462
|
credentialStoreId: z.ZodString;
|
|
@@ -9468,8 +9468,8 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
9468
9468
|
}>;
|
|
9469
9469
|
}, z.core.$strip>;
|
|
9470
9470
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
9471
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9472
9471
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9472
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9473
9473
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9474
9474
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9475
9475
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9585,8 +9585,8 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
9585
9585
|
in: {};
|
|
9586
9586
|
}>;
|
|
9587
9587
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
9588
|
-
name: z.ZodString;
|
|
9589
9588
|
id: z.ZodString;
|
|
9589
|
+
name: z.ZodString;
|
|
9590
9590
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
9591
9591
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9592
9592
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -9618,8 +9618,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
9618
9618
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
9619
9619
|
}, z.core.$strip>>;
|
|
9620
9620
|
credential: z.ZodOptional<z.ZodObject<{
|
|
9621
|
-
name: z.ZodString;
|
|
9622
9621
|
id: z.ZodString;
|
|
9622
|
+
name: z.ZodString;
|
|
9623
9623
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9624
9624
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9625
9625
|
credentialStoreId: z.ZodString;
|
|
@@ -9671,11 +9671,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
9671
9671
|
in: {};
|
|
9672
9672
|
}>;
|
|
9673
9673
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
9674
|
-
name: z.ZodString;
|
|
9675
9674
|
id: z.ZodString;
|
|
9676
|
-
|
|
9677
|
-
|
|
9678
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9675
|
+
name: z.ZodString;
|
|
9676
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9679
9677
|
config: z.ZodType<{
|
|
9680
9678
|
type: "mcp";
|
|
9681
9679
|
mcp: ToolMcpConfig;
|
|
@@ -9689,18 +9687,18 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
9689
9687
|
type: "mcp";
|
|
9690
9688
|
mcp: ToolMcpConfig;
|
|
9691
9689
|
}>>;
|
|
9692
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9693
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9694
9690
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9691
|
+
createdAt: z.ZodString;
|
|
9692
|
+
updatedAt: z.ZodString;
|
|
9693
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
9694
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9695
9695
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
9696
9696
|
lastError: z.ZodNullable<z.ZodString>;
|
|
9697
9697
|
}, z.core.$strip>;
|
|
9698
9698
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
9699
|
-
name: z.ZodString;
|
|
9700
9699
|
id: z.ZodString;
|
|
9701
|
-
|
|
9702
|
-
|
|
9703
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9700
|
+
name: z.ZodString;
|
|
9701
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9704
9702
|
config: z.ZodObject<{
|
|
9705
9703
|
type: z.ZodLiteral<"mcp">;
|
|
9706
9704
|
mcp: z.ZodObject<{
|
|
@@ -9720,18 +9718,18 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
9720
9718
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9721
9719
|
}, z.core.$strip>;
|
|
9722
9720
|
}, z.core.$strip>;
|
|
9723
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9724
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9725
9721
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9722
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9723
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9724
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9725
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9726
9726
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9727
9727
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9728
9728
|
}, z.core.$strip>;
|
|
9729
9729
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
9730
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9731
9730
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
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>>>>>>>;
|
|
9731
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9732
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9735
9733
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9736
9734
|
type: z.ZodLiteral<"mcp">;
|
|
9737
9735
|
mcp: z.ZodObject<{
|
|
@@ -9751,9 +9749,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
9751
9749
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9752
9750
|
}, z.core.$strip>;
|
|
9753
9751
|
}, z.core.$strip>>>;
|
|
9754
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9755
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
9756
9752
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9753
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9754
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9755
|
+
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>>>>>>>;
|
|
9756
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
9757
9757
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9758
9758
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9759
9759
|
}, z.core.$strip>;
|
|
@@ -10119,29 +10119,29 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
10119
10119
|
in: {};
|
|
10120
10120
|
}>;
|
|
10121
10121
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
10122
|
-
name: z.ZodString;
|
|
10123
10122
|
id: z.ZodString;
|
|
10124
|
-
|
|
10125
|
-
updatedAt: z.ZodString;
|
|
10123
|
+
name: z.ZodString;
|
|
10126
10124
|
description: z.ZodNullable<z.ZodString>;
|
|
10127
10125
|
agentId: z.ZodString;
|
|
10126
|
+
createdAt: z.ZodString;
|
|
10127
|
+
updatedAt: z.ZodString;
|
|
10128
10128
|
functionId: z.ZodString;
|
|
10129
10129
|
}, z.core.$strip>;
|
|
10130
10130
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
10131
|
-
name: z.ZodString;
|
|
10132
10131
|
id: z.ZodString;
|
|
10132
|
+
name: z.ZodString;
|
|
10133
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10133
10134
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10134
10135
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10135
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10136
10136
|
functionId: z.ZodString;
|
|
10137
10137
|
}, z.core.$strip>;
|
|
10138
10138
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
10139
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10140
10139
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10141
|
-
|
|
10142
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10140
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10143
10141
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10144
10142
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10143
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10144
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10145
10145
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10146
10146
|
}, z.core.$strip>;
|
|
10147
10147
|
declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -10527,8 +10527,8 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
10527
10527
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
10528
10528
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
10529
10529
|
credential: z.ZodOptional<z.ZodObject<{
|
|
10530
|
-
name: z.ZodString;
|
|
10531
10530
|
id: z.ZodString;
|
|
10531
|
+
name: z.ZodString;
|
|
10532
10532
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10533
10533
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10534
10534
|
credentialStoreId: z.ZodString;
|
|
@@ -10554,23 +10554,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
10554
10554
|
in: {};
|
|
10555
10555
|
}>;
|
|
10556
10556
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
10557
|
-
id: z.ZodOptional<z.ZodString>;
|
|
10558
|
-
projectId: z.ZodString;
|
|
10559
10557
|
tenantId: z.ZodString;
|
|
10558
|
+
projectId: z.ZodString;
|
|
10559
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10560
|
+
agentId: z.ZodString;
|
|
10560
10561
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
10561
10562
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
10562
|
-
agentId: z.ZodString;
|
|
10563
10563
|
}, {
|
|
10564
10564
|
out: {};
|
|
10565
10565
|
in: {};
|
|
10566
10566
|
}>;
|
|
10567
10567
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
10568
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10569
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
10570
10568
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
10569
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
10570
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10571
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
10571
10572
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
10572
10573
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
10573
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
10574
10574
|
}, {
|
|
10575
10575
|
out: {};
|
|
10576
10576
|
in: {};
|
|
@@ -11054,34 +11054,34 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
11054
11054
|
createdAt: z.ZodString;
|
|
11055
11055
|
updatedAt: z.ZodString;
|
|
11056
11056
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11057
|
-
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11058
|
-
subAgentId: z.ZodString;
|
|
11059
11057
|
toolId: z.ZodString;
|
|
11060
11058
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11059
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11060
|
+
subAgentId: z.ZodString;
|
|
11061
11061
|
}, z.core.$strip>;
|
|
11062
11062
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
11063
11063
|
id: z.ZodString;
|
|
11064
11064
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11065
11065
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11066
11066
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11067
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
11068
|
-
subAgentId: z.ZodString;
|
|
11069
11067
|
toolId: z.ZodString;
|
|
11070
11068
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11071
11069
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
11072
11070
|
}, z.core.$strip>>>>;
|
|
11071
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
11072
|
+
subAgentId: z.ZodString;
|
|
11073
11073
|
}, z.core.$strip>;
|
|
11074
11074
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
11075
11075
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11076
11076
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11077
11077
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11078
11078
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11079
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
11080
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11081
11079
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11082
11080
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11083
11081
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
11084
11082
|
}, z.core.$strip>>>>>>;
|
|
11083
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
11084
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11085
11085
|
}, z.core.$strip>;
|
|
11086
11086
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
11087
11087
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
@@ -11453,8 +11453,8 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
11453
11453
|
createdAt: z.ZodString;
|
|
11454
11454
|
updatedAt: z.ZodString;
|
|
11455
11455
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11456
|
-
subAgentId: z.ZodString;
|
|
11457
11456
|
externalAgentId: z.ZodString;
|
|
11457
|
+
subAgentId: z.ZodString;
|
|
11458
11458
|
}, z.core.$strip>;
|
|
11459
11459
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
11460
11460
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -11467,8 +11467,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
11467
11467
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11468
11468
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11469
11469
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11470
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11471
11470
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11471
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11472
11472
|
}, z.core.$strip>;
|
|
11473
11473
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
11474
11474
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
@@ -13198,7 +13198,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod.BuildSchema<"insert", {
|
|
|
13198
13198
|
}, {}, {
|
|
13199
13199
|
length: 256;
|
|
13200
13200
|
}>;
|
|
13201
|
-
}, "
|
|
13201
|
+
}, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
13202
13202
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
13203
13203
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13204
13204
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13223,13 +13223,13 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
13223
13223
|
in: {};
|
|
13224
13224
|
}>;
|
|
13225
13225
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
13226
|
+
id: z.ZodString;
|
|
13226
13227
|
type: z.ZodString;
|
|
13227
13228
|
name: z.ZodNullable<z.ZodString>;
|
|
13228
|
-
|
|
13229
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13229
13230
|
createdAt: z.ZodString;
|
|
13230
13231
|
updatedAt: z.ZodString;
|
|
13231
13232
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
13232
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13233
13233
|
contextId: z.ZodString;
|
|
13234
13234
|
visibility: z.ZodNullable<z.ZodString>;
|
|
13235
13235
|
taskId: z.ZodString;
|
|
@@ -13241,13 +13241,13 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
13241
13241
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
13242
13242
|
}, z.core.$strip>;
|
|
13243
13243
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
13244
|
+
id: z.ZodString;
|
|
13244
13245
|
type: z.ZodOptional<z.ZodString>;
|
|
13245
13246
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13246
|
-
|
|
13247
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13247
13248
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13248
13249
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13249
13250
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
13250
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13251
13251
|
contextId: z.ZodString;
|
|
13252
13252
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13253
13253
|
taskId: z.ZodString;
|
|
@@ -13259,13 +13259,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
13259
13259
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13260
13260
|
}, z.core.$strip>;
|
|
13261
13261
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
13262
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13262
13263
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13263
13264
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13264
|
-
|
|
13265
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13265
13266
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13266
13267
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13267
13268
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
13268
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13269
13269
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13270
13270
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13271
13271
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13325,11 +13325,11 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
13325
13325
|
description: z.ZodString;
|
|
13326
13326
|
}, z.core.$strip>;
|
|
13327
13327
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
13328
|
-
name: z.ZodString;
|
|
13329
13328
|
id: z.ZodString;
|
|
13329
|
+
name: z.ZodString;
|
|
13330
|
+
description: z.ZodString;
|
|
13330
13331
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13331
13332
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13332
|
-
description: z.ZodString;
|
|
13333
13333
|
models: z.ZodOptional<z.ZodObject<{
|
|
13334
13334
|
base: z.ZodOptional<z.ZodObject<{
|
|
13335
13335
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13380,18 +13380,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
13380
13380
|
}, z.core.$strip>;
|
|
13381
13381
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
13382
13382
|
name: z.ZodString;
|
|
13383
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13383
13384
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13384
13385
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13385
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13386
13386
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13387
13387
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13388
13388
|
id: z.ZodString;
|
|
13389
13389
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13390
|
-
name: z.ZodString;
|
|
13391
13390
|
id: z.ZodString;
|
|
13391
|
+
name: z.ZodString;
|
|
13392
|
+
description: z.ZodString;
|
|
13392
13393
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13393
13394
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13394
|
-
description: z.ZodString;
|
|
13395
13395
|
models: z.ZodOptional<z.ZodObject<{
|
|
13396
13396
|
base: z.ZodOptional<z.ZodObject<{
|
|
13397
13397
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13441,11 +13441,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13441
13441
|
}, z.core.$strip>]>>>;
|
|
13442
13442
|
}, z.core.$strip>>;
|
|
13443
13443
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13444
|
-
name: z.ZodString;
|
|
13445
13444
|
id: z.ZodString;
|
|
13446
|
-
|
|
13447
|
-
|
|
13448
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13445
|
+
name: z.ZodString;
|
|
13446
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13449
13447
|
config: z.ZodObject<{
|
|
13450
13448
|
type: z.ZodLiteral<"mcp">;
|
|
13451
13449
|
mcp: z.ZodObject<{
|
|
@@ -13465,19 +13463,21 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13465
13463
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13466
13464
|
}, z.core.$strip>;
|
|
13467
13465
|
}, z.core.$strip>;
|
|
13468
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13469
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13470
13466
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13467
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13468
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13469
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13470
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13471
13471
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13472
13472
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13473
13473
|
}, z.core.$strip>>>;
|
|
13474
13474
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13475
|
-
name: z.ZodString;
|
|
13476
13475
|
id: z.ZodString;
|
|
13477
|
-
|
|
13478
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13476
|
+
name: z.ZodString;
|
|
13479
13477
|
description: z.ZodString;
|
|
13480
13478
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13479
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13480
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13481
13481
|
baseUrl: z.ZodString;
|
|
13482
13482
|
}, z.core.$strip>>>;
|
|
13483
13483
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13486,11 +13486,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13486
13486
|
description: z.ZodString;
|
|
13487
13487
|
}, z.core.$strip>>>;
|
|
13488
13488
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13489
|
-
name: z.ZodString;
|
|
13490
13489
|
id: z.ZodString;
|
|
13490
|
+
name: z.ZodString;
|
|
13491
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13491
13492
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13492
13493
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13493
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13494
13494
|
functionId: z.ZodString;
|
|
13495
13495
|
}, z.core.$strip>>>;
|
|
13496
13496
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13600,10 +13600,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
13600
13600
|
in: {};
|
|
13601
13601
|
}>;
|
|
13602
13602
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
13603
|
-
|
|
13603
|
+
tenantId: z.ZodString;
|
|
13604
13604
|
id: z.ZodString;
|
|
13605
|
+
name: z.ZodString;
|
|
13605
13606
|
description: z.ZodString;
|
|
13606
|
-
tenantId: z.ZodString;
|
|
13607
13607
|
models: z.ZodObject<{
|
|
13608
13608
|
base: z.ZodObject<{
|
|
13609
13609
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13652,11 +13652,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
13652
13652
|
in: {};
|
|
13653
13653
|
}>;
|
|
13654
13654
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
13655
|
-
name: z.ZodString;
|
|
13656
13655
|
id: z.ZodString;
|
|
13656
|
+
name: z.ZodString;
|
|
13657
|
+
description: z.ZodString;
|
|
13657
13658
|
createdAt: z.ZodString;
|
|
13658
13659
|
updatedAt: z.ZodString;
|
|
13659
|
-
description: z.ZodString;
|
|
13660
13660
|
models: z.ZodNullable<z.ZodObject<{
|
|
13661
13661
|
base: z.ZodObject<{
|
|
13662
13662
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13680,8 +13680,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
13680
13680
|
in: {};
|
|
13681
13681
|
}>;
|
|
13682
13682
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
13683
|
-
name: z.ZodString;
|
|
13684
13683
|
id: z.ZodString;
|
|
13684
|
+
name: z.ZodString;
|
|
13685
13685
|
description: z.ZodString;
|
|
13686
13686
|
models: z.ZodObject<{
|
|
13687
13687
|
base: z.ZodObject<{
|
|
@@ -13731,8 +13731,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
13731
13731
|
in: {};
|
|
13732
13732
|
}>;
|
|
13733
13733
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
13734
|
-
name: z.ZodString;
|
|
13735
13734
|
id: z.ZodString;
|
|
13735
|
+
name: z.ZodString;
|
|
13736
13736
|
description: z.ZodString;
|
|
13737
13737
|
models: z.ZodObject<{
|
|
13738
13738
|
base: z.ZodObject<{
|
|
@@ -13754,18 +13754,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13754
13754
|
}, z.core.$strip>>;
|
|
13755
13755
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13756
13756
|
name: z.ZodString;
|
|
13757
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13757
13758
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13758
13759
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13759
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13760
13760
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13761
13761
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13762
13762
|
id: z.ZodString;
|
|
13763
13763
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13764
|
-
name: z.ZodString;
|
|
13765
13764
|
id: z.ZodString;
|
|
13765
|
+
name: z.ZodString;
|
|
13766
|
+
description: z.ZodString;
|
|
13766
13767
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13767
13768
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13768
|
-
description: z.ZodString;
|
|
13769
13769
|
models: z.ZodOptional<z.ZodObject<{
|
|
13770
13770
|
base: z.ZodOptional<z.ZodObject<{
|
|
13771
13771
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13815,11 +13815,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13815
13815
|
}, z.core.$strip>]>>>;
|
|
13816
13816
|
}, z.core.$strip>>;
|
|
13817
13817
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13818
|
-
name: z.ZodString;
|
|
13819
13818
|
id: z.ZodString;
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13819
|
+
name: z.ZodString;
|
|
13820
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13823
13821
|
config: z.ZodObject<{
|
|
13824
13822
|
type: z.ZodLiteral<"mcp">;
|
|
13825
13823
|
mcp: z.ZodObject<{
|
|
@@ -13839,19 +13837,21 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13839
13837
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13840
13838
|
}, z.core.$strip>;
|
|
13841
13839
|
}, z.core.$strip>;
|
|
13842
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13843
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13844
13840
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13841
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13842
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13843
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13844
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13845
13845
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13846
13846
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13847
13847
|
}, z.core.$strip>>>;
|
|
13848
13848
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13849
|
-
name: z.ZodString;
|
|
13850
13849
|
id: z.ZodString;
|
|
13851
|
-
|
|
13852
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13850
|
+
name: z.ZodString;
|
|
13853
13851
|
description: z.ZodString;
|
|
13854
13852
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13853
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13854
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13855
13855
|
baseUrl: z.ZodString;
|
|
13856
13856
|
}, z.core.$strip>>>;
|
|
13857
13857
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13860,11 +13860,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13860
13860
|
description: z.ZodString;
|
|
13861
13861
|
}, z.core.$strip>>>;
|
|
13862
13862
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13863
|
-
name: z.ZodString;
|
|
13864
13863
|
id: z.ZodString;
|
|
13864
|
+
name: z.ZodString;
|
|
13865
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13865
13866
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13866
13867
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13867
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13868
13868
|
functionId: z.ZodString;
|
|
13869
13869
|
}, z.core.$strip>>>;
|
|
13870
13870
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13915,11 +13915,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13915
13915
|
prompt: z.ZodOptional<z.ZodString>;
|
|
13916
13916
|
}, z.core.$strip>>;
|
|
13917
13917
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13918
|
-
name: z.ZodString;
|
|
13919
13918
|
id: z.ZodString;
|
|
13920
|
-
|
|
13921
|
-
|
|
13922
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13919
|
+
name: z.ZodString;
|
|
13920
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13923
13921
|
config: z.ZodObject<{
|
|
13924
13922
|
type: z.ZodLiteral<"mcp">;
|
|
13925
13923
|
mcp: z.ZodObject<{
|
|
@@ -13939,18 +13937,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13939
13937
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13940
13938
|
}, z.core.$strip>;
|
|
13941
13939
|
}, z.core.$strip>;
|
|
13942
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13943
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13944
13940
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13941
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13942
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13943
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13944
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13945
13945
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13946
13946
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13947
13947
|
}, z.core.$strip>>;
|
|
13948
13948
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13949
|
-
name: z.ZodString;
|
|
13950
13949
|
id: z.ZodString;
|
|
13950
|
+
name: z.ZodString;
|
|
13951
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13951
13952
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13952
13953
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13953
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13954
13954
|
functionId: z.ZodString;
|
|
13955
13955
|
}, z.core.$strip>>>;
|
|
13956
13956
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13962,11 +13962,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13962
13962
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13963
13963
|
}, z.core.$strip>>>;
|
|
13964
13964
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13965
|
-
name: z.ZodString;
|
|
13966
13965
|
id: z.ZodString;
|
|
13966
|
+
name: z.ZodString;
|
|
13967
|
+
description: z.ZodString;
|
|
13967
13968
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13968
13969
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13969
|
-
description: z.ZodString;
|
|
13970
13970
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13971
13971
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13972
13972
|
component: string;
|
|
@@ -13983,8 +13983,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13983
13983
|
}>>>>;
|
|
13984
13984
|
}, z.core.$strip>>>;
|
|
13985
13985
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13986
|
-
name: z.ZodString;
|
|
13987
13986
|
id: z.ZodString;
|
|
13987
|
+
name: z.ZodString;
|
|
13988
13988
|
description: z.ZodString;
|
|
13989
13989
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13990
13990
|
}, {
|
|
@@ -13992,12 +13992,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13992
13992
|
in: {};
|
|
13993
13993
|
}>>>;
|
|
13994
13994
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13995
|
-
name: z.ZodString;
|
|
13996
13995
|
id: z.ZodString;
|
|
13997
|
-
|
|
13998
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13996
|
+
name: z.ZodString;
|
|
13999
13997
|
description: z.ZodString;
|
|
14000
13998
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13999
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
14000
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14001
14001
|
baseUrl: z.ZodString;
|
|
14002
14002
|
}, z.core.$strip>>>;
|
|
14003
14003
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
@@ -14016,8 +14016,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
14016
14016
|
}, z.core.$strip>>>;
|
|
14017
14017
|
}, z.core.$strip>>;
|
|
14018
14018
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14019
|
-
name: z.ZodString;
|
|
14020
14019
|
id: z.ZodString;
|
|
14020
|
+
name: z.ZodString;
|
|
14021
14021
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14022
14022
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14023
14023
|
credentialStoreId: z.ZodString;
|
|
@@ -14036,11 +14036,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
14036
14036
|
}>;
|
|
14037
14037
|
declare const ProjectResponse: z.ZodObject<{
|
|
14038
14038
|
data: z.ZodObject<{
|
|
14039
|
-
name: z.ZodString;
|
|
14040
14039
|
id: z.ZodString;
|
|
14040
|
+
name: z.ZodString;
|
|
14041
|
+
description: z.ZodString;
|
|
14041
14042
|
createdAt: z.ZodString;
|
|
14042
14043
|
updatedAt: z.ZodString;
|
|
14043
|
-
description: z.ZodString;
|
|
14044
14044
|
models: z.ZodNullable<z.ZodObject<{
|
|
14045
14045
|
base: z.ZodObject<{
|
|
14046
14046
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -14066,11 +14066,12 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
14066
14066
|
}, z.core.$strip>;
|
|
14067
14067
|
declare const SubAgentResponse: z.ZodObject<{
|
|
14068
14068
|
data: z.ZodObject<{
|
|
14069
|
-
name: z.ZodString;
|
|
14070
14069
|
id: z.ZodString;
|
|
14070
|
+
name: z.ZodString;
|
|
14071
|
+
description: z.ZodString;
|
|
14072
|
+
prompt: z.ZodString;
|
|
14071
14073
|
createdAt: z.ZodString;
|
|
14072
14074
|
updatedAt: z.ZodString;
|
|
14073
|
-
description: z.ZodString;
|
|
14074
14075
|
models: z.ZodNullable<z.ZodType<{
|
|
14075
14076
|
base?: {
|
|
14076
14077
|
model?: string | undefined;
|
|
@@ -14133,17 +14134,17 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
14133
14134
|
}, {
|
|
14134
14135
|
stepCountIs?: number | undefined;
|
|
14135
14136
|
}>>>;
|
|
14136
|
-
prompt: z.ZodString;
|
|
14137
14137
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
14138
14138
|
}, z.core.$strip>;
|
|
14139
14139
|
}, z.core.$strip>;
|
|
14140
14140
|
declare const AgentResponse: z.ZodObject<{
|
|
14141
14141
|
data: z.ZodObject<{
|
|
14142
|
-
name: z.ZodString;
|
|
14143
14142
|
id: z.ZodString;
|
|
14143
|
+
name: z.ZodString;
|
|
14144
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14145
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
14144
14146
|
createdAt: z.ZodString;
|
|
14145
14147
|
updatedAt: z.ZodString;
|
|
14146
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14147
14148
|
models: z.ZodNullable<z.ZodType<{
|
|
14148
14149
|
base?: {
|
|
14149
14150
|
model?: string | undefined;
|
|
@@ -14208,7 +14209,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
14208
14209
|
}>>>;
|
|
14209
14210
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14210
14211
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
14211
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
14212
14212
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
14213
14213
|
enabled?: boolean | undefined;
|
|
14214
14214
|
numEvents?: number | undefined;
|
|
@@ -14270,11 +14270,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
14270
14270
|
}, z.core.$strip>;
|
|
14271
14271
|
declare const ToolResponse: z.ZodObject<{
|
|
14272
14272
|
data: z.ZodObject<{
|
|
14273
|
-
name: z.ZodString;
|
|
14274
14273
|
id: z.ZodString;
|
|
14275
|
-
|
|
14276
|
-
|
|
14277
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
14274
|
+
name: z.ZodString;
|
|
14275
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14278
14276
|
config: z.ZodType<{
|
|
14279
14277
|
type: "mcp";
|
|
14280
14278
|
mcp: ToolMcpConfig;
|
|
@@ -14288,21 +14286,23 @@ declare const ToolResponse: z.ZodObject<{
|
|
|
14288
14286
|
type: "mcp";
|
|
14289
14287
|
mcp: ToolMcpConfig;
|
|
14290
14288
|
}>>;
|
|
14291
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14292
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
14293
14289
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
14290
|
+
createdAt: z.ZodString;
|
|
14291
|
+
updatedAt: z.ZodString;
|
|
14292
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
14293
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
14294
14294
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
14295
14295
|
lastError: z.ZodNullable<z.ZodString>;
|
|
14296
14296
|
}, z.core.$strip>;
|
|
14297
14297
|
}, z.core.$strip>;
|
|
14298
14298
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
14299
14299
|
data: z.ZodObject<{
|
|
14300
|
-
name: z.ZodString;
|
|
14301
14300
|
id: z.ZodString;
|
|
14302
|
-
|
|
14303
|
-
updatedAt: z.ZodString;
|
|
14301
|
+
name: z.ZodString;
|
|
14304
14302
|
description: z.ZodString;
|
|
14305
14303
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14304
|
+
createdAt: z.ZodString;
|
|
14305
|
+
updatedAt: z.ZodString;
|
|
14306
14306
|
baseUrl: z.ZodString;
|
|
14307
14307
|
}, z.core.$strip>;
|
|
14308
14308
|
}, z.core.$strip>;
|
|
@@ -14317,15 +14317,15 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
14317
14317
|
}, z.core.$strip>;
|
|
14318
14318
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
14319
14319
|
data: z.ZodObject<{
|
|
14320
|
-
name: z.ZodNullable<z.ZodString>;
|
|
14321
14320
|
id: z.ZodString;
|
|
14322
|
-
|
|
14323
|
-
updatedAt: z.ZodString;
|
|
14324
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
14321
|
+
name: z.ZodNullable<z.ZodString>;
|
|
14325
14322
|
agentId: z.ZodString;
|
|
14326
14323
|
publicId: z.ZodString;
|
|
14327
14324
|
keyPrefix: z.ZodString;
|
|
14328
14325
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
14326
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
14327
|
+
createdAt: z.ZodString;
|
|
14328
|
+
updatedAt: z.ZodString;
|
|
14329
14329
|
}, {
|
|
14330
14330
|
out: {};
|
|
14331
14331
|
in: {};
|
|
@@ -14333,8 +14333,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
14333
14333
|
}, z.core.$strip>;
|
|
14334
14334
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
14335
14335
|
data: z.ZodObject<{
|
|
14336
|
-
name: z.ZodString;
|
|
14337
14336
|
id: z.ZodString;
|
|
14337
|
+
name: z.ZodString;
|
|
14338
14338
|
createdAt: z.ZodString;
|
|
14339
14339
|
updatedAt: z.ZodString;
|
|
14340
14340
|
credentialStoreId: z.ZodString;
|
|
@@ -14861,22 +14861,22 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
14861
14861
|
}, z.core.$strip>;
|
|
14862
14862
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
14863
14863
|
data: z.ZodObject<{
|
|
14864
|
-
name: z.ZodString;
|
|
14865
14864
|
id: z.ZodString;
|
|
14866
|
-
|
|
14867
|
-
updatedAt: z.ZodString;
|
|
14865
|
+
name: z.ZodString;
|
|
14868
14866
|
description: z.ZodNullable<z.ZodString>;
|
|
14869
14867
|
agentId: z.ZodString;
|
|
14868
|
+
createdAt: z.ZodString;
|
|
14869
|
+
updatedAt: z.ZodString;
|
|
14870
14870
|
functionId: z.ZodString;
|
|
14871
14871
|
}, z.core.$strip>;
|
|
14872
14872
|
}, z.core.$strip>;
|
|
14873
14873
|
declare const DataComponentResponse: z.ZodObject<{
|
|
14874
14874
|
data: z.ZodObject<{
|
|
14875
|
-
name: z.ZodString;
|
|
14876
14875
|
id: z.ZodString;
|
|
14876
|
+
name: z.ZodString;
|
|
14877
|
+
description: z.ZodString;
|
|
14877
14878
|
createdAt: z.ZodString;
|
|
14878
14879
|
updatedAt: z.ZodString;
|
|
14879
|
-
description: z.ZodString;
|
|
14880
14880
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
14881
14881
|
render: z.ZodNullable<z.ZodType<{
|
|
14882
14882
|
component: string;
|
|
@@ -14895,11 +14895,11 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
14895
14895
|
}, z.core.$strip>;
|
|
14896
14896
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
14897
14897
|
data: z.ZodObject<{
|
|
14898
|
-
name: z.ZodString;
|
|
14899
14898
|
id: z.ZodString;
|
|
14899
|
+
name: z.ZodString;
|
|
14900
|
+
description: z.ZodString;
|
|
14900
14901
|
createdAt: z.ZodString;
|
|
14901
14902
|
updatedAt: z.ZodString;
|
|
14902
|
-
description: z.ZodString;
|
|
14903
14903
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
14904
14904
|
}, z.core.$strip>;
|
|
14905
14905
|
}, z.core.$strip>;
|
|
@@ -14919,20 +14919,20 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
14919
14919
|
createdAt: z.ZodString;
|
|
14920
14920
|
updatedAt: z.ZodString;
|
|
14921
14921
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14922
|
-
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14923
|
-
subAgentId: z.ZodString;
|
|
14924
14922
|
toolId: z.ZodString;
|
|
14925
14923
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14924
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14925
|
+
subAgentId: z.ZodString;
|
|
14926
14926
|
}, z.core.$strip>;
|
|
14927
14927
|
}, z.core.$strip>;
|
|
14928
14928
|
declare const ConversationResponse: z.ZodObject<{
|
|
14929
14929
|
data: z.ZodObject<{
|
|
14930
14930
|
id: z.ZodString;
|
|
14931
|
+
title: z.ZodNullable<z.ZodString>;
|
|
14931
14932
|
createdAt: z.ZodString;
|
|
14932
14933
|
updatedAt: z.ZodString;
|
|
14933
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
14934
14934
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
14935
|
-
|
|
14935
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
14936
14936
|
activeSubAgentId: z.ZodString;
|
|
14937
14937
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
14938
14938
|
}, z.core.$strip>;
|
|
@@ -14943,8 +14943,8 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
14943
14943
|
createdAt: z.ZodString;
|
|
14944
14944
|
updatedAt: z.ZodString;
|
|
14945
14945
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
14946
|
-
role: z.ZodString;
|
|
14947
14946
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
14947
|
+
role: z.ZodString;
|
|
14948
14948
|
conversationId: z.ZodString;
|
|
14949
14949
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14950
14950
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -14962,11 +14962,11 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
14962
14962
|
}, z.core.$strip>;
|
|
14963
14963
|
declare const ProjectListResponse: z.ZodObject<{
|
|
14964
14964
|
data: z.ZodArray<z.ZodObject<{
|
|
14965
|
-
name: z.ZodString;
|
|
14966
14965
|
id: z.ZodString;
|
|
14966
|
+
name: z.ZodString;
|
|
14967
|
+
description: z.ZodString;
|
|
14967
14968
|
createdAt: z.ZodString;
|
|
14968
14969
|
updatedAt: z.ZodString;
|
|
14969
|
-
description: z.ZodString;
|
|
14970
14970
|
models: z.ZodNullable<z.ZodObject<{
|
|
14971
14971
|
base: z.ZodObject<{
|
|
14972
14972
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -14998,11 +14998,12 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
14998
14998
|
}, z.core.$strip>;
|
|
14999
14999
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
15000
15000
|
data: z.ZodArray<z.ZodObject<{
|
|
15001
|
-
name: z.ZodString;
|
|
15002
15001
|
id: z.ZodString;
|
|
15002
|
+
name: z.ZodString;
|
|
15003
|
+
description: z.ZodString;
|
|
15004
|
+
prompt: z.ZodString;
|
|
15003
15005
|
createdAt: z.ZodString;
|
|
15004
15006
|
updatedAt: z.ZodString;
|
|
15005
|
-
description: z.ZodString;
|
|
15006
15007
|
models: z.ZodNullable<z.ZodType<{
|
|
15007
15008
|
base?: {
|
|
15008
15009
|
model?: string | undefined;
|
|
@@ -15065,7 +15066,6 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
15065
15066
|
}, {
|
|
15066
15067
|
stepCountIs?: number | undefined;
|
|
15067
15068
|
}>>>;
|
|
15068
|
-
prompt: z.ZodString;
|
|
15069
15069
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
15070
15070
|
}, z.core.$strip>>;
|
|
15071
15071
|
pagination: z.ZodObject<{
|
|
@@ -15077,11 +15077,12 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
15077
15077
|
}, z.core.$strip>;
|
|
15078
15078
|
declare const AgentListResponse: z.ZodObject<{
|
|
15079
15079
|
data: z.ZodArray<z.ZodObject<{
|
|
15080
|
-
name: z.ZodString;
|
|
15081
15080
|
id: z.ZodString;
|
|
15081
|
+
name: z.ZodString;
|
|
15082
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15083
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
15082
15084
|
createdAt: z.ZodString;
|
|
15083
15085
|
updatedAt: z.ZodString;
|
|
15084
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15085
15086
|
models: z.ZodNullable<z.ZodType<{
|
|
15086
15087
|
base?: {
|
|
15087
15088
|
model?: string | undefined;
|
|
@@ -15146,7 +15147,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
15146
15147
|
}>>>;
|
|
15147
15148
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15148
15149
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
15149
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
15150
15150
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
15151
15151
|
enabled?: boolean | undefined;
|
|
15152
15152
|
numEvents?: number | undefined;
|
|
@@ -15214,11 +15214,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
15214
15214
|
}, z.core.$strip>;
|
|
15215
15215
|
declare const ToolListResponse: z.ZodObject<{
|
|
15216
15216
|
data: z.ZodArray<z.ZodObject<{
|
|
15217
|
-
name: z.ZodString;
|
|
15218
15217
|
id: z.ZodString;
|
|
15219
|
-
|
|
15220
|
-
|
|
15221
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
15218
|
+
name: z.ZodString;
|
|
15219
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15222
15220
|
config: z.ZodType<{
|
|
15223
15221
|
type: "mcp";
|
|
15224
15222
|
mcp: ToolMcpConfig;
|
|
@@ -15232,9 +15230,11 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
15232
15230
|
type: "mcp";
|
|
15233
15231
|
mcp: ToolMcpConfig;
|
|
15234
15232
|
}>>;
|
|
15235
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15236
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
15237
15233
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
15234
|
+
createdAt: z.ZodString;
|
|
15235
|
+
updatedAt: z.ZodString;
|
|
15236
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
15237
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
15238
15238
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
15239
15239
|
lastError: z.ZodNullable<z.ZodString>;
|
|
15240
15240
|
}, z.core.$strip>>;
|
|
@@ -15247,12 +15247,12 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
15247
15247
|
}, z.core.$strip>;
|
|
15248
15248
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
15249
15249
|
data: z.ZodArray<z.ZodObject<{
|
|
15250
|
-
name: z.ZodString;
|
|
15251
15250
|
id: z.ZodString;
|
|
15252
|
-
|
|
15253
|
-
updatedAt: z.ZodString;
|
|
15251
|
+
name: z.ZodString;
|
|
15254
15252
|
description: z.ZodString;
|
|
15255
15253
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15254
|
+
createdAt: z.ZodString;
|
|
15255
|
+
updatedAt: z.ZodString;
|
|
15256
15256
|
baseUrl: z.ZodString;
|
|
15257
15257
|
}, z.core.$strip>>;
|
|
15258
15258
|
pagination: z.ZodObject<{
|
|
@@ -15279,15 +15279,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
15279
15279
|
}, z.core.$strip>;
|
|
15280
15280
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
15281
15281
|
data: z.ZodArray<z.ZodObject<{
|
|
15282
|
-
name: z.ZodNullable<z.ZodString>;
|
|
15283
15282
|
id: z.ZodString;
|
|
15284
|
-
|
|
15285
|
-
updatedAt: z.ZodString;
|
|
15286
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
15283
|
+
name: z.ZodNullable<z.ZodString>;
|
|
15287
15284
|
agentId: z.ZodString;
|
|
15288
15285
|
publicId: z.ZodString;
|
|
15289
15286
|
keyPrefix: z.ZodString;
|
|
15290
15287
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
15288
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
15289
|
+
createdAt: z.ZodString;
|
|
15290
|
+
updatedAt: z.ZodString;
|
|
15291
15291
|
}, {
|
|
15292
15292
|
out: {};
|
|
15293
15293
|
in: {};
|
|
@@ -15301,8 +15301,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
15301
15301
|
}, z.core.$strip>;
|
|
15302
15302
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
15303
15303
|
data: z.ZodArray<z.ZodObject<{
|
|
15304
|
-
name: z.ZodString;
|
|
15305
15304
|
id: z.ZodString;
|
|
15305
|
+
name: z.ZodString;
|
|
15306
15306
|
createdAt: z.ZodString;
|
|
15307
15307
|
updatedAt: z.ZodString;
|
|
15308
15308
|
credentialStoreId: z.ZodString;
|
|
@@ -15841,12 +15841,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
15841
15841
|
}, z.core.$strip>;
|
|
15842
15842
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
15843
15843
|
data: z.ZodArray<z.ZodObject<{
|
|
15844
|
-
name: z.ZodString;
|
|
15845
15844
|
id: z.ZodString;
|
|
15846
|
-
|
|
15847
|
-
updatedAt: z.ZodString;
|
|
15845
|
+
name: z.ZodString;
|
|
15848
15846
|
description: z.ZodNullable<z.ZodString>;
|
|
15849
15847
|
agentId: z.ZodString;
|
|
15848
|
+
createdAt: z.ZodString;
|
|
15849
|
+
updatedAt: z.ZodString;
|
|
15850
15850
|
functionId: z.ZodString;
|
|
15851
15851
|
}, z.core.$strip>>;
|
|
15852
15852
|
pagination: z.ZodObject<{
|
|
@@ -15858,11 +15858,11 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
15858
15858
|
}, z.core.$strip>;
|
|
15859
15859
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
15860
15860
|
data: z.ZodArray<z.ZodObject<{
|
|
15861
|
-
name: z.ZodString;
|
|
15862
15861
|
id: z.ZodString;
|
|
15862
|
+
name: z.ZodString;
|
|
15863
|
+
description: z.ZodString;
|
|
15863
15864
|
createdAt: z.ZodString;
|
|
15864
15865
|
updatedAt: z.ZodString;
|
|
15865
|
-
description: z.ZodString;
|
|
15866
15866
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
15867
15867
|
render: z.ZodNullable<z.ZodType<{
|
|
15868
15868
|
component: string;
|
|
@@ -15887,11 +15887,11 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
15887
15887
|
}, z.core.$strip>;
|
|
15888
15888
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
15889
15889
|
data: z.ZodArray<z.ZodObject<{
|
|
15890
|
-
name: z.ZodString;
|
|
15891
15890
|
id: z.ZodString;
|
|
15891
|
+
name: z.ZodString;
|
|
15892
|
+
description: z.ZodString;
|
|
15892
15893
|
createdAt: z.ZodString;
|
|
15893
15894
|
updatedAt: z.ZodString;
|
|
15894
|
-
description: z.ZodString;
|
|
15895
15895
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
15896
15896
|
}, z.core.$strip>>;
|
|
15897
15897
|
pagination: z.ZodObject<{
|
|
@@ -15923,10 +15923,10 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
15923
15923
|
createdAt: z.ZodString;
|
|
15924
15924
|
updatedAt: z.ZodString;
|
|
15925
15925
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15926
|
-
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15927
|
-
subAgentId: z.ZodString;
|
|
15928
15926
|
toolId: z.ZodString;
|
|
15929
15927
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15928
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15929
|
+
subAgentId: z.ZodString;
|
|
15930
15930
|
}, z.core.$strip>>;
|
|
15931
15931
|
pagination: z.ZodObject<{
|
|
15932
15932
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -15938,11 +15938,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
15938
15938
|
declare const ConversationListResponse: z.ZodObject<{
|
|
15939
15939
|
data: z.ZodArray<z.ZodObject<{
|
|
15940
15940
|
id: z.ZodString;
|
|
15941
|
+
title: z.ZodNullable<z.ZodString>;
|
|
15941
15942
|
createdAt: z.ZodString;
|
|
15942
15943
|
updatedAt: z.ZodString;
|
|
15943
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
15944
15944
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
15945
|
-
|
|
15945
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
15946
15946
|
activeSubAgentId: z.ZodString;
|
|
15947
15947
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
15948
15948
|
}, z.core.$strip>>;
|
|
@@ -15959,8 +15959,8 @@ declare const MessageListResponse: z.ZodObject<{
|
|
|
15959
15959
|
createdAt: z.ZodString;
|
|
15960
15960
|
updatedAt: z.ZodString;
|
|
15961
15961
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
15962
|
-
role: z.ZodString;
|
|
15963
15962
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
15963
|
+
role: z.ZodString;
|
|
15964
15964
|
conversationId: z.ZodString;
|
|
15965
15965
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15966
15966
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -16028,8 +16028,8 @@ declare const SubAgentArtifactComponentListResponse: z.ZodObject<{
|
|
|
16028
16028
|
}, z.core.$strip>;
|
|
16029
16029
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
16030
16030
|
data: z.ZodObject<{
|
|
16031
|
-
name: z.ZodString;
|
|
16032
16031
|
id: z.ZodString;
|
|
16032
|
+
name: z.ZodString;
|
|
16033
16033
|
description: z.ZodString;
|
|
16034
16034
|
models: z.ZodObject<{
|
|
16035
16035
|
base: z.ZodObject<{
|
|
@@ -16051,18 +16051,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16051
16051
|
}, z.core.$strip>>;
|
|
16052
16052
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16053
16053
|
name: z.ZodString;
|
|
16054
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16054
16055
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16055
16056
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16056
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16057
16057
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16058
16058
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16059
16059
|
id: z.ZodString;
|
|
16060
16060
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16061
|
-
name: z.ZodString;
|
|
16062
16061
|
id: z.ZodString;
|
|
16062
|
+
name: z.ZodString;
|
|
16063
|
+
description: z.ZodString;
|
|
16063
16064
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16064
16065
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16065
|
-
description: z.ZodString;
|
|
16066
16066
|
models: z.ZodOptional<z.ZodObject<{
|
|
16067
16067
|
base: z.ZodOptional<z.ZodObject<{
|
|
16068
16068
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -16112,11 +16112,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16112
16112
|
}, z.core.$strip>]>>>;
|
|
16113
16113
|
}, z.core.$strip>>;
|
|
16114
16114
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16115
|
-
name: z.ZodString;
|
|
16116
16115
|
id: z.ZodString;
|
|
16117
|
-
|
|
16118
|
-
|
|
16119
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16116
|
+
name: z.ZodString;
|
|
16117
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16120
16118
|
config: z.ZodObject<{
|
|
16121
16119
|
type: z.ZodLiteral<"mcp">;
|
|
16122
16120
|
mcp: z.ZodObject<{
|
|
@@ -16136,19 +16134,21 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16136
16134
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16137
16135
|
}, z.core.$strip>;
|
|
16138
16136
|
}, z.core.$strip>;
|
|
16139
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16140
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16141
16137
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16138
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16139
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16140
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16141
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16142
16142
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16143
16143
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16144
16144
|
}, z.core.$strip>>>;
|
|
16145
16145
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16146
|
-
name: z.ZodString;
|
|
16147
16146
|
id: z.ZodString;
|
|
16148
|
-
|
|
16149
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16147
|
+
name: z.ZodString;
|
|
16150
16148
|
description: z.ZodString;
|
|
16151
16149
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16150
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16151
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16152
16152
|
baseUrl: z.ZodString;
|
|
16153
16153
|
}, z.core.$strip>>>;
|
|
16154
16154
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16157,11 +16157,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16157
16157
|
description: z.ZodString;
|
|
16158
16158
|
}, z.core.$strip>>>;
|
|
16159
16159
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16160
|
-
name: z.ZodString;
|
|
16161
16160
|
id: z.ZodString;
|
|
16161
|
+
name: z.ZodString;
|
|
16162
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16162
16163
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16163
16164
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16164
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16165
16165
|
functionId: z.ZodString;
|
|
16166
16166
|
}, z.core.$strip>>>;
|
|
16167
16167
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16212,11 +16212,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16212
16212
|
prompt: z.ZodOptional<z.ZodString>;
|
|
16213
16213
|
}, z.core.$strip>>;
|
|
16214
16214
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16215
|
-
name: z.ZodString;
|
|
16216
16215
|
id: z.ZodString;
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16216
|
+
name: z.ZodString;
|
|
16217
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16220
16218
|
config: z.ZodObject<{
|
|
16221
16219
|
type: z.ZodLiteral<"mcp">;
|
|
16222
16220
|
mcp: z.ZodObject<{
|
|
@@ -16236,18 +16234,20 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16236
16234
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16237
16235
|
}, z.core.$strip>;
|
|
16238
16236
|
}, z.core.$strip>;
|
|
16239
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16240
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16241
16237
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16238
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16239
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16240
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16241
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16242
16242
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16243
16243
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16244
16244
|
}, z.core.$strip>>;
|
|
16245
16245
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16246
|
-
name: z.ZodString;
|
|
16247
16246
|
id: z.ZodString;
|
|
16247
|
+
name: z.ZodString;
|
|
16248
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16248
16249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16249
16250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16250
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16251
16251
|
functionId: z.ZodString;
|
|
16252
16252
|
}, z.core.$strip>>>;
|
|
16253
16253
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16259,11 +16259,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16259
16259
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16260
16260
|
}, z.core.$strip>>>;
|
|
16261
16261
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16262
|
-
name: z.ZodString;
|
|
16263
16262
|
id: z.ZodString;
|
|
16263
|
+
name: z.ZodString;
|
|
16264
|
+
description: z.ZodString;
|
|
16264
16265
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16265
16266
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16266
|
-
description: z.ZodString;
|
|
16267
16267
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
16268
16268
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
16269
16269
|
component: string;
|
|
@@ -16280,8 +16280,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16280
16280
|
}>>>>;
|
|
16281
16281
|
}, z.core.$strip>>>;
|
|
16282
16282
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16283
|
-
name: z.ZodString;
|
|
16284
16283
|
id: z.ZodString;
|
|
16284
|
+
name: z.ZodString;
|
|
16285
16285
|
description: z.ZodString;
|
|
16286
16286
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
16287
16287
|
}, {
|
|
@@ -16289,12 +16289,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16289
16289
|
in: {};
|
|
16290
16290
|
}>>>;
|
|
16291
16291
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16292
|
-
name: z.ZodString;
|
|
16293
16292
|
id: z.ZodString;
|
|
16294
|
-
|
|
16295
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16293
|
+
name: z.ZodString;
|
|
16296
16294
|
description: z.ZodString;
|
|
16297
16295
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16296
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16297
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16298
16298
|
baseUrl: z.ZodString;
|
|
16299
16299
|
}, z.core.$strip>>>;
|
|
16300
16300
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
@@ -16313,8 +16313,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16313
16313
|
}, z.core.$strip>>>;
|
|
16314
16314
|
}, z.core.$strip>>;
|
|
16315
16315
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16316
|
-
name: z.ZodString;
|
|
16317
16316
|
id: z.ZodString;
|
|
16317
|
+
name: z.ZodString;
|
|
16318
16318
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16319
16319
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16320
16320
|
credentialStoreId: z.ZodString;
|
|
@@ -16335,18 +16335,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16335
16335
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
16336
16336
|
data: z.ZodObject<{
|
|
16337
16337
|
name: z.ZodString;
|
|
16338
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16338
16339
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16339
16340
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16340
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16341
16341
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16342
16342
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16343
16343
|
id: z.ZodString;
|
|
16344
16344
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16345
|
-
name: z.ZodString;
|
|
16346
16345
|
id: z.ZodString;
|
|
16346
|
+
name: z.ZodString;
|
|
16347
|
+
description: z.ZodString;
|
|
16347
16348
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16348
16349
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16349
|
-
description: z.ZodString;
|
|
16350
16350
|
models: z.ZodOptional<z.ZodObject<{
|
|
16351
16351
|
base: z.ZodOptional<z.ZodObject<{
|
|
16352
16352
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -16396,11 +16396,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16396
16396
|
}, z.core.$strip>]>>>;
|
|
16397
16397
|
}, z.core.$strip>>;
|
|
16398
16398
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16399
|
-
name: z.ZodString;
|
|
16400
16399
|
id: z.ZodString;
|
|
16401
|
-
|
|
16402
|
-
|
|
16403
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16400
|
+
name: z.ZodString;
|
|
16401
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16404
16402
|
config: z.ZodObject<{
|
|
16405
16403
|
type: z.ZodLiteral<"mcp">;
|
|
16406
16404
|
mcp: z.ZodObject<{
|
|
@@ -16420,19 +16418,21 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16420
16418
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16421
16419
|
}, z.core.$strip>;
|
|
16422
16420
|
}, z.core.$strip>;
|
|
16423
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16424
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16425
16421
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16422
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16423
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16424
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16425
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16426
16426
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16427
16427
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16428
16428
|
}, z.core.$strip>>>;
|
|
16429
16429
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16430
|
-
name: z.ZodString;
|
|
16431
16430
|
id: z.ZodString;
|
|
16432
|
-
|
|
16433
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16431
|
+
name: z.ZodString;
|
|
16434
16432
|
description: z.ZodString;
|
|
16435
16433
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16434
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
16435
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16436
16436
|
baseUrl: z.ZodString;
|
|
16437
16437
|
}, z.core.$strip>>>;
|
|
16438
16438
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16441,11 +16441,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16441
16441
|
description: z.ZodString;
|
|
16442
16442
|
}, z.core.$strip>>>;
|
|
16443
16443
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16444
|
-
name: z.ZodString;
|
|
16445
16444
|
id: z.ZodString;
|
|
16445
|
+
name: z.ZodString;
|
|
16446
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16446
16447
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16447
16448
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16448
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16449
16449
|
functionId: z.ZodString;
|
|
16450
16450
|
}, z.core.$strip>>>;
|
|
16451
16451
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16657,8 +16657,8 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
16657
16657
|
createdAt: z.ZodString;
|
|
16658
16658
|
updatedAt: z.ZodString;
|
|
16659
16659
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16660
|
-
subAgentId: z.ZodString;
|
|
16661
16660
|
externalAgentId: z.ZodString;
|
|
16661
|
+
subAgentId: z.ZodString;
|
|
16662
16662
|
}, z.core.$strip>;
|
|
16663
16663
|
}, z.core.$strip>;
|
|
16664
16664
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
@@ -16667,8 +16667,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
16667
16667
|
createdAt: z.ZodString;
|
|
16668
16668
|
updatedAt: z.ZodString;
|
|
16669
16669
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16670
|
-
subAgentId: z.ZodString;
|
|
16671
16670
|
externalAgentId: z.ZodString;
|
|
16671
|
+
subAgentId: z.ZodString;
|
|
16672
16672
|
}, z.core.$strip>>;
|
|
16673
16673
|
pagination: z.ZodObject<{
|
|
16674
16674
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -16679,11 +16679,11 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
16679
16679
|
}, z.core.$strip>;
|
|
16680
16680
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
16681
16681
|
data: z.ZodArray<z.ZodObject<{
|
|
16682
|
-
name: z.ZodString;
|
|
16683
16682
|
id: z.ZodString;
|
|
16683
|
+
name: z.ZodString;
|
|
16684
|
+
description: z.ZodString;
|
|
16684
16685
|
createdAt: z.ZodString;
|
|
16685
16686
|
updatedAt: z.ZodString;
|
|
16686
|
-
description: z.ZodString;
|
|
16687
16687
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
16688
16688
|
render: z.ZodNullable<z.ZodType<{
|
|
16689
16689
|
component: string;
|
|
@@ -16702,11 +16702,11 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
16702
16702
|
}, z.core.$strip>;
|
|
16703
16703
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
16704
16704
|
data: z.ZodArray<z.ZodObject<{
|
|
16705
|
-
name: z.ZodString;
|
|
16706
16705
|
id: z.ZodString;
|
|
16706
|
+
name: z.ZodString;
|
|
16707
|
+
description: z.ZodString;
|
|
16707
16708
|
createdAt: z.ZodString;
|
|
16708
16709
|
updatedAt: z.ZodString;
|
|
16709
|
-
description: z.ZodString;
|
|
16710
16710
|
props: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
16711
16711
|
}, z.core.$strip>>;
|
|
16712
16712
|
}, z.core.$strip>;
|