@inkeep/agents-core 0.0.0-dev-20260401192843 → 0.0.0-dev-20260401215620
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +16 -16
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgents.d.ts +12 -12
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +346 -346
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/schemas/skills.d.ts +29 -29
- package/dist/validation/schemas.d.ts +406 -406
- package/package.json +1 -1
|
@@ -739,11 +739,11 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
739
739
|
in: {};
|
|
740
740
|
}>;
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
|
-
description: z.ZodNullable<z.ZodString>;
|
|
743
742
|
id: z.ZodString;
|
|
744
743
|
name: z.ZodString;
|
|
745
744
|
createdAt: z.ZodString;
|
|
746
745
|
updatedAt: z.ZodString;
|
|
746
|
+
description: z.ZodNullable<z.ZodString>;
|
|
747
747
|
models: z.ZodNullable<z.ZodType<{
|
|
748
748
|
base?: {
|
|
749
749
|
model?: string | undefined;
|
|
@@ -834,11 +834,11 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
834
834
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
835
835
|
}, z.core.$strip>;
|
|
836
836
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
837
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
838
837
|
id: z.ZodString;
|
|
839
838
|
name: z.ZodString;
|
|
840
839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
841
840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
841
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
842
842
|
models: z.ZodOptional<z.ZodObject<{
|
|
843
843
|
base: z.ZodOptional<z.ZodObject<{
|
|
844
844
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -872,11 +872,11 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
872
872
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
873
873
|
}, z.core.$strip>;
|
|
874
874
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
875
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
876
875
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
876
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
878
877
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
878
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
880
880
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
881
881
|
base: z.ZodOptional<z.ZodObject<{
|
|
882
882
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1334,10 +1334,10 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1334
1334
|
in: {};
|
|
1335
1335
|
}>;
|
|
1336
1336
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1337
|
-
agentId: z.ZodString;
|
|
1338
1337
|
id: z.ZodString;
|
|
1339
1338
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1340
1339
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
agentId: z.ZodString;
|
|
1341
1341
|
sourceSubAgentId: z.ZodString;
|
|
1342
1342
|
targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1343
1343
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "models" | "stopWhen" | "prompt" | "defaultSubAgentId" | "contextConfigId" | "statusUpdates" | "executionMode">, undefined>, undefined>;
|
|
2668
2668
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2669
2669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2670
2670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2825,11 +2825,11 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2825
2825
|
in: {};
|
|
2826
2826
|
}>;
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2829
2828
|
id: z.ZodString;
|
|
2830
2829
|
name: z.ZodString;
|
|
2831
2830
|
createdAt: z.ZodString;
|
|
2832
2831
|
updatedAt: z.ZodString;
|
|
2832
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2833
2833
|
models: z.ZodNullable<z.ZodType<{
|
|
2834
2834
|
base?: {
|
|
2835
2835
|
model?: string | undefined;
|
|
@@ -2979,9 +2979,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2979
2979
|
executionMode: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2983
2982
|
id: z.ZodString;
|
|
2984
2983
|
name: z.ZodString;
|
|
2984
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2985
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2986
2986
|
base?: {
|
|
2987
2987
|
model?: string | undefined;
|
|
@@ -3131,8 +3131,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3131
3131
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
3132
3132
|
}, z.core.$strip>;
|
|
3133
3133
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3134
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3135
3134
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3135
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3136
3136
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3137
3137
|
base?: {
|
|
3138
3138
|
model?: string | undefined;
|
|
@@ -3473,15 +3473,15 @@ declare const SignatureValidationOptionsSchema: z.ZodObject<{
|
|
|
3473
3473
|
*/
|
|
3474
3474
|
declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
3475
3475
|
algorithm: z.ZodEnum<{
|
|
3476
|
+
md5: "md5";
|
|
3476
3477
|
sha256: "sha256";
|
|
3477
3478
|
sha512: "sha512";
|
|
3478
3479
|
sha384: "sha384";
|
|
3479
3480
|
sha1: "sha1";
|
|
3480
|
-
md5: "md5";
|
|
3481
3481
|
}>;
|
|
3482
3482
|
encoding: z.ZodEnum<{
|
|
3483
|
-
hex: "hex";
|
|
3484
3483
|
base64: "base64";
|
|
3484
|
+
hex: "hex";
|
|
3485
3485
|
}>;
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
@@ -3548,8 +3548,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3548
3548
|
*/
|
|
3549
3549
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3550
3550
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3551
|
-
success: "success";
|
|
3552
3551
|
pending: "pending";
|
|
3552
|
+
success: "success";
|
|
3553
3553
|
failed: "failed";
|
|
3554
3554
|
}>;
|
|
3555
3555
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
@@ -3569,15 +3569,15 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3569
3569
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3570
3570
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3571
3571
|
algorithm: z.ZodEnum<{
|
|
3572
|
+
md5: "md5";
|
|
3572
3573
|
sha256: "sha256";
|
|
3573
3574
|
sha512: "sha512";
|
|
3574
3575
|
sha384: "sha384";
|
|
3575
3576
|
sha1: "sha1";
|
|
3576
|
-
md5: "md5";
|
|
3577
3577
|
}>;
|
|
3578
3578
|
encoding: z.ZodEnum<{
|
|
3579
|
-
hex: "hex";
|
|
3580
3579
|
base64: "base64";
|
|
3580
|
+
hex: "hex";
|
|
3581
3581
|
}>;
|
|
3582
3582
|
signature: z.ZodObject<{
|
|
3583
3583
|
source: z.ZodEnum<{
|
|
@@ -3775,8 +3775,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3775
3775
|
dataType: "json";
|
|
3776
3776
|
columnType: "PgJsonb";
|
|
3777
3777
|
data: {
|
|
3778
|
-
algorithm: "
|
|
3779
|
-
encoding: "
|
|
3778
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3779
|
+
encoding: "base64" | "hex";
|
|
3780
3780
|
signature: {
|
|
3781
3781
|
source: "query" | "body" | "header";
|
|
3782
3782
|
key: string;
|
|
@@ -3812,8 +3812,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3812
3812
|
generated: undefined;
|
|
3813
3813
|
}, {}, {
|
|
3814
3814
|
$type: {
|
|
3815
|
-
algorithm: "
|
|
3816
|
-
encoding: "
|
|
3815
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3816
|
+
encoding: "base64" | "hex";
|
|
3817
3817
|
signature: {
|
|
3818
3818
|
source: "query" | "body" | "header";
|
|
3819
3819
|
key: string;
|
|
@@ -4145,8 +4145,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4145
4145
|
dataType: "json";
|
|
4146
4146
|
columnType: "PgJsonb";
|
|
4147
4147
|
data: {
|
|
4148
|
-
algorithm: "
|
|
4149
|
-
encoding: "
|
|
4148
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4149
|
+
encoding: "base64" | "hex";
|
|
4150
4150
|
signature: {
|
|
4151
4151
|
source: "query" | "body" | "header";
|
|
4152
4152
|
key: string;
|
|
@@ -4182,8 +4182,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4182
4182
|
generated: undefined;
|
|
4183
4183
|
}, {}, {
|
|
4184
4184
|
$type: {
|
|
4185
|
-
algorithm: "
|
|
4186
|
-
encoding: "
|
|
4185
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4186
|
+
encoding: "base64" | "hex";
|
|
4187
4187
|
signature: {
|
|
4188
4188
|
source: "query" | "body" | "header";
|
|
4189
4189
|
key: string;
|
|
@@ -4358,7 +4358,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4358
4358
|
}, {}, {
|
|
4359
4359
|
length: 256;
|
|
4360
4360
|
}>;
|
|
4361
|
-
}, "
|
|
4361
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "tenantId" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "createdBy">, undefined>, undefined>;
|
|
4362
4362
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4363
4363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4364
4364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4382,12 +4382,12 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4382
4382
|
in: {};
|
|
4383
4383
|
}>;
|
|
4384
4384
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4385
|
-
enabled: z.ZodBoolean;
|
|
4386
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4387
4385
|
id: z.ZodString;
|
|
4388
4386
|
name: z.ZodString;
|
|
4389
4387
|
createdAt: z.ZodString;
|
|
4390
4388
|
updatedAt: z.ZodString;
|
|
4389
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4390
|
+
enabled: z.ZodBoolean;
|
|
4391
4391
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4392
4392
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4393
4393
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4395,15 +4395,15 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4395
4395
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4396
4396
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4397
4397
|
algorithm: z.ZodEnum<{
|
|
4398
|
+
md5: "md5";
|
|
4398
4399
|
sha256: "sha256";
|
|
4399
4400
|
sha512: "sha512";
|
|
4400
4401
|
sha384: "sha384";
|
|
4401
4402
|
sha1: "sha1";
|
|
4402
|
-
md5: "md5";
|
|
4403
4403
|
}>;
|
|
4404
4404
|
encoding: z.ZodEnum<{
|
|
4405
|
-
hex: "hex";
|
|
4406
4405
|
base64: "base64";
|
|
4406
|
+
hex: "hex";
|
|
4407
4407
|
}>;
|
|
4408
4408
|
signature: z.ZodObject<{
|
|
4409
4409
|
source: z.ZodEnum<{
|
|
@@ -4442,10 +4442,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4442
4442
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4443
4443
|
}, z.core.$strip>;
|
|
4444
4444
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4445
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4446
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4447
4445
|
id: z.ZodOptional<z.ZodString>;
|
|
4448
4446
|
name: z.ZodString;
|
|
4447
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4448
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4449
4449
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4450
4450
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4451
4451
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4456,12 +4456,12 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4456
4456
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
4457
|
}, z.core.$strip>;
|
|
4458
4458
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4459
|
-
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4460
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4461
4459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4462
4460
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4463
4461
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4464
4462
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4463
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4464
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4465
4465
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4466
4466
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4467
4467
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4472,12 +4472,12 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4472
4472
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4473
4473
|
}, z.core.$strip>;
|
|
4474
4474
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4475
|
-
enabled: z.ZodBoolean;
|
|
4476
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4477
4475
|
id: z.ZodString;
|
|
4478
4476
|
name: z.ZodString;
|
|
4479
4477
|
createdAt: z.ZodString;
|
|
4480
4478
|
updatedAt: z.ZodString;
|
|
4479
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4480
|
+
enabled: z.ZodBoolean;
|
|
4481
4481
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4482
4482
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4483
4483
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4485,15 +4485,15 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4485
4485
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4486
4486
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4487
4487
|
algorithm: z.ZodEnum<{
|
|
4488
|
+
md5: "md5";
|
|
4488
4489
|
sha256: "sha256";
|
|
4489
4490
|
sha512: "sha512";
|
|
4490
4491
|
sha384: "sha384";
|
|
4491
4492
|
sha1: "sha1";
|
|
4492
|
-
md5: "md5";
|
|
4493
4493
|
}>;
|
|
4494
4494
|
encoding: z.ZodEnum<{
|
|
4495
|
-
hex: "hex";
|
|
4496
4495
|
base64: "base64";
|
|
4496
|
+
hex: "hex";
|
|
4497
4497
|
}>;
|
|
4498
4498
|
signature: z.ZodObject<{
|
|
4499
4499
|
source: z.ZodEnum<{
|
|
@@ -5015,7 +5015,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5015
5015
|
}, {}, {
|
|
5016
5016
|
length: 256;
|
|
5017
5017
|
}>;
|
|
5018
|
-
}, "
|
|
5018
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5019
5019
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5020
5020
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
5021
5021
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5150,14 +5150,14 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5150
5150
|
in: {};
|
|
5151
5151
|
}>;
|
|
5152
5152
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5153
|
-
|
|
5153
|
+
id: z.ZodString;
|
|
5154
|
+
name: z.ZodString;
|
|
5155
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5154
5156
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5157
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5155
5158
|
tenantId: z.ZodString;
|
|
5156
5159
|
projectId: z.ZodString;
|
|
5157
5160
|
agentId: z.ZodString;
|
|
5158
|
-
id: z.ZodString;
|
|
5159
|
-
name: z.ZodString;
|
|
5160
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5161
5161
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5162
5162
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5163
5163
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5173,12 +5173,12 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5173
5173
|
in: {};
|
|
5174
5174
|
}>;
|
|
5175
5175
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5176
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5177
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5176
5178
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5177
5179
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5178
5180
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5179
5181
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5180
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5181
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5182
5182
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5183
5183
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5184
5184
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5196,13 +5196,13 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5196
5196
|
in: {};
|
|
5197
5197
|
}>;
|
|
5198
5198
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5199
|
-
enabled: z.ZodBoolean;
|
|
5200
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5201
5199
|
id: z.ZodString;
|
|
5202
5200
|
name: z.ZodString;
|
|
5203
5201
|
createdAt: z.ZodString;
|
|
5204
5202
|
updatedAt: z.ZodString;
|
|
5205
5203
|
ref: z.ZodString;
|
|
5204
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5205
|
+
enabled: z.ZodBoolean;
|
|
5206
5206
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5207
5207
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5208
5208
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -5216,10 +5216,10 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5216
5216
|
nextRunAt: z.ZodNullable<z.ZodString>;
|
|
5217
5217
|
}, z.core.$strip>;
|
|
5218
5218
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5219
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5220
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5221
5219
|
name: z.ZodString;
|
|
5222
5220
|
ref: z.ZodOptional<z.ZodString>;
|
|
5221
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5222
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5223
5223
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5224
5224
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5225
5225
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5233,10 +5233,10 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5233
5233
|
id: z.ZodOptional<z.ZodString>;
|
|
5234
5234
|
}, z.core.$strip>;
|
|
5235
5235
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5236
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5237
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5238
5236
|
name: z.ZodString;
|
|
5239
5237
|
ref: z.ZodOptional<z.ZodString>;
|
|
5238
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5239
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5240
5240
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5241
5241
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5242
5242
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5250,11 +5250,11 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5250
5250
|
id: z.ZodOptional<z.ZodString>;
|
|
5251
5251
|
}, z.core.$strip>;
|
|
5252
5252
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5253
|
-
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5254
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5255
5253
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5256
5254
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5257
5255
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5256
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5257
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5258
5258
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5259
5259
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5260
5260
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5877,7 +5877,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5877
5877
|
}, {}, {
|
|
5878
5878
|
length: 256;
|
|
5879
5879
|
}>;
|
|
5880
|
-
}, "
|
|
5880
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
5881
5881
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5882
5882
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
5883
5883
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6225,8 +6225,6 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6225
6225
|
in: {};
|
|
6226
6226
|
}>;
|
|
6227
6227
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6228
|
-
agentId: z.ZodString;
|
|
6229
|
-
subAgentId: z.ZodString;
|
|
6230
6228
|
id: z.ZodString;
|
|
6231
6229
|
createdAt: z.ZodString;
|
|
6232
6230
|
updatedAt: z.ZodString;
|
|
@@ -6241,11 +6239,11 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6241
6239
|
}, z.core.$strip>>>;
|
|
6242
6240
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6243
6241
|
status: z.ZodString;
|
|
6242
|
+
agentId: z.ZodString;
|
|
6243
|
+
subAgentId: z.ZodString;
|
|
6244
6244
|
contextId: z.ZodString;
|
|
6245
6245
|
}, z.core.$strip>;
|
|
6246
6246
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
6247
|
-
agentId: z.ZodString;
|
|
6248
|
-
subAgentId: z.ZodString;
|
|
6249
6247
|
id: z.ZodString;
|
|
6250
6248
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6251
6249
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -6260,12 +6258,12 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6260
6258
|
}, z.core.$strip>;
|
|
6261
6259
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6262
6260
|
status: z.ZodString;
|
|
6261
|
+
agentId: z.ZodString;
|
|
6262
|
+
subAgentId: z.ZodString;
|
|
6263
6263
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
6264
6264
|
contextId: z.ZodString;
|
|
6265
6265
|
}, z.core.$strip>;
|
|
6266
6266
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6267
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6268
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6269
6267
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6270
6268
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6271
6269
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -6280,6 +6278,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6280
6278
|
}, z.core.$strip>>>;
|
|
6281
6279
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6282
6280
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6281
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6282
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6283
6283
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6284
6284
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6285
6285
|
}, z.core.$strip>;
|
|
@@ -7216,12 +7216,12 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7216
7216
|
}>;
|
|
7217
7217
|
}, undefined>, undefined>;
|
|
7218
7218
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7219
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7220
|
-
tenantId: z.ZodString;
|
|
7221
|
-
projectId: z.ZodString;
|
|
7222
7219
|
id: z.ZodString;
|
|
7223
7220
|
name: z.ZodString;
|
|
7221
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7224
7222
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7223
|
+
tenantId: z.ZodString;
|
|
7224
|
+
projectId: z.ZodString;
|
|
7225
7225
|
config: z.ZodObject<{
|
|
7226
7226
|
type: z.ZodLiteral<"mcp">;
|
|
7227
7227
|
mcp: z.ZodObject<{
|
|
@@ -7336,8 +7336,6 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7336
7336
|
in: {};
|
|
7337
7337
|
}>;
|
|
7338
7338
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7339
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7340
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
7341
7339
|
id: z.ZodString;
|
|
7342
7340
|
createdAt: z.ZodString;
|
|
7343
7341
|
updatedAt: z.ZodString;
|
|
@@ -7352,12 +7350,12 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7352
7350
|
}, z.core.$strip>>>;
|
|
7353
7351
|
userId: z.ZodNullable<z.ZodString>;
|
|
7354
7352
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7353
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7354
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
7355
7355
|
activeSubAgentId: z.ZodString;
|
|
7356
7356
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7357
7357
|
}, z.core.$strip>;
|
|
7358
7358
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
7359
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7360
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7361
7359
|
id: z.ZodString;
|
|
7362
7360
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7363
7361
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -7372,13 +7370,13 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7372
7370
|
}, z.core.$strip>;
|
|
7373
7371
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7374
7372
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7373
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7374
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7375
7375
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7376
7376
|
activeSubAgentId: z.ZodString;
|
|
7377
7377
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7378
7378
|
}, z.core.$strip>;
|
|
7379
7379
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7380
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7381
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7382
7380
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7383
7381
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7384
7382
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -7393,6 +7391,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7393
7391
|
}, z.core.$strip>>>;
|
|
7394
7392
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7395
7393
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7394
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7395
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7396
7396
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7397
7397
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7398
7398
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8249,18 +8249,18 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8249
8249
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8250
8250
|
role: z.ZodString;
|
|
8251
8251
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8252
|
+
conversationId: z.ZodString;
|
|
8252
8253
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8253
8254
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8254
8255
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8255
8256
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8256
|
-
taskId: z.ZodNullable<z.ZodString>;
|
|
8257
|
-
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8258
|
-
conversationId: z.ZodString;
|
|
8259
8257
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8260
8258
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8261
8259
|
visibility: z.ZodString;
|
|
8262
8260
|
messageType: z.ZodString;
|
|
8261
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
8263
8262
|
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
8263
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8264
8264
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8265
8265
|
}, z.core.$strip>;
|
|
8266
8266
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
@@ -8270,18 +8270,18 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8270
8270
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8271
8271
|
role: z.ZodString;
|
|
8272
8272
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8273
|
+
conversationId: z.ZodString;
|
|
8273
8274
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8274
8275
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8275
8276
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8276
8277
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8277
|
-
taskId: z.ZodOptional<z.ZodString>;
|
|
8278
|
-
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8279
|
-
conversationId: z.ZodString;
|
|
8280
8278
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8281
8279
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8282
8280
|
visibility: z.ZodOptional<z.ZodString>;
|
|
8283
8281
|
messageType: z.ZodOptional<z.ZodString>;
|
|
8282
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
8284
8283
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8284
|
+
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8285
8285
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8286
8286
|
}, z.core.$strip>;
|
|
8287
8287
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
@@ -8291,18 +8291,18 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8291
8291
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8292
8292
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8293
8293
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8294
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8294
8295
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8295
8296
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8296
8297
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8297
8298
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8298
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8299
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8300
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8301
8299
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8302
8300
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8303
8301
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8304
8302
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8303
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8305
8304
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8305
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8306
8306
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8307
8307
|
}, z.core.$strip>;
|
|
8308
8308
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -8384,7 +8384,6 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8384
8384
|
in: {};
|
|
8385
8385
|
}>;
|
|
8386
8386
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
8387
|
-
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8388
8387
|
id: z.ZodString;
|
|
8389
8388
|
createdAt: z.ZodString;
|
|
8390
8389
|
updatedAt: z.ZodString;
|
|
@@ -8397,6 +8396,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8397
8396
|
name: z.ZodString;
|
|
8398
8397
|
hash: z.ZodString;
|
|
8399
8398
|
}, z.core.$strip>>>;
|
|
8399
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8400
8400
|
contextConfigId: z.ZodString;
|
|
8401
8401
|
conversationId: z.ZodString;
|
|
8402
8402
|
contextVariableKey: z.ZodString;
|
|
@@ -8405,7 +8405,6 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8405
8405
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
8406
8406
|
}, z.core.$strip>;
|
|
8407
8407
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
8408
|
-
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8409
8408
|
id: z.ZodString;
|
|
8410
8409
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8411
8410
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -8418,6 +8417,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8418
8417
|
name: z.ZodString;
|
|
8419
8418
|
hash: z.ZodString;
|
|
8420
8419
|
}, z.core.$strip>;
|
|
8420
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8421
8421
|
contextConfigId: z.ZodString;
|
|
8422
8422
|
conversationId: z.ZodString;
|
|
8423
8423
|
contextVariableKey: z.ZodString;
|
|
@@ -8426,7 +8426,6 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8426
8426
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8427
8427
|
}, z.core.$strip>;
|
|
8428
8428
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8429
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8430
8429
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8431
8430
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8432
8431
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -8439,6 +8438,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8439
8438
|
name: z.ZodString;
|
|
8440
8439
|
hash: z.ZodString;
|
|
8441
8440
|
}, z.core.$strip>>>;
|
|
8441
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8442
8442
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8443
8443
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8444
8444
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9765,35 +9765,35 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
9765
9765
|
in: {};
|
|
9766
9766
|
}>;
|
|
9767
9767
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
9768
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9769
9768
|
id: z.ZodString;
|
|
9770
9769
|
name: z.ZodString;
|
|
9771
9770
|
createdAt: z.ZodString;
|
|
9772
9771
|
updatedAt: z.ZodString;
|
|
9772
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9773
9773
|
isActive: z.ZodBoolean;
|
|
9774
9774
|
}, z.core.$strip>;
|
|
9775
9775
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
9776
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9777
9776
|
name: z.ZodString;
|
|
9778
9777
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9779
9778
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9779
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9780
9780
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9781
9781
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
9782
9782
|
}, z.core.$strip>;
|
|
9783
9783
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
9784
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9785
9784
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9786
9785
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9787
9786
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9787
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9788
9788
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
9789
9789
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9790
9790
|
}, z.core.$strip>;
|
|
9791
9791
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
9792
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9793
9792
|
id: z.ZodString;
|
|
9794
9793
|
name: z.ZodString;
|
|
9795
9794
|
createdAt: z.ZodString;
|
|
9796
9795
|
updatedAt: z.ZodString;
|
|
9796
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9797
9797
|
isActive: z.ZodBoolean;
|
|
9798
9798
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
9799
9799
|
}, z.core.$strip>;
|
|
@@ -11939,12 +11939,12 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
11939
11939
|
in: {};
|
|
11940
11940
|
}>;
|
|
11941
11941
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
11942
|
-
description: z.ZodNullable<z.ZodString>;
|
|
11943
11942
|
id: z.ZodString;
|
|
11944
11943
|
name: z.ZodString;
|
|
11945
11944
|
createdAt: z.ZodString;
|
|
11946
11945
|
updatedAt: z.ZodString;
|
|
11947
11946
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11947
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11948
11948
|
model: z.ZodType<{
|
|
11949
11949
|
model?: string | undefined;
|
|
11950
11950
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -11970,11 +11970,11 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
11970
11970
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
11971
11971
|
}, z.core.$strip>;
|
|
11972
11972
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
11973
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11974
11973
|
name: z.ZodString;
|
|
11975
11974
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11976
11975
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11977
11976
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11977
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11978
11978
|
model: z.ZodType<{
|
|
11979
11979
|
model?: string | undefined;
|
|
11980
11980
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -12000,11 +12000,11 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12000
12000
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12001
12001
|
}, z.core.$strip>;
|
|
12002
12002
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12003
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12004
12003
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12005
12004
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12006
12005
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12007
12006
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12007
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12008
12008
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12009
12009
|
model?: string | undefined;
|
|
12010
12010
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -12993,25 +12993,25 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
12993
12993
|
in: {};
|
|
12994
12994
|
}>;
|
|
12995
12995
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
12996
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12997
12996
|
id: z.ZodString;
|
|
12998
12997
|
name: z.ZodString;
|
|
12999
12998
|
createdAt: z.ZodString;
|
|
13000
12999
|
updatedAt: z.ZodString;
|
|
13000
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13001
13001
|
datasetId: z.ZodString;
|
|
13002
13002
|
}, z.core.$strip>;
|
|
13003
13003
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13004
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13005
13004
|
name: z.ZodString;
|
|
13006
13005
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13007
13006
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13007
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13008
13008
|
datasetId: z.ZodString;
|
|
13009
13009
|
}, z.core.$strip>;
|
|
13010
13010
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13011
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13012
13011
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13013
13012
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13014
13013
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13014
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13015
13015
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13016
13016
|
}, z.core.$strip>;
|
|
13017
13017
|
declare const AgentDatasetRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -13300,16 +13300,16 @@ declare const AgentDatasetRelationUpdateSchema: z.ZodObject<{
|
|
|
13300
13300
|
in: {};
|
|
13301
13301
|
}>;
|
|
13302
13302
|
declare const AgentDatasetRelationApiSelectSchema: z.ZodObject<{
|
|
13303
|
-
agentId: z.ZodString;
|
|
13304
13303
|
id: z.ZodString;
|
|
13305
13304
|
createdAt: z.ZodString;
|
|
13306
13305
|
updatedAt: z.ZodString;
|
|
13306
|
+
agentId: z.ZodString;
|
|
13307
13307
|
datasetId: z.ZodString;
|
|
13308
13308
|
}, z.core.$strip>;
|
|
13309
13309
|
declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
13310
|
-
agentId: z.ZodString;
|
|
13311
13310
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13312
13311
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13312
|
+
agentId: z.ZodString;
|
|
13313
13313
|
datasetId: z.ZodString;
|
|
13314
13314
|
}, z.core.$strip>;
|
|
13315
13315
|
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -13598,16 +13598,16 @@ declare const AgentEvaluatorRelationUpdateSchema: z.ZodObject<{
|
|
|
13598
13598
|
in: {};
|
|
13599
13599
|
}>;
|
|
13600
13600
|
declare const AgentEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
13601
|
-
agentId: z.ZodString;
|
|
13602
13601
|
id: z.ZodString;
|
|
13603
13602
|
createdAt: z.ZodString;
|
|
13604
13603
|
updatedAt: z.ZodString;
|
|
13604
|
+
agentId: z.ZodString;
|
|
13605
13605
|
evaluatorId: z.ZodString;
|
|
13606
13606
|
}, z.core.$strip>;
|
|
13607
13607
|
declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
13608
|
-
agentId: z.ZodString;
|
|
13609
13608
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13610
13609
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13610
|
+
agentId: z.ZodString;
|
|
13611
13611
|
evaluatorId: z.ZodString;
|
|
13612
13612
|
}, z.core.$strip>;
|
|
13613
13613
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -14269,11 +14269,11 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14269
14269
|
}>;
|
|
14270
14270
|
}, undefined>, undefined>;
|
|
14271
14271
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
14272
|
+
id: z.ZodString;
|
|
14273
|
+
name: z.ZodString;
|
|
14272
14274
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14273
14275
|
tenantId: z.ZodString;
|
|
14274
14276
|
projectId: z.ZodString;
|
|
14275
|
-
id: z.ZodString;
|
|
14276
|
-
name: z.ZodString;
|
|
14277
14277
|
props: z.ZodType<{
|
|
14278
14278
|
[x: string]: unknown;
|
|
14279
14279
|
type: "object";
|
|
@@ -14321,11 +14321,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14321
14321
|
in: {};
|
|
14322
14322
|
}>;
|
|
14323
14323
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
14324
|
+
id: z.ZodOptional<z.ZodString>;
|
|
14325
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14324
14326
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14325
14327
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14326
14328
|
projectId: z.ZodOptional<z.ZodString>;
|
|
14327
|
-
id: z.ZodOptional<z.ZodString>;
|
|
14328
|
-
name: z.ZodOptional<z.ZodString>;
|
|
14329
14329
|
props: z.ZodOptional<z.ZodType<{
|
|
14330
14330
|
[x: string]: unknown;
|
|
14331
14331
|
type: "object";
|
|
@@ -14373,11 +14373,11 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
14373
14373
|
in: {};
|
|
14374
14374
|
}>;
|
|
14375
14375
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
14376
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14377
14376
|
id: z.ZodString;
|
|
14378
14377
|
name: z.ZodString;
|
|
14379
14378
|
createdAt: z.ZodString;
|
|
14380
14379
|
updatedAt: z.ZodString;
|
|
14380
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14381
14381
|
props: z.ZodType<{
|
|
14382
14382
|
[x: string]: unknown;
|
|
14383
14383
|
type: "object";
|
|
@@ -15000,7 +15000,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
15000
15000
|
}, {}, {
|
|
15001
15001
|
length: 256;
|
|
15002
15002
|
}>;
|
|
15003
|
-
}, "
|
|
15003
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15004
15004
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15005
15005
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15006
15006
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15014,9 +15014,9 @@ declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
|
15014
15014
|
in: {};
|
|
15015
15015
|
}>;
|
|
15016
15016
|
declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<{
|
|
15017
|
-
subAgentId: z.ZodString;
|
|
15018
15017
|
id: z.ZodString;
|
|
15019
15018
|
createdAt: z.ZodString;
|
|
15019
|
+
subAgentId: z.ZodString;
|
|
15020
15020
|
dataComponentId: z.ZodString;
|
|
15021
15021
|
}, z.core.$strip>;
|
|
15022
15022
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
@@ -15028,9 +15028,9 @@ declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
|
15028
15028
|
in: {};
|
|
15029
15029
|
}>;
|
|
15030
15030
|
declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
15031
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15032
15031
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15033
15032
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15033
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15034
15034
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15035
15035
|
}, z.core.$strip>;
|
|
15036
15036
|
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -15515,11 +15515,11 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15515
15515
|
in: {};
|
|
15516
15516
|
}>;
|
|
15517
15517
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15518
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15519
15518
|
id: z.ZodString;
|
|
15520
15519
|
name: z.ZodString;
|
|
15521
15520
|
createdAt: z.ZodString;
|
|
15522
15521
|
updatedAt: z.ZodString;
|
|
15522
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15523
15523
|
props: z.ZodNullable<z.ZodType<{
|
|
15524
15524
|
[x: string]: unknown;
|
|
15525
15525
|
type: "object";
|
|
@@ -15592,11 +15592,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15592
15592
|
in: {};
|
|
15593
15593
|
}>;
|
|
15594
15594
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15595
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15596
15595
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15597
15596
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15598
15597
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15599
15598
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15599
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15600
15600
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15601
15601
|
[x: string]: unknown;
|
|
15602
15602
|
type: "object";
|
|
@@ -15930,9 +15930,9 @@ declare const SubAgentArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15930
15930
|
in: {};
|
|
15931
15931
|
}>;
|
|
15932
15932
|
declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15933
|
-
subAgentId: z.ZodString;
|
|
15934
15933
|
id: z.ZodString;
|
|
15935
15934
|
createdAt: z.ZodString;
|
|
15935
|
+
subAgentId: z.ZodString;
|
|
15936
15936
|
artifactComponentId: z.ZodString;
|
|
15937
15937
|
}, z.core.$strip>;
|
|
15938
15938
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
@@ -15944,9 +15944,9 @@ declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15944
15944
|
in: {};
|
|
15945
15945
|
}>;
|
|
15946
15946
|
declare const SubAgentArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15947
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15948
15947
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15949
15948
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15949
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15950
15950
|
artifactComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15951
15951
|
}, z.core.$strip>;
|
|
15952
15952
|
declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
@@ -15964,11 +15964,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
15964
15964
|
in: {};
|
|
15965
15965
|
}>;
|
|
15966
15966
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
15967
|
+
id: z.ZodString;
|
|
15968
|
+
name: z.ZodString;
|
|
15967
15969
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15968
15970
|
tenantId: z.ZodString;
|
|
15969
15971
|
projectId: z.ZodString;
|
|
15970
|
-
id: z.ZodString;
|
|
15971
|
-
name: z.ZodString;
|
|
15972
15972
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15973
15973
|
baseUrl: z.ZodURL;
|
|
15974
15974
|
}, {
|
|
@@ -15976,11 +15976,11 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
15976
15976
|
in: {};
|
|
15977
15977
|
}>;
|
|
15978
15978
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
15979
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15980
|
+
name: z.ZodOptional<z.ZodString>;
|
|
15979
15981
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15980
15982
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15981
15983
|
projectId: z.ZodOptional<z.ZodString>;
|
|
15982
|
-
id: z.ZodOptional<z.ZodString>;
|
|
15983
|
-
name: z.ZodOptional<z.ZodString>;
|
|
15984
15984
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15985
15985
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
15986
15986
|
}, {
|
|
@@ -15988,34 +15988,34 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
15988
15988
|
in: {};
|
|
15989
15989
|
}>;
|
|
15990
15990
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
15991
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15992
15991
|
id: z.ZodString;
|
|
15993
15992
|
name: z.ZodString;
|
|
15994
15993
|
createdAt: z.ZodString;
|
|
15995
15994
|
updatedAt: z.ZodString;
|
|
15995
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15996
15996
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15997
15997
|
baseUrl: z.ZodString;
|
|
15998
15998
|
}, z.core.$strip>;
|
|
15999
15999
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
16000
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16001
16000
|
id: z.ZodString;
|
|
16002
16001
|
name: z.ZodString;
|
|
16002
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16003
16003
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16004
16004
|
baseUrl: z.ZodURL;
|
|
16005
16005
|
}, z.core.$strip>;
|
|
16006
16006
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16007
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16008
16007
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16009
16008
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16009
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16010
16010
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16011
16011
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16012
16012
|
}, z.core.$strip>;
|
|
16013
16013
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16014
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16015
16014
|
id: z.ZodString;
|
|
16016
16015
|
name: z.ZodString;
|
|
16017
16016
|
createdAt: z.ZodString;
|
|
16018
16017
|
updatedAt: z.ZodString;
|
|
16018
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16019
16019
|
models: z.ZodNullable<z.ZodType<{
|
|
16020
16020
|
base?: {
|
|
16021
16021
|
model?: string | undefined;
|
|
@@ -16106,11 +16106,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16106
16106
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16107
16107
|
type: z.ZodLiteral<"internal">;
|
|
16108
16108
|
}, z.core.$strip>, z.ZodObject<{
|
|
16109
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16110
16109
|
id: z.ZodString;
|
|
16111
16110
|
name: z.ZodString;
|
|
16112
16111
|
createdAt: z.ZodString;
|
|
16113
16112
|
updatedAt: z.ZodString;
|
|
16113
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16114
16114
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16115
16115
|
baseUrl: z.ZodString;
|
|
16116
16116
|
type: z.ZodLiteral<"external">;
|
|
@@ -16576,21 +16576,21 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16576
16576
|
in: {};
|
|
16577
16577
|
}>;
|
|
16578
16578
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16579
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16580
16579
|
name: z.ZodOptional<z.ZodString>;
|
|
16581
16580
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16582
16581
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16582
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16583
16583
|
}, {
|
|
16584
16584
|
out: {};
|
|
16585
16585
|
in: {};
|
|
16586
16586
|
}>;
|
|
16587
16587
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16588
|
-
agentId: z.ZodString;
|
|
16589
16588
|
id: z.ZodString;
|
|
16590
16589
|
name: z.ZodNullable<z.ZodString>;
|
|
16591
16590
|
createdAt: z.ZodString;
|
|
16592
16591
|
updatedAt: z.ZodString;
|
|
16593
16592
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16593
|
+
agentId: z.ZodString;
|
|
16594
16594
|
publicId: z.ZodString;
|
|
16595
16595
|
keyPrefix: z.ZodString;
|
|
16596
16596
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16601,12 +16601,12 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
16601
16601
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
16602
16602
|
data: z.ZodObject<{
|
|
16603
16603
|
apiKey: z.ZodObject<{
|
|
16604
|
-
agentId: z.ZodString;
|
|
16605
16604
|
id: z.ZodString;
|
|
16606
16605
|
name: z.ZodNullable<z.ZodString>;
|
|
16607
16606
|
createdAt: z.ZodString;
|
|
16608
16607
|
updatedAt: z.ZodString;
|
|
16609
16608
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16609
|
+
agentId: z.ZodString;
|
|
16610
16610
|
publicId: z.ZodString;
|
|
16611
16611
|
keyPrefix: z.ZodString;
|
|
16612
16612
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16618,20 +16618,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16618
16618
|
}, z.core.$strip>;
|
|
16619
16619
|
}, z.core.$strip>;
|
|
16620
16620
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16621
|
-
agentId: z.ZodString;
|
|
16622
16621
|
name: z.ZodString;
|
|
16623
16622
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16624
16623
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16625
16624
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16625
|
+
agentId: z.ZodString;
|
|
16626
16626
|
}, {
|
|
16627
16627
|
out: {};
|
|
16628
16628
|
in: {};
|
|
16629
16629
|
}>;
|
|
16630
16630
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16631
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16632
16631
|
name: z.ZodOptional<z.ZodString>;
|
|
16633
16632
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16634
16633
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16634
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16635
16635
|
}, {
|
|
16636
16636
|
out: {};
|
|
16637
16637
|
in: {};
|
|
@@ -17427,12 +17427,12 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
17427
17427
|
in: {};
|
|
17428
17428
|
}>;
|
|
17429
17429
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
17430
|
-
|
|
17430
|
+
name: z.ZodOptional<z.ZodString>;
|
|
17431
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17431
17432
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17433
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17432
17434
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17433
17435
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17434
|
-
name: z.ZodOptional<z.ZodString>;
|
|
17435
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17436
17436
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17437
17437
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17438
17438
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18044,15 +18044,15 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
18044
18044
|
}, {}, {}>;
|
|
18045
18045
|
}, undefined>, undefined>;
|
|
18046
18046
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18047
|
-
enabled: z.ZodBoolean;
|
|
18048
18047
|
type: z.ZodString;
|
|
18049
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18050
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18051
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
18052
18048
|
id: z.ZodString;
|
|
18053
18049
|
name: z.ZodString;
|
|
18054
18050
|
createdAt: z.ZodString;
|
|
18055
18051
|
updatedAt: z.ZodString;
|
|
18052
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18053
|
+
enabled: z.ZodBoolean;
|
|
18054
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18055
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18056
18056
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18057
18057
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18058
18058
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18087,17 +18087,17 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18087
18087
|
in: {};
|
|
18088
18088
|
}>;
|
|
18089
18089
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18090
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18091
18090
|
type: z.ZodEnum<{
|
|
18092
18091
|
web_client: "web_client";
|
|
18093
18092
|
api: "api";
|
|
18094
18093
|
}>;
|
|
18095
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18096
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18097
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18098
18094
|
name: z.ZodString;
|
|
18099
18095
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18100
18096
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18097
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18098
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18099
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18100
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18101
18101
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18102
18102
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18103
18103
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18131,12 +18131,12 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18131
18131
|
in: {};
|
|
18132
18132
|
}>;
|
|
18133
18133
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
18134
|
-
|
|
18134
|
+
name: z.ZodOptional<z.ZodString>;
|
|
18135
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18135
18136
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18137
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18136
18138
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18137
18139
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18138
|
-
name: z.ZodOptional<z.ZodString>;
|
|
18139
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18140
18140
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18141
18141
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18142
18142
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18173,15 +18173,15 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18173
18173
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18174
18174
|
data: z.ZodObject<{
|
|
18175
18175
|
app: z.ZodObject<{
|
|
18176
|
-
enabled: z.ZodBoolean;
|
|
18177
18176
|
type: z.ZodString;
|
|
18178
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18179
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18180
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
18181
18177
|
id: z.ZodString;
|
|
18182
18178
|
name: z.ZodString;
|
|
18183
18179
|
createdAt: z.ZodString;
|
|
18184
18180
|
updatedAt: z.ZodString;
|
|
18181
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18182
|
+
enabled: z.ZodBoolean;
|
|
18183
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18184
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18185
18185
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18186
18186
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18187
18187
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18670,12 +18670,12 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
18670
18670
|
}, undefined>, undefined>;
|
|
18671
18671
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
18672
18672
|
type: z.ZodString;
|
|
18673
|
-
tenantId: z.ZodString;
|
|
18674
|
-
projectId: z.ZodString;
|
|
18675
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18676
18673
|
id: z.ZodString;
|
|
18677
18674
|
name: z.ZodString;
|
|
18678
18675
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18676
|
+
tenantId: z.ZodString;
|
|
18677
|
+
projectId: z.ZodString;
|
|
18678
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18679
18679
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18680
18680
|
credentialStoreId: z.ZodString;
|
|
18681
18681
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -18685,12 +18685,12 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
|
18685
18685
|
}>;
|
|
18686
18686
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
18687
18687
|
type: z.ZodOptional<z.ZodString>;
|
|
18688
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
18689
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
18690
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18691
18688
|
id: z.ZodOptional<z.ZodString>;
|
|
18692
18689
|
name: z.ZodOptional<z.ZodString>;
|
|
18693
18690
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18691
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
18692
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
18693
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18694
18694
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18695
18695
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
18696
18696
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
@@ -18699,12 +18699,12 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
18699
18699
|
in: {};
|
|
18700
18700
|
}>;
|
|
18701
18701
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
18702
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
18703
18702
|
id: z.ZodString;
|
|
18704
18703
|
name: z.ZodString;
|
|
18705
18704
|
createdAt: z.ZodString;
|
|
18706
18705
|
updatedAt: z.ZodString;
|
|
18707
18706
|
userId: z.ZodNullable<z.ZodString>;
|
|
18707
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
18708
18708
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
18709
18709
|
credentialStoreId: z.ZodString;
|
|
18710
18710
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -19291,10 +19291,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19291
19291
|
}>>>;
|
|
19292
19292
|
}, z.core.$strip>;
|
|
19293
19293
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
19294
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19295
19294
|
id: z.ZodString;
|
|
19296
19295
|
name: z.ZodString;
|
|
19297
19296
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19297
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19298
19298
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19299
19299
|
credentialStoreId: z.ZodString;
|
|
19300
19300
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -19306,10 +19306,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19306
19306
|
}>;
|
|
19307
19307
|
}, z.core.$strip>;
|
|
19308
19308
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
19309
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19310
19309
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19311
19310
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19312
19311
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19312
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19313
19313
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19314
19314
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19315
19315
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
@@ -19377,12 +19377,12 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
19377
19377
|
error_description: z.ZodOptional<z.ZodString>;
|
|
19378
19378
|
}, z.core.$strip>;
|
|
19379
19379
|
declare const McpToolSchema: z.ZodObject<{
|
|
19380
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19381
|
-
tenantId: z.ZodString;
|
|
19382
|
-
projectId: z.ZodString;
|
|
19383
19380
|
id: z.ZodString;
|
|
19384
19381
|
name: z.ZodString;
|
|
19382
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19385
19383
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19384
|
+
tenantId: z.ZodString;
|
|
19385
|
+
projectId: z.ZodString;
|
|
19386
19386
|
config: z.ZodObject<{
|
|
19387
19387
|
type: z.ZodLiteral<"mcp">;
|
|
19388
19388
|
mcp: z.ZodObject<{
|
|
@@ -19472,10 +19472,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19472
19472
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
19473
19473
|
}, z.core.$strip>>;
|
|
19474
19474
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19475
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19476
19475
|
id: z.ZodString;
|
|
19477
19476
|
name: z.ZodString;
|
|
19478
19477
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19478
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19479
19479
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19480
19480
|
credentialStoreId: z.ZodString;
|
|
19481
19481
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -19498,12 +19498,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19498
19498
|
in: {};
|
|
19499
19499
|
}>;
|
|
19500
19500
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
19501
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19502
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19503
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19504
19501
|
id: z.ZodOptional<z.ZodString>;
|
|
19505
19502
|
name: z.ZodOptional<z.ZodString>;
|
|
19503
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19506
19504
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19505
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19506
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19507
19507
|
config: z.ZodOptional<z.ZodObject<{
|
|
19508
19508
|
type: z.ZodLiteral<"mcp">;
|
|
19509
19509
|
mcp: z.ZodObject<{
|
|
@@ -19541,11 +19541,11 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19541
19541
|
in: {};
|
|
19542
19542
|
}>;
|
|
19543
19543
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
19544
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19545
19544
|
id: z.ZodString;
|
|
19546
19545
|
name: z.ZodString;
|
|
19547
19546
|
createdAt: z.ZodString;
|
|
19548
19547
|
updatedAt: z.ZodString;
|
|
19548
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19549
19549
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
19550
19550
|
config: z.ZodType<{
|
|
19551
19551
|
type: "mcp";
|
|
@@ -19568,9 +19568,9 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
19568
19568
|
isWorkApp: z.ZodBoolean;
|
|
19569
19569
|
}, z.core.$strip>;
|
|
19570
19570
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
19571
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19572
19571
|
id: z.ZodString;
|
|
19573
19572
|
name: z.ZodString;
|
|
19573
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19574
19574
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19575
19575
|
config: z.ZodObject<{
|
|
19576
19576
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -19606,9 +19606,9 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
19606
19606
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19607
19607
|
}, z.core.$strip>;
|
|
19608
19608
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
19609
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19610
19609
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19611
19610
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19611
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19612
19612
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19613
19613
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
19614
19614
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -19977,50 +19977,50 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
19977
19977
|
}>;
|
|
19978
19978
|
}, undefined>, undefined>;
|
|
19979
19979
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
19980
|
+
id: z.ZodString;
|
|
19981
|
+
name: z.ZodString;
|
|
19980
19982
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19981
19983
|
tenantId: z.ZodString;
|
|
19982
19984
|
projectId: z.ZodString;
|
|
19983
19985
|
agentId: z.ZodString;
|
|
19984
|
-
id: z.ZodString;
|
|
19985
|
-
name: z.ZodString;
|
|
19986
19986
|
functionId: z.ZodString;
|
|
19987
19987
|
}, {
|
|
19988
19988
|
out: {};
|
|
19989
19989
|
in: {};
|
|
19990
19990
|
}>;
|
|
19991
19991
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
19992
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19993
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19992
19994
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19993
19995
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19994
19996
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19995
19997
|
agentId: z.ZodOptional<z.ZodString>;
|
|
19996
|
-
id: z.ZodOptional<z.ZodString>;
|
|
19997
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19998
19998
|
functionId: z.ZodOptional<z.ZodString>;
|
|
19999
19999
|
}, {
|
|
20000
20000
|
out: {};
|
|
20001
20001
|
in: {};
|
|
20002
20002
|
}>;
|
|
20003
20003
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20004
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20005
|
-
agentId: z.ZodString;
|
|
20006
20004
|
id: z.ZodString;
|
|
20007
20005
|
name: z.ZodString;
|
|
20008
20006
|
createdAt: z.ZodString;
|
|
20009
20007
|
updatedAt: z.ZodString;
|
|
20008
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20009
|
+
agentId: z.ZodString;
|
|
20010
20010
|
functionId: z.ZodString;
|
|
20011
20011
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20012
20012
|
}, z.core.$strip>;
|
|
20013
20013
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
20014
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20015
20014
|
id: z.ZodString;
|
|
20016
20015
|
name: z.ZodString;
|
|
20016
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20017
20017
|
functionId: z.ZodString;
|
|
20018
20018
|
}, z.core.$strip>;
|
|
20019
20019
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
20020
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20021
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20022
20020
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20023
20021
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20022
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20023
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20024
20024
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20025
20025
|
}, z.core.$strip>;
|
|
20026
20026
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -20383,10 +20383,10 @@ declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
|
20383
20383
|
in: {};
|
|
20384
20384
|
}>;
|
|
20385
20385
|
declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
20386
|
-
subAgentId: z.ZodString;
|
|
20387
20386
|
id: z.ZodString;
|
|
20388
20387
|
createdAt: z.ZodString;
|
|
20389
20388
|
updatedAt: z.ZodString;
|
|
20389
|
+
subAgentId: z.ZodString;
|
|
20390
20390
|
functionToolId: z.ZodString;
|
|
20391
20391
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20392
20392
|
}, z.core.$strip>;
|
|
@@ -20781,10 +20781,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
20781
20781
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
20782
20782
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
20783
20783
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20784
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20785
20784
|
id: z.ZodString;
|
|
20786
20785
|
name: z.ZodString;
|
|
20787
20786
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20787
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20788
20788
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20789
20789
|
credentialStoreId: z.ZodString;
|
|
20790
20790
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -20810,10 +20810,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
20810
20810
|
in: {};
|
|
20811
20811
|
}>;
|
|
20812
20812
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
20813
|
+
id: z.ZodOptional<z.ZodString>;
|
|
20813
20814
|
tenantId: z.ZodString;
|
|
20814
20815
|
projectId: z.ZodString;
|
|
20815
20816
|
agentId: z.ZodString;
|
|
20816
|
-
id: z.ZodOptional<z.ZodString>;
|
|
20817
20817
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20818
20818
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20819
20819
|
}, {
|
|
@@ -20821,10 +20821,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
20821
20821
|
in: {};
|
|
20822
20822
|
}>;
|
|
20823
20823
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
20824
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20824
20825
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20825
20826
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20826
20827
|
agentId: z.ZodOptional<z.ZodString>;
|
|
20827
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20828
20828
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20829
20829
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20830
20830
|
}, {
|
|
@@ -21306,34 +21306,34 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
21306
21306
|
in: {};
|
|
21307
21307
|
}>;
|
|
21308
21308
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
21309
|
-
subAgentId: z.ZodString;
|
|
21310
|
-
toolId: z.ZodString;
|
|
21311
21309
|
id: z.ZodString;
|
|
21312
21310
|
createdAt: z.ZodString;
|
|
21313
21311
|
updatedAt: z.ZodString;
|
|
21314
21312
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21313
|
+
subAgentId: z.ZodString;
|
|
21314
|
+
toolId: z.ZodString;
|
|
21315
21315
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21316
21316
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21317
21317
|
}, z.core.$strip>;
|
|
21318
21318
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
21319
|
-
subAgentId: z.ZodString;
|
|
21320
|
-
toolId: z.ZodString;
|
|
21321
21319
|
id: z.ZodString;
|
|
21322
21320
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21323
21321
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21324
21322
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21323
|
+
subAgentId: z.ZodString;
|
|
21324
|
+
toolId: z.ZodString;
|
|
21325
21325
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21326
21326
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21327
21327
|
}, z.core.$strip>>>>;
|
|
21328
21328
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
21329
21329
|
}, z.core.$strip>;
|
|
21330
21330
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21331
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21332
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21333
21331
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21334
21332
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21335
21333
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21336
21334
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21335
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21336
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21337
21337
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21338
21338
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21339
21339
|
}, z.core.$strip>>>>>>;
|
|
@@ -21705,11 +21705,11 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
21705
21705
|
in: {};
|
|
21706
21706
|
}>;
|
|
21707
21707
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
21708
|
-
subAgentId: z.ZodString;
|
|
21709
21708
|
id: z.ZodString;
|
|
21710
21709
|
createdAt: z.ZodString;
|
|
21711
21710
|
updatedAt: z.ZodString;
|
|
21712
21711
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21712
|
+
subAgentId: z.ZodString;
|
|
21713
21713
|
externalAgentId: z.ZodString;
|
|
21714
21714
|
}, z.core.$strip>;
|
|
21715
21715
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -21719,11 +21719,11 @@ declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
21719
21719
|
externalAgentId: z.ZodString;
|
|
21720
21720
|
}, z.core.$strip>;
|
|
21721
21721
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
21722
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21723
21722
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21724
21723
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21725
21724
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21726
21725
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21726
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21727
21727
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21728
21728
|
}, z.core.$strip>;
|
|
21729
21729
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -22092,11 +22092,11 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
22092
22092
|
in: {};
|
|
22093
22093
|
}>;
|
|
22094
22094
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
22095
|
-
subAgentId: z.ZodString;
|
|
22096
22095
|
id: z.ZodString;
|
|
22097
22096
|
createdAt: z.ZodString;
|
|
22098
22097
|
updatedAt: z.ZodString;
|
|
22099
22098
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22099
|
+
subAgentId: z.ZodString;
|
|
22100
22100
|
targetAgentId: z.ZodString;
|
|
22101
22101
|
}, z.core.$strip>;
|
|
22102
22102
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -22106,11 +22106,11 @@ declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
22106
22106
|
targetAgentId: z.ZodString;
|
|
22107
22107
|
}, z.core.$strip>;
|
|
22108
22108
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22109
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22110
22109
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22111
22110
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22112
22111
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22113
22112
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22113
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22114
22114
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22115
22115
|
}, z.core.$strip>;
|
|
22116
22116
|
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -23454,7 +23454,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
23454
23454
|
}, {}, {
|
|
23455
23455
|
length: 256;
|
|
23456
23456
|
}>;
|
|
23457
|
-
}, "type" | "
|
|
23457
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "toolCallId" | "contextId" | "visibility" | "taskId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23458
23458
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23459
23459
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23460
23460
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23480,16 +23480,16 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23480
23480
|
}>;
|
|
23481
23481
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23482
23482
|
type: z.ZodString;
|
|
23483
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23484
23483
|
id: z.ZodString;
|
|
23485
23484
|
name: z.ZodNullable<z.ZodString>;
|
|
23486
23485
|
createdAt: z.ZodString;
|
|
23487
23486
|
updatedAt: z.ZodString;
|
|
23488
23487
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23488
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23489
23489
|
toolCallId: z.ZodNullable<z.ZodString>;
|
|
23490
|
-
taskId: z.ZodString;
|
|
23491
23490
|
contextId: z.ZodString;
|
|
23492
23491
|
visibility: z.ZodNullable<z.ZodString>;
|
|
23492
|
+
taskId: z.ZodString;
|
|
23493
23493
|
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23494
23494
|
summary: z.ZodNullable<z.ZodString>;
|
|
23495
23495
|
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -23498,16 +23498,16 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
23498
23498
|
}, z.core.$strip>;
|
|
23499
23499
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23500
23500
|
type: z.ZodOptional<z.ZodString>;
|
|
23501
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23502
23501
|
id: z.ZodString;
|
|
23503
23502
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23504
23503
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23505
23504
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23506
23505
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23506
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23507
23507
|
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23508
|
-
taskId: z.ZodString;
|
|
23509
23508
|
contextId: z.ZodString;
|
|
23510
23509
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23510
|
+
taskId: z.ZodString;
|
|
23511
23511
|
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23512
23512
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23513
23513
|
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -23516,16 +23516,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
23516
23516
|
}, z.core.$strip>;
|
|
23517
23517
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23518
23518
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23519
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23520
23519
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23521
23520
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23522
23521
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23523
23522
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23524
23523
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
23524
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23525
23525
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23526
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23527
23526
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23528
23527
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23528
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23529
23529
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
23530
23530
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23531
23531
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
@@ -23595,11 +23595,11 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
23595
23595
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23596
23596
|
}, z.core.$strip>;
|
|
23597
23597
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
23598
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23599
23598
|
id: z.ZodString;
|
|
23600
23599
|
name: z.ZodString;
|
|
23601
23600
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23602
23601
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23602
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23603
23603
|
models: z.ZodOptional<z.ZodObject<{
|
|
23604
23604
|
base: z.ZodOptional<z.ZodObject<{
|
|
23605
23605
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23654,18 +23654,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
23654
23654
|
}, z.core.$strip>>;
|
|
23655
23655
|
}, z.core.$strip>;
|
|
23656
23656
|
declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
23657
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23658
23657
|
id: z.ZodString;
|
|
23659
23658
|
name: z.ZodString;
|
|
23659
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23660
23660
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23661
23661
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23662
23662
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
23663
23663
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23664
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23665
23664
|
id: z.ZodString;
|
|
23666
23665
|
name: z.ZodString;
|
|
23667
23666
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23668
23667
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23668
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23669
23669
|
models: z.ZodOptional<z.ZodObject<{
|
|
23670
23670
|
base: z.ZodOptional<z.ZodObject<{
|
|
23671
23671
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23720,9 +23720,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23720
23720
|
}, z.core.$strip>>;
|
|
23721
23721
|
}, z.core.$strip>>;
|
|
23722
23722
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23723
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23724
23723
|
id: z.ZodString;
|
|
23725
23724
|
name: z.ZodString;
|
|
23725
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23726
23726
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23727
23727
|
config: z.ZodObject<{
|
|
23728
23728
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -23758,9 +23758,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23758
23758
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
23759
23759
|
}, z.core.$strip>>>;
|
|
23760
23760
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23761
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23762
23761
|
id: z.ZodString;
|
|
23763
23762
|
name: z.ZodString;
|
|
23763
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23764
23764
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23765
23765
|
baseUrl: z.ZodURL;
|
|
23766
23766
|
}, z.core.$strip>>>;
|
|
@@ -23770,9 +23770,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23770
23770
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23771
23771
|
}, z.core.$strip>>>;
|
|
23772
23772
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23773
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23774
23773
|
id: z.ZodString;
|
|
23775
23774
|
name: z.ZodString;
|
|
23775
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23776
23776
|
functionId: z.ZodString;
|
|
23777
23777
|
}, z.core.$strip>>>;
|
|
23778
23778
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -23782,10 +23782,10 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23782
23782
|
executeCode: z.ZodString;
|
|
23783
23783
|
}, z.core.$strip>>>;
|
|
23784
23784
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23785
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23786
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23787
23785
|
id: z.ZodOptional<z.ZodString>;
|
|
23788
23786
|
name: z.ZodString;
|
|
23787
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23788
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23789
23789
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23790
23790
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23791
23791
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23841,18 +23841,18 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23841
23841
|
prompt: z.ZodOptional<z.ZodString>;
|
|
23842
23842
|
}, z.core.$strip>;
|
|
23843
23843
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
23844
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23845
23844
|
id: z.ZodString;
|
|
23846
23845
|
name: z.ZodString;
|
|
23846
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23847
23847
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23848
23848
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23849
23849
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
23850
23850
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23851
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23852
23851
|
id: z.ZodString;
|
|
23853
23852
|
name: z.ZodString;
|
|
23854
23853
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23855
23854
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23855
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23856
23856
|
models: z.ZodOptional<z.ZodObject<{
|
|
23857
23857
|
base: z.ZodOptional<z.ZodObject<{
|
|
23858
23858
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23907,9 +23907,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23907
23907
|
}, z.core.$strip>>;
|
|
23908
23908
|
}, z.core.$strip>>;
|
|
23909
23909
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23910
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23911
23910
|
id: z.ZodString;
|
|
23912
23911
|
name: z.ZodString;
|
|
23912
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23913
23913
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23914
23914
|
config: z.ZodObject<{
|
|
23915
23915
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -23945,9 +23945,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23945
23945
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
23946
23946
|
}, z.core.$strip>>>;
|
|
23947
23947
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23948
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23949
23948
|
id: z.ZodString;
|
|
23950
23949
|
name: z.ZodString;
|
|
23950
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23951
23951
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23952
23952
|
baseUrl: z.ZodURL;
|
|
23953
23953
|
}, z.core.$strip>>>;
|
|
@@ -23957,9 +23957,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23957
23957
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23958
23958
|
}, z.core.$strip>>>;
|
|
23959
23959
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23960
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23961
23960
|
id: z.ZodString;
|
|
23962
23961
|
name: z.ZodString;
|
|
23962
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23963
23963
|
functionId: z.ZodString;
|
|
23964
23964
|
}, z.core.$strip>>>;
|
|
23965
23965
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -23969,10 +23969,10 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23969
23969
|
executeCode: z.ZodString;
|
|
23970
23970
|
}, z.core.$strip>>>;
|
|
23971
23971
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23972
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23973
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23974
23972
|
id: z.ZodOptional<z.ZodString>;
|
|
23975
23973
|
name: z.ZodString;
|
|
23974
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23975
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23976
23976
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23977
23977
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23978
23978
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24087,10 +24087,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
24087
24087
|
in: {};
|
|
24088
24088
|
}>;
|
|
24089
24089
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
24090
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24091
|
-
tenantId: z.ZodString;
|
|
24092
24090
|
id: z.ZodString;
|
|
24093
24091
|
name: z.ZodString;
|
|
24092
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24093
|
+
tenantId: z.ZodString;
|
|
24094
24094
|
models: z.ZodObject<{
|
|
24095
24095
|
base: z.ZodObject<{
|
|
24096
24096
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24120,8 +24120,8 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
24120
24120
|
in: {};
|
|
24121
24121
|
}>;
|
|
24122
24122
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
24123
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24124
24123
|
name: z.ZodOptional<z.ZodString>;
|
|
24124
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24125
24125
|
models: z.ZodOptional<z.ZodObject<{
|
|
24126
24126
|
base: z.ZodObject<{
|
|
24127
24127
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24151,11 +24151,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
24151
24151
|
in: {};
|
|
24152
24152
|
}>;
|
|
24153
24153
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24154
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24155
24154
|
id: z.ZodString;
|
|
24156
24155
|
name: z.ZodString;
|
|
24157
24156
|
createdAt: z.ZodString;
|
|
24158
24157
|
updatedAt: z.ZodString;
|
|
24158
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24159
24159
|
models: z.ZodNullable<z.ZodObject<{
|
|
24160
24160
|
base: z.ZodObject<{
|
|
24161
24161
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24185,9 +24185,9 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24185
24185
|
in: {};
|
|
24186
24186
|
}>;
|
|
24187
24187
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
24188
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24189
24188
|
id: z.ZodString;
|
|
24190
24189
|
name: z.ZodString;
|
|
24190
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24191
24191
|
models: z.ZodObject<{
|
|
24192
24192
|
base: z.ZodObject<{
|
|
24193
24193
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24217,8 +24217,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
24217
24217
|
in: {};
|
|
24218
24218
|
}>;
|
|
24219
24219
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
24220
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24221
24220
|
name: z.ZodOptional<z.ZodString>;
|
|
24221
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24222
24222
|
models: z.ZodOptional<z.ZodObject<{
|
|
24223
24223
|
base: z.ZodObject<{
|
|
24224
24224
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24248,9 +24248,9 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
24248
24248
|
in: {};
|
|
24249
24249
|
}>;
|
|
24250
24250
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
24251
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24252
24251
|
id: z.ZodString;
|
|
24253
24252
|
name: z.ZodString;
|
|
24253
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24254
24254
|
models: z.ZodObject<{
|
|
24255
24255
|
base: z.ZodObject<{
|
|
24256
24256
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24276,18 +24276,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24276
24276
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
24277
24277
|
}, z.core.$strip>>;
|
|
24278
24278
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24279
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24280
24279
|
id: z.ZodString;
|
|
24281
24280
|
name: z.ZodString;
|
|
24281
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24282
24282
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24283
24283
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24284
24284
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24285
24285
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24286
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24287
24286
|
id: z.ZodString;
|
|
24288
24287
|
name: z.ZodString;
|
|
24289
24288
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24290
24289
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24290
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24291
24291
|
models: z.ZodOptional<z.ZodObject<{
|
|
24292
24292
|
base: z.ZodOptional<z.ZodObject<{
|
|
24293
24293
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24342,9 +24342,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24342
24342
|
}, z.core.$strip>>;
|
|
24343
24343
|
}, z.core.$strip>>;
|
|
24344
24344
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24345
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24346
24345
|
id: z.ZodString;
|
|
24347
24346
|
name: z.ZodString;
|
|
24347
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24348
24348
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24349
24349
|
config: z.ZodObject<{
|
|
24350
24350
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -24380,9 +24380,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24380
24380
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24381
24381
|
}, z.core.$strip>>>;
|
|
24382
24382
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24383
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24384
24383
|
id: z.ZodString;
|
|
24385
24384
|
name: z.ZodString;
|
|
24385
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24386
24386
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24387
24387
|
baseUrl: z.ZodURL;
|
|
24388
24388
|
}, z.core.$strip>>>;
|
|
@@ -24392,9 +24392,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24392
24392
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24393
24393
|
}, z.core.$strip>>>;
|
|
24394
24394
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24395
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24396
24395
|
id: z.ZodString;
|
|
24397
24396
|
name: z.ZodString;
|
|
24397
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24398
24398
|
functionId: z.ZodString;
|
|
24399
24399
|
}, z.core.$strip>>>;
|
|
24400
24400
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24404,10 +24404,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24404
24404
|
executeCode: z.ZodString;
|
|
24405
24405
|
}, z.core.$strip>>>;
|
|
24406
24406
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24407
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24408
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24409
24407
|
id: z.ZodOptional<z.ZodString>;
|
|
24410
24408
|
name: z.ZodString;
|
|
24409
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24410
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24411
24411
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24412
24412
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24413
24413
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24463,9 +24463,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24463
24463
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24464
24464
|
}, z.core.$strip>>;
|
|
24465
24465
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24466
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24467
24466
|
id: z.ZodString;
|
|
24468
24467
|
name: z.ZodString;
|
|
24468
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24469
24469
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24470
24470
|
config: z.ZodObject<{
|
|
24471
24471
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -24501,9 +24501,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24501
24501
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24502
24502
|
}, z.core.$strip>>;
|
|
24503
24503
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24504
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24505
24504
|
id: z.ZodString;
|
|
24506
24505
|
name: z.ZodString;
|
|
24506
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24507
24507
|
functionId: z.ZodString;
|
|
24508
24508
|
}, z.core.$strip>>>;
|
|
24509
24509
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24537,8 +24537,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24537
24537
|
filePath: z.ZodString;
|
|
24538
24538
|
content: z.ZodString;
|
|
24539
24539
|
}, z.core.$strip>>;
|
|
24540
|
-
description: z.ZodString;
|
|
24541
24540
|
name: z.ZodString;
|
|
24541
|
+
description: z.ZodString;
|
|
24542
24542
|
content: z.ZodString;
|
|
24543
24543
|
}, z.core.$strict>>>>;
|
|
24544
24544
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24595,9 +24595,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24595
24595
|
in: {};
|
|
24596
24596
|
}>>>;
|
|
24597
24597
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24598
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24599
24598
|
id: z.ZodString;
|
|
24600
24599
|
name: z.ZodString;
|
|
24600
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24601
24601
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24602
24602
|
baseUrl: z.ZodURL;
|
|
24603
24603
|
}, z.core.$strip>>>;
|
|
@@ -24617,10 +24617,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24617
24617
|
}, z.core.$strip>>>;
|
|
24618
24618
|
}, z.core.$strict>>;
|
|
24619
24619
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24620
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24621
24620
|
id: z.ZodString;
|
|
24622
24621
|
name: z.ZodString;
|
|
24623
24622
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24623
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24624
24624
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24625
24625
|
credentialStoreId: z.ZodString;
|
|
24626
24626
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -24638,11 +24638,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24638
24638
|
in: {};
|
|
24639
24639
|
}>;
|
|
24640
24640
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
24641
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24642
24641
|
id: z.ZodString;
|
|
24643
24642
|
name: z.ZodString;
|
|
24644
24643
|
createdAt: z.ZodString;
|
|
24645
24644
|
updatedAt: z.ZodString;
|
|
24645
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24646
24646
|
models: z.ZodNullable<z.ZodType<{
|
|
24647
24647
|
base?: {
|
|
24648
24648
|
model?: string | undefined;
|
|
@@ -24755,11 +24755,11 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
24755
24755
|
}, z.core.$strip>]>>>;
|
|
24756
24756
|
}, z.core.$strip>;
|
|
24757
24757
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24758
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24759
24758
|
id: z.ZodString;
|
|
24760
24759
|
name: z.ZodString;
|
|
24761
24760
|
createdAt: z.ZodString;
|
|
24762
24761
|
updatedAt: z.ZodString;
|
|
24762
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24763
24763
|
models: z.ZodNullable<z.ZodType<{
|
|
24764
24764
|
base?: {
|
|
24765
24765
|
model?: string | undefined;
|
|
@@ -24878,20 +24878,20 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24878
24878
|
}, z.core.$strip>]>>>;
|
|
24879
24879
|
}, z.core.$strip>;
|
|
24880
24880
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
24881
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24882
24881
|
id: z.ZodString;
|
|
24883
24882
|
name: z.ZodString;
|
|
24884
24883
|
createdAt: z.ZodString;
|
|
24885
24884
|
updatedAt: z.ZodString;
|
|
24885
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24886
24886
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24887
24887
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24888
24888
|
executionMode: z.ZodString;
|
|
24889
24889
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24890
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24891
24890
|
id: z.ZodString;
|
|
24892
24891
|
name: z.ZodString;
|
|
24893
24892
|
createdAt: z.ZodString;
|
|
24894
24893
|
updatedAt: z.ZodString;
|
|
24894
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24895
24895
|
models: z.ZodNullable<z.ZodType<{
|
|
24896
24896
|
base?: {
|
|
24897
24897
|
model?: string | undefined;
|
|
@@ -25004,11 +25004,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25004
25004
|
}, z.core.$strip>]>>>;
|
|
25005
25005
|
}, z.core.$strip>>;
|
|
25006
25006
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25007
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25008
25007
|
id: z.ZodString;
|
|
25009
25008
|
name: z.ZodString;
|
|
25010
25009
|
createdAt: z.ZodString;
|
|
25011
25010
|
updatedAt: z.ZodString;
|
|
25011
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25012
25012
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25013
25013
|
config: z.ZodType<{
|
|
25014
25014
|
type: "mcp";
|
|
@@ -25031,11 +25031,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25031
25031
|
isWorkApp: z.ZodBoolean;
|
|
25032
25032
|
}, z.core.$strip>>>;
|
|
25033
25033
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25034
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25035
25034
|
id: z.ZodString;
|
|
25036
25035
|
name: z.ZodString;
|
|
25037
25036
|
createdAt: z.ZodString;
|
|
25038
25037
|
updatedAt: z.ZodString;
|
|
25038
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25039
25039
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25040
25040
|
baseUrl: z.ZodString;
|
|
25041
25041
|
}, z.core.$strip>>>;
|
|
@@ -25045,12 +25045,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25045
25045
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25046
25046
|
}, z.core.$strip>>>;
|
|
25047
25047
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25048
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25049
|
-
agentId: z.ZodString;
|
|
25050
25048
|
id: z.ZodString;
|
|
25051
25049
|
name: z.ZodString;
|
|
25052
25050
|
createdAt: z.ZodString;
|
|
25053
25051
|
updatedAt: z.ZodString;
|
|
25052
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25053
|
+
agentId: z.ZodString;
|
|
25054
25054
|
functionId: z.ZodString;
|
|
25055
25055
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25056
25056
|
}, z.core.$strip>>>;
|
|
@@ -25110,20 +25110,20 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25110
25110
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25111
25111
|
}, z.core.$strip>;
|
|
25112
25112
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25113
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25114
25113
|
id: z.ZodString;
|
|
25115
25114
|
name: z.ZodString;
|
|
25116
25115
|
createdAt: z.ZodString;
|
|
25117
25116
|
updatedAt: z.ZodString;
|
|
25117
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25118
25118
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25119
25119
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25120
25120
|
executionMode: z.ZodString;
|
|
25121
25121
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25122
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25123
25122
|
id: z.ZodString;
|
|
25124
25123
|
name: z.ZodString;
|
|
25125
25124
|
createdAt: z.ZodString;
|
|
25126
25125
|
updatedAt: z.ZodString;
|
|
25126
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25127
25127
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25128
25128
|
config: z.ZodType<{
|
|
25129
25129
|
type: "mcp";
|
|
@@ -25146,11 +25146,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25146
25146
|
isWorkApp: z.ZodBoolean;
|
|
25147
25147
|
}, z.core.$strip>>>;
|
|
25148
25148
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25149
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25150
25149
|
id: z.ZodString;
|
|
25151
25150
|
name: z.ZodString;
|
|
25152
25151
|
createdAt: z.ZodString;
|
|
25153
25152
|
updatedAt: z.ZodString;
|
|
25153
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25154
25154
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25155
25155
|
baseUrl: z.ZodString;
|
|
25156
25156
|
}, z.core.$strip>>>;
|
|
@@ -25160,12 +25160,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25160
25160
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25161
25161
|
}, z.core.$strip>>>;
|
|
25162
25162
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25163
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25164
|
-
agentId: z.ZodString;
|
|
25165
25163
|
id: z.ZodString;
|
|
25166
25164
|
name: z.ZodString;
|
|
25167
25165
|
createdAt: z.ZodString;
|
|
25168
25166
|
updatedAt: z.ZodString;
|
|
25167
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25168
|
+
agentId: z.ZodString;
|
|
25169
25169
|
functionId: z.ZodString;
|
|
25170
25170
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25171
25171
|
}, z.core.$strip>>>;
|
|
@@ -25224,11 +25224,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25224
25224
|
}, z.core.$strip>>;
|
|
25225
25225
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25226
25226
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25227
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25228
25227
|
id: z.ZodString;
|
|
25229
25228
|
name: z.ZodString;
|
|
25230
25229
|
createdAt: z.ZodString;
|
|
25231
25230
|
updatedAt: z.ZodString;
|
|
25231
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25232
25232
|
models: z.ZodNullable<z.ZodType<{
|
|
25233
25233
|
base?: {
|
|
25234
25234
|
model?: string | undefined;
|
|
@@ -25348,11 +25348,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25348
25348
|
}, z.core.$strip>>;
|
|
25349
25349
|
}, z.core.$strip>;
|
|
25350
25350
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25351
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25352
25351
|
id: z.ZodString;
|
|
25353
25352
|
name: z.ZodString;
|
|
25354
25353
|
createdAt: z.ZodString;
|
|
25355
25354
|
updatedAt: z.ZodString;
|
|
25355
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25356
25356
|
models: z.ZodNullable<z.ZodObject<{
|
|
25357
25357
|
base: z.ZodObject<{
|
|
25358
25358
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25378,20 +25378,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25378
25378
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
25379
25379
|
}, z.core.$strip>>;
|
|
25380
25380
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25381
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25382
25381
|
id: z.ZodString;
|
|
25383
25382
|
name: z.ZodString;
|
|
25384
25383
|
createdAt: z.ZodString;
|
|
25385
25384
|
updatedAt: z.ZodString;
|
|
25385
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25386
25386
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25387
25387
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25388
25388
|
executionMode: z.ZodString;
|
|
25389
25389
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25390
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25391
25390
|
id: z.ZodString;
|
|
25392
25391
|
name: z.ZodString;
|
|
25393
25392
|
createdAt: z.ZodString;
|
|
25394
25393
|
updatedAt: z.ZodString;
|
|
25394
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25395
25395
|
models: z.ZodNullable<z.ZodType<{
|
|
25396
25396
|
base?: {
|
|
25397
25397
|
model?: string | undefined;
|
|
@@ -25504,11 +25504,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25504
25504
|
}, z.core.$strip>]>>>;
|
|
25505
25505
|
}, z.core.$strip>>;
|
|
25506
25506
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25507
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25508
25507
|
id: z.ZodString;
|
|
25509
25508
|
name: z.ZodString;
|
|
25510
25509
|
createdAt: z.ZodString;
|
|
25511
25510
|
updatedAt: z.ZodString;
|
|
25511
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25512
25512
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25513
25513
|
config: z.ZodType<{
|
|
25514
25514
|
type: "mcp";
|
|
@@ -25531,11 +25531,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25531
25531
|
isWorkApp: z.ZodBoolean;
|
|
25532
25532
|
}, z.core.$strip>>>;
|
|
25533
25533
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25534
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25535
25534
|
id: z.ZodString;
|
|
25536
25535
|
name: z.ZodString;
|
|
25537
25536
|
createdAt: z.ZodString;
|
|
25538
25537
|
updatedAt: z.ZodString;
|
|
25538
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25539
25539
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25540
25540
|
baseUrl: z.ZodString;
|
|
25541
25541
|
}, z.core.$strip>>>;
|
|
@@ -25545,12 +25545,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25545
25545
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25546
25546
|
}, z.core.$strip>>>;
|
|
25547
25547
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25548
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25549
|
-
agentId: z.ZodString;
|
|
25550
25548
|
id: z.ZodString;
|
|
25551
25549
|
name: z.ZodString;
|
|
25552
25550
|
createdAt: z.ZodString;
|
|
25553
25551
|
updatedAt: z.ZodString;
|
|
25552
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25553
|
+
agentId: z.ZodString;
|
|
25554
25554
|
functionId: z.ZodString;
|
|
25555
25555
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25556
25556
|
}, z.core.$strip>>>;
|
|
@@ -25610,11 +25610,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25610
25610
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25611
25611
|
}, z.core.$strip>>;
|
|
25612
25612
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25613
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25614
25613
|
id: z.ZodString;
|
|
25615
25614
|
name: z.ZodString;
|
|
25616
25615
|
createdAt: z.ZodString;
|
|
25617
25616
|
updatedAt: z.ZodString;
|
|
25617
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25618
25618
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25619
25619
|
config: z.ZodType<{
|
|
25620
25620
|
type: "mcp";
|
|
@@ -25637,12 +25637,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25637
25637
|
isWorkApp: z.ZodBoolean;
|
|
25638
25638
|
}, z.core.$strip>>;
|
|
25639
25639
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25640
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25641
|
-
agentId: z.ZodString;
|
|
25642
25640
|
id: z.ZodString;
|
|
25643
25641
|
name: z.ZodString;
|
|
25644
25642
|
createdAt: z.ZodString;
|
|
25645
25643
|
updatedAt: z.ZodString;
|
|
25644
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25645
|
+
agentId: z.ZodString;
|
|
25646
25646
|
functionId: z.ZodString;
|
|
25647
25647
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25648
25648
|
}, z.core.$strip>>>;
|
|
@@ -25655,11 +25655,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25655
25655
|
executeCode: z.ZodString;
|
|
25656
25656
|
}, z.core.$strip>>>;
|
|
25657
25657
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25658
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25659
25658
|
id: z.ZodString;
|
|
25660
25659
|
name: z.ZodString;
|
|
25661
25660
|
createdAt: z.ZodString;
|
|
25662
25661
|
updatedAt: z.ZodString;
|
|
25662
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25663
25663
|
props: z.ZodType<{
|
|
25664
25664
|
[x: string]: unknown;
|
|
25665
25665
|
type: "object";
|
|
@@ -25704,11 +25704,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25704
25704
|
}>>>;
|
|
25705
25705
|
}, z.core.$strip>>>;
|
|
25706
25706
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25707
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25708
25707
|
id: z.ZodString;
|
|
25709
25708
|
name: z.ZodString;
|
|
25710
25709
|
createdAt: z.ZodString;
|
|
25711
25710
|
updatedAt: z.ZodString;
|
|
25711
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25712
25712
|
props: z.ZodNullable<z.ZodType<{
|
|
25713
25713
|
[x: string]: unknown;
|
|
25714
25714
|
type: "object";
|
|
@@ -25753,11 +25753,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25753
25753
|
}>>>;
|
|
25754
25754
|
}, z.core.$strip>>>;
|
|
25755
25755
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25756
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25757
25756
|
id: z.ZodString;
|
|
25758
25757
|
name: z.ZodString;
|
|
25759
25758
|
createdAt: z.ZodString;
|
|
25760
25759
|
updatedAt: z.ZodString;
|
|
25760
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25761
25761
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25762
25762
|
baseUrl: z.ZodString;
|
|
25763
25763
|
}, z.core.$strip>>>;
|
|
@@ -25777,12 +25777,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25777
25777
|
}, z.core.$strip>>>;
|
|
25778
25778
|
}, z.core.$strict>>;
|
|
25779
25779
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25780
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
25781
25780
|
id: z.ZodString;
|
|
25782
25781
|
name: z.ZodString;
|
|
25783
25782
|
createdAt: z.ZodString;
|
|
25784
25783
|
updatedAt: z.ZodString;
|
|
25785
25784
|
userId: z.ZodNullable<z.ZodString>;
|
|
25785
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
25786
25786
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
25787
25787
|
credentialStoreId: z.ZodString;
|
|
25788
25788
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -26373,11 +26373,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26373
26373
|
in: {};
|
|
26374
26374
|
}>;
|
|
26375
26375
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26376
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26377
26376
|
id: z.ZodString;
|
|
26378
26377
|
name: z.ZodString;
|
|
26379
26378
|
createdAt: z.ZodString;
|
|
26380
26379
|
updatedAt: z.ZodString;
|
|
26380
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26381
26381
|
models: z.ZodNullable<z.ZodObject<{
|
|
26382
26382
|
base: z.ZodObject<{
|
|
26383
26383
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26403,11 +26403,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26403
26403
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26404
26404
|
}, z.core.$strip>>;
|
|
26405
26405
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26406
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26407
26406
|
id: z.ZodString;
|
|
26408
26407
|
name: z.ZodString;
|
|
26409
26408
|
createdAt: z.ZodString;
|
|
26410
26409
|
updatedAt: z.ZodString;
|
|
26410
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26411
26411
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26412
26412
|
config: z.ZodType<{
|
|
26413
26413
|
type: "mcp";
|
|
@@ -26430,12 +26430,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26430
26430
|
isWorkApp: z.ZodBoolean;
|
|
26431
26431
|
}, z.core.$strip>>;
|
|
26432
26432
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26433
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26434
|
-
agentId: z.ZodString;
|
|
26435
26433
|
id: z.ZodString;
|
|
26436
26434
|
name: z.ZodString;
|
|
26437
26435
|
createdAt: z.ZodString;
|
|
26438
26436
|
updatedAt: z.ZodString;
|
|
26437
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26438
|
+
agentId: z.ZodString;
|
|
26439
26439
|
functionId: z.ZodString;
|
|
26440
26440
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26441
26441
|
}, z.core.$strip>>>;
|
|
@@ -26448,11 +26448,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26448
26448
|
executeCode: z.ZodString;
|
|
26449
26449
|
}, z.core.$strip>>>;
|
|
26450
26450
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26451
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26452
26451
|
id: z.ZodString;
|
|
26453
26452
|
name: z.ZodString;
|
|
26454
26453
|
createdAt: z.ZodString;
|
|
26455
26454
|
updatedAt: z.ZodString;
|
|
26455
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26456
26456
|
props: z.ZodType<{
|
|
26457
26457
|
[x: string]: unknown;
|
|
26458
26458
|
type: "object";
|
|
@@ -26497,11 +26497,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26497
26497
|
}>>>;
|
|
26498
26498
|
}, z.core.$strip>>>;
|
|
26499
26499
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26500
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26501
26500
|
id: z.ZodString;
|
|
26502
26501
|
name: z.ZodString;
|
|
26503
26502
|
createdAt: z.ZodString;
|
|
26504
26503
|
updatedAt: z.ZodString;
|
|
26504
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26505
26505
|
props: z.ZodNullable<z.ZodType<{
|
|
26506
26506
|
[x: string]: unknown;
|
|
26507
26507
|
type: "object";
|
|
@@ -26546,11 +26546,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26546
26546
|
}>>>;
|
|
26547
26547
|
}, z.core.$strip>>>;
|
|
26548
26548
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26549
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26550
26549
|
id: z.ZodString;
|
|
26551
26550
|
name: z.ZodString;
|
|
26552
26551
|
createdAt: z.ZodString;
|
|
26553
26552
|
updatedAt: z.ZodString;
|
|
26553
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26554
26554
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26555
26555
|
baseUrl: z.ZodString;
|
|
26556
26556
|
}, z.core.$strip>>>;
|
|
@@ -26570,12 +26570,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26570
26570
|
}, z.core.$strip>>>;
|
|
26571
26571
|
}, z.core.$strict>>;
|
|
26572
26572
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26573
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26574
26573
|
id: z.ZodString;
|
|
26575
26574
|
name: z.ZodString;
|
|
26576
26575
|
createdAt: z.ZodString;
|
|
26577
26576
|
updatedAt: z.ZodString;
|
|
26578
26577
|
userId: z.ZodNullable<z.ZodString>;
|
|
26578
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26579
26579
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26580
26580
|
credentialStoreId: z.ZodString;
|
|
26581
26581
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -27162,20 +27162,20 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27162
27162
|
}>>>;
|
|
27163
27163
|
}, z.core.$strip>>>;
|
|
27164
27164
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27165
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27166
27165
|
id: z.ZodString;
|
|
27167
27166
|
name: z.ZodString;
|
|
27168
27167
|
createdAt: z.ZodString;
|
|
27169
27168
|
updatedAt: z.ZodString;
|
|
27169
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27170
27170
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27171
27171
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27172
27172
|
executionMode: z.ZodString;
|
|
27173
27173
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27174
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27175
27174
|
id: z.ZodString;
|
|
27176
27175
|
name: z.ZodString;
|
|
27177
27176
|
createdAt: z.ZodString;
|
|
27178
27177
|
updatedAt: z.ZodString;
|
|
27178
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27179
27179
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27180
27180
|
config: z.ZodType<{
|
|
27181
27181
|
type: "mcp";
|
|
@@ -27198,11 +27198,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27198
27198
|
isWorkApp: z.ZodBoolean;
|
|
27199
27199
|
}, z.core.$strip>>>;
|
|
27200
27200
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27201
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27202
27201
|
id: z.ZodString;
|
|
27203
27202
|
name: z.ZodString;
|
|
27204
27203
|
createdAt: z.ZodString;
|
|
27205
27204
|
updatedAt: z.ZodString;
|
|
27205
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27206
27206
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27207
27207
|
baseUrl: z.ZodString;
|
|
27208
27208
|
}, z.core.$strip>>>;
|
|
@@ -27212,12 +27212,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27212
27212
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27213
27213
|
}, z.core.$strip>>>;
|
|
27214
27214
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27215
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27216
|
-
agentId: z.ZodString;
|
|
27217
27215
|
id: z.ZodString;
|
|
27218
27216
|
name: z.ZodString;
|
|
27219
27217
|
createdAt: z.ZodString;
|
|
27220
27218
|
updatedAt: z.ZodString;
|
|
27219
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27220
|
+
agentId: z.ZodString;
|
|
27221
27221
|
functionId: z.ZodString;
|
|
27222
27222
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27223
27223
|
}, z.core.$strip>>>;
|
|
@@ -27276,11 +27276,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27276
27276
|
}, z.core.$strip>>;
|
|
27277
27277
|
prompt: z.ZodNullable<z.ZodString>;
|
|
27278
27278
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27279
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27280
27279
|
id: z.ZodString;
|
|
27281
27280
|
name: z.ZodString;
|
|
27282
27281
|
createdAt: z.ZodString;
|
|
27283
27282
|
updatedAt: z.ZodString;
|
|
27283
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27284
27284
|
models: z.ZodNullable<z.ZodType<{
|
|
27285
27285
|
base?: {
|
|
27286
27286
|
model?: string | undefined;
|
|
@@ -27405,11 +27405,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27405
27405
|
}>;
|
|
27406
27406
|
declare const ProjectResponse: z.ZodObject<{
|
|
27407
27407
|
data: z.ZodObject<{
|
|
27408
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27409
27408
|
id: z.ZodString;
|
|
27410
27409
|
name: z.ZodString;
|
|
27411
27410
|
createdAt: z.ZodString;
|
|
27412
27411
|
updatedAt: z.ZodString;
|
|
27412
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27413
27413
|
models: z.ZodNullable<z.ZodObject<{
|
|
27414
27414
|
base: z.ZodObject<{
|
|
27415
27415
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27441,11 +27441,11 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
27441
27441
|
}, z.core.$strip>;
|
|
27442
27442
|
declare const SubAgentResponse: z.ZodObject<{
|
|
27443
27443
|
data: z.ZodObject<{
|
|
27444
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27445
27444
|
id: z.ZodString;
|
|
27446
27445
|
name: z.ZodString;
|
|
27447
27446
|
createdAt: z.ZodString;
|
|
27448
27447
|
updatedAt: z.ZodString;
|
|
27448
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27449
27449
|
models: z.ZodNullable<z.ZodType<{
|
|
27450
27450
|
base?: {
|
|
27451
27451
|
model?: string | undefined;
|
|
@@ -27538,11 +27538,11 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
27538
27538
|
}, z.core.$strip>;
|
|
27539
27539
|
declare const AgentResponse: z.ZodObject<{
|
|
27540
27540
|
data: z.ZodObject<{
|
|
27541
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27542
27541
|
id: z.ZodString;
|
|
27543
27542
|
name: z.ZodString;
|
|
27544
27543
|
createdAt: z.ZodString;
|
|
27545
27544
|
updatedAt: z.ZodString;
|
|
27545
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27546
27546
|
models: z.ZodNullable<z.ZodType<{
|
|
27547
27547
|
base?: {
|
|
27548
27548
|
model?: string | undefined;
|
|
@@ -27694,11 +27694,11 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
27694
27694
|
}, z.core.$strip>;
|
|
27695
27695
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
27696
27696
|
data: z.ZodObject<{
|
|
27697
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27698
27697
|
id: z.ZodString;
|
|
27699
27698
|
name: z.ZodString;
|
|
27700
27699
|
createdAt: z.ZodString;
|
|
27701
27700
|
updatedAt: z.ZodString;
|
|
27701
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27702
27702
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27703
27703
|
baseUrl: z.ZodString;
|
|
27704
27704
|
}, z.core.$strip>;
|
|
@@ -27714,12 +27714,12 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
27714
27714
|
}, z.core.$strip>;
|
|
27715
27715
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
27716
27716
|
data: z.ZodObject<{
|
|
27717
|
-
agentId: z.ZodString;
|
|
27718
27717
|
id: z.ZodString;
|
|
27719
27718
|
name: z.ZodNullable<z.ZodString>;
|
|
27720
27719
|
createdAt: z.ZodString;
|
|
27721
27720
|
updatedAt: z.ZodString;
|
|
27722
27721
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
27722
|
+
agentId: z.ZodString;
|
|
27723
27723
|
publicId: z.ZodString;
|
|
27724
27724
|
keyPrefix: z.ZodString;
|
|
27725
27725
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -27730,12 +27730,12 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
27730
27730
|
}, z.core.$strip>;
|
|
27731
27731
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
27732
27732
|
data: z.ZodObject<{
|
|
27733
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27734
27733
|
id: z.ZodString;
|
|
27735
27734
|
name: z.ZodString;
|
|
27736
27735
|
createdAt: z.ZodString;
|
|
27737
27736
|
updatedAt: z.ZodString;
|
|
27738
27737
|
userId: z.ZodNullable<z.ZodString>;
|
|
27738
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27739
27739
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27740
27740
|
credentialStoreId: z.ZodString;
|
|
27741
27741
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -28334,33 +28334,33 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28334
28334
|
}, z.core.$strip>;
|
|
28335
28335
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28336
28336
|
data: z.ZodObject<{
|
|
28337
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28338
|
-
agentId: z.ZodString;
|
|
28339
28337
|
id: z.ZodString;
|
|
28340
28338
|
name: z.ZodString;
|
|
28341
28339
|
createdAt: z.ZodString;
|
|
28342
28340
|
updatedAt: z.ZodString;
|
|
28341
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28342
|
+
agentId: z.ZodString;
|
|
28343
28343
|
functionId: z.ZodString;
|
|
28344
28344
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28345
28345
|
}, z.core.$strip>;
|
|
28346
28346
|
}, z.core.$strip>;
|
|
28347
28347
|
declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
28348
28348
|
data: z.ZodObject<{
|
|
28349
|
-
subAgentId: z.ZodString;
|
|
28350
28349
|
id: z.ZodString;
|
|
28351
28350
|
createdAt: z.ZodString;
|
|
28352
28351
|
updatedAt: z.ZodString;
|
|
28352
|
+
subAgentId: z.ZodString;
|
|
28353
28353
|
functionToolId: z.ZodString;
|
|
28354
28354
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28355
28355
|
}, z.core.$strip>;
|
|
28356
28356
|
}, z.core.$strip>;
|
|
28357
28357
|
declare const DataComponentResponse: z.ZodObject<{
|
|
28358
28358
|
data: z.ZodObject<{
|
|
28359
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28360
28359
|
id: z.ZodString;
|
|
28361
28360
|
name: z.ZodString;
|
|
28362
28361
|
createdAt: z.ZodString;
|
|
28363
28362
|
updatedAt: z.ZodString;
|
|
28363
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28364
28364
|
props: z.ZodType<{
|
|
28365
28365
|
[x: string]: unknown;
|
|
28366
28366
|
type: "object";
|
|
@@ -28407,11 +28407,11 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
28407
28407
|
}, z.core.$strip>;
|
|
28408
28408
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
28409
28409
|
data: z.ZodObject<{
|
|
28410
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28411
28410
|
id: z.ZodString;
|
|
28412
28411
|
name: z.ZodString;
|
|
28413
28412
|
createdAt: z.ZodString;
|
|
28414
28413
|
updatedAt: z.ZodString;
|
|
28414
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28415
28415
|
props: z.ZodNullable<z.ZodType<{
|
|
28416
28416
|
[x: string]: unknown;
|
|
28417
28417
|
type: "object";
|
|
@@ -28468,24 +28468,24 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
28468
28468
|
}, z.core.$strip>;
|
|
28469
28469
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
28470
28470
|
data: z.ZodObject<{
|
|
28471
|
-
subAgentId: z.ZodString;
|
|
28472
|
-
toolId: z.ZodString;
|
|
28473
28471
|
id: z.ZodString;
|
|
28474
28472
|
createdAt: z.ZodString;
|
|
28475
28473
|
updatedAt: z.ZodString;
|
|
28476
28474
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28475
|
+
subAgentId: z.ZodString;
|
|
28476
|
+
toolId: z.ZodString;
|
|
28477
28477
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28478
28478
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28479
28479
|
}, z.core.$strip>;
|
|
28480
28480
|
}, z.core.$strip>;
|
|
28481
28481
|
declare const TriggerResponse: z.ZodObject<{
|
|
28482
28482
|
data: z.ZodObject<{
|
|
28483
|
-
enabled: z.ZodBoolean;
|
|
28484
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28485
28483
|
id: z.ZodString;
|
|
28486
28484
|
name: z.ZodString;
|
|
28487
28485
|
createdAt: z.ZodString;
|
|
28488
28486
|
updatedAt: z.ZodString;
|
|
28487
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28488
|
+
enabled: z.ZodBoolean;
|
|
28489
28489
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28490
28490
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28491
28491
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -28493,15 +28493,15 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28493
28493
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28494
28494
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28495
28495
|
algorithm: z.ZodEnum<{
|
|
28496
|
+
md5: "md5";
|
|
28496
28497
|
sha256: "sha256";
|
|
28497
28498
|
sha512: "sha512";
|
|
28498
28499
|
sha384: "sha384";
|
|
28499
28500
|
sha1: "sha1";
|
|
28500
|
-
md5: "md5";
|
|
28501
28501
|
}>;
|
|
28502
28502
|
encoding: z.ZodEnum<{
|
|
28503
|
-
hex: "hex";
|
|
28504
28503
|
base64: "base64";
|
|
28504
|
+
hex: "hex";
|
|
28505
28505
|
}>;
|
|
28506
28506
|
signature: z.ZodObject<{
|
|
28507
28507
|
source: z.ZodEnum<{
|
|
@@ -28563,11 +28563,11 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
28563
28563
|
}, z.core.$strip>;
|
|
28564
28564
|
declare const ProjectListResponse: z.ZodObject<{
|
|
28565
28565
|
data: z.ZodArray<z.ZodObject<{
|
|
28566
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28567
28566
|
id: z.ZodString;
|
|
28568
28567
|
name: z.ZodString;
|
|
28569
28568
|
createdAt: z.ZodString;
|
|
28570
28569
|
updatedAt: z.ZodString;
|
|
28570
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28571
28571
|
models: z.ZodNullable<z.ZodObject<{
|
|
28572
28572
|
base: z.ZodObject<{
|
|
28573
28573
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28605,11 +28605,11 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
28605
28605
|
}, z.core.$strip>;
|
|
28606
28606
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
28607
28607
|
data: z.ZodArray<z.ZodObject<{
|
|
28608
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28609
28608
|
id: z.ZodString;
|
|
28610
28609
|
name: z.ZodString;
|
|
28611
28610
|
createdAt: z.ZodString;
|
|
28612
28611
|
updatedAt: z.ZodString;
|
|
28612
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28613
28613
|
models: z.ZodNullable<z.ZodType<{
|
|
28614
28614
|
base?: {
|
|
28615
28615
|
model?: string | undefined;
|
|
@@ -28708,11 +28708,11 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
28708
28708
|
}, z.core.$strip>;
|
|
28709
28709
|
declare const AgentListResponse: z.ZodObject<{
|
|
28710
28710
|
data: z.ZodArray<z.ZodObject<{
|
|
28711
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28712
28711
|
id: z.ZodString;
|
|
28713
28712
|
name: z.ZodString;
|
|
28714
28713
|
createdAt: z.ZodString;
|
|
28715
28714
|
updatedAt: z.ZodString;
|
|
28715
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28716
28716
|
models: z.ZodNullable<z.ZodType<{
|
|
28717
28717
|
base?: {
|
|
28718
28718
|
model?: string | undefined;
|
|
@@ -28870,11 +28870,11 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
28870
28870
|
}, z.core.$strip>;
|
|
28871
28871
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
28872
28872
|
data: z.ZodArray<z.ZodObject<{
|
|
28873
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28874
28873
|
id: z.ZodString;
|
|
28875
28874
|
name: z.ZodString;
|
|
28876
28875
|
createdAt: z.ZodString;
|
|
28877
28876
|
updatedAt: z.ZodString;
|
|
28877
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28878
28878
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28879
28879
|
baseUrl: z.ZodString;
|
|
28880
28880
|
}, z.core.$strip>>;
|
|
@@ -28902,12 +28902,12 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
28902
28902
|
}, z.core.$strip>;
|
|
28903
28903
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
28904
28904
|
data: z.ZodArray<z.ZodObject<{
|
|
28905
|
-
agentId: z.ZodString;
|
|
28906
28905
|
id: z.ZodString;
|
|
28907
28906
|
name: z.ZodNullable<z.ZodString>;
|
|
28908
28907
|
createdAt: z.ZodString;
|
|
28909
28908
|
updatedAt: z.ZodString;
|
|
28910
28909
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28910
|
+
agentId: z.ZodString;
|
|
28911
28911
|
publicId: z.ZodString;
|
|
28912
28912
|
keyPrefix: z.ZodString;
|
|
28913
28913
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -28924,15 +28924,15 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
28924
28924
|
}, z.core.$strip>;
|
|
28925
28925
|
declare const AppResponse: z.ZodObject<{
|
|
28926
28926
|
data: z.ZodObject<{
|
|
28927
|
-
enabled: z.ZodBoolean;
|
|
28928
28927
|
type: z.ZodString;
|
|
28929
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28930
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
28931
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
28932
28928
|
id: z.ZodString;
|
|
28933
28929
|
name: z.ZodString;
|
|
28934
28930
|
createdAt: z.ZodString;
|
|
28935
28931
|
updatedAt: z.ZodString;
|
|
28932
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28933
|
+
enabled: z.ZodBoolean;
|
|
28934
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
28935
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
28936
28936
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28937
28937
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28938
28938
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -28969,15 +28969,15 @@ declare const AppResponse: z.ZodObject<{
|
|
|
28969
28969
|
}, z.core.$strip>;
|
|
28970
28970
|
declare const AppListResponse: z.ZodObject<{
|
|
28971
28971
|
data: z.ZodArray<z.ZodObject<{
|
|
28972
|
-
enabled: z.ZodBoolean;
|
|
28973
28972
|
type: z.ZodString;
|
|
28974
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28975
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
28976
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
28977
28973
|
id: z.ZodString;
|
|
28978
28974
|
name: z.ZodString;
|
|
28979
28975
|
createdAt: z.ZodString;
|
|
28980
28976
|
updatedAt: z.ZodString;
|
|
28977
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28978
|
+
enabled: z.ZodBoolean;
|
|
28979
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
28980
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
28981
28981
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28982
28982
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28983
28983
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -29020,12 +29020,12 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
29020
29020
|
}, z.core.$strip>;
|
|
29021
29021
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29022
29022
|
data: z.ZodArray<z.ZodObject<{
|
|
29023
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29024
29023
|
id: z.ZodString;
|
|
29025
29024
|
name: z.ZodString;
|
|
29026
29025
|
createdAt: z.ZodString;
|
|
29027
29026
|
updatedAt: z.ZodString;
|
|
29028
29027
|
userId: z.ZodNullable<z.ZodString>;
|
|
29028
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29029
29029
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29030
29030
|
credentialStoreId: z.ZodString;
|
|
29031
29031
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -29636,12 +29636,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
29636
29636
|
}, z.core.$strip>;
|
|
29637
29637
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
29638
29638
|
data: z.ZodArray<z.ZodObject<{
|
|
29639
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29640
|
-
agentId: z.ZodString;
|
|
29641
29639
|
id: z.ZodString;
|
|
29642
29640
|
name: z.ZodString;
|
|
29643
29641
|
createdAt: z.ZodString;
|
|
29644
29642
|
updatedAt: z.ZodString;
|
|
29643
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29644
|
+
agentId: z.ZodString;
|
|
29645
29645
|
functionId: z.ZodString;
|
|
29646
29646
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29647
29647
|
}, z.core.$strip>>;
|
|
@@ -29654,10 +29654,10 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
29654
29654
|
}, z.core.$strip>;
|
|
29655
29655
|
declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
29656
29656
|
data: z.ZodArray<z.ZodObject<{
|
|
29657
|
-
subAgentId: z.ZodString;
|
|
29658
29657
|
id: z.ZodString;
|
|
29659
29658
|
createdAt: z.ZodString;
|
|
29660
29659
|
updatedAt: z.ZodString;
|
|
29660
|
+
subAgentId: z.ZodString;
|
|
29661
29661
|
functionToolId: z.ZodString;
|
|
29662
29662
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29663
29663
|
}, z.core.$strip>>;
|
|
@@ -29670,11 +29670,11 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
29670
29670
|
}, z.core.$strip>;
|
|
29671
29671
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
29672
29672
|
data: z.ZodArray<z.ZodObject<{
|
|
29673
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29674
29673
|
id: z.ZodString;
|
|
29675
29674
|
name: z.ZodString;
|
|
29676
29675
|
createdAt: z.ZodString;
|
|
29677
29676
|
updatedAt: z.ZodString;
|
|
29677
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29678
29678
|
props: z.ZodType<{
|
|
29679
29679
|
[x: string]: unknown;
|
|
29680
29680
|
type: "object";
|
|
@@ -29727,11 +29727,11 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
29727
29727
|
}, z.core.$strip>;
|
|
29728
29728
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
29729
29729
|
data: z.ZodArray<z.ZodObject<{
|
|
29730
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29731
29730
|
id: z.ZodString;
|
|
29732
29731
|
name: z.ZodString;
|
|
29733
29732
|
createdAt: z.ZodString;
|
|
29734
29733
|
updatedAt: z.ZodString;
|
|
29734
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29735
29735
|
props: z.ZodNullable<z.ZodType<{
|
|
29736
29736
|
[x: string]: unknown;
|
|
29737
29737
|
type: "object";
|
|
@@ -29800,12 +29800,12 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
29800
29800
|
}, z.core.$strip>;
|
|
29801
29801
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
29802
29802
|
data: z.ZodArray<z.ZodObject<{
|
|
29803
|
-
subAgentId: z.ZodString;
|
|
29804
|
-
toolId: z.ZodString;
|
|
29805
29803
|
id: z.ZodString;
|
|
29806
29804
|
createdAt: z.ZodString;
|
|
29807
29805
|
updatedAt: z.ZodString;
|
|
29808
29806
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29807
|
+
subAgentId: z.ZodString;
|
|
29808
|
+
toolId: z.ZodString;
|
|
29809
29809
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29810
29810
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29811
29811
|
}, z.core.$strip>>;
|
|
@@ -29818,12 +29818,12 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
29818
29818
|
}, z.core.$strip>;
|
|
29819
29819
|
declare const TriggerListResponse: z.ZodObject<{
|
|
29820
29820
|
data: z.ZodArray<z.ZodObject<{
|
|
29821
|
-
enabled: z.ZodBoolean;
|
|
29822
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29823
29821
|
id: z.ZodString;
|
|
29824
29822
|
name: z.ZodString;
|
|
29825
29823
|
createdAt: z.ZodString;
|
|
29826
29824
|
updatedAt: z.ZodString;
|
|
29825
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29826
|
+
enabled: z.ZodBoolean;
|
|
29827
29827
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29828
29828
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29829
29829
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29831,15 +29831,15 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29831
29831
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29832
29832
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29833
29833
|
algorithm: z.ZodEnum<{
|
|
29834
|
+
md5: "md5";
|
|
29834
29835
|
sha256: "sha256";
|
|
29835
29836
|
sha512: "sha512";
|
|
29836
29837
|
sha384: "sha384";
|
|
29837
29838
|
sha1: "sha1";
|
|
29838
|
-
md5: "md5";
|
|
29839
29839
|
}>;
|
|
29840
29840
|
encoding: z.ZodEnum<{
|
|
29841
|
-
hex: "hex";
|
|
29842
29841
|
base64: "base64";
|
|
29842
|
+
hex: "hex";
|
|
29843
29843
|
}>;
|
|
29844
29844
|
signature: z.ZodObject<{
|
|
29845
29845
|
source: z.ZodEnum<{
|
|
@@ -29913,12 +29913,12 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
29913
29913
|
}, z.core.$strip>;
|
|
29914
29914
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
29915
29915
|
data: z.ZodObject<{
|
|
29916
|
-
enabled: z.ZodBoolean;
|
|
29917
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29918
29916
|
id: z.ZodString;
|
|
29919
29917
|
name: z.ZodString;
|
|
29920
29918
|
createdAt: z.ZodString;
|
|
29921
29919
|
updatedAt: z.ZodString;
|
|
29920
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29921
|
+
enabled: z.ZodBoolean;
|
|
29922
29922
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29923
29923
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29924
29924
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29926,15 +29926,15 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29926
29926
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29927
29927
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29928
29928
|
algorithm: z.ZodEnum<{
|
|
29929
|
+
md5: "md5";
|
|
29929
29930
|
sha256: "sha256";
|
|
29930
29931
|
sha512: "sha512";
|
|
29931
29932
|
sha384: "sha384";
|
|
29932
29933
|
sha1: "sha1";
|
|
29933
|
-
md5: "md5";
|
|
29934
29934
|
}>;
|
|
29935
29935
|
encoding: z.ZodEnum<{
|
|
29936
|
-
hex: "hex";
|
|
29937
29936
|
base64: "base64";
|
|
29937
|
+
hex: "hex";
|
|
29938
29938
|
}>;
|
|
29939
29939
|
signature: z.ZodObject<{
|
|
29940
29940
|
source: z.ZodEnum<{
|
|
@@ -29976,12 +29976,12 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29976
29976
|
}, z.core.$strip>;
|
|
29977
29977
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
29978
29978
|
data: z.ZodObject<{
|
|
29979
|
-
enabled: z.ZodBoolean;
|
|
29980
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29981
29979
|
id: z.ZodString;
|
|
29982
29980
|
name: z.ZodString;
|
|
29983
29981
|
createdAt: z.ZodString;
|
|
29984
29982
|
updatedAt: z.ZodString;
|
|
29983
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29984
|
+
enabled: z.ZodBoolean;
|
|
29985
29985
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29986
29986
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29987
29987
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29989,15 +29989,15 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29989
29989
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29990
29990
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29991
29991
|
algorithm: z.ZodEnum<{
|
|
29992
|
+
md5: "md5";
|
|
29992
29993
|
sha256: "sha256";
|
|
29993
29994
|
sha512: "sha512";
|
|
29994
29995
|
sha384: "sha384";
|
|
29995
29996
|
sha1: "sha1";
|
|
29996
|
-
md5: "md5";
|
|
29997
29997
|
}>;
|
|
29998
29998
|
encoding: z.ZodEnum<{
|
|
29999
|
-
hex: "hex";
|
|
30000
29999
|
base64: "base64";
|
|
30000
|
+
hex: "hex";
|
|
30001
30001
|
}>;
|
|
30002
30002
|
signature: z.ZodObject<{
|
|
30003
30003
|
source: z.ZodEnum<{
|
|
@@ -30040,12 +30040,12 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30040
30040
|
}, z.core.$strip>;
|
|
30041
30041
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30042
30042
|
data: z.ZodArray<z.ZodObject<{
|
|
30043
|
-
enabled: z.ZodBoolean;
|
|
30044
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30045
30043
|
id: z.ZodString;
|
|
30046
30044
|
name: z.ZodString;
|
|
30047
30045
|
createdAt: z.ZodString;
|
|
30048
30046
|
updatedAt: z.ZodString;
|
|
30047
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30048
|
+
enabled: z.ZodBoolean;
|
|
30049
30049
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30050
30050
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30051
30051
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -30053,15 +30053,15 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30053
30053
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30054
30054
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30055
30055
|
algorithm: z.ZodEnum<{
|
|
30056
|
+
md5: "md5";
|
|
30056
30057
|
sha256: "sha256";
|
|
30057
30058
|
sha512: "sha512";
|
|
30058
30059
|
sha384: "sha384";
|
|
30059
30060
|
sha1: "sha1";
|
|
30060
|
-
md5: "md5";
|
|
30061
30061
|
}>;
|
|
30062
30062
|
encoding: z.ZodEnum<{
|
|
30063
|
-
hex: "hex";
|
|
30064
30063
|
base64: "base64";
|
|
30064
|
+
hex: "hex";
|
|
30065
30065
|
}>;
|
|
30066
30066
|
signature: z.ZodObject<{
|
|
30067
30067
|
source: z.ZodEnum<{
|
|
@@ -30108,13 +30108,13 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30108
30108
|
}, z.core.$strip>;
|
|
30109
30109
|
}, z.core.$strip>;
|
|
30110
30110
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30111
|
-
enabled: z.ZodBoolean;
|
|
30112
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30113
30111
|
id: z.ZodString;
|
|
30114
30112
|
name: z.ZodString;
|
|
30115
30113
|
createdAt: z.ZodString;
|
|
30116
30114
|
updatedAt: z.ZodString;
|
|
30117
30115
|
ref: z.ZodString;
|
|
30116
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30117
|
+
enabled: z.ZodBoolean;
|
|
30118
30118
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30119
30119
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30120
30120
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -30136,13 +30136,13 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30136
30136
|
type ScheduledTriggerWithRunInfo = z.infer<typeof ScheduledTriggerWithRunInfoSchema>;
|
|
30137
30137
|
declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
30138
30138
|
data: z.ZodObject<{
|
|
30139
|
-
enabled: z.ZodBoolean;
|
|
30140
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30141
30139
|
id: z.ZodString;
|
|
30142
30140
|
name: z.ZodString;
|
|
30143
30141
|
createdAt: z.ZodString;
|
|
30144
30142
|
updatedAt: z.ZodString;
|
|
30145
30143
|
ref: z.ZodString;
|
|
30144
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30145
|
+
enabled: z.ZodBoolean;
|
|
30146
30146
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30147
30147
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30148
30148
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -30158,13 +30158,13 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30158
30158
|
}, z.core.$strip>;
|
|
30159
30159
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
30160
30160
|
data: z.ZodArray<z.ZodObject<{
|
|
30161
|
-
enabled: z.ZodBoolean;
|
|
30162
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30163
30161
|
id: z.ZodString;
|
|
30164
30162
|
name: z.ZodString;
|
|
30165
30163
|
createdAt: z.ZodString;
|
|
30166
30164
|
updatedAt: z.ZodString;
|
|
30167
30165
|
ref: z.ZodString;
|
|
30166
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30167
|
+
enabled: z.ZodBoolean;
|
|
30168
30168
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30169
30169
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30170
30170
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -30186,13 +30186,13 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30186
30186
|
}, z.core.$strip>;
|
|
30187
30187
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30188
30188
|
data: z.ZodArray<z.ZodObject<{
|
|
30189
|
-
enabled: z.ZodBoolean;
|
|
30190
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30191
30189
|
id: z.ZodString;
|
|
30192
30190
|
name: z.ZodString;
|
|
30193
30191
|
createdAt: z.ZodString;
|
|
30194
30192
|
updatedAt: z.ZodString;
|
|
30195
30193
|
ref: z.ZodString;
|
|
30194
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30195
|
+
enabled: z.ZodBoolean;
|
|
30196
30196
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30197
30197
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30198
30198
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -30286,25 +30286,25 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30286
30286
|
}, z.core.$strip>;
|
|
30287
30287
|
declare const SubAgentDataComponentResponse: z.ZodObject<{
|
|
30288
30288
|
data: z.ZodObject<{
|
|
30289
|
-
subAgentId: z.ZodString;
|
|
30290
30289
|
id: z.ZodString;
|
|
30291
30290
|
createdAt: z.ZodString;
|
|
30291
|
+
subAgentId: z.ZodString;
|
|
30292
30292
|
dataComponentId: z.ZodString;
|
|
30293
30293
|
}, z.core.$strip>;
|
|
30294
30294
|
}, z.core.$strip>;
|
|
30295
30295
|
declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
30296
30296
|
data: z.ZodObject<{
|
|
30297
|
-
subAgentId: z.ZodString;
|
|
30298
30297
|
id: z.ZodString;
|
|
30299
30298
|
createdAt: z.ZodString;
|
|
30299
|
+
subAgentId: z.ZodString;
|
|
30300
30300
|
artifactComponentId: z.ZodString;
|
|
30301
30301
|
}, z.core.$strip>;
|
|
30302
30302
|
}, z.core.$strip>;
|
|
30303
30303
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
30304
30304
|
data: z.ZodObject<{
|
|
30305
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30306
30305
|
id: z.ZodString;
|
|
30307
30306
|
name: z.ZodString;
|
|
30307
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30308
30308
|
models: z.ZodObject<{
|
|
30309
30309
|
base: z.ZodObject<{
|
|
30310
30310
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30330,18 +30330,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30330
30330
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
30331
30331
|
}, z.core.$strip>>;
|
|
30332
30332
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30333
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30334
30333
|
id: z.ZodString;
|
|
30335
30334
|
name: z.ZodString;
|
|
30335
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30336
30336
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30337
30337
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30338
30338
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
30339
30339
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30340
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30341
30340
|
id: z.ZodString;
|
|
30342
30341
|
name: z.ZodString;
|
|
30343
30342
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30344
30343
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30344
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30345
30345
|
models: z.ZodOptional<z.ZodObject<{
|
|
30346
30346
|
base: z.ZodOptional<z.ZodObject<{
|
|
30347
30347
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30396,9 +30396,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30396
30396
|
}, z.core.$strip>>;
|
|
30397
30397
|
}, z.core.$strip>>;
|
|
30398
30398
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30399
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30400
30399
|
id: z.ZodString;
|
|
30401
30400
|
name: z.ZodString;
|
|
30401
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30402
30402
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30403
30403
|
config: z.ZodObject<{
|
|
30404
30404
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -30434,9 +30434,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30434
30434
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30435
30435
|
}, z.core.$strip>>>;
|
|
30436
30436
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30437
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30438
30437
|
id: z.ZodString;
|
|
30439
30438
|
name: z.ZodString;
|
|
30439
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30440
30440
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30441
30441
|
baseUrl: z.ZodURL;
|
|
30442
30442
|
}, z.core.$strip>>>;
|
|
@@ -30446,9 +30446,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30446
30446
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30447
30447
|
}, z.core.$strip>>>;
|
|
30448
30448
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30449
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30450
30449
|
id: z.ZodString;
|
|
30451
30450
|
name: z.ZodString;
|
|
30451
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30452
30452
|
functionId: z.ZodString;
|
|
30453
30453
|
}, z.core.$strip>>>;
|
|
30454
30454
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30458,10 +30458,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30458
30458
|
executeCode: z.ZodString;
|
|
30459
30459
|
}, z.core.$strip>>>;
|
|
30460
30460
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30461
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30462
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30463
30461
|
id: z.ZodOptional<z.ZodString>;
|
|
30464
30462
|
name: z.ZodString;
|
|
30463
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30464
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30465
30465
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30466
30466
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30467
30467
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30517,9 +30517,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30517
30517
|
prompt: z.ZodOptional<z.ZodString>;
|
|
30518
30518
|
}, z.core.$strip>>;
|
|
30519
30519
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30520
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30521
30520
|
id: z.ZodString;
|
|
30522
30521
|
name: z.ZodString;
|
|
30522
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30523
30523
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30524
30524
|
config: z.ZodObject<{
|
|
30525
30525
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -30555,9 +30555,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30555
30555
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30556
30556
|
}, z.core.$strip>>;
|
|
30557
30557
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30558
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30559
30558
|
id: z.ZodString;
|
|
30560
30559
|
name: z.ZodString;
|
|
30560
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30561
30561
|
functionId: z.ZodString;
|
|
30562
30562
|
}, z.core.$strip>>>;
|
|
30563
30563
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30591,8 +30591,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30591
30591
|
filePath: z.ZodString;
|
|
30592
30592
|
content: z.ZodString;
|
|
30593
30593
|
}, z.core.$strip>>;
|
|
30594
|
-
description: z.ZodString;
|
|
30595
30594
|
name: z.ZodString;
|
|
30595
|
+
description: z.ZodString;
|
|
30596
30596
|
content: z.ZodString;
|
|
30597
30597
|
}, z.core.$strict>>>>;
|
|
30598
30598
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30649,9 +30649,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30649
30649
|
in: {};
|
|
30650
30650
|
}>>>;
|
|
30651
30651
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30652
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30653
30652
|
id: z.ZodString;
|
|
30654
30653
|
name: z.ZodString;
|
|
30654
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30655
30655
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30656
30656
|
baseUrl: z.ZodURL;
|
|
30657
30657
|
}, z.core.$strip>>>;
|
|
@@ -30671,10 +30671,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30671
30671
|
}, z.core.$strip>>>;
|
|
30672
30672
|
}, z.core.$strict>>;
|
|
30673
30673
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30674
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30675
30674
|
id: z.ZodString;
|
|
30676
30675
|
name: z.ZodString;
|
|
30677
30676
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30677
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30678
30678
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30679
30679
|
credentialStoreId: z.ZodString;
|
|
30680
30680
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -30694,11 +30694,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30694
30694
|
}, z.core.$strip>;
|
|
30695
30695
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
30696
30696
|
data: z.ZodObject<{
|
|
30697
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30698
30697
|
id: z.ZodString;
|
|
30699
30698
|
name: z.ZodString;
|
|
30700
30699
|
createdAt: z.ZodString;
|
|
30701
30700
|
updatedAt: z.ZodString;
|
|
30701
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30702
30702
|
models: z.ZodNullable<z.ZodObject<{
|
|
30703
30703
|
base: z.ZodObject<{
|
|
30704
30704
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30724,20 +30724,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30724
30724
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
30725
30725
|
}, z.core.$strip>>;
|
|
30726
30726
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30727
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30728
30727
|
id: z.ZodString;
|
|
30729
30728
|
name: z.ZodString;
|
|
30730
30729
|
createdAt: z.ZodString;
|
|
30731
30730
|
updatedAt: z.ZodString;
|
|
30731
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30732
30732
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30733
30733
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30734
30734
|
executionMode: z.ZodString;
|
|
30735
30735
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30736
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30737
30736
|
id: z.ZodString;
|
|
30738
30737
|
name: z.ZodString;
|
|
30739
30738
|
createdAt: z.ZodString;
|
|
30740
30739
|
updatedAt: z.ZodString;
|
|
30740
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30741
30741
|
models: z.ZodNullable<z.ZodType<{
|
|
30742
30742
|
base?: {
|
|
30743
30743
|
model?: string | undefined;
|
|
@@ -30850,11 +30850,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30850
30850
|
}, z.core.$strip>]>>>;
|
|
30851
30851
|
}, z.core.$strip>>;
|
|
30852
30852
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30853
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30854
30853
|
id: z.ZodString;
|
|
30855
30854
|
name: z.ZodString;
|
|
30856
30855
|
createdAt: z.ZodString;
|
|
30857
30856
|
updatedAt: z.ZodString;
|
|
30857
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30858
30858
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30859
30859
|
config: z.ZodType<{
|
|
30860
30860
|
type: "mcp";
|
|
@@ -30877,11 +30877,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30877
30877
|
isWorkApp: z.ZodBoolean;
|
|
30878
30878
|
}, z.core.$strip>>>;
|
|
30879
30879
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30880
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30881
30880
|
id: z.ZodString;
|
|
30882
30881
|
name: z.ZodString;
|
|
30883
30882
|
createdAt: z.ZodString;
|
|
30884
30883
|
updatedAt: z.ZodString;
|
|
30884
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30885
30885
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30886
30886
|
baseUrl: z.ZodString;
|
|
30887
30887
|
}, z.core.$strip>>>;
|
|
@@ -30891,12 +30891,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30891
30891
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30892
30892
|
}, z.core.$strip>>>;
|
|
30893
30893
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30894
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30895
|
-
agentId: z.ZodString;
|
|
30896
30894
|
id: z.ZodString;
|
|
30897
30895
|
name: z.ZodString;
|
|
30898
30896
|
createdAt: z.ZodString;
|
|
30899
30897
|
updatedAt: z.ZodString;
|
|
30898
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30899
|
+
agentId: z.ZodString;
|
|
30900
30900
|
functionId: z.ZodString;
|
|
30901
30901
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30902
30902
|
}, z.core.$strip>>>;
|
|
@@ -30956,11 +30956,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30956
30956
|
prompt: z.ZodNullable<z.ZodString>;
|
|
30957
30957
|
}, z.core.$strip>>;
|
|
30958
30958
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30959
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30960
30959
|
id: z.ZodString;
|
|
30961
30960
|
name: z.ZodString;
|
|
30962
30961
|
createdAt: z.ZodString;
|
|
30963
30962
|
updatedAt: z.ZodString;
|
|
30963
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30964
30964
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30965
30965
|
config: z.ZodType<{
|
|
30966
30966
|
type: "mcp";
|
|
@@ -30983,12 +30983,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30983
30983
|
isWorkApp: z.ZodBoolean;
|
|
30984
30984
|
}, z.core.$strip>>;
|
|
30985
30985
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30986
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30987
|
-
agentId: z.ZodString;
|
|
30988
30986
|
id: z.ZodString;
|
|
30989
30987
|
name: z.ZodString;
|
|
30990
30988
|
createdAt: z.ZodString;
|
|
30991
30989
|
updatedAt: z.ZodString;
|
|
30990
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30991
|
+
agentId: z.ZodString;
|
|
30992
30992
|
functionId: z.ZodString;
|
|
30993
30993
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30994
30994
|
}, z.core.$strip>>>;
|
|
@@ -31001,11 +31001,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31001
31001
|
executeCode: z.ZodString;
|
|
31002
31002
|
}, z.core.$strip>>>;
|
|
31003
31003
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31004
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31005
31004
|
id: z.ZodString;
|
|
31006
31005
|
name: z.ZodString;
|
|
31007
31006
|
createdAt: z.ZodString;
|
|
31008
31007
|
updatedAt: z.ZodString;
|
|
31008
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31009
31009
|
props: z.ZodType<{
|
|
31010
31010
|
[x: string]: unknown;
|
|
31011
31011
|
type: "object";
|
|
@@ -31050,11 +31050,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31050
31050
|
}>>>;
|
|
31051
31051
|
}, z.core.$strip>>>;
|
|
31052
31052
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31053
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31054
31053
|
id: z.ZodString;
|
|
31055
31054
|
name: z.ZodString;
|
|
31056
31055
|
createdAt: z.ZodString;
|
|
31057
31056
|
updatedAt: z.ZodString;
|
|
31057
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31058
31058
|
props: z.ZodNullable<z.ZodType<{
|
|
31059
31059
|
[x: string]: unknown;
|
|
31060
31060
|
type: "object";
|
|
@@ -31099,11 +31099,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31099
31099
|
}>>>;
|
|
31100
31100
|
}, z.core.$strip>>>;
|
|
31101
31101
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31102
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31103
31102
|
id: z.ZodString;
|
|
31104
31103
|
name: z.ZodString;
|
|
31105
31104
|
createdAt: z.ZodString;
|
|
31106
31105
|
updatedAt: z.ZodString;
|
|
31106
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31107
31107
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31108
31108
|
baseUrl: z.ZodString;
|
|
31109
31109
|
}, z.core.$strip>>>;
|
|
@@ -31123,12 +31123,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31123
31123
|
}, z.core.$strip>>>;
|
|
31124
31124
|
}, z.core.$strict>>;
|
|
31125
31125
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31126
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31127
31126
|
id: z.ZodString;
|
|
31128
31127
|
name: z.ZodString;
|
|
31129
31128
|
createdAt: z.ZodString;
|
|
31130
31129
|
updatedAt: z.ZodString;
|
|
31131
31130
|
userId: z.ZodNullable<z.ZodString>;
|
|
31131
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31132
31132
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31133
31133
|
credentialStoreId: z.ZodString;
|
|
31134
31134
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -31721,11 +31721,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31721
31721
|
}, z.core.$strip>;
|
|
31722
31722
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
31723
31723
|
data: z.ZodObject<{
|
|
31724
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31725
31724
|
id: z.ZodString;
|
|
31726
31725
|
name: z.ZodString;
|
|
31727
31726
|
createdAt: z.ZodString;
|
|
31728
31727
|
updatedAt: z.ZodString;
|
|
31728
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31729
31729
|
models: z.ZodNullable<z.ZodObject<{
|
|
31730
31730
|
base: z.ZodObject<{
|
|
31731
31731
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31751,11 +31751,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31751
31751
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31752
31752
|
}, z.core.$strip>>;
|
|
31753
31753
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31754
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31755
31754
|
id: z.ZodString;
|
|
31756
31755
|
name: z.ZodString;
|
|
31757
31756
|
createdAt: z.ZodString;
|
|
31758
31757
|
updatedAt: z.ZodString;
|
|
31758
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31759
31759
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31760
31760
|
config: z.ZodType<{
|
|
31761
31761
|
type: "mcp";
|
|
@@ -31778,12 +31778,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31778
31778
|
isWorkApp: z.ZodBoolean;
|
|
31779
31779
|
}, z.core.$strip>>;
|
|
31780
31780
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31781
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31782
|
-
agentId: z.ZodString;
|
|
31783
31781
|
id: z.ZodString;
|
|
31784
31782
|
name: z.ZodString;
|
|
31785
31783
|
createdAt: z.ZodString;
|
|
31786
31784
|
updatedAt: z.ZodString;
|
|
31785
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31786
|
+
agentId: z.ZodString;
|
|
31787
31787
|
functionId: z.ZodString;
|
|
31788
31788
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31789
31789
|
}, z.core.$strip>>>;
|
|
@@ -31796,11 +31796,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31796
31796
|
executeCode: z.ZodString;
|
|
31797
31797
|
}, z.core.$strip>>>;
|
|
31798
31798
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31799
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31800
31799
|
id: z.ZodString;
|
|
31801
31800
|
name: z.ZodString;
|
|
31802
31801
|
createdAt: z.ZodString;
|
|
31803
31802
|
updatedAt: z.ZodString;
|
|
31803
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31804
31804
|
props: z.ZodType<{
|
|
31805
31805
|
[x: string]: unknown;
|
|
31806
31806
|
type: "object";
|
|
@@ -31845,11 +31845,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31845
31845
|
}>>>;
|
|
31846
31846
|
}, z.core.$strip>>>;
|
|
31847
31847
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31848
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31849
31848
|
id: z.ZodString;
|
|
31850
31849
|
name: z.ZodString;
|
|
31851
31850
|
createdAt: z.ZodString;
|
|
31852
31851
|
updatedAt: z.ZodString;
|
|
31852
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31853
31853
|
props: z.ZodNullable<z.ZodType<{
|
|
31854
31854
|
[x: string]: unknown;
|
|
31855
31855
|
type: "object";
|
|
@@ -31894,11 +31894,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31894
31894
|
}>>>;
|
|
31895
31895
|
}, z.core.$strip>>>;
|
|
31896
31896
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31897
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31898
31897
|
id: z.ZodString;
|
|
31899
31898
|
name: z.ZodString;
|
|
31900
31899
|
createdAt: z.ZodString;
|
|
31901
31900
|
updatedAt: z.ZodString;
|
|
31901
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31902
31902
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31903
31903
|
baseUrl: z.ZodString;
|
|
31904
31904
|
}, z.core.$strip>>>;
|
|
@@ -31918,12 +31918,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31918
31918
|
}, z.core.$strip>>>;
|
|
31919
31919
|
}, z.core.$strict>>;
|
|
31920
31920
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31921
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31922
31921
|
id: z.ZodString;
|
|
31923
31922
|
name: z.ZodString;
|
|
31924
31923
|
createdAt: z.ZodString;
|
|
31925
31924
|
updatedAt: z.ZodString;
|
|
31926
31925
|
userId: z.ZodNullable<z.ZodString>;
|
|
31926
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31927
31927
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31928
31928
|
credentialStoreId: z.ZodString;
|
|
31929
31929
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -32510,20 +32510,20 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32510
32510
|
}>>>;
|
|
32511
32511
|
}, z.core.$strip>>>;
|
|
32512
32512
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32513
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32514
32513
|
id: z.ZodString;
|
|
32515
32514
|
name: z.ZodString;
|
|
32516
32515
|
createdAt: z.ZodString;
|
|
32517
32516
|
updatedAt: z.ZodString;
|
|
32517
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32518
32518
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32519
32519
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32520
32520
|
executionMode: z.ZodString;
|
|
32521
32521
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32522
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32523
32522
|
id: z.ZodString;
|
|
32524
32523
|
name: z.ZodString;
|
|
32525
32524
|
createdAt: z.ZodString;
|
|
32526
32525
|
updatedAt: z.ZodString;
|
|
32526
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32527
32527
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32528
32528
|
config: z.ZodType<{
|
|
32529
32529
|
type: "mcp";
|
|
@@ -32546,11 +32546,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32546
32546
|
isWorkApp: z.ZodBoolean;
|
|
32547
32547
|
}, z.core.$strip>>>;
|
|
32548
32548
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32549
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32550
32549
|
id: z.ZodString;
|
|
32551
32550
|
name: z.ZodString;
|
|
32552
32551
|
createdAt: z.ZodString;
|
|
32553
32552
|
updatedAt: z.ZodString;
|
|
32553
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32554
32554
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32555
32555
|
baseUrl: z.ZodString;
|
|
32556
32556
|
}, z.core.$strip>>>;
|
|
@@ -32560,12 +32560,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32560
32560
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32561
32561
|
}, z.core.$strip>>>;
|
|
32562
32562
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32563
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32564
|
-
agentId: z.ZodString;
|
|
32565
32563
|
id: z.ZodString;
|
|
32566
32564
|
name: z.ZodString;
|
|
32567
32565
|
createdAt: z.ZodString;
|
|
32568
32566
|
updatedAt: z.ZodString;
|
|
32567
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32568
|
+
agentId: z.ZodString;
|
|
32569
32569
|
functionId: z.ZodString;
|
|
32570
32570
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32571
32571
|
}, z.core.$strip>>>;
|
|
@@ -32624,11 +32624,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32624
32624
|
}, z.core.$strip>>;
|
|
32625
32625
|
prompt: z.ZodNullable<z.ZodString>;
|
|
32626
32626
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32627
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32628
32627
|
id: z.ZodString;
|
|
32629
32628
|
name: z.ZodString;
|
|
32630
32629
|
createdAt: z.ZodString;
|
|
32631
32630
|
updatedAt: z.ZodString;
|
|
32631
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32632
32632
|
models: z.ZodNullable<z.ZodType<{
|
|
32633
32633
|
base?: {
|
|
32634
32634
|
model?: string | undefined;
|
|
@@ -32754,18 +32754,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32754
32754
|
}, z.core.$strip>;
|
|
32755
32755
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
32756
32756
|
data: z.ZodObject<{
|
|
32757
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32758
32757
|
id: z.ZodString;
|
|
32759
32758
|
name: z.ZodString;
|
|
32759
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32760
32760
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32761
32761
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32762
32762
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
32763
32763
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32764
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32765
32764
|
id: z.ZodString;
|
|
32766
32765
|
name: z.ZodString;
|
|
32767
32766
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
32768
32767
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
32768
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32769
32769
|
models: z.ZodOptional<z.ZodObject<{
|
|
32770
32770
|
base: z.ZodOptional<z.ZodObject<{
|
|
32771
32771
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -32820,9 +32820,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32820
32820
|
}, z.core.$strip>>;
|
|
32821
32821
|
}, z.core.$strip>>;
|
|
32822
32822
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32823
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32824
32823
|
id: z.ZodString;
|
|
32825
32824
|
name: z.ZodString;
|
|
32825
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32826
32826
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32827
32827
|
config: z.ZodObject<{
|
|
32828
32828
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -32858,9 +32858,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32858
32858
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
32859
32859
|
}, z.core.$strip>>>;
|
|
32860
32860
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32861
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32862
32861
|
id: z.ZodString;
|
|
32863
32862
|
name: z.ZodString;
|
|
32863
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32864
32864
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32865
32865
|
baseUrl: z.ZodURL;
|
|
32866
32866
|
}, z.core.$strip>>>;
|
|
@@ -32870,9 +32870,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32870
32870
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32871
32871
|
}, z.core.$strip>>>;
|
|
32872
32872
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32873
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32874
32873
|
id: z.ZodString;
|
|
32875
32874
|
name: z.ZodString;
|
|
32875
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32876
32876
|
functionId: z.ZodString;
|
|
32877
32877
|
}, z.core.$strip>>>;
|
|
32878
32878
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -32882,10 +32882,10 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32882
32882
|
executeCode: z.ZodString;
|
|
32883
32883
|
}, z.core.$strip>>>;
|
|
32884
32884
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32885
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32886
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32887
32885
|
id: z.ZodOptional<z.ZodString>;
|
|
32888
32886
|
name: z.ZodString;
|
|
32887
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32888
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32889
32889
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32890
32890
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
32891
32891
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32943,20 +32943,20 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32943
32943
|
}, z.core.$strip>;
|
|
32944
32944
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
32945
32945
|
data: z.ZodObject<{
|
|
32946
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32947
32946
|
id: z.ZodString;
|
|
32948
32947
|
name: z.ZodString;
|
|
32949
32948
|
createdAt: z.ZodString;
|
|
32950
32949
|
updatedAt: z.ZodString;
|
|
32950
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32951
32951
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32952
32952
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32953
32953
|
executionMode: z.ZodString;
|
|
32954
32954
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32955
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32956
32955
|
id: z.ZodString;
|
|
32957
32956
|
name: z.ZodString;
|
|
32958
32957
|
createdAt: z.ZodString;
|
|
32959
32958
|
updatedAt: z.ZodString;
|
|
32959
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32960
32960
|
models: z.ZodNullable<z.ZodType<{
|
|
32961
32961
|
base?: {
|
|
32962
32962
|
model?: string | undefined;
|
|
@@ -33069,11 +33069,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33069
33069
|
}, z.core.$strip>]>>>;
|
|
33070
33070
|
}, z.core.$strip>>;
|
|
33071
33071
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33072
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33073
33072
|
id: z.ZodString;
|
|
33074
33073
|
name: z.ZodString;
|
|
33075
33074
|
createdAt: z.ZodString;
|
|
33076
33075
|
updatedAt: z.ZodString;
|
|
33076
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33077
33077
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33078
33078
|
config: z.ZodType<{
|
|
33079
33079
|
type: "mcp";
|
|
@@ -33096,11 +33096,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33096
33096
|
isWorkApp: z.ZodBoolean;
|
|
33097
33097
|
}, z.core.$strip>>>;
|
|
33098
33098
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33099
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33100
33099
|
id: z.ZodString;
|
|
33101
33100
|
name: z.ZodString;
|
|
33102
33101
|
createdAt: z.ZodString;
|
|
33103
33102
|
updatedAt: z.ZodString;
|
|
33103
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33104
33104
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33105
33105
|
baseUrl: z.ZodString;
|
|
33106
33106
|
}, z.core.$strip>>>;
|
|
@@ -33110,12 +33110,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33110
33110
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33111
33111
|
}, z.core.$strip>>>;
|
|
33112
33112
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33113
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33114
|
-
agentId: z.ZodString;
|
|
33115
33113
|
id: z.ZodString;
|
|
33116
33114
|
name: z.ZodString;
|
|
33117
33115
|
createdAt: z.ZodString;
|
|
33118
33116
|
updatedAt: z.ZodString;
|
|
33117
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33118
|
+
agentId: z.ZodString;
|
|
33119
33119
|
functionId: z.ZodString;
|
|
33120
33120
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33121
33121
|
}, z.core.$strip>>>;
|
|
@@ -33196,12 +33196,12 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
33196
33196
|
}, z.core.$strip>;
|
|
33197
33197
|
declare const McpToolResponse: z.ZodObject<{
|
|
33198
33198
|
data: z.ZodObject<{
|
|
33199
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33200
|
-
tenantId: z.ZodString;
|
|
33201
|
-
projectId: z.ZodString;
|
|
33202
33199
|
id: z.ZodString;
|
|
33203
33200
|
name: z.ZodString;
|
|
33201
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33204
33202
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33203
|
+
tenantId: z.ZodString;
|
|
33204
|
+
projectId: z.ZodString;
|
|
33205
33205
|
config: z.ZodObject<{
|
|
33206
33206
|
type: z.ZodLiteral<"mcp">;
|
|
33207
33207
|
mcp: z.ZodObject<{
|
|
@@ -33257,12 +33257,12 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33257
33257
|
}, z.core.$strip>;
|
|
33258
33258
|
declare const McpToolListResponse: z.ZodObject<{
|
|
33259
33259
|
data: z.ZodArray<z.ZodObject<{
|
|
33260
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33261
|
-
tenantId: z.ZodString;
|
|
33262
|
-
projectId: z.ZodString;
|
|
33263
33260
|
id: z.ZodString;
|
|
33264
33261
|
name: z.ZodString;
|
|
33262
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33265
33263
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33264
|
+
tenantId: z.ZodString;
|
|
33265
|
+
projectId: z.ZodString;
|
|
33266
33266
|
config: z.ZodObject<{
|
|
33267
33267
|
type: z.ZodLiteral<"mcp">;
|
|
33268
33268
|
mcp: z.ZodObject<{
|
|
@@ -33324,21 +33324,21 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33324
33324
|
}, z.core.$strip>;
|
|
33325
33325
|
declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
33326
33326
|
data: z.ZodObject<{
|
|
33327
|
-
subAgentId: z.ZodString;
|
|
33328
33327
|
id: z.ZodString;
|
|
33329
33328
|
createdAt: z.ZodString;
|
|
33330
33329
|
updatedAt: z.ZodString;
|
|
33331
33330
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33331
|
+
subAgentId: z.ZodString;
|
|
33332
33332
|
targetAgentId: z.ZodString;
|
|
33333
33333
|
}, z.core.$strip>;
|
|
33334
33334
|
}, z.core.$strip>;
|
|
33335
33335
|
declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
33336
33336
|
data: z.ZodArray<z.ZodObject<{
|
|
33337
|
-
subAgentId: z.ZodString;
|
|
33338
33337
|
id: z.ZodString;
|
|
33339
33338
|
createdAt: z.ZodString;
|
|
33340
33339
|
updatedAt: z.ZodString;
|
|
33341
33340
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33341
|
+
subAgentId: z.ZodString;
|
|
33342
33342
|
targetAgentId: z.ZodString;
|
|
33343
33343
|
}, z.core.$strip>>;
|
|
33344
33344
|
pagination: z.ZodObject<{
|
|
@@ -33350,21 +33350,21 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
33350
33350
|
}, z.core.$strip>;
|
|
33351
33351
|
declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
33352
33352
|
data: z.ZodObject<{
|
|
33353
|
-
subAgentId: z.ZodString;
|
|
33354
33353
|
id: z.ZodString;
|
|
33355
33354
|
createdAt: z.ZodString;
|
|
33356
33355
|
updatedAt: z.ZodString;
|
|
33357
33356
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33357
|
+
subAgentId: z.ZodString;
|
|
33358
33358
|
externalAgentId: z.ZodString;
|
|
33359
33359
|
}, z.core.$strip>;
|
|
33360
33360
|
}, z.core.$strip>;
|
|
33361
33361
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
33362
33362
|
data: z.ZodArray<z.ZodObject<{
|
|
33363
|
-
subAgentId: z.ZodString;
|
|
33364
33363
|
id: z.ZodString;
|
|
33365
33364
|
createdAt: z.ZodString;
|
|
33366
33365
|
updatedAt: z.ZodString;
|
|
33367
33366
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33367
|
+
subAgentId: z.ZodString;
|
|
33368
33368
|
externalAgentId: z.ZodString;
|
|
33369
33369
|
}, z.core.$strip>>;
|
|
33370
33370
|
pagination: z.ZodObject<{
|
|
@@ -33376,11 +33376,11 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33376
33376
|
}, z.core.$strip>;
|
|
33377
33377
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
33378
33378
|
data: z.ZodArray<z.ZodObject<{
|
|
33379
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33380
33379
|
id: z.ZodString;
|
|
33381
33380
|
name: z.ZodString;
|
|
33382
33381
|
createdAt: z.ZodString;
|
|
33383
33382
|
updatedAt: z.ZodString;
|
|
33383
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33384
33384
|
props: z.ZodType<{
|
|
33385
33385
|
[x: string]: unknown;
|
|
33386
33386
|
type: "object";
|
|
@@ -33427,11 +33427,11 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
33427
33427
|
}, z.core.$strip>;
|
|
33428
33428
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
33429
33429
|
data: z.ZodArray<z.ZodObject<{
|
|
33430
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33431
33430
|
id: z.ZodString;
|
|
33432
33431
|
name: z.ZodString;
|
|
33433
33432
|
createdAt: z.ZodString;
|
|
33434
33433
|
updatedAt: z.ZodString;
|
|
33434
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33435
33435
|
props: z.ZodNullable<z.ZodType<{
|
|
33436
33436
|
[x: string]: unknown;
|
|
33437
33437
|
type: "object";
|
|
@@ -33783,8 +33783,8 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
33783
33783
|
}>;
|
|
33784
33784
|
}, undefined>, undefined>;
|
|
33785
33785
|
declare const ProjectMetadataInsertSchema: z.ZodObject<{
|
|
33786
|
-
tenantId: z.ZodString;
|
|
33787
33786
|
id: z.ZodString;
|
|
33787
|
+
tenantId: z.ZodString;
|
|
33788
33788
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33789
33789
|
mainBranchName: z.ZodString;
|
|
33790
33790
|
}, {
|
|
@@ -33798,8 +33798,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
33798
33798
|
disconnected: "disconnected";
|
|
33799
33799
|
}>;
|
|
33800
33800
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
33801
|
-
Organization: "Organization";
|
|
33802
33801
|
User: "User";
|
|
33802
|
+
Organization: "Organization";
|
|
33803
33803
|
}>;
|
|
33804
33804
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
33805
33805
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -33894,7 +33894,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
33894
33894
|
tableName: "work_app_github_installations";
|
|
33895
33895
|
dataType: "string";
|
|
33896
33896
|
columnType: "PgVarchar";
|
|
33897
|
-
data: "
|
|
33897
|
+
data: "User" | "Organization";
|
|
33898
33898
|
driverParam: string;
|
|
33899
33899
|
notNull: true;
|
|
33900
33900
|
hasDefault: false;
|
|
@@ -33907,7 +33907,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
33907
33907
|
generated: undefined;
|
|
33908
33908
|
}, {}, {
|
|
33909
33909
|
length: 20;
|
|
33910
|
-
$type: "
|
|
33910
|
+
$type: "User" | "Organization";
|
|
33911
33911
|
}>;
|
|
33912
33912
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
33913
33913
|
name: "status";
|
|
@@ -34060,7 +34060,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34060
34060
|
tableName: "work_app_github_installations";
|
|
34061
34061
|
dataType: "string";
|
|
34062
34062
|
columnType: "PgVarchar";
|
|
34063
|
-
data: "
|
|
34063
|
+
data: "User" | "Organization";
|
|
34064
34064
|
driverParam: string;
|
|
34065
34065
|
notNull: true;
|
|
34066
34066
|
hasDefault: false;
|
|
@@ -34073,7 +34073,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34073
34073
|
generated: undefined;
|
|
34074
34074
|
}, {}, {
|
|
34075
34075
|
length: 20;
|
|
34076
|
-
$type: "
|
|
34076
|
+
$type: "User" | "Organization";
|
|
34077
34077
|
}>;
|
|
34078
34078
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
34079
34079
|
name: "status";
|
|
@@ -34135,14 +34135,14 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
34135
34135
|
}>;
|
|
34136
34136
|
}, undefined>, undefined>;
|
|
34137
34137
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
34138
|
-
tenantId: z.ZodString;
|
|
34139
34138
|
id: z.ZodString;
|
|
34140
34139
|
accountId: z.ZodString;
|
|
34140
|
+
tenantId: z.ZodString;
|
|
34141
34141
|
installationId: z.ZodString;
|
|
34142
34142
|
accountLogin: z.ZodString;
|
|
34143
34143
|
accountType: z.ZodEnum<{
|
|
34144
|
-
Organization: "Organization";
|
|
34145
34144
|
User: "User";
|
|
34145
|
+
Organization: "Organization";
|
|
34146
34146
|
}>;
|
|
34147
34147
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34148
34148
|
pending: "pending";
|
|
@@ -34165,7 +34165,6 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
|
34165
34165
|
accountType: z.ZodString;
|
|
34166
34166
|
}, z.core.$strip>;
|
|
34167
34167
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
34168
|
-
tenantId: z.ZodString;
|
|
34169
34168
|
accountId: z.ZodString;
|
|
34170
34169
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34171
34170
|
pending: "pending";
|
|
@@ -34173,11 +34172,12 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
34173
34172
|
suspended: "suspended";
|
|
34174
34173
|
disconnected: "disconnected";
|
|
34175
34174
|
}>>>;
|
|
34175
|
+
tenantId: z.ZodString;
|
|
34176
34176
|
installationId: z.ZodString;
|
|
34177
34177
|
accountLogin: z.ZodString;
|
|
34178
34178
|
accountType: z.ZodEnum<{
|
|
34179
|
-
Organization: "Organization";
|
|
34180
34179
|
User: "User";
|
|
34180
|
+
Organization: "Organization";
|
|
34181
34181
|
}>;
|
|
34182
34182
|
}, z.core.$strip>;
|
|
34183
34183
|
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -36669,13 +36669,13 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
36669
36669
|
in: {};
|
|
36670
36670
|
}>;
|
|
36671
36671
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
36672
|
+
id: z.ZodString;
|
|
36673
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
36672
36674
|
tenantId: z.ZodString;
|
|
36673
36675
|
projectId: z.ZodString;
|
|
36676
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36674
36677
|
agentId: z.ZodString;
|
|
36675
|
-
id: z.ZodString;
|
|
36676
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
36677
36678
|
conversationId: z.ZodString;
|
|
36678
|
-
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36679
36679
|
status: z.ZodDefault<z.ZodEnum<{
|
|
36680
36680
|
failed: "failed";
|
|
36681
36681
|
running: "running";
|
|
@@ -36687,13 +36687,13 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
36687
36687
|
in: {};
|
|
36688
36688
|
}>;
|
|
36689
36689
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
36690
|
+
id: z.ZodOptional<z.ZodString>;
|
|
36691
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
36690
36692
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
36691
36693
|
projectId: z.ZodOptional<z.ZodString>;
|
|
36694
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
36692
36695
|
agentId: z.ZodOptional<z.ZodString>;
|
|
36693
|
-
id: z.ZodOptional<z.ZodString>;
|
|
36694
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
36695
36696
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
36696
|
-
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
36697
36697
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
36698
36698
|
failed: "failed";
|
|
36699
36699
|
running: "running";
|