@inkeep/agents-core 0.33.2 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-62UIQW4L.js → chunk-4VUM4EJL.js} +1 -1
- package/dist/{chunk-MQTANAMG.js → chunk-7CLFCY6J.js} +2 -0
- package/dist/{chunk-S75NGJ6E.js → chunk-EKV6C5GS.js} +1 -1
- package/dist/{chunk-6MC5N2NE.js → chunk-UMFCT6A6.js} +3 -2
- package/dist/client-exports.cjs +3 -2
- package/dist/client-exports.d.cts +5 -5
- package/dist/client-exports.d.ts +5 -5
- package/dist/client-exports.js +2 -2
- package/dist/constants/models.cjs +2 -0
- package/dist/constants/models.d.cts +2 -0
- package/dist/constants/models.d.ts +2 -0
- package/dist/constants/models.js +1 -1
- package/dist/db/schema.cjs +1 -1
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +42 -7
- package/dist/index.d.cts +251 -245
- package/dist/index.d.ts +251 -245
- package/dist/index.js +44 -12
- package/dist/{schema-DYCQuSqA.d.ts → schema-CaEvIRdT.d.cts} +2 -2
- package/dist/{schema-dODUpZEu.d.cts → schema-DvYv9PQ1.d.ts} +2 -2
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-B73oHEd8.d.cts → utility-htaewQEL.d.cts} +246 -242
- package/dist/{utility-B73oHEd8.d.ts → utility-htaewQEL.d.ts} +246 -242
- package/dist/validation/index.cjs +3 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/meta/0000_snapshot.json +93 -459
- package/drizzle/meta/_journal.json +1 -1
- package/package.json +1 -1
|
@@ -492,7 +492,7 @@ declare const SubAgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
492
492
|
columnType: "PgJsonb";
|
|
493
493
|
data: ConversationHistoryConfig;
|
|
494
494
|
driverParam: unknown;
|
|
495
|
-
notNull:
|
|
495
|
+
notNull: false;
|
|
496
496
|
hasDefault: true;
|
|
497
497
|
isPrimaryKey: false;
|
|
498
498
|
isAutoincrement: false;
|
|
@@ -743,7 +743,7 @@ declare const SubAgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
743
743
|
columnType: "PgJsonb";
|
|
744
744
|
data: ConversationHistoryConfig;
|
|
745
745
|
driverParam: unknown;
|
|
746
|
-
notNull:
|
|
746
|
+
notNull: false;
|
|
747
747
|
hasDefault: true;
|
|
748
748
|
isPrimaryKey: false;
|
|
749
749
|
isAutoincrement: false;
|
|
@@ -940,7 +940,7 @@ declare const SubAgentInsertSchema: z.ZodObject<{
|
|
|
940
940
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
941
941
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
942
942
|
prompt: z.ZodString;
|
|
943
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
943
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
944
944
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
945
945
|
stepCountIs?: number | undefined;
|
|
946
946
|
}, {
|
|
@@ -978,7 +978,7 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
978
978
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
979
979
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
980
980
|
prompt: z.ZodOptional<z.ZodString>;
|
|
981
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
981
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>;
|
|
982
982
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
983
983
|
stepCountIs?: number | undefined;
|
|
984
984
|
}, {
|
|
@@ -1013,9 +1013,10 @@ 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
1018
|
description: z.ZodString;
|
|
1019
|
+
prompt: z.ZodString;
|
|
1019
1020
|
createdAt: z.ZodString;
|
|
1020
1021
|
updatedAt: z.ZodString;
|
|
1021
1022
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -1080,13 +1081,13 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
1080
1081
|
}, {
|
|
1081
1082
|
stepCountIs?: number | undefined;
|
|
1082
1083
|
}>>>;
|
|
1083
|
-
|
|
1084
|
-
conversationHistoryConfig: z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>;
|
|
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
1089
|
description: z.ZodString;
|
|
1090
|
+
prompt: z.ZodString;
|
|
1090
1091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1091
1092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1092
1093
|
models: z.ZodOptional<z.ZodObject<{
|
|
@@ -1112,13 +1113,13 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
1112
1113
|
}, {
|
|
1113
1114
|
stepCountIs?: number | undefined;
|
|
1114
1115
|
}>>>>;
|
|
1115
|
-
|
|
1116
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
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
1121
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1122
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1122
1123
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1123
1124
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
1124
1125
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -1144,8 +1145,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
1144
1145
|
}, {
|
|
1145
1146
|
stepCountIs?: number | undefined;
|
|
1146
1147
|
}>>>>>>;
|
|
1147
|
-
|
|
1148
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>;
|
|
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", {
|
|
1151
1151
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
@@ -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,9 +2447,10 @@ 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
2452
|
description: z.ZodNullable<z.ZodString>;
|
|
2453
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2453
2454
|
createdAt: z.ZodString;
|
|
2454
2455
|
updatedAt: z.ZodString;
|
|
2455
2456
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -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;
|
|
@@ -2578,6 +2578,7 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2578
2578
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2579
2579
|
name: z.ZodString;
|
|
2580
2580
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2581
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2581
2582
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2582
2583
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2583
2584
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -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,9 +2705,10 @@ 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
2710
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2711
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2711
2712
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2712
2713
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2713
2714
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -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,9 +3242,9 @@ 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
|
-
agentId: z.ZodString;
|
|
3248
3248
|
status: z.ZodString;
|
|
3249
3249
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
3250
3250
|
contextId: z.ZodString;
|
|
@@ -3252,9 +3252,9 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
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
|
-
agentId: z.ZodString;
|
|
3258
3258
|
status: z.ZodString;
|
|
3259
3259
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
3260
3260
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
@@ -3263,9 +3263,9 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
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
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3269
3269
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3270
3270
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
3271
3271
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<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>>;
|
|
@@ -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,8 +6947,8 @@ 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
6952
|
description: z.ZodString;
|
|
6953
6953
|
createdAt: z.ZodString;
|
|
6954
6954
|
updatedAt: z.ZodString;
|
|
@@ -6968,8 +6968,8 @@ 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
6973
|
description: z.ZodString;
|
|
6974
6974
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6975
6975
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -6989,8 +6989,8 @@ 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
6994
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6995
6995
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6996
6996
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -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
7898
|
description: z.ZodString;
|
|
7899
7899
|
createdAt: z.ZodString;
|
|
7900
7900
|
updatedAt: 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,8 +7910,8 @@ 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
7915
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7916
7916
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7917
7917
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -8269,36 +8269,37 @@ 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;
|
|
8273
|
+
name: z.ZodString;
|
|
8274
8274
|
description: z.ZodString;
|
|
8275
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8275
8276
|
createdAt: z.ZodString;
|
|
8276
8277
|
updatedAt: z.ZodString;
|
|
8277
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<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;
|
|
8282
|
+
name: z.ZodString;
|
|
8283
8283
|
description: z.ZodString;
|
|
8284
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8284
8285
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8285
8286
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8286
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<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>>;
|
|
8291
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8292
8292
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8293
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8293
8294
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8294
8295
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8295
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<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
8301
|
description: z.ZodString;
|
|
8302
|
+
prompt: z.ZodString;
|
|
8302
8303
|
createdAt: z.ZodString;
|
|
8303
8304
|
updatedAt: z.ZodString;
|
|
8304
8305
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -8363,16 +8364,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8363
8364
|
}, {
|
|
8364
8365
|
stepCountIs?: number | undefined;
|
|
8365
8366
|
}>>>;
|
|
8366
|
-
|
|
8367
|
-
conversationHistoryConfig: z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>;
|
|
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;
|
|
8371
|
+
name: z.ZodString;
|
|
8372
8372
|
description: z.ZodString;
|
|
8373
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8373
8374
|
createdAt: z.ZodString;
|
|
8374
8375
|
updatedAt: z.ZodString;
|
|
8375
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<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
8841
|
agentId: z.ZodOptional<z.ZodString>;
|
|
8843
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<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;
|
|
8851
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8854
8852
|
agentId: z.ZodString;
|
|
8855
|
-
expiresAt: z.ZodNullable<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;
|
|
8867
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8870
8868
|
agentId: z.ZodString;
|
|
8871
|
-
expiresAt: z.ZodNullable<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
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8885
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8886
8884
|
agentId: z.ZodString;
|
|
8887
8885
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8886
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8887
|
+
updatedAt: z.ZodOptional<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
8894
|
agentId: z.ZodOptional<z.ZodString>;
|
|
8896
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<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,12 +8939,12 @@ 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;
|
|
8944
|
-
|
|
8945
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8943
|
+
name: z.ZodString;
|
|
8946
8944
|
createdAt: z.ZodString;
|
|
8947
8945
|
updatedAt: z.ZodString;
|
|
8946
|
+
credentialStoreId: z.ZodString;
|
|
8947
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8948
8948
|
type: z.ZodEnum<{
|
|
8949
8949
|
readonly memory: "memory";
|
|
8950
8950
|
readonly keychain: "keychain";
|
|
@@ -9455,12 +9455,12 @@ 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;
|
|
9460
|
-
|
|
9461
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9459
|
+
name: z.ZodString;
|
|
9462
9460
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9463
9461
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9462
|
+
credentialStoreId: z.ZodString;
|
|
9463
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9464
9464
|
type: z.ZodEnum<{
|
|
9465
9465
|
readonly memory: "memory";
|
|
9466
9466
|
readonly keychain: "keychain";
|
|
@@ -9468,12 +9468,12 @@ 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>>;
|
|
9473
|
-
|
|
9474
|
-
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
9472
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9475
9473
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9476
9474
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9475
|
+
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9476
|
+
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
9477
9477
|
type: z.ZodOptional<z.ZodEnum<{
|
|
9478
9478
|
readonly memory: "memory";
|
|
9479
9479
|
readonly keychain: "keychain";
|
|
@@ -9579,15 +9579,16 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
9579
9579
|
createdAt: z.ZodDate;
|
|
9580
9580
|
updatedAt: z.ZodDate;
|
|
9581
9581
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
9582
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
9582
9583
|
}, {
|
|
9583
9584
|
out: {};
|
|
9584
9585
|
in: {};
|
|
9585
9586
|
}>;
|
|
9586
9587
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
9587
|
-
name: z.ZodString;
|
|
9588
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9589
9588
|
id: z.ZodString;
|
|
9589
|
+
name: z.ZodString;
|
|
9590
9590
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
9591
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
9591
9592
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9592
9593
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9593
9594
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9596,6 +9597,7 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
9596
9597
|
description: z.ZodOptional<z.ZodString>;
|
|
9597
9598
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9598
9599
|
}, z.core.$strip>>>;
|
|
9600
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
9599
9601
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
9600
9602
|
projectId: z.ZodOptional<z.ZodString>;
|
|
9601
9603
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9616,12 +9618,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
9616
9618
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
9617
9619
|
}, z.core.$strip>>;
|
|
9618
9620
|
credential: z.ZodOptional<z.ZodObject<{
|
|
9619
|
-
name: z.ZodString;
|
|
9620
9621
|
id: z.ZodString;
|
|
9621
|
-
|
|
9622
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9622
|
+
name: z.ZodString;
|
|
9623
9623
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9624
9624
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9625
|
+
credentialStoreId: z.ZodString;
|
|
9626
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
9625
9627
|
type: z.ZodEnum<{
|
|
9626
9628
|
readonly memory: "memory";
|
|
9627
9629
|
readonly keychain: "keychain";
|
|
@@ -9669,8 +9671,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
9669
9671
|
in: {};
|
|
9670
9672
|
}>;
|
|
9671
9673
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
9674
|
+
id: z.ZodString;
|
|
9672
9675
|
name: z.ZodString;
|
|
9673
|
-
|
|
9676
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9674
9677
|
config: z.ZodType<{
|
|
9675
9678
|
type: "mcp";
|
|
9676
9679
|
mcp: ToolMcpConfig;
|
|
@@ -9684,18 +9687,18 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
9684
9687
|
type: "mcp";
|
|
9685
9688
|
mcp: ToolMcpConfig;
|
|
9686
9689
|
}>>;
|
|
9687
|
-
|
|
9688
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9690
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9689
9691
|
createdAt: z.ZodString;
|
|
9690
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>>>>;
|
|
9691
9694
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
9692
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
9693
9695
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
9694
9696
|
lastError: z.ZodNullable<z.ZodString>;
|
|
9695
9697
|
}, z.core.$strip>;
|
|
9696
9698
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
9699
|
+
id: z.ZodString;
|
|
9697
9700
|
name: z.ZodString;
|
|
9698
|
-
|
|
9701
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9699
9702
|
config: z.ZodObject<{
|
|
9700
9703
|
type: z.ZodLiteral<"mcp">;
|
|
9701
9704
|
mcp: z.ZodObject<{
|
|
@@ -9715,18 +9718,18 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
9715
9718
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9716
9719
|
}, z.core.$strip>;
|
|
9717
9720
|
}, z.core.$strip>;
|
|
9718
|
-
|
|
9719
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9721
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9720
9722
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9721
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>>>>>;
|
|
9722
9725
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
9723
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9724
9726
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9725
9727
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9726
9728
|
}, z.core.$strip>;
|
|
9727
9729
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
9730
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9728
9731
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9729
|
-
|
|
9732
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9730
9733
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9731
9734
|
type: z.ZodLiteral<"mcp">;
|
|
9732
9735
|
mcp: z.ZodObject<{
|
|
@@ -9746,12 +9749,11 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
9746
9749
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9747
9750
|
}, z.core.$strip>;
|
|
9748
9751
|
}, z.core.$strip>>>;
|
|
9749
|
-
|
|
9750
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9752
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9751
9753
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9752
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>>>>>>>;
|
|
9753
9756
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
9754
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9755
9757
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9756
9758
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9757
9759
|
}, z.core.$strip>;
|
|
@@ -10117,29 +10119,29 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
10117
10119
|
in: {};
|
|
10118
10120
|
}>;
|
|
10119
10121
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
10120
|
-
name: z.ZodString;
|
|
10121
10122
|
id: z.ZodString;
|
|
10123
|
+
name: z.ZodString;
|
|
10122
10124
|
description: z.ZodNullable<z.ZodString>;
|
|
10125
|
+
agentId: z.ZodString;
|
|
10123
10126
|
createdAt: z.ZodString;
|
|
10124
10127
|
updatedAt: z.ZodString;
|
|
10125
|
-
agentId: z.ZodString;
|
|
10126
10128
|
functionId: z.ZodString;
|
|
10127
10129
|
}, z.core.$strip>;
|
|
10128
10130
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
10129
|
-
name: z.ZodString;
|
|
10130
10131
|
id: z.ZodString;
|
|
10132
|
+
name: z.ZodString;
|
|
10131
10133
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10132
10134
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10133
10135
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10134
10136
|
functionId: z.ZodString;
|
|
10135
10137
|
}, z.core.$strip>;
|
|
10136
10138
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
10137
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10138
10139
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10140
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10139
10141
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10142
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10140
10143
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10141
10144
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10142
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10143
10145
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10144
10146
|
}, z.core.$strip>;
|
|
10145
10147
|
declare const FunctionSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -10525,12 +10527,12 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
10525
10527
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
10526
10528
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
10527
10529
|
credential: z.ZodOptional<z.ZodObject<{
|
|
10528
|
-
name: z.ZodString;
|
|
10529
10530
|
id: z.ZodString;
|
|
10530
|
-
|
|
10531
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10531
|
+
name: z.ZodString;
|
|
10532
10532
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10533
10533
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10534
|
+
credentialStoreId: z.ZodString;
|
|
10535
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
10534
10536
|
type: z.ZodEnum<{
|
|
10535
10537
|
readonly memory: "memory";
|
|
10536
10538
|
readonly keychain: "keychain";
|
|
@@ -10552,23 +10554,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
10552
10554
|
in: {};
|
|
10553
10555
|
}>;
|
|
10554
10556
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
10555
|
-
id: z.ZodOptional<z.ZodString>;
|
|
10556
|
-
projectId: z.ZodString;
|
|
10557
10557
|
tenantId: z.ZodString;
|
|
10558
|
+
projectId: z.ZodString;
|
|
10559
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10560
|
+
agentId: z.ZodString;
|
|
10558
10561
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
10559
10562
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
10560
|
-
agentId: z.ZodString;
|
|
10561
10563
|
}, {
|
|
10562
10564
|
out: {};
|
|
10563
10565
|
in: {};
|
|
10564
10566
|
}>;
|
|
10565
10567
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
10566
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10567
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
10568
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>;
|
|
10569
10572
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
10570
10573
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
10571
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
10572
10574
|
}, {
|
|
10573
10575
|
out: {};
|
|
10574
10576
|
in: {};
|
|
@@ -10996,31 +10998,31 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
10996
10998
|
in: {};
|
|
10997
10999
|
}>;
|
|
10998
11000
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
10999
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11000
11001
|
id: z.ZodString;
|
|
11001
11002
|
createdAt: z.ZodString;
|
|
11002
11003
|
updatedAt: z.ZodString;
|
|
11004
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11005
|
+
toolId: z.ZodString;
|
|
11003
11006
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11004
11007
|
subAgentId: z.ZodString;
|
|
11005
|
-
toolId: z.ZodString;
|
|
11006
11008
|
}, z.core.$strip>;
|
|
11007
11009
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
11008
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11009
11010
|
id: z.ZodString;
|
|
11010
11011
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11011
11012
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11013
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11014
|
+
toolId: z.ZodString;
|
|
11012
11015
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
11013
11016
|
subAgentId: z.ZodString;
|
|
11014
|
-
toolId: z.ZodString;
|
|
11015
11017
|
}, z.core.$strip>;
|
|
11016
11018
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
11017
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11018
11019
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11019
11020
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11020
11021
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11022
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11023
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11021
11024
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
11022
11025
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11023
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11024
11026
|
}, z.core.$strip>;
|
|
11025
11027
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
11026
11028
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
@@ -11388,26 +11390,26 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
11388
11390
|
in: {};
|
|
11389
11391
|
}>;
|
|
11390
11392
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
11391
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11392
11393
|
id: z.ZodString;
|
|
11393
11394
|
createdAt: z.ZodString;
|
|
11394
11395
|
updatedAt: z.ZodString;
|
|
11395
|
-
|
|
11396
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11396
11397
|
externalAgentId: z.ZodString;
|
|
11398
|
+
subAgentId: z.ZodString;
|
|
11397
11399
|
}, z.core.$strip>;
|
|
11398
11400
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
11399
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11400
11401
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11401
11402
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11403
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11402
11404
|
externalAgentId: z.ZodString;
|
|
11403
11405
|
}, z.core.$strip>;
|
|
11404
11406
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
11405
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11406
11407
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11407
11408
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11408
11409
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11409
|
-
|
|
11410
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11410
11411
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11412
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11411
11413
|
}, z.core.$strip>;
|
|
11412
11414
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
11413
11415
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
@@ -11775,24 +11777,24 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
11775
11777
|
in: {};
|
|
11776
11778
|
}>;
|
|
11777
11779
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
11778
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11779
11780
|
id: z.ZodString;
|
|
11780
11781
|
createdAt: z.ZodString;
|
|
11781
11782
|
updatedAt: z.ZodString;
|
|
11783
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
11782
11784
|
subAgentId: z.ZodString;
|
|
11783
11785
|
targetAgentId: z.ZodString;
|
|
11784
11786
|
}, z.core.$strip>;
|
|
11785
11787
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
11786
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11787
11788
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11788
11789
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11790
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11789
11791
|
targetAgentId: z.ZodString;
|
|
11790
11792
|
}, z.core.$strip>;
|
|
11791
11793
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
11792
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11793
11794
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11794
11795
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11795
11796
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11797
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
11796
11798
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11797
11799
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11798
11800
|
}, z.core.$strip>;
|
|
@@ -13137,7 +13139,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod.BuildSchema<"insert", {
|
|
|
13137
13139
|
}, {}, {
|
|
13138
13140
|
length: 256;
|
|
13139
13141
|
}>;
|
|
13140
|
-
}, "
|
|
13142
|
+
}, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
13141
13143
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
13142
13144
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13143
13145
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -13162,9 +13164,9 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
13162
13164
|
in: {};
|
|
13163
13165
|
}>;
|
|
13164
13166
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
13167
|
+
id: z.ZodString;
|
|
13165
13168
|
type: z.ZodString;
|
|
13166
13169
|
name: z.ZodNullable<z.ZodString>;
|
|
13167
|
-
id: z.ZodString;
|
|
13168
13170
|
description: z.ZodNullable<z.ZodString>;
|
|
13169
13171
|
createdAt: z.ZodString;
|
|
13170
13172
|
updatedAt: z.ZodString;
|
|
@@ -13180,9 +13182,9 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
13180
13182
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
13181
13183
|
}, z.core.$strip>;
|
|
13182
13184
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
13185
|
+
id: z.ZodString;
|
|
13183
13186
|
type: z.ZodOptional<z.ZodString>;
|
|
13184
13187
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13185
|
-
id: z.ZodString;
|
|
13186
13188
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13187
13189
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13188
13190
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13198,9 +13200,9 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
13198
13200
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13199
13201
|
}, z.core.$strip>;
|
|
13200
13202
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
13203
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13201
13204
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13202
13205
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13203
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13204
13206
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13205
13207
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13206
13208
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -13261,8 +13263,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
13261
13263
|
description: z.ZodString;
|
|
13262
13264
|
}, z.core.$strip>;
|
|
13263
13265
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
13264
|
-
name: z.ZodString;
|
|
13265
13266
|
id: z.ZodString;
|
|
13267
|
+
name: z.ZodString;
|
|
13266
13268
|
description: z.ZodString;
|
|
13267
13269
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13268
13270
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13289,7 +13291,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
13289
13291
|
}, {
|
|
13290
13292
|
stepCountIs?: number | undefined;
|
|
13291
13293
|
}>>>>;
|
|
13292
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
13294
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
13293
13295
|
type: z.ZodLiteral<"internal">;
|
|
13294
13296
|
canUse: z.ZodArray<z.ZodObject<{
|
|
13295
13297
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -13320,8 +13322,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13320
13322
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13321
13323
|
id: z.ZodString;
|
|
13322
13324
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13323
|
-
name: z.ZodString;
|
|
13324
13325
|
id: z.ZodString;
|
|
13326
|
+
name: z.ZodString;
|
|
13325
13327
|
description: z.ZodString;
|
|
13326
13328
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13327
13329
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13348,7 +13350,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13348
13350
|
}, {
|
|
13349
13351
|
stepCountIs?: number | undefined;
|
|
13350
13352
|
}>>>>;
|
|
13351
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
13353
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
13352
13354
|
type: z.ZodLiteral<"internal">;
|
|
13353
13355
|
canUse: z.ZodArray<z.ZodObject<{
|
|
13354
13356
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -13371,8 +13373,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13371
13373
|
}, z.core.$strip>]>>>;
|
|
13372
13374
|
}, z.core.$strip>>;
|
|
13373
13375
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13376
|
+
id: z.ZodString;
|
|
13374
13377
|
name: z.ZodString;
|
|
13375
|
-
|
|
13378
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13376
13379
|
config: z.ZodObject<{
|
|
13377
13380
|
type: z.ZodLiteral<"mcp">;
|
|
13378
13381
|
mcp: z.ZodObject<{
|
|
@@ -13392,22 +13395,21 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13392
13395
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13393
13396
|
}, z.core.$strip>;
|
|
13394
13397
|
}, z.core.$strip>;
|
|
13395
|
-
|
|
13396
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13398
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13397
13399
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13398
13400
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13401
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13399
13402
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13400
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13401
13403
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13402
13404
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13403
13405
|
}, z.core.$strip>>>;
|
|
13404
13406
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13405
|
-
name: z.ZodString;
|
|
13406
13407
|
id: z.ZodString;
|
|
13408
|
+
name: z.ZodString;
|
|
13407
13409
|
description: z.ZodString;
|
|
13410
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13408
13411
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13409
13412
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13410
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13411
13413
|
baseUrl: z.ZodString;
|
|
13412
13414
|
}, z.core.$strip>>>;
|
|
13413
13415
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13416,8 +13418,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
13416
13418
|
description: z.ZodString;
|
|
13417
13419
|
}, z.core.$strip>>>;
|
|
13418
13420
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13419
|
-
name: z.ZodString;
|
|
13420
13421
|
id: z.ZodString;
|
|
13422
|
+
name: z.ZodString;
|
|
13421
13423
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13422
13424
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13423
13425
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13530,10 +13532,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
13530
13532
|
in: {};
|
|
13531
13533
|
}>;
|
|
13532
13534
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
13533
|
-
|
|
13535
|
+
tenantId: z.ZodString;
|
|
13534
13536
|
id: z.ZodString;
|
|
13537
|
+
name: z.ZodString;
|
|
13535
13538
|
description: z.ZodString;
|
|
13536
|
-
tenantId: z.ZodString;
|
|
13537
13539
|
models: z.ZodObject<{
|
|
13538
13540
|
base: z.ZodObject<{
|
|
13539
13541
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -13582,8 +13584,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
13582
13584
|
in: {};
|
|
13583
13585
|
}>;
|
|
13584
13586
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
13585
|
-
name: z.ZodString;
|
|
13586
13587
|
id: z.ZodString;
|
|
13588
|
+
name: z.ZodString;
|
|
13587
13589
|
description: z.ZodString;
|
|
13588
13590
|
createdAt: z.ZodString;
|
|
13589
13591
|
updatedAt: z.ZodString;
|
|
@@ -13610,8 +13612,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
13610
13612
|
in: {};
|
|
13611
13613
|
}>;
|
|
13612
13614
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
13613
|
-
name: z.ZodString;
|
|
13614
13615
|
id: z.ZodString;
|
|
13616
|
+
name: z.ZodString;
|
|
13615
13617
|
description: z.ZodString;
|
|
13616
13618
|
models: z.ZodObject<{
|
|
13617
13619
|
base: z.ZodObject<{
|
|
@@ -13661,8 +13663,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
13661
13663
|
in: {};
|
|
13662
13664
|
}>;
|
|
13663
13665
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
13664
|
-
name: z.ZodString;
|
|
13665
13666
|
id: z.ZodString;
|
|
13667
|
+
name: z.ZodString;
|
|
13666
13668
|
description: z.ZodString;
|
|
13667
13669
|
models: z.ZodObject<{
|
|
13668
13670
|
base: z.ZodObject<{
|
|
@@ -13691,8 +13693,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13691
13693
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13692
13694
|
id: z.ZodString;
|
|
13693
13695
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13694
|
-
name: z.ZodString;
|
|
13695
13696
|
id: z.ZodString;
|
|
13697
|
+
name: z.ZodString;
|
|
13696
13698
|
description: z.ZodString;
|
|
13697
13699
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13698
13700
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13719,7 +13721,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13719
13721
|
}, {
|
|
13720
13722
|
stepCountIs?: number | undefined;
|
|
13721
13723
|
}>>>>;
|
|
13722
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
13724
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
13723
13725
|
type: z.ZodLiteral<"internal">;
|
|
13724
13726
|
canUse: z.ZodArray<z.ZodObject<{
|
|
13725
13727
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -13742,8 +13744,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13742
13744
|
}, z.core.$strip>]>>>;
|
|
13743
13745
|
}, z.core.$strip>>;
|
|
13744
13746
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13747
|
+
id: z.ZodString;
|
|
13745
13748
|
name: z.ZodString;
|
|
13746
|
-
|
|
13749
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13747
13750
|
config: z.ZodObject<{
|
|
13748
13751
|
type: z.ZodLiteral<"mcp">;
|
|
13749
13752
|
mcp: z.ZodObject<{
|
|
@@ -13763,22 +13766,21 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13763
13766
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13764
13767
|
}, z.core.$strip>;
|
|
13765
13768
|
}, z.core.$strip>;
|
|
13766
|
-
|
|
13767
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13769
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13768
13770
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13769
13771
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13772
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13770
13773
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13771
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13772
13774
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13773
13775
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13774
13776
|
}, z.core.$strip>>>;
|
|
13775
13777
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13776
|
-
name: z.ZodString;
|
|
13777
13778
|
id: z.ZodString;
|
|
13779
|
+
name: z.ZodString;
|
|
13778
13780
|
description: z.ZodString;
|
|
13781
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13779
13782
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13780
13783
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13781
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13782
13784
|
baseUrl: z.ZodString;
|
|
13783
13785
|
}, z.core.$strip>>>;
|
|
13784
13786
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13787,8 +13789,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13787
13789
|
description: z.ZodString;
|
|
13788
13790
|
}, z.core.$strip>>>;
|
|
13789
13791
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13790
|
-
name: z.ZodString;
|
|
13791
13792
|
id: z.ZodString;
|
|
13793
|
+
name: z.ZodString;
|
|
13792
13794
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13793
13795
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13794
13796
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13842,8 +13844,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13842
13844
|
prompt: z.ZodOptional<z.ZodString>;
|
|
13843
13845
|
}, z.core.$strip>>;
|
|
13844
13846
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13847
|
+
id: z.ZodString;
|
|
13845
13848
|
name: z.ZodString;
|
|
13846
|
-
|
|
13849
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13847
13850
|
config: z.ZodObject<{
|
|
13848
13851
|
type: z.ZodLiteral<"mcp">;
|
|
13849
13852
|
mcp: z.ZodObject<{
|
|
@@ -13863,18 +13866,17 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13863
13866
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13864
13867
|
}, z.core.$strip>;
|
|
13865
13868
|
}, z.core.$strip>;
|
|
13866
|
-
|
|
13867
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13869
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13868
13870
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13869
13871
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13872
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13870
13873
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
13871
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13872
13874
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
13873
13875
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13874
13876
|
}, z.core.$strip>>;
|
|
13875
13877
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13876
|
-
name: z.ZodString;
|
|
13877
13878
|
id: z.ZodString;
|
|
13879
|
+
name: z.ZodString;
|
|
13878
13880
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13879
13881
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13880
13882
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13889,8 +13891,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13889
13891
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
13890
13892
|
}, z.core.$strip>>>;
|
|
13891
13893
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13892
|
-
name: z.ZodString;
|
|
13893
13894
|
id: z.ZodString;
|
|
13895
|
+
name: z.ZodString;
|
|
13894
13896
|
description: z.ZodString;
|
|
13895
13897
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13896
13898
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -13910,8 +13912,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13910
13912
|
}>>>>;
|
|
13911
13913
|
}, z.core.$strip>>>;
|
|
13912
13914
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13913
|
-
name: z.ZodString;
|
|
13914
13915
|
id: z.ZodString;
|
|
13916
|
+
name: z.ZodString;
|
|
13915
13917
|
description: z.ZodString;
|
|
13916
13918
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13917
13919
|
}, {
|
|
@@ -13919,12 +13921,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13919
13921
|
in: {};
|
|
13920
13922
|
}>>>;
|
|
13921
13923
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13922
|
-
name: z.ZodString;
|
|
13923
13924
|
id: z.ZodString;
|
|
13925
|
+
name: z.ZodString;
|
|
13924
13926
|
description: z.ZodString;
|
|
13927
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13925
13928
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13926
13929
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13927
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13928
13930
|
baseUrl: z.ZodString;
|
|
13929
13931
|
}, z.core.$strip>>>;
|
|
13930
13932
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
@@ -13943,12 +13945,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13943
13945
|
}, z.core.$strip>>>;
|
|
13944
13946
|
}, z.core.$strip>>;
|
|
13945
13947
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13946
|
-
name: z.ZodString;
|
|
13947
13948
|
id: z.ZodString;
|
|
13948
|
-
|
|
13949
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
13949
|
+
name: z.ZodString;
|
|
13950
13950
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13951
13951
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13952
|
+
credentialStoreId: z.ZodString;
|
|
13953
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
13952
13954
|
type: z.ZodEnum<{
|
|
13953
13955
|
readonly memory: "memory";
|
|
13954
13956
|
readonly keychain: "keychain";
|
|
@@ -13963,8 +13965,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
13963
13965
|
}>;
|
|
13964
13966
|
declare const ProjectResponse: z.ZodObject<{
|
|
13965
13967
|
data: z.ZodObject<{
|
|
13966
|
-
name: z.ZodString;
|
|
13967
13968
|
id: z.ZodString;
|
|
13969
|
+
name: z.ZodString;
|
|
13968
13970
|
description: z.ZodString;
|
|
13969
13971
|
createdAt: z.ZodString;
|
|
13970
13972
|
updatedAt: z.ZodString;
|
|
@@ -13993,9 +13995,10 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
13993
13995
|
}, z.core.$strip>;
|
|
13994
13996
|
declare const SubAgentResponse: z.ZodObject<{
|
|
13995
13997
|
data: z.ZodObject<{
|
|
13996
|
-
name: z.ZodString;
|
|
13997
13998
|
id: z.ZodString;
|
|
13999
|
+
name: z.ZodString;
|
|
13998
14000
|
description: z.ZodString;
|
|
14001
|
+
prompt: z.ZodString;
|
|
13999
14002
|
createdAt: z.ZodString;
|
|
14000
14003
|
updatedAt: z.ZodString;
|
|
14001
14004
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -14060,15 +14063,15 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
14060
14063
|
}, {
|
|
14061
14064
|
stepCountIs?: number | undefined;
|
|
14062
14065
|
}>>>;
|
|
14063
|
-
|
|
14064
|
-
conversationHistoryConfig: z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>;
|
|
14066
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
14065
14067
|
}, z.core.$strip>;
|
|
14066
14068
|
}, z.core.$strip>;
|
|
14067
14069
|
declare const AgentResponse: z.ZodObject<{
|
|
14068
14070
|
data: z.ZodObject<{
|
|
14069
|
-
name: z.ZodString;
|
|
14070
14071
|
id: z.ZodString;
|
|
14072
|
+
name: z.ZodString;
|
|
14071
14073
|
description: z.ZodNullable<z.ZodString>;
|
|
14074
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
14072
14075
|
createdAt: z.ZodString;
|
|
14073
14076
|
updatedAt: z.ZodString;
|
|
14074
14077
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -14135,7 +14138,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
14135
14138
|
}>>>;
|
|
14136
14139
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14137
14140
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
14138
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
14139
14141
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
14140
14142
|
enabled?: boolean | undefined;
|
|
14141
14143
|
numEvents?: number | undefined;
|
|
@@ -14197,8 +14199,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
14197
14199
|
}, z.core.$strip>;
|
|
14198
14200
|
declare const ToolResponse: z.ZodObject<{
|
|
14199
14201
|
data: z.ZodObject<{
|
|
14202
|
+
id: z.ZodString;
|
|
14200
14203
|
name: z.ZodString;
|
|
14201
|
-
|
|
14204
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14202
14205
|
config: z.ZodType<{
|
|
14203
14206
|
type: "mcp";
|
|
14204
14207
|
mcp: ToolMcpConfig;
|
|
@@ -14212,24 +14215,23 @@ declare const ToolResponse: z.ZodObject<{
|
|
|
14212
14215
|
type: "mcp";
|
|
14213
14216
|
mcp: ToolMcpConfig;
|
|
14214
14217
|
}>>;
|
|
14215
|
-
|
|
14216
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14218
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
14217
14219
|
createdAt: z.ZodString;
|
|
14218
14220
|
updatedAt: z.ZodString;
|
|
14221
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
14219
14222
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
14220
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
14221
14223
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
14222
14224
|
lastError: z.ZodNullable<z.ZodString>;
|
|
14223
14225
|
}, z.core.$strip>;
|
|
14224
14226
|
}, z.core.$strip>;
|
|
14225
14227
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
14226
14228
|
data: z.ZodObject<{
|
|
14227
|
-
name: z.ZodString;
|
|
14228
14229
|
id: z.ZodString;
|
|
14230
|
+
name: z.ZodString;
|
|
14229
14231
|
description: z.ZodString;
|
|
14232
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14230
14233
|
createdAt: z.ZodString;
|
|
14231
14234
|
updatedAt: z.ZodString;
|
|
14232
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14233
14235
|
baseUrl: z.ZodString;
|
|
14234
14236
|
}, z.core.$strip>;
|
|
14235
14237
|
}, z.core.$strip>;
|
|
@@ -14244,15 +14246,15 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
14244
14246
|
}, z.core.$strip>;
|
|
14245
14247
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
14246
14248
|
data: z.ZodObject<{
|
|
14247
|
-
name: z.ZodNullable<z.ZodString>;
|
|
14248
14249
|
id: z.ZodString;
|
|
14249
|
-
|
|
14250
|
-
updatedAt: z.ZodString;
|
|
14250
|
+
name: z.ZodNullable<z.ZodString>;
|
|
14251
14251
|
agentId: z.ZodString;
|
|
14252
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
14253
14252
|
publicId: z.ZodString;
|
|
14254
14253
|
keyPrefix: z.ZodString;
|
|
14255
14254
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
14255
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
14256
|
+
createdAt: z.ZodString;
|
|
14257
|
+
updatedAt: z.ZodString;
|
|
14256
14258
|
}, {
|
|
14257
14259
|
out: {};
|
|
14258
14260
|
in: {};
|
|
@@ -14260,12 +14262,12 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
14260
14262
|
}, z.core.$strip>;
|
|
14261
14263
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
14262
14264
|
data: z.ZodObject<{
|
|
14263
|
-
name: z.ZodString;
|
|
14264
14265
|
id: z.ZodString;
|
|
14265
|
-
|
|
14266
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
14266
|
+
name: z.ZodString;
|
|
14267
14267
|
createdAt: z.ZodString;
|
|
14268
14268
|
updatedAt: z.ZodString;
|
|
14269
|
+
credentialStoreId: z.ZodString;
|
|
14270
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
14269
14271
|
type: z.ZodEnum<{
|
|
14270
14272
|
readonly memory: "memory";
|
|
14271
14273
|
readonly keychain: "keychain";
|
|
@@ -14788,19 +14790,19 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
14788
14790
|
}, z.core.$strip>;
|
|
14789
14791
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
14790
14792
|
data: z.ZodObject<{
|
|
14791
|
-
name: z.ZodString;
|
|
14792
14793
|
id: z.ZodString;
|
|
14794
|
+
name: z.ZodString;
|
|
14793
14795
|
description: z.ZodNullable<z.ZodString>;
|
|
14796
|
+
agentId: z.ZodString;
|
|
14794
14797
|
createdAt: z.ZodString;
|
|
14795
14798
|
updatedAt: z.ZodString;
|
|
14796
|
-
agentId: z.ZodString;
|
|
14797
14799
|
functionId: z.ZodString;
|
|
14798
14800
|
}, z.core.$strip>;
|
|
14799
14801
|
}, z.core.$strip>;
|
|
14800
14802
|
declare const DataComponentResponse: z.ZodObject<{
|
|
14801
14803
|
data: z.ZodObject<{
|
|
14802
|
-
name: z.ZodString;
|
|
14803
14804
|
id: z.ZodString;
|
|
14805
|
+
name: z.ZodString;
|
|
14804
14806
|
description: z.ZodString;
|
|
14805
14807
|
createdAt: z.ZodString;
|
|
14806
14808
|
updatedAt: z.ZodString;
|
|
@@ -14822,8 +14824,8 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
14822
14824
|
}, z.core.$strip>;
|
|
14823
14825
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
14824
14826
|
data: z.ZodObject<{
|
|
14825
|
-
name: z.ZodString;
|
|
14826
14827
|
id: z.ZodString;
|
|
14828
|
+
name: z.ZodString;
|
|
14827
14829
|
description: z.ZodString;
|
|
14828
14830
|
createdAt: z.ZodString;
|
|
14829
14831
|
updatedAt: z.ZodString;
|
|
@@ -14842,13 +14844,13 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
14842
14844
|
}, z.core.$strip>;
|
|
14843
14845
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
14844
14846
|
data: z.ZodObject<{
|
|
14845
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14846
14847
|
id: z.ZodString;
|
|
14847
14848
|
createdAt: z.ZodString;
|
|
14848
14849
|
updatedAt: z.ZodString;
|
|
14850
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14851
|
+
toolId: z.ZodString;
|
|
14849
14852
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
14850
14853
|
subAgentId: z.ZodString;
|
|
14851
|
-
toolId: z.ZodString;
|
|
14852
14854
|
}, z.core.$strip>;
|
|
14853
14855
|
}, z.core.$strip>;
|
|
14854
14856
|
declare const ConversationResponse: z.ZodObject<{
|
|
@@ -14888,8 +14890,8 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
14888
14890
|
}, z.core.$strip>;
|
|
14889
14891
|
declare const ProjectListResponse: z.ZodObject<{
|
|
14890
14892
|
data: z.ZodArray<z.ZodObject<{
|
|
14891
|
-
name: z.ZodString;
|
|
14892
14893
|
id: z.ZodString;
|
|
14894
|
+
name: z.ZodString;
|
|
14893
14895
|
description: z.ZodString;
|
|
14894
14896
|
createdAt: z.ZodString;
|
|
14895
14897
|
updatedAt: z.ZodString;
|
|
@@ -14924,9 +14926,10 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
14924
14926
|
}, z.core.$strip>;
|
|
14925
14927
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
14926
14928
|
data: z.ZodArray<z.ZodObject<{
|
|
14927
|
-
name: z.ZodString;
|
|
14928
14929
|
id: z.ZodString;
|
|
14930
|
+
name: z.ZodString;
|
|
14929
14931
|
description: z.ZodString;
|
|
14932
|
+
prompt: z.ZodString;
|
|
14930
14933
|
createdAt: z.ZodString;
|
|
14931
14934
|
updatedAt: z.ZodString;
|
|
14932
14935
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -14991,8 +14994,7 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
14991
14994
|
}, {
|
|
14992
14995
|
stepCountIs?: number | undefined;
|
|
14993
14996
|
}>>>;
|
|
14994
|
-
|
|
14995
|
-
conversationHistoryConfig: z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>;
|
|
14997
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
14996
14998
|
}, z.core.$strip>>;
|
|
14997
14999
|
pagination: z.ZodObject<{
|
|
14998
15000
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -15003,9 +15005,10 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
15003
15005
|
}, z.core.$strip>;
|
|
15004
15006
|
declare const AgentListResponse: z.ZodObject<{
|
|
15005
15007
|
data: z.ZodArray<z.ZodObject<{
|
|
15006
|
-
name: z.ZodString;
|
|
15007
15008
|
id: z.ZodString;
|
|
15009
|
+
name: z.ZodString;
|
|
15008
15010
|
description: z.ZodNullable<z.ZodString>;
|
|
15011
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
15009
15012
|
createdAt: z.ZodString;
|
|
15010
15013
|
updatedAt: z.ZodString;
|
|
15011
15014
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -15072,7 +15075,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
15072
15075
|
}>>>;
|
|
15073
15076
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15074
15077
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
15075
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
15076
15078
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
15077
15079
|
enabled?: boolean | undefined;
|
|
15078
15080
|
numEvents?: number | undefined;
|
|
@@ -15140,8 +15142,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
15140
15142
|
}, z.core.$strip>;
|
|
15141
15143
|
declare const ToolListResponse: z.ZodObject<{
|
|
15142
15144
|
data: z.ZodArray<z.ZodObject<{
|
|
15145
|
+
id: z.ZodString;
|
|
15143
15146
|
name: z.ZodString;
|
|
15144
|
-
|
|
15147
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15145
15148
|
config: z.ZodType<{
|
|
15146
15149
|
type: "mcp";
|
|
15147
15150
|
mcp: ToolMcpConfig;
|
|
@@ -15155,12 +15158,11 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
15155
15158
|
type: "mcp";
|
|
15156
15159
|
mcp: ToolMcpConfig;
|
|
15157
15160
|
}>>;
|
|
15158
|
-
|
|
15159
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15161
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
15160
15162
|
createdAt: z.ZodString;
|
|
15161
15163
|
updatedAt: z.ZodString;
|
|
15164
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
15162
15165
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
15163
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
15164
15166
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
15165
15167
|
lastError: z.ZodNullable<z.ZodString>;
|
|
15166
15168
|
}, z.core.$strip>>;
|
|
@@ -15173,12 +15175,12 @@ declare const ToolListResponse: z.ZodObject<{
|
|
|
15173
15175
|
}, z.core.$strip>;
|
|
15174
15176
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
15175
15177
|
data: z.ZodArray<z.ZodObject<{
|
|
15176
|
-
name: z.ZodString;
|
|
15177
15178
|
id: z.ZodString;
|
|
15179
|
+
name: z.ZodString;
|
|
15178
15180
|
description: z.ZodString;
|
|
15181
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15179
15182
|
createdAt: z.ZodString;
|
|
15180
15183
|
updatedAt: z.ZodString;
|
|
15181
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15182
15184
|
baseUrl: z.ZodString;
|
|
15183
15185
|
}, z.core.$strip>>;
|
|
15184
15186
|
pagination: z.ZodObject<{
|
|
@@ -15205,15 +15207,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
15205
15207
|
}, z.core.$strip>;
|
|
15206
15208
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
15207
15209
|
data: z.ZodArray<z.ZodObject<{
|
|
15208
|
-
name: z.ZodNullable<z.ZodString>;
|
|
15209
15210
|
id: z.ZodString;
|
|
15210
|
-
|
|
15211
|
-
updatedAt: z.ZodString;
|
|
15211
|
+
name: z.ZodNullable<z.ZodString>;
|
|
15212
15212
|
agentId: z.ZodString;
|
|
15213
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
15214
15213
|
publicId: z.ZodString;
|
|
15215
15214
|
keyPrefix: z.ZodString;
|
|
15216
15215
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
15216
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
15217
|
+
createdAt: z.ZodString;
|
|
15218
|
+
updatedAt: z.ZodString;
|
|
15217
15219
|
}, {
|
|
15218
15220
|
out: {};
|
|
15219
15221
|
in: {};
|
|
@@ -15227,12 +15229,12 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
15227
15229
|
}, z.core.$strip>;
|
|
15228
15230
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
15229
15231
|
data: z.ZodArray<z.ZodObject<{
|
|
15230
|
-
name: z.ZodString;
|
|
15231
15232
|
id: z.ZodString;
|
|
15232
|
-
|
|
15233
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
15233
|
+
name: z.ZodString;
|
|
15234
15234
|
createdAt: z.ZodString;
|
|
15235
15235
|
updatedAt: z.ZodString;
|
|
15236
|
+
credentialStoreId: z.ZodString;
|
|
15237
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
15236
15238
|
type: z.ZodEnum<{
|
|
15237
15239
|
readonly memory: "memory";
|
|
15238
15240
|
readonly keychain: "keychain";
|
|
@@ -15767,12 +15769,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
15767
15769
|
}, z.core.$strip>;
|
|
15768
15770
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
15769
15771
|
data: z.ZodArray<z.ZodObject<{
|
|
15770
|
-
name: z.ZodString;
|
|
15771
15772
|
id: z.ZodString;
|
|
15773
|
+
name: z.ZodString;
|
|
15772
15774
|
description: z.ZodNullable<z.ZodString>;
|
|
15775
|
+
agentId: z.ZodString;
|
|
15773
15776
|
createdAt: z.ZodString;
|
|
15774
15777
|
updatedAt: z.ZodString;
|
|
15775
|
-
agentId: z.ZodString;
|
|
15776
15778
|
functionId: z.ZodString;
|
|
15777
15779
|
}, z.core.$strip>>;
|
|
15778
15780
|
pagination: z.ZodObject<{
|
|
@@ -15784,8 +15786,8 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
15784
15786
|
}, z.core.$strip>;
|
|
15785
15787
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
15786
15788
|
data: z.ZodArray<z.ZodObject<{
|
|
15787
|
-
name: z.ZodString;
|
|
15788
15789
|
id: z.ZodString;
|
|
15790
|
+
name: z.ZodString;
|
|
15789
15791
|
description: z.ZodString;
|
|
15790
15792
|
createdAt: z.ZodString;
|
|
15791
15793
|
updatedAt: z.ZodString;
|
|
@@ -15813,8 +15815,8 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
15813
15815
|
}, z.core.$strip>;
|
|
15814
15816
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
15815
15817
|
data: z.ZodArray<z.ZodObject<{
|
|
15816
|
-
name: z.ZodString;
|
|
15817
15818
|
id: z.ZodString;
|
|
15819
|
+
name: z.ZodString;
|
|
15818
15820
|
description: z.ZodString;
|
|
15819
15821
|
createdAt: z.ZodString;
|
|
15820
15822
|
updatedAt: z.ZodString;
|
|
@@ -15845,13 +15847,13 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
15845
15847
|
}, z.core.$strip>;
|
|
15846
15848
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
15847
15849
|
data: z.ZodArray<z.ZodObject<{
|
|
15848
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15849
15850
|
id: z.ZodString;
|
|
15850
15851
|
createdAt: z.ZodString;
|
|
15851
15852
|
updatedAt: z.ZodString;
|
|
15853
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15854
|
+
toolId: z.ZodString;
|
|
15852
15855
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
15853
15856
|
subAgentId: z.ZodString;
|
|
15854
|
-
toolId: z.ZodString;
|
|
15855
15857
|
}, z.core.$strip>>;
|
|
15856
15858
|
pagination: z.ZodObject<{
|
|
15857
15859
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -15953,8 +15955,8 @@ declare const SubAgentArtifactComponentListResponse: z.ZodObject<{
|
|
|
15953
15955
|
}, z.core.$strip>;
|
|
15954
15956
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
15955
15957
|
data: z.ZodObject<{
|
|
15956
|
-
name: z.ZodString;
|
|
15957
15958
|
id: z.ZodString;
|
|
15959
|
+
name: z.ZodString;
|
|
15958
15960
|
description: z.ZodString;
|
|
15959
15961
|
models: z.ZodObject<{
|
|
15960
15962
|
base: z.ZodObject<{
|
|
@@ -15983,8 +15985,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
15983
15985
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15984
15986
|
id: z.ZodString;
|
|
15985
15987
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15986
|
-
name: z.ZodString;
|
|
15987
15988
|
id: z.ZodString;
|
|
15989
|
+
name: z.ZodString;
|
|
15988
15990
|
description: z.ZodString;
|
|
15989
15991
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15990
15992
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16011,7 +16013,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16011
16013
|
}, {
|
|
16012
16014
|
stepCountIs?: number | undefined;
|
|
16013
16015
|
}>>>>;
|
|
16014
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
16016
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
16015
16017
|
type: z.ZodLiteral<"internal">;
|
|
16016
16018
|
canUse: z.ZodArray<z.ZodObject<{
|
|
16017
16019
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -16034,8 +16036,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16034
16036
|
}, z.core.$strip>]>>>;
|
|
16035
16037
|
}, z.core.$strip>>;
|
|
16036
16038
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16039
|
+
id: z.ZodString;
|
|
16037
16040
|
name: z.ZodString;
|
|
16038
|
-
|
|
16041
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16039
16042
|
config: z.ZodObject<{
|
|
16040
16043
|
type: z.ZodLiteral<"mcp">;
|
|
16041
16044
|
mcp: z.ZodObject<{
|
|
@@ -16055,22 +16058,21 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16055
16058
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16056
16059
|
}, z.core.$strip>;
|
|
16057
16060
|
}, z.core.$strip>;
|
|
16058
|
-
|
|
16059
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16061
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16060
16062
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16061
16063
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16064
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16062
16065
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16063
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16064
16066
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16065
16067
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16066
16068
|
}, z.core.$strip>>>;
|
|
16067
16069
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16068
|
-
name: z.ZodString;
|
|
16069
16070
|
id: z.ZodString;
|
|
16071
|
+
name: z.ZodString;
|
|
16070
16072
|
description: z.ZodString;
|
|
16073
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16071
16074
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16072
16075
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16073
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16074
16076
|
baseUrl: z.ZodString;
|
|
16075
16077
|
}, z.core.$strip>>>;
|
|
16076
16078
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16079,8 +16081,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16079
16081
|
description: z.ZodString;
|
|
16080
16082
|
}, z.core.$strip>>>;
|
|
16081
16083
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16082
|
-
name: z.ZodString;
|
|
16083
16084
|
id: z.ZodString;
|
|
16085
|
+
name: z.ZodString;
|
|
16084
16086
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16085
16087
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16086
16088
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16134,8 +16136,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16134
16136
|
prompt: z.ZodOptional<z.ZodString>;
|
|
16135
16137
|
}, z.core.$strip>>;
|
|
16136
16138
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16139
|
+
id: z.ZodString;
|
|
16137
16140
|
name: z.ZodString;
|
|
16138
|
-
|
|
16141
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16139
16142
|
config: z.ZodObject<{
|
|
16140
16143
|
type: z.ZodLiteral<"mcp">;
|
|
16141
16144
|
mcp: z.ZodObject<{
|
|
@@ -16155,18 +16158,17 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16155
16158
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16156
16159
|
}, z.core.$strip>;
|
|
16157
16160
|
}, z.core.$strip>;
|
|
16158
|
-
|
|
16159
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16161
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16160
16162
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16161
16163
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16164
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16162
16165
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16163
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16164
16166
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16165
16167
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16166
16168
|
}, z.core.$strip>>;
|
|
16167
16169
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16168
|
-
name: z.ZodString;
|
|
16169
16170
|
id: z.ZodString;
|
|
16171
|
+
name: z.ZodString;
|
|
16170
16172
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16171
16173
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16172
16174
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16181,8 +16183,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16181
16183
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16182
16184
|
}, z.core.$strip>>>;
|
|
16183
16185
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16184
|
-
name: z.ZodString;
|
|
16185
16186
|
id: z.ZodString;
|
|
16187
|
+
name: z.ZodString;
|
|
16186
16188
|
description: z.ZodString;
|
|
16187
16189
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16188
16190
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16202,8 +16204,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16202
16204
|
}>>>>;
|
|
16203
16205
|
}, z.core.$strip>>>;
|
|
16204
16206
|
artifactComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16205
|
-
name: z.ZodString;
|
|
16206
16207
|
id: z.ZodString;
|
|
16208
|
+
name: z.ZodString;
|
|
16207
16209
|
description: z.ZodString;
|
|
16208
16210
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
16209
16211
|
}, {
|
|
@@ -16211,12 +16213,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16211
16213
|
in: {};
|
|
16212
16214
|
}>>>;
|
|
16213
16215
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16214
|
-
name: z.ZodString;
|
|
16215
16216
|
id: z.ZodString;
|
|
16217
|
+
name: z.ZodString;
|
|
16216
16218
|
description: z.ZodString;
|
|
16219
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16217
16220
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16218
16221
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16219
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16220
16222
|
baseUrl: z.ZodString;
|
|
16221
16223
|
}, z.core.$strip>>>;
|
|
16222
16224
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
@@ -16235,12 +16237,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
16235
16237
|
}, z.core.$strip>>>;
|
|
16236
16238
|
}, z.core.$strip>>;
|
|
16237
16239
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16238
|
-
name: z.ZodString;
|
|
16239
16240
|
id: z.ZodString;
|
|
16240
|
-
|
|
16241
|
-
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
16241
|
+
name: z.ZodString;
|
|
16242
16242
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16243
16243
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16244
|
+
credentialStoreId: z.ZodString;
|
|
16245
|
+
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
16244
16246
|
type: z.ZodEnum<{
|
|
16245
16247
|
readonly memory: "memory";
|
|
16246
16248
|
readonly keychain: "keychain";
|
|
@@ -16264,8 +16266,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16264
16266
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16265
16267
|
id: z.ZodString;
|
|
16266
16268
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16267
|
-
name: z.ZodString;
|
|
16268
16269
|
id: z.ZodString;
|
|
16270
|
+
name: z.ZodString;
|
|
16269
16271
|
description: z.ZodString;
|
|
16270
16272
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16271
16273
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16292,7 +16294,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16292
16294
|
}, {
|
|
16293
16295
|
stepCountIs?: number | undefined;
|
|
16294
16296
|
}>>>>;
|
|
16295
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig
|
|
16297
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
16296
16298
|
type: z.ZodLiteral<"internal">;
|
|
16297
16299
|
canUse: z.ZodArray<z.ZodObject<{
|
|
16298
16300
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -16315,8 +16317,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16315
16317
|
}, z.core.$strip>]>>>;
|
|
16316
16318
|
}, z.core.$strip>>;
|
|
16317
16319
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16320
|
+
id: z.ZodString;
|
|
16318
16321
|
name: z.ZodString;
|
|
16319
|
-
|
|
16322
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16320
16323
|
config: z.ZodObject<{
|
|
16321
16324
|
type: z.ZodLiteral<"mcp">;
|
|
16322
16325
|
mcp: z.ZodObject<{
|
|
@@ -16336,22 +16339,21 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16336
16339
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16337
16340
|
}, z.core.$strip>;
|
|
16338
16341
|
}, z.core.$strip>;
|
|
16339
|
-
|
|
16340
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16342
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16341
16343
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16342
16344
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16345
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
16343
16346
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
16344
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16345
16347
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
16346
16348
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16347
16349
|
}, z.core.$strip>>>;
|
|
16348
16350
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16349
|
-
name: z.ZodString;
|
|
16350
16351
|
id: z.ZodString;
|
|
16352
|
+
name: z.ZodString;
|
|
16351
16353
|
description: z.ZodString;
|
|
16354
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16352
16355
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16353
16356
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16354
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16355
16357
|
baseUrl: z.ZodString;
|
|
16356
16358
|
}, z.core.$strip>>>;
|
|
16357
16359
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16360,8 +16362,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
16360
16362
|
description: z.ZodString;
|
|
16361
16363
|
}, z.core.$strip>>>;
|
|
16362
16364
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16363
|
-
name: z.ZodString;
|
|
16364
16365
|
id: z.ZodString;
|
|
16366
|
+
name: z.ZodString;
|
|
16365
16367
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16366
16368
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16367
16369
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -16480,6 +16482,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
16480
16482
|
createdAt: z.ZodDate;
|
|
16481
16483
|
updatedAt: z.ZodDate;
|
|
16482
16484
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
16485
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
16483
16486
|
}, {
|
|
16484
16487
|
out: {};
|
|
16485
16488
|
in: {};
|
|
@@ -16531,6 +16534,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
16531
16534
|
createdAt: z.ZodDate;
|
|
16532
16535
|
updatedAt: z.ZodDate;
|
|
16533
16536
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
16537
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
16534
16538
|
}, {
|
|
16535
16539
|
out: {};
|
|
16536
16540
|
in: {};
|
|
@@ -16544,20 +16548,20 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
16544
16548
|
}, z.core.$strip>;
|
|
16545
16549
|
declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
16546
16550
|
data: z.ZodObject<{
|
|
16547
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16548
16551
|
id: z.ZodString;
|
|
16549
16552
|
createdAt: z.ZodString;
|
|
16550
16553
|
updatedAt: z.ZodString;
|
|
16554
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16551
16555
|
subAgentId: z.ZodString;
|
|
16552
16556
|
targetAgentId: z.ZodString;
|
|
16553
16557
|
}, z.core.$strip>;
|
|
16554
16558
|
}, z.core.$strip>;
|
|
16555
16559
|
declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
16556
16560
|
data: z.ZodArray<z.ZodObject<{
|
|
16557
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16558
16561
|
id: z.ZodString;
|
|
16559
16562
|
createdAt: z.ZodString;
|
|
16560
16563
|
updatedAt: z.ZodString;
|
|
16564
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16561
16565
|
subAgentId: z.ZodString;
|
|
16562
16566
|
targetAgentId: z.ZodString;
|
|
16563
16567
|
}, z.core.$strip>>;
|
|
@@ -16570,22 +16574,22 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
16570
16574
|
}, z.core.$strip>;
|
|
16571
16575
|
declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
16572
16576
|
data: z.ZodObject<{
|
|
16573
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16574
16577
|
id: z.ZodString;
|
|
16575
16578
|
createdAt: z.ZodString;
|
|
16576
16579
|
updatedAt: z.ZodString;
|
|
16577
|
-
|
|
16580
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16578
16581
|
externalAgentId: z.ZodString;
|
|
16582
|
+
subAgentId: z.ZodString;
|
|
16579
16583
|
}, z.core.$strip>;
|
|
16580
16584
|
}, z.core.$strip>;
|
|
16581
16585
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
16582
16586
|
data: z.ZodArray<z.ZodObject<{
|
|
16583
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16584
16587
|
id: z.ZodString;
|
|
16585
16588
|
createdAt: z.ZodString;
|
|
16586
16589
|
updatedAt: z.ZodString;
|
|
16587
|
-
|
|
16590
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
16588
16591
|
externalAgentId: z.ZodString;
|
|
16592
|
+
subAgentId: z.ZodString;
|
|
16589
16593
|
}, z.core.$strip>>;
|
|
16590
16594
|
pagination: z.ZodObject<{
|
|
16591
16595
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -16596,8 +16600,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
16596
16600
|
}, z.core.$strip>;
|
|
16597
16601
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
16598
16602
|
data: z.ZodArray<z.ZodObject<{
|
|
16599
|
-
name: z.ZodString;
|
|
16600
16603
|
id: z.ZodString;
|
|
16604
|
+
name: z.ZodString;
|
|
16601
16605
|
description: z.ZodString;
|
|
16602
16606
|
createdAt: z.ZodString;
|
|
16603
16607
|
updatedAt: z.ZodString;
|
|
@@ -16619,8 +16623,8 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
16619
16623
|
}, z.core.$strip>;
|
|
16620
16624
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
16621
16625
|
data: z.ZodArray<z.ZodObject<{
|
|
16622
|
-
name: z.ZodString;
|
|
16623
16626
|
id: z.ZodString;
|
|
16627
|
+
name: z.ZodString;
|
|
16624
16628
|
description: z.ZodString;
|
|
16625
16629
|
createdAt: z.ZodString;
|
|
16626
16630
|
updatedAt: z.ZodString;
|