@inkeep/agents-core 0.0.0-dev-20260408005804 → 0.0.0-dev-20260408074257
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agentFull.d.ts +2 -0
- package/dist/data-access/manage/agentFull.js +12 -12
- package/dist/data-access/manage/agents.d.ts +25 -25
- package/dist/data-access/manage/artifactComponents.d.ts +14 -14
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +16 -16
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +30 -30
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +16 -16
- package/dist/data-access/runtime/apps.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +28 -28
- package/dist/data-access/runtime/feedback.d.ts +6 -6
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +8 -8
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +449 -449
- package/dist/db/runtime/runtime-schema.d.ts +405 -405
- package/dist/dolt/ref-middleware.js +2 -2
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/utils/error.d.ts +51 -51
- package/dist/utils/jwt-helpers.js +1 -1
- package/dist/utils/third-party-mcp-servers/composio-client.js +10 -10
- package/dist/utils/tracer-factory.js +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +50 -50
- package/dist/validation/schemas.d.ts +740 -740
- 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
|
-
id: z.ZodString;
|
|
743
742
|
name: z.ZodString;
|
|
743
|
+
id: z.ZodString;
|
|
744
|
+
description: z.ZodNullable<z.ZodString>;
|
|
744
745
|
createdAt: z.ZodString;
|
|
745
746
|
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
|
-
id: z.ZodString;
|
|
838
837
|
name: z.ZodString;
|
|
838
|
+
id: z.ZodString;
|
|
839
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
839
840
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
840
841
|
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
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
875
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
877
878
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
878
879
|
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>;
|
|
@@ -1335,9 +1335,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1335
1335
|
}>;
|
|
1336
1336
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1337
1337
|
id: z.ZodString;
|
|
1338
|
+
agentId: z.ZodString;
|
|
1338
1339
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1339
1340
|
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_zod19.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "name" | "tenantId" | "projectId" | "id" | "description" | "createdAt" | "updatedAt" | "models" | "stopWhen" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "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
|
-
id: z.ZodString;
|
|
2829
2828
|
name: z.ZodString;
|
|
2829
|
+
id: z.ZodString;
|
|
2830
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2830
2831
|
createdAt: z.ZodString;
|
|
2831
2832
|
updatedAt: z.ZodString;
|
|
2832
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2833
2833
|
models: z.ZodNullable<z.ZodType<{
|
|
2834
2834
|
base?: {
|
|
2835
2835
|
model?: string | undefined;
|
|
@@ -2916,9 +2916,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2916
2916
|
}, {
|
|
2917
2917
|
transferCountIs?: number | undefined;
|
|
2918
2918
|
}>>>;
|
|
2919
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
2920
2919
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2921
2920
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2921
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2922
2922
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2923
2923
|
enabled?: boolean | undefined;
|
|
2924
2924
|
numEvents?: number | undefined;
|
|
@@ -2979,8 +2979,8 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2979
2979
|
executionMode: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
|
-
id: z.ZodString;
|
|
2983
2982
|
name: z.ZodString;
|
|
2983
|
+
id: z.ZodString;
|
|
2984
2984
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2985
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2986
2986
|
base?: {
|
|
@@ -3068,9 +3068,9 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3068
3068
|
}, {
|
|
3069
3069
|
transferCountIs?: number | undefined;
|
|
3070
3070
|
}>>>>;
|
|
3071
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3072
3071
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
3072
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3074
3074
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3075
3075
|
enabled?: boolean | undefined;
|
|
3076
3076
|
numEvents?: number | undefined;
|
|
@@ -3219,9 +3219,9 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3219
3219
|
}, {
|
|
3220
3220
|
transferCountIs?: number | undefined;
|
|
3221
3221
|
}>>>>>>;
|
|
3222
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3223
3222
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
3223
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3225
3225
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3226
3226
|
enabled?: boolean | undefined;
|
|
3227
3227
|
numEvents?: number | 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
|
-
pending: "pending";
|
|
3552
3551
|
success: "success";
|
|
3552
|
+
pending: "pending";
|
|
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_zod19.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" | "header" | "body";
|
|
3782
3782
|
key: string;
|
|
@@ -3812,8 +3812,8 @@ declare const TriggerInsertSchema: drizzle_zod19.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" | "header" | "body";
|
|
3819
3819
|
key: string;
|
|
@@ -4145,8 +4145,8 @@ declare const TriggerInsertSchema: drizzle_zod19.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" | "header" | "body";
|
|
4152
4152
|
key: string;
|
|
@@ -4182,8 +4182,8 @@ declare const TriggerInsertSchema: drizzle_zod19.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" | "header" | "body";
|
|
4189
4189
|
key: string;
|
|
@@ -4358,7 +4358,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4358
4358
|
}, {}, {
|
|
4359
4359
|
length: 256;
|
|
4360
4360
|
}>;
|
|
4361
|
-
}, "
|
|
4361
|
+
}, "name" | "tenantId" | "projectId" | "id" | "description" | "agentId" | "enabled" | "createdAt" | "updatedAt" | "createdBy" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId">, 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,28 +4382,29 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4382
4382
|
in: {};
|
|
4383
4383
|
}>;
|
|
4384
4384
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4385
|
-
id: z.ZodString;
|
|
4386
4385
|
name: z.ZodString;
|
|
4386
|
+
id: z.ZodString;
|
|
4387
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4388
|
+
enabled: z.ZodBoolean;
|
|
4387
4389
|
createdAt: z.ZodString;
|
|
4388
4390
|
updatedAt: z.ZodString;
|
|
4389
|
-
|
|
4391
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4390
4392
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4391
|
-
enabled: z.ZodBoolean;
|
|
4392
4393
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4393
4394
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4394
4395
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4395
4396
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4396
4397
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4397
4398
|
algorithm: z.ZodEnum<{
|
|
4399
|
+
md5: "md5";
|
|
4398
4400
|
sha256: "sha256";
|
|
4399
4401
|
sha512: "sha512";
|
|
4400
4402
|
sha384: "sha384";
|
|
4401
4403
|
sha1: "sha1";
|
|
4402
|
-
md5: "md5";
|
|
4403
4404
|
}>;
|
|
4404
4405
|
encoding: z.ZodEnum<{
|
|
4405
|
-
hex: "hex";
|
|
4406
4406
|
base64: "base64";
|
|
4407
|
+
hex: "hex";
|
|
4407
4408
|
}>;
|
|
4408
4409
|
signature: z.ZodObject<{
|
|
4409
4410
|
source: z.ZodEnum<{
|
|
@@ -4439,61 +4440,61 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4439
4440
|
}, z.core.$strip>>;
|
|
4440
4441
|
}, z.core.$strip>>>;
|
|
4441
4442
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4442
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4443
4443
|
}, z.core.$strip>;
|
|
4444
4444
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4445
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4446
4445
|
name: z.ZodString;
|
|
4446
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4447
4447
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4448
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4449
4448
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4449
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4450
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4450
4451
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4451
4452
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4452
4453
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4453
4454
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4454
4455
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4455
4456
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4456
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
4457
|
}, z.core.$strip>;
|
|
4458
4458
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4459
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4460
4459
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4460
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4461
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4462
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4461
4463
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4462
4464
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4463
|
-
|
|
4465
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4464
4466
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4465
|
-
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4466
4467
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4467
4468
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4468
4469
|
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4469
4470
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4470
4471
|
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4471
4472
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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
|
-
id: z.ZodString;
|
|
4476
4475
|
name: z.ZodString;
|
|
4476
|
+
id: z.ZodString;
|
|
4477
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4478
|
+
enabled: z.ZodBoolean;
|
|
4477
4479
|
createdAt: z.ZodString;
|
|
4478
4480
|
updatedAt: z.ZodString;
|
|
4479
|
-
|
|
4481
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4480
4482
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4481
|
-
enabled: z.ZodBoolean;
|
|
4482
4483
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4483
4484
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4484
4485
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4485
4486
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4486
4487
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4487
4488
|
algorithm: z.ZodEnum<{
|
|
4489
|
+
md5: "md5";
|
|
4488
4490
|
sha256: "sha256";
|
|
4489
4491
|
sha512: "sha512";
|
|
4490
4492
|
sha384: "sha384";
|
|
4491
4493
|
sha1: "sha1";
|
|
4492
|
-
md5: "md5";
|
|
4493
4494
|
}>;
|
|
4494
4495
|
encoding: z.ZodEnum<{
|
|
4495
|
-
hex: "hex";
|
|
4496
4496
|
base64: "base64";
|
|
4497
|
+
hex: "hex";
|
|
4497
4498
|
}>;
|
|
4498
4499
|
signature: z.ZodObject<{
|
|
4499
4500
|
source: z.ZodEnum<{
|
|
@@ -4529,7 +4530,6 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4529
4530
|
}, z.core.$strip>>;
|
|
4530
4531
|
}, z.core.$strip>>>;
|
|
4531
4532
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4532
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4533
4533
|
webhookUrl: z.ZodString;
|
|
4534
4534
|
}, z.core.$strip>;
|
|
4535
4535
|
declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -5015,7 +5015,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5015
5015
|
}, {}, {
|
|
5016
5016
|
length: 256;
|
|
5017
5017
|
}>;
|
|
5018
|
-
}, "
|
|
5018
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "status" | "ref" | "createdAt" | "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>>>;
|
|
@@ -5051,7 +5051,7 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5051
5051
|
}>;
|
|
5052
5052
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5053
5053
|
id: z.ZodString;
|
|
5054
|
-
|
|
5054
|
+
status: z.ZodString;
|
|
5055
5055
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5056
5056
|
type: z.ZodEnum<{
|
|
5057
5057
|
commit: "commit";
|
|
@@ -5061,7 +5061,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5061
5061
|
name: z.ZodString;
|
|
5062
5062
|
hash: z.ZodString;
|
|
5063
5063
|
}, z.core.$strip>>>;
|
|
5064
|
-
|
|
5064
|
+
createdAt: z.ZodString;
|
|
5065
5065
|
triggerId: z.ZodString;
|
|
5066
5066
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5067
5067
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -5069,7 +5069,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5069
5069
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5070
5070
|
}, z.core.$strip>;
|
|
5071
5071
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5072
|
-
|
|
5072
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5073
5073
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5074
5074
|
type: "commit" | "tag" | "branch";
|
|
5075
5075
|
name: string;
|
|
@@ -5087,7 +5087,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5087
5087
|
name: string;
|
|
5088
5088
|
hash: string;
|
|
5089
5089
|
}>>>>;
|
|
5090
|
-
|
|
5090
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5091
5091
|
triggerId: z.ZodString;
|
|
5092
5092
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5093
5093
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -5097,7 +5097,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5097
5097
|
}, z.core.$strip>;
|
|
5098
5098
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5099
5099
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5100
|
-
|
|
5100
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5101
5101
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5102
5102
|
type: "commit" | "tag" | "branch";
|
|
5103
5103
|
name: string;
|
|
@@ -5115,7 +5115,7 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5115
5115
|
name: string;
|
|
5116
5116
|
hash: string;
|
|
5117
5117
|
}>>>>>>;
|
|
5118
|
-
|
|
5118
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5119
5119
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5120
5120
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5121
5121
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -5152,17 +5152,17 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5152
5152
|
in: {};
|
|
5153
5153
|
}>;
|
|
5154
5154
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5155
|
-
id: z.ZodString;
|
|
5156
5155
|
name: z.ZodString;
|
|
5157
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5158
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5159
5156
|
tenantId: z.ZodString;
|
|
5160
5157
|
projectId: z.ZodString;
|
|
5158
|
+
id: z.ZodString;
|
|
5159
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5161
5160
|
agentId: z.ZodString;
|
|
5162
5161
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5162
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5163
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5163
5164
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5164
5165
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5165
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5166
5166
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5167
5167
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5168
5168
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5176,15 +5176,15 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5176
5176
|
in: {};
|
|
5177
5177
|
}>;
|
|
5178
5178
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5179
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5180
5179
|
name: z.ZodOptional<z.ZodString>;
|
|
5181
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5182
5180
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5183
5181
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5183
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5184
5184
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5185
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5185
5186
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5186
5187
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5187
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5188
5188
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5189
5189
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5190
5190
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
@@ -5200,16 +5200,16 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5200
5200
|
in: {};
|
|
5201
5201
|
}>;
|
|
5202
5202
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5203
|
-
id: z.ZodString;
|
|
5204
5203
|
name: z.ZodString;
|
|
5205
|
-
|
|
5206
|
-
updatedAt: z.ZodString;
|
|
5207
|
-
ref: z.ZodString;
|
|
5204
|
+
id: z.ZodString;
|
|
5208
5205
|
description: z.ZodNullable<z.ZodString>;
|
|
5209
5206
|
enabled: z.ZodBoolean;
|
|
5207
|
+
ref: z.ZodString;
|
|
5208
|
+
createdAt: z.ZodString;
|
|
5209
|
+
updatedAt: z.ZodString;
|
|
5210
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
5210
5211
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5211
5212
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5212
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
5213
5213
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
5214
5214
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
5215
5215
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5222,12 +5222,12 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5222
5222
|
}, z.core.$strip>;
|
|
5223
5223
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5224
5224
|
name: z.ZodString;
|
|
5225
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5226
5225
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5227
5226
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5227
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5228
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5228
5229
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
5230
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5230
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5231
5231
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5232
5232
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5233
5233
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5241,12 +5241,12 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5241
5241
|
}, z.core.$strip>;
|
|
5242
5242
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5243
5243
|
name: z.ZodString;
|
|
5244
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5245
5244
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5246
5245
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5246
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5247
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5247
5248
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5248
5249
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5249
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5250
5250
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5251
5251
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5252
5252
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5259,14 +5259,14 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5259
5259
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
5260
5260
|
}, z.core.$strip>;
|
|
5261
5261
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5262
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5263
5262
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5264
|
-
|
|
5263
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5265
5264
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5266
5265
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5266
|
+
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5267
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5267
5268
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5268
5269
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5269
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5270
5270
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5271
5271
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5272
5272
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5936,7 +5936,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
5936
5936
|
}, {}, {
|
|
5937
5937
|
length: 256;
|
|
5938
5938
|
}>;
|
|
5939
|
-
}, "
|
|
5939
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "status" | "ref" | "createdAt" | "runAsUserId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
5940
5940
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5941
5941
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
5942
5942
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5976,7 +5976,13 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5976
5976
|
}>;
|
|
5977
5977
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5978
5978
|
id: z.ZodString;
|
|
5979
|
-
|
|
5979
|
+
status: z.ZodEnum<{
|
|
5980
|
+
pending: "pending";
|
|
5981
|
+
failed: "failed";
|
|
5982
|
+
running: "running";
|
|
5983
|
+
completed: "completed";
|
|
5984
|
+
cancelled: "cancelled";
|
|
5985
|
+
}>;
|
|
5980
5986
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5981
5987
|
type: z.ZodEnum<{
|
|
5982
5988
|
commit: "commit";
|
|
@@ -5986,13 +5992,7 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5986
5992
|
name: z.ZodString;
|
|
5987
5993
|
hash: z.ZodString;
|
|
5988
5994
|
}, z.core.$strip>>>;
|
|
5989
|
-
|
|
5990
|
-
pending: "pending";
|
|
5991
|
-
failed: "failed";
|
|
5992
|
-
running: "running";
|
|
5993
|
-
completed: "completed";
|
|
5994
|
-
cancelled: "cancelled";
|
|
5995
|
-
}>;
|
|
5995
|
+
createdAt: z.ZodString;
|
|
5996
5996
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5997
5997
|
scheduledTriggerId: z.ZodString;
|
|
5998
5998
|
scheduledFor: z.ZodString;
|
|
@@ -6004,7 +6004,7 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6004
6004
|
idempotencyKey: z.ZodString;
|
|
6005
6005
|
}, z.core.$strip>;
|
|
6006
6006
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6007
|
-
|
|
6007
|
+
status: z.ZodString;
|
|
6008
6008
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6009
6009
|
type: "commit" | "tag" | "branch";
|
|
6010
6010
|
name: string;
|
|
@@ -6022,7 +6022,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6022
6022
|
name: string;
|
|
6023
6023
|
hash: string;
|
|
6024
6024
|
}>>>>;
|
|
6025
|
-
|
|
6025
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6026
6026
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6027
6027
|
scheduledTriggerId: z.ZodString;
|
|
6028
6028
|
scheduledFor: z.ZodString;
|
|
@@ -6036,7 +6036,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6036
6036
|
}, z.core.$strip>;
|
|
6037
6037
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6038
6038
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
|
-
|
|
6039
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6040
6040
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6041
6041
|
type: "commit" | "tag" | "branch";
|
|
6042
6042
|
name: string;
|
|
@@ -6054,7 +6054,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6054
6054
|
name: string;
|
|
6055
6055
|
hash: string;
|
|
6056
6056
|
}>>>>>>;
|
|
6057
|
-
|
|
6057
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6058
6058
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6059
6059
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6060
6060
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6289,8 +6289,10 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6289
6289
|
}>;
|
|
6290
6290
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6291
6291
|
id: z.ZodString;
|
|
6292
|
-
|
|
6293
|
-
|
|
6292
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6293
|
+
agentId: z.ZodString;
|
|
6294
|
+
subAgentId: z.ZodString;
|
|
6295
|
+
status: z.ZodString;
|
|
6294
6296
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6295
6297
|
type: z.ZodEnum<{
|
|
6296
6298
|
commit: "commit";
|
|
@@ -6300,16 +6302,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6300
6302
|
name: z.ZodString;
|
|
6301
6303
|
hash: z.ZodString;
|
|
6302
6304
|
}, z.core.$strip>>>;
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
subAgentId: z.ZodString;
|
|
6306
|
-
agentId: z.ZodString;
|
|
6305
|
+
createdAt: z.ZodString;
|
|
6306
|
+
updatedAt: z.ZodString;
|
|
6307
6307
|
contextId: z.ZodString;
|
|
6308
6308
|
}, z.core.$strip>;
|
|
6309
6309
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
6310
6310
|
id: z.ZodString;
|
|
6311
|
-
|
|
6312
|
-
|
|
6311
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6312
|
+
agentId: z.ZodString;
|
|
6313
|
+
subAgentId: z.ZodString;
|
|
6314
|
+
status: z.ZodString;
|
|
6313
6315
|
ref: z.ZodObject<{
|
|
6314
6316
|
type: z.ZodEnum<{
|
|
6315
6317
|
commit: "commit";
|
|
@@ -6319,17 +6321,17 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6319
6321
|
name: z.ZodString;
|
|
6320
6322
|
hash: z.ZodString;
|
|
6321
6323
|
}, z.core.$strip>;
|
|
6322
|
-
|
|
6323
|
-
|
|
6324
|
-
subAgentId: z.ZodString;
|
|
6325
|
-
agentId: z.ZodString;
|
|
6324
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6325
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6326
6326
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
6327
6327
|
contextId: z.ZodString;
|
|
6328
6328
|
}, z.core.$strip>;
|
|
6329
6329
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6330
6330
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6331
|
-
|
|
6332
|
-
|
|
6331
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6332
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6333
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6334
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6333
6335
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6334
6336
|
type: z.ZodEnum<{
|
|
6335
6337
|
commit: "commit";
|
|
@@ -6339,10 +6341,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6339
6341
|
name: z.ZodString;
|
|
6340
6342
|
hash: z.ZodString;
|
|
6341
6343
|
}, z.core.$strip>>>;
|
|
6342
|
-
|
|
6343
|
-
|
|
6344
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6345
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6344
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6345
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6346
6346
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6347
6347
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6348
6348
|
}, z.core.$strip>;
|
|
@@ -7279,12 +7279,11 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7279
7279
|
}>;
|
|
7280
7280
|
}, undefined>, undefined>;
|
|
7281
7281
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7282
|
-
id: z.ZodString;
|
|
7283
7282
|
name: z.ZodString;
|
|
7284
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7285
7283
|
tenantId: z.ZodString;
|
|
7286
7284
|
projectId: z.ZodString;
|
|
7287
|
-
|
|
7285
|
+
id: z.ZodString;
|
|
7286
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7288
7287
|
config: z.ZodObject<{
|
|
7289
7288
|
type: z.ZodLiteral<"mcp">;
|
|
7290
7289
|
mcp: z.ZodObject<{
|
|
@@ -7313,6 +7312,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7313
7312
|
}, z.core.$strip>;
|
|
7314
7313
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7315
7314
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
7315
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7316
7316
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7317
7317
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7318
7318
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7400,8 +7400,9 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7400
7400
|
}>;
|
|
7401
7401
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7402
7402
|
id: z.ZodString;
|
|
7403
|
-
|
|
7404
|
-
|
|
7403
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7404
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7405
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
7405
7406
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7406
7407
|
type: z.ZodEnum<{
|
|
7407
7408
|
commit: "commit";
|
|
@@ -7411,17 +7412,17 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7411
7412
|
name: z.ZodString;
|
|
7412
7413
|
hash: z.ZodString;
|
|
7413
7414
|
}, z.core.$strip>>>;
|
|
7415
|
+
createdAt: z.ZodString;
|
|
7416
|
+
updatedAt: z.ZodString;
|
|
7414
7417
|
userId: z.ZodNullable<z.ZodString>;
|
|
7415
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7416
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7417
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
7418
7418
|
activeSubAgentId: z.ZodString;
|
|
7419
7419
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7420
7420
|
}, z.core.$strip>;
|
|
7421
7421
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
7422
7422
|
id: z.ZodString;
|
|
7423
|
-
|
|
7424
|
-
|
|
7423
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7424
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7425
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7425
7426
|
ref: z.ZodObject<{
|
|
7426
7427
|
type: z.ZodEnum<{
|
|
7427
7428
|
commit: "commit";
|
|
@@ -7431,18 +7432,18 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7431
7432
|
name: z.ZodString;
|
|
7432
7433
|
hash: z.ZodString;
|
|
7433
7434
|
}, z.core.$strip>;
|
|
7435
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7436
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7434
7437
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7435
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7436
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7437
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7438
7438
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7439
7439
|
activeSubAgentId: z.ZodString;
|
|
7440
7440
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7441
7441
|
}, z.core.$strip>;
|
|
7442
7442
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7443
7443
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7444
|
-
|
|
7445
|
-
|
|
7444
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7445
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7446
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7446
7447
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7447
7448
|
type: z.ZodEnum<{
|
|
7448
7449
|
commit: "commit";
|
|
@@ -7452,10 +7453,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7452
7453
|
name: z.ZodString;
|
|
7453
7454
|
hash: z.ZodString;
|
|
7454
7455
|
}, z.core.$strip>>>;
|
|
7456
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7457
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7455
7458
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7456
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7457
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7458
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7459
7459
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7460
7460
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7461
7461
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8307,10 +8307,7 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8307
8307
|
}>;
|
|
8308
8308
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8309
8309
|
id: z.ZodString;
|
|
8310
|
-
createdAt: z.ZodString;
|
|
8311
|
-
updatedAt: z.ZodString;
|
|
8312
8310
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8313
|
-
role: z.ZodString;
|
|
8314
8311
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8315
8312
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8316
8313
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8318,6 +8315,9 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8318
8315
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8319
8316
|
taskId: z.ZodNullable<z.ZodString>;
|
|
8320
8317
|
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8318
|
+
createdAt: z.ZodString;
|
|
8319
|
+
updatedAt: z.ZodString;
|
|
8320
|
+
role: z.ZodString;
|
|
8321
8321
|
conversationId: z.ZodString;
|
|
8322
8322
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8323
8323
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8328,10 +8328,7 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8328
8328
|
}, z.core.$strip>;
|
|
8329
8329
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8330
8330
|
id: z.ZodString;
|
|
8331
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8332
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8333
8331
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8334
|
-
role: z.ZodString;
|
|
8335
8332
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8336
8333
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8337
8334
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8339,6 +8336,9 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8339
8336
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8340
8337
|
taskId: z.ZodOptional<z.ZodString>;
|
|
8341
8338
|
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8339
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8340
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8341
|
+
role: z.ZodString;
|
|
8342
8342
|
conversationId: z.ZodString;
|
|
8343
8343
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8344
8344
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8349,10 +8349,7 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8349
8349
|
}, z.core.$strip>;
|
|
8350
8350
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8351
8351
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8352
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8353
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8354
8352
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8355
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8356
8353
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8357
8354
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8358
8355
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8360,6 +8357,9 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8360
8357
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8361
8358
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8362
8359
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8360
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8361
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8362
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8363
8363
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8364
8364
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8365
8365
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8738,34 +8738,34 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8738
8738
|
in: {};
|
|
8739
8739
|
}>;
|
|
8740
8740
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8741
|
+
type: z.ZodString;
|
|
8741
8742
|
id: z.ZodString;
|
|
8743
|
+
details: z.ZodNullable<z.ZodString>;
|
|
8742
8744
|
createdAt: z.ZodString;
|
|
8743
8745
|
updatedAt: z.ZodString;
|
|
8744
|
-
type: z.ZodString;
|
|
8745
|
-
details: z.ZodNullable<z.ZodString>;
|
|
8746
8746
|
conversationId: z.ZodString;
|
|
8747
8747
|
messageId: z.ZodNullable<z.ZodString>;
|
|
8748
8748
|
}, z.core.$strip>;
|
|
8749
8749
|
declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
8750
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8751
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8752
8750
|
type: z.ZodEnum<{
|
|
8753
8751
|
positive: "positive";
|
|
8754
8752
|
negative: "negative";
|
|
8755
8753
|
}>;
|
|
8756
8754
|
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8755
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8756
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8757
8757
|
conversationId: z.ZodString;
|
|
8758
8758
|
messageId: z.ZodOptional<z.ZodString>;
|
|
8759
8759
|
id: z.ZodOptional<z.ZodString>;
|
|
8760
8760
|
}, z.core.$strip>;
|
|
8761
8761
|
declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
8762
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8763
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8764
8762
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
8765
8763
|
positive: "positive";
|
|
8766
8764
|
negative: "negative";
|
|
8767
8765
|
}>>>;
|
|
8768
8766
|
details: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8767
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8768
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8769
8769
|
}, z.core.$strip>;
|
|
8770
8770
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
8771
8771
|
createdAt: z.ZodString;
|
|
@@ -8847,8 +8847,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8847
8847
|
}>;
|
|
8848
8848
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
8849
8849
|
id: z.ZodString;
|
|
8850
|
-
|
|
8851
|
-
updatedAt: z.ZodString;
|
|
8850
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8852
8851
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8853
8852
|
type: z.ZodEnum<{
|
|
8854
8853
|
commit: "commit";
|
|
@@ -8858,7 +8857,8 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8858
8857
|
name: z.ZodString;
|
|
8859
8858
|
hash: z.ZodString;
|
|
8860
8859
|
}, z.core.$strip>>>;
|
|
8861
|
-
|
|
8860
|
+
createdAt: z.ZodString;
|
|
8861
|
+
updatedAt: z.ZodString;
|
|
8862
8862
|
contextConfigId: z.ZodString;
|
|
8863
8863
|
conversationId: z.ZodString;
|
|
8864
8864
|
contextVariableKey: z.ZodString;
|
|
@@ -8868,8 +8868,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8868
8868
|
}, z.core.$strip>;
|
|
8869
8869
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
8870
8870
|
id: z.ZodString;
|
|
8871
|
-
|
|
8872
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8871
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8873
8872
|
ref: z.ZodObject<{
|
|
8874
8873
|
type: z.ZodEnum<{
|
|
8875
8874
|
commit: "commit";
|
|
@@ -8879,7 +8878,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8879
8878
|
name: z.ZodString;
|
|
8880
8879
|
hash: z.ZodString;
|
|
8881
8880
|
}, z.core.$strip>;
|
|
8882
|
-
|
|
8881
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8882
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8883
8883
|
contextConfigId: z.ZodString;
|
|
8884
8884
|
conversationId: z.ZodString;
|
|
8885
8885
|
contextVariableKey: z.ZodString;
|
|
@@ -8889,8 +8889,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8889
8889
|
}, z.core.$strip>;
|
|
8890
8890
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8891
8891
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8892
|
-
|
|
8893
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8892
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8894
8893
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8895
8894
|
type: z.ZodEnum<{
|
|
8896
8895
|
commit: "commit";
|
|
@@ -8900,7 +8899,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8900
8899
|
name: z.ZodString;
|
|
8901
8900
|
hash: z.ZodString;
|
|
8902
8901
|
}, z.core.$strip>>>;
|
|
8903
|
-
|
|
8902
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8903
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8904
8904
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8905
8905
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8906
8906
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8992,8 +8992,6 @@ declare const DatasetRunUpdateSchema: z.ZodObject<{
|
|
|
8992
8992
|
}>;
|
|
8993
8993
|
declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
8994
8994
|
id: z.ZodString;
|
|
8995
|
-
createdAt: z.ZodString;
|
|
8996
|
-
updatedAt: z.ZodString;
|
|
8997
8995
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8998
8996
|
type: z.ZodEnum<{
|
|
8999
8997
|
commit: "commit";
|
|
@@ -9003,13 +9001,13 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9003
9001
|
name: z.ZodString;
|
|
9004
9002
|
hash: z.ZodString;
|
|
9005
9003
|
}, z.core.$strip>>>;
|
|
9004
|
+
createdAt: z.ZodString;
|
|
9005
|
+
updatedAt: z.ZodString;
|
|
9006
9006
|
datasetId: z.ZodString;
|
|
9007
9007
|
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9008
9008
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9009
9009
|
}, z.core.$strip>;
|
|
9010
9010
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9011
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9012
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9013
9011
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9014
9012
|
type: "commit" | "tag" | "branch";
|
|
9015
9013
|
name: string;
|
|
@@ -9027,13 +9025,13 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9027
9025
|
name: string;
|
|
9028
9026
|
hash: string;
|
|
9029
9027
|
}>>>>;
|
|
9028
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9029
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9030
9030
|
datasetId: z.ZodString;
|
|
9031
9031
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9032
9032
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9033
9033
|
}, z.core.$strip>;
|
|
9034
9034
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9035
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9036
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9037
9035
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9038
9036
|
type: "commit" | "tag" | "branch";
|
|
9039
9037
|
name: string;
|
|
@@ -9051,6 +9049,8 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9051
9049
|
name: string;
|
|
9052
9050
|
hash: string;
|
|
9053
9051
|
}>>>>>>;
|
|
9052
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9053
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9054
9054
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9055
9055
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9056
9056
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9744,26 +9744,26 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
9744
9744
|
in: {};
|
|
9745
9745
|
}>;
|
|
9746
9746
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
9747
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9747
9748
|
id: z.ZodString;
|
|
9748
9749
|
createdAt: z.ZodString;
|
|
9749
9750
|
updatedAt: z.ZodString;
|
|
9750
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9751
9751
|
conversationId: z.ZodString;
|
|
9752
9752
|
evaluatorId: z.ZodString;
|
|
9753
9753
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
9754
9754
|
}, z.core.$strip>;
|
|
9755
9755
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9756
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9756
9757
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9757
9758
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9758
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9759
9759
|
conversationId: z.ZodString;
|
|
9760
9760
|
evaluatorId: z.ZodString;
|
|
9761
9761
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9762
9762
|
}, z.core.$strip>;
|
|
9763
9763
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9764
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9764
9765
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9765
9766
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9766
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9767
9767
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9768
9768
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9769
9769
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9849,8 +9849,6 @@ declare const EvaluationRunUpdateSchema: z.ZodObject<{
|
|
|
9849
9849
|
}>;
|
|
9850
9850
|
declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
9851
9851
|
id: z.ZodString;
|
|
9852
|
-
createdAt: z.ZodString;
|
|
9853
|
-
updatedAt: z.ZodString;
|
|
9854
9852
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9855
9853
|
type: z.ZodEnum<{
|
|
9856
9854
|
commit: "commit";
|
|
@@ -9860,12 +9858,12 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
9860
9858
|
name: z.ZodString;
|
|
9861
9859
|
hash: z.ZodString;
|
|
9862
9860
|
}, z.core.$strip>>>;
|
|
9861
|
+
createdAt: z.ZodString;
|
|
9862
|
+
updatedAt: z.ZodString;
|
|
9863
9863
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9864
9864
|
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9865
9865
|
}, z.core.$strip>;
|
|
9866
9866
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
9867
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9868
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9869
9867
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9870
9868
|
type: "commit" | "tag" | "branch";
|
|
9871
9869
|
name: string;
|
|
@@ -9883,12 +9881,12 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
9883
9881
|
name: string;
|
|
9884
9882
|
hash: string;
|
|
9885
9883
|
}>>>>;
|
|
9884
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
9885
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9886
9886
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9887
9887
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9888
9888
|
}, z.core.$strip>;
|
|
9889
9889
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
9890
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9891
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9892
9890
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9893
9891
|
type: "commit" | "tag" | "branch";
|
|
9894
9892
|
name: string;
|
|
@@ -9906,6 +9904,8 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
9906
9904
|
name: string;
|
|
9907
9905
|
hash: string;
|
|
9908
9906
|
}>>>>>>;
|
|
9907
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9908
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9909
9909
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9910
9910
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9911
9911
|
}, z.core.$strip>;
|
|
@@ -10227,35 +10227,35 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10227
10227
|
in: {};
|
|
10228
10228
|
}>;
|
|
10229
10229
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10230
|
-
id: z.ZodString;
|
|
10231
10230
|
name: z.ZodString;
|
|
10231
|
+
id: z.ZodString;
|
|
10232
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10232
10233
|
createdAt: z.ZodString;
|
|
10233
10234
|
updatedAt: z.ZodString;
|
|
10234
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10235
10235
|
isActive: z.ZodBoolean;
|
|
10236
10236
|
}, z.core.$strip>;
|
|
10237
10237
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10238
10238
|
name: z.ZodString;
|
|
10239
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10239
10240
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10240
10241
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10241
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10242
10242
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10243
10243
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10244
10244
|
}, z.core.$strip>;
|
|
10245
10245
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10246
10246
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10247
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10247
10248
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10248
10249
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10249
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10250
10250
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10251
10251
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10252
10252
|
}, z.core.$strip>;
|
|
10253
10253
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10254
|
-
id: z.ZodString;
|
|
10255
10254
|
name: z.ZodString;
|
|
10255
|
+
id: z.ZodString;
|
|
10256
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10256
10257
|
createdAt: z.ZodString;
|
|
10257
10258
|
updatedAt: z.ZodString;
|
|
10258
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10259
10259
|
isActive: z.ZodBoolean;
|
|
10260
10260
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10261
10261
|
}, z.core.$strip>;
|
|
@@ -12401,12 +12401,12 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
12401
12401
|
in: {};
|
|
12402
12402
|
}>;
|
|
12403
12403
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
12404
|
-
id: z.ZodString;
|
|
12405
12404
|
name: z.ZodString;
|
|
12405
|
+
id: z.ZodString;
|
|
12406
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12407
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12406
12408
|
createdAt: z.ZodString;
|
|
12407
12409
|
updatedAt: z.ZodString;
|
|
12408
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12409
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12410
12410
|
model: z.ZodType<{
|
|
12411
12411
|
model?: string | undefined;
|
|
12412
12412
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -12433,10 +12433,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
12433
12433
|
}, z.core.$strip>;
|
|
12434
12434
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12435
12435
|
name: z.ZodString;
|
|
12436
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12437
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12436
12438
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12437
12439
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12438
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12439
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12440
12440
|
model: z.ZodType<{
|
|
12441
12441
|
model?: string | undefined;
|
|
12442
12442
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -12463,10 +12463,10 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12463
12463
|
}, z.core.$strip>;
|
|
12464
12464
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12465
12465
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12466
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12467
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12466
12468
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12467
12469
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12468
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12469
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12470
12470
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12471
12471
|
model?: string | undefined;
|
|
12472
12472
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -12737,8 +12737,8 @@ declare const DatasetUpdateSchema: z.ZodObject<{
|
|
|
12737
12737
|
in: {};
|
|
12738
12738
|
}>;
|
|
12739
12739
|
declare const DatasetApiSelectSchema: z.ZodObject<{
|
|
12740
|
-
id: z.ZodString;
|
|
12741
12740
|
name: z.ZodString;
|
|
12741
|
+
id: z.ZodString;
|
|
12742
12742
|
createdAt: z.ZodString;
|
|
12743
12743
|
updatedAt: z.ZodString;
|
|
12744
12744
|
}, z.core.$strip>;
|
|
@@ -13078,28 +13078,28 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13078
13078
|
in: {};
|
|
13079
13079
|
}>;
|
|
13080
13080
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13081
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13081
13082
|
id: z.ZodString;
|
|
13082
13083
|
createdAt: z.ZodString;
|
|
13083
13084
|
updatedAt: z.ZodString;
|
|
13084
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13085
13085
|
datasetId: z.ZodString;
|
|
13086
13086
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
13087
13087
|
}, z.core.$strip>;
|
|
13088
13088
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13089
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13089
13090
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13090
13091
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13091
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13092
13092
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13093
13093
|
}, z.core.$strip>;
|
|
13094
13094
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13095
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13095
13096
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13096
13097
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13097
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13098
13098
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13099
13099
|
}, z.core.$strip>;
|
|
13100
13100
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13101
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13102
13101
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13102
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13103
13103
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13104
13104
|
agentId: z.ZodString;
|
|
13105
13105
|
}, z.core.$strip>;
|
|
@@ -13455,25 +13455,25 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
13455
13455
|
in: {};
|
|
13456
13456
|
}>;
|
|
13457
13457
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
13458
|
-
id: z.ZodString;
|
|
13459
13458
|
name: z.ZodString;
|
|
13459
|
+
id: z.ZodString;
|
|
13460
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13460
13461
|
createdAt: z.ZodString;
|
|
13461
13462
|
updatedAt: z.ZodString;
|
|
13462
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13463
13463
|
datasetId: z.ZodString;
|
|
13464
13464
|
}, z.core.$strip>;
|
|
13465
13465
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13466
13466
|
name: z.ZodString;
|
|
13467
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13467
13468
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13468
13469
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13469
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13470
13470
|
datasetId: z.ZodString;
|
|
13471
13471
|
}, z.core.$strip>;
|
|
13472
13472
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13473
13473
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13474
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13474
13475
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13475
13476
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13476
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13477
13477
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13478
13478
|
}, z.core.$strip>;
|
|
13479
13479
|
declare const AgentDatasetRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -13763,15 +13763,15 @@ declare const AgentDatasetRelationUpdateSchema: z.ZodObject<{
|
|
|
13763
13763
|
}>;
|
|
13764
13764
|
declare const AgentDatasetRelationApiSelectSchema: z.ZodObject<{
|
|
13765
13765
|
id: z.ZodString;
|
|
13766
|
+
agentId: z.ZodString;
|
|
13766
13767
|
createdAt: z.ZodString;
|
|
13767
13768
|
updatedAt: z.ZodString;
|
|
13768
|
-
agentId: z.ZodString;
|
|
13769
13769
|
datasetId: z.ZodString;
|
|
13770
13770
|
}, z.core.$strip>;
|
|
13771
13771
|
declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
13772
|
+
agentId: z.ZodString;
|
|
13772
13773
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13773
13774
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13774
|
-
agentId: z.ZodString;
|
|
13775
13775
|
datasetId: z.ZodString;
|
|
13776
13776
|
}, z.core.$strip>;
|
|
13777
13777
|
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14061,15 +14061,15 @@ declare const AgentEvaluatorRelationUpdateSchema: z.ZodObject<{
|
|
|
14061
14061
|
}>;
|
|
14062
14062
|
declare const AgentEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
14063
14063
|
id: z.ZodString;
|
|
14064
|
+
agentId: z.ZodString;
|
|
14064
14065
|
createdAt: z.ZodString;
|
|
14065
14066
|
updatedAt: z.ZodString;
|
|
14066
|
-
agentId: z.ZodString;
|
|
14067
14067
|
evaluatorId: z.ZodString;
|
|
14068
14068
|
}, z.core.$strip>;
|
|
14069
14069
|
declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
14070
|
+
agentId: z.ZodString;
|
|
14070
14071
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14071
14072
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14072
|
-
agentId: z.ZodString;
|
|
14073
14073
|
evaluatorId: z.ZodString;
|
|
14074
14074
|
}, z.core.$strip>;
|
|
14075
14075
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14731,11 +14731,11 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14731
14731
|
}>;
|
|
14732
14732
|
}, undefined>, undefined>;
|
|
14733
14733
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
14734
|
-
id: z.ZodString;
|
|
14735
14734
|
name: z.ZodString;
|
|
14736
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14737
14735
|
tenantId: z.ZodString;
|
|
14738
14736
|
projectId: z.ZodString;
|
|
14737
|
+
id: z.ZodString;
|
|
14738
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14739
14739
|
props: z.ZodType<{
|
|
14740
14740
|
[x: string]: unknown;
|
|
14741
14741
|
type: "object";
|
|
@@ -14783,11 +14783,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14783
14783
|
in: {};
|
|
14784
14784
|
}>;
|
|
14785
14785
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
14786
|
-
id: z.ZodOptional<z.ZodString>;
|
|
14787
14786
|
name: z.ZodOptional<z.ZodString>;
|
|
14788
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14789
14787
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14790
14788
|
projectId: z.ZodOptional<z.ZodString>;
|
|
14789
|
+
id: z.ZodOptional<z.ZodString>;
|
|
14790
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14791
14791
|
props: z.ZodOptional<z.ZodType<{
|
|
14792
14792
|
[x: string]: unknown;
|
|
14793
14793
|
type: "object";
|
|
@@ -14835,10 +14835,8 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
14835
14835
|
in: {};
|
|
14836
14836
|
}>;
|
|
14837
14837
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
14838
|
-
id: z.ZodString;
|
|
14839
14838
|
name: z.ZodString;
|
|
14840
|
-
|
|
14841
|
-
updatedAt: z.ZodString;
|
|
14839
|
+
id: z.ZodString;
|
|
14842
14840
|
description: z.ZodNullable<z.ZodString>;
|
|
14843
14841
|
props: z.ZodType<{
|
|
14844
14842
|
[x: string]: unknown;
|
|
@@ -14882,6 +14880,8 @@ declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
|
14882
14880
|
component: string;
|
|
14883
14881
|
mockData: Record<string, unknown>;
|
|
14884
14882
|
}>>>;
|
|
14883
|
+
createdAt: z.ZodString;
|
|
14884
|
+
updatedAt: z.ZodString;
|
|
14885
14885
|
}, z.core.$strip>;
|
|
14886
14886
|
declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
14887
14887
|
id: z.ZodString;
|
|
@@ -15462,7 +15462,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15462
15462
|
}, {}, {
|
|
15463
15463
|
length: 256;
|
|
15464
15464
|
}>;
|
|
15465
|
-
}, "
|
|
15465
|
+
}, "tenantId" | "projectId" | "id" | "agentId" | "subAgentId" | "createdAt" | "dataComponentId">, undefined>, undefined>;
|
|
15466
15466
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15467
15467
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15468
15468
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15477,13 +15477,13 @@ declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
|
15477
15477
|
}>;
|
|
15478
15478
|
declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<{
|
|
15479
15479
|
id: z.ZodString;
|
|
15480
|
-
createdAt: z.ZodString;
|
|
15481
15480
|
subAgentId: z.ZodString;
|
|
15481
|
+
createdAt: z.ZodString;
|
|
15482
15482
|
dataComponentId: z.ZodString;
|
|
15483
15483
|
}, z.core.$strip>;
|
|
15484
15484
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
15485
|
-
subAgentId: z.ZodString;
|
|
15486
15485
|
agentId: z.ZodString;
|
|
15486
|
+
subAgentId: z.ZodString;
|
|
15487
15487
|
dataComponentId: z.ZodString;
|
|
15488
15488
|
}, {
|
|
15489
15489
|
out: {};
|
|
@@ -15491,8 +15491,8 @@ declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
|
15491
15491
|
}>;
|
|
15492
15492
|
declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
15493
15493
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15494
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15495
15494
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15495
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15496
15496
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15497
15497
|
}, z.core.$strip>;
|
|
15498
15498
|
declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -15977,10 +15977,8 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15977
15977
|
in: {};
|
|
15978
15978
|
}>;
|
|
15979
15979
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15980
|
-
id: z.ZodString;
|
|
15981
15980
|
name: z.ZodString;
|
|
15982
|
-
|
|
15983
|
-
updatedAt: z.ZodString;
|
|
15981
|
+
id: z.ZodString;
|
|
15984
15982
|
description: z.ZodNullable<z.ZodString>;
|
|
15985
15983
|
props: z.ZodNullable<z.ZodType<{
|
|
15986
15984
|
[x: string]: unknown;
|
|
@@ -16024,6 +16022,8 @@ declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
|
16024
16022
|
component: string;
|
|
16025
16023
|
mockData: Record<string, unknown>;
|
|
16026
16024
|
}>>>;
|
|
16025
|
+
createdAt: z.ZodString;
|
|
16026
|
+
updatedAt: z.ZodString;
|
|
16027
16027
|
}, z.core.$strip>;
|
|
16028
16028
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
16029
16029
|
id: z.ZodString;
|
|
@@ -16054,10 +16054,8 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16054
16054
|
in: {};
|
|
16055
16055
|
}>;
|
|
16056
16056
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16057
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16058
16057
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16059
|
-
|
|
16060
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16058
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16061
16059
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16062
16060
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
16063
16061
|
[x: string]: unknown;
|
|
@@ -16101,6 +16099,8 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16101
16099
|
component: string;
|
|
16102
16100
|
mockData: Record<string, unknown>;
|
|
16103
16101
|
}>>>>>>;
|
|
16102
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16103
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16104
16104
|
}, z.core.$strip>;
|
|
16105
16105
|
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16106
16106
|
artifactComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -16393,13 +16393,13 @@ declare const SubAgentArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
16393
16393
|
}>;
|
|
16394
16394
|
declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
16395
16395
|
id: z.ZodString;
|
|
16396
|
-
createdAt: z.ZodString;
|
|
16397
16396
|
subAgentId: z.ZodString;
|
|
16397
|
+
createdAt: z.ZodString;
|
|
16398
16398
|
artifactComponentId: z.ZodString;
|
|
16399
16399
|
}, z.core.$strip>;
|
|
16400
16400
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
16401
|
-
subAgentId: z.ZodString;
|
|
16402
16401
|
agentId: z.ZodString;
|
|
16402
|
+
subAgentId: z.ZodString;
|
|
16403
16403
|
artifactComponentId: z.ZodString;
|
|
16404
16404
|
}, {
|
|
16405
16405
|
out: {};
|
|
@@ -16407,8 +16407,8 @@ declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16407
16407
|
}>;
|
|
16408
16408
|
declare const SubAgentArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16409
16409
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16410
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16411
16410
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16411
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16412
16412
|
artifactComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16413
16413
|
}, z.core.$strip>;
|
|
16414
16414
|
declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
@@ -16426,11 +16426,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
16426
16426
|
in: {};
|
|
16427
16427
|
}>;
|
|
16428
16428
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
16429
|
-
id: z.ZodString;
|
|
16430
16429
|
name: z.ZodString;
|
|
16431
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16432
16430
|
tenantId: z.ZodString;
|
|
16433
16431
|
projectId: z.ZodString;
|
|
16432
|
+
id: z.ZodString;
|
|
16433
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16434
16434
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16435
16435
|
baseUrl: z.ZodURL;
|
|
16436
16436
|
}, {
|
|
@@ -16438,11 +16438,11 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16438
16438
|
in: {};
|
|
16439
16439
|
}>;
|
|
16440
16440
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
16441
|
-
id: z.ZodOptional<z.ZodString>;
|
|
16442
16441
|
name: z.ZodOptional<z.ZodString>;
|
|
16443
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16444
16442
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16445
16443
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16444
|
+
id: z.ZodOptional<z.ZodString>;
|
|
16445
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16446
16446
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16447
16447
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16448
16448
|
}, {
|
|
@@ -16450,34 +16450,34 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16450
16450
|
in: {};
|
|
16451
16451
|
}>;
|
|
16452
16452
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
16453
|
-
id: z.ZodString;
|
|
16454
16453
|
name: z.ZodString;
|
|
16454
|
+
id: z.ZodString;
|
|
16455
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16455
16456
|
createdAt: z.ZodString;
|
|
16456
16457
|
updatedAt: z.ZodString;
|
|
16457
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16458
16458
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16459
16459
|
baseUrl: z.ZodString;
|
|
16460
16460
|
}, z.core.$strip>;
|
|
16461
16461
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
16462
|
-
id: z.ZodString;
|
|
16463
16462
|
name: z.ZodString;
|
|
16463
|
+
id: z.ZodString;
|
|
16464
16464
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16465
16465
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16466
16466
|
baseUrl: z.ZodURL;
|
|
16467
16467
|
}, z.core.$strip>;
|
|
16468
16468
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16469
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16470
16469
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16470
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16471
16471
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16472
16472
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16473
16473
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16474
16474
|
}, z.core.$strip>;
|
|
16475
16475
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16476
|
-
id: z.ZodString;
|
|
16477
16476
|
name: z.ZodString;
|
|
16477
|
+
id: z.ZodString;
|
|
16478
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16478
16479
|
createdAt: z.ZodString;
|
|
16479
16480
|
updatedAt: z.ZodString;
|
|
16480
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16481
16481
|
models: z.ZodNullable<z.ZodType<{
|
|
16482
16482
|
base?: {
|
|
16483
16483
|
model?: string | undefined;
|
|
@@ -16568,11 +16568,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16568
16568
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16569
16569
|
type: z.ZodLiteral<"internal">;
|
|
16570
16570
|
}, z.core.$strip>, z.ZodObject<{
|
|
16571
|
-
id: z.ZodString;
|
|
16572
16571
|
name: z.ZodString;
|
|
16572
|
+
id: z.ZodString;
|
|
16573
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16573
16574
|
createdAt: z.ZodString;
|
|
16574
16575
|
updatedAt: z.ZodString;
|
|
16575
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16576
16576
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16577
16577
|
baseUrl: z.ZodString;
|
|
16578
16578
|
type: z.ZodLiteral<"external">;
|
|
@@ -17039,20 +17039,20 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
17039
17039
|
}>;
|
|
17040
17040
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
17041
17041
|
name: z.ZodOptional<z.ZodString>;
|
|
17042
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17042
17043
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17043
17044
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17044
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17045
17045
|
}, {
|
|
17046
17046
|
out: {};
|
|
17047
17047
|
in: {};
|
|
17048
17048
|
}>;
|
|
17049
17049
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
17050
|
-
id: z.ZodString;
|
|
17051
17050
|
name: z.ZodNullable<z.ZodString>;
|
|
17051
|
+
id: z.ZodString;
|
|
17052
|
+
agentId: z.ZodString;
|
|
17052
17053
|
createdAt: z.ZodString;
|
|
17053
17054
|
updatedAt: z.ZodString;
|
|
17054
17055
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17055
|
-
agentId: z.ZodString;
|
|
17056
17056
|
publicId: z.ZodString;
|
|
17057
17057
|
keyPrefix: z.ZodString;
|
|
17058
17058
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17063,12 +17063,12 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
17063
17063
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
17064
17064
|
data: z.ZodObject<{
|
|
17065
17065
|
apiKey: z.ZodObject<{
|
|
17066
|
-
id: z.ZodString;
|
|
17067
17066
|
name: z.ZodNullable<z.ZodString>;
|
|
17067
|
+
id: z.ZodString;
|
|
17068
|
+
agentId: z.ZodString;
|
|
17068
17069
|
createdAt: z.ZodString;
|
|
17069
17070
|
updatedAt: z.ZodString;
|
|
17070
17071
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17071
|
-
agentId: z.ZodString;
|
|
17072
17072
|
publicId: z.ZodString;
|
|
17073
17073
|
keyPrefix: z.ZodString;
|
|
17074
17074
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17081,19 +17081,19 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17081
17081
|
}, z.core.$strip>;
|
|
17082
17082
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
17083
17083
|
name: z.ZodString;
|
|
17084
|
+
agentId: z.ZodString;
|
|
17084
17085
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17085
17086
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17086
17087
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17087
|
-
agentId: z.ZodString;
|
|
17088
17088
|
}, {
|
|
17089
17089
|
out: {};
|
|
17090
17090
|
in: {};
|
|
17091
17091
|
}>;
|
|
17092
17092
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17093
17093
|
name: z.ZodOptional<z.ZodString>;
|
|
17094
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17094
17095
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17095
17096
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17096
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17097
17097
|
}, {
|
|
17098
17098
|
out: {};
|
|
17099
17099
|
in: {};
|
|
@@ -17890,12 +17890,12 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
17890
17890
|
}>;
|
|
17891
17891
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
17892
17892
|
name: z.ZodOptional<z.ZodString>;
|
|
17893
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17894
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17895
17893
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17896
17894
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17897
|
-
|
|
17895
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17898
17896
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17897
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17898
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17899
17899
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17900
17900
|
type: z.ZodLiteral<"web_client">;
|
|
17901
17901
|
webClient: z.ZodObject<{
|
|
@@ -18506,16 +18506,16 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18506
18506
|
}, {}, {}>;
|
|
18507
18507
|
}, undefined>, undefined>;
|
|
18508
18508
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18509
|
-
id: z.ZodString;
|
|
18510
|
-
name: z.ZodString;
|
|
18511
|
-
createdAt: z.ZodString;
|
|
18512
|
-
updatedAt: z.ZodString;
|
|
18513
18509
|
type: z.ZodString;
|
|
18514
|
-
|
|
18510
|
+
name: z.ZodString;
|
|
18515
18511
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18516
18512
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18517
|
-
|
|
18513
|
+
id: z.ZodString;
|
|
18514
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18518
18515
|
enabled: z.ZodBoolean;
|
|
18516
|
+
createdAt: z.ZodString;
|
|
18517
|
+
updatedAt: z.ZodString;
|
|
18518
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18519
18519
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18520
18520
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18521
18521
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -18549,18 +18549,18 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18549
18549
|
in: {};
|
|
18550
18550
|
}>;
|
|
18551
18551
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18552
|
-
name: z.ZodString;
|
|
18553
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
18554
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18555
18552
|
type: z.ZodEnum<{
|
|
18556
18553
|
web_client: "web_client";
|
|
18557
18554
|
api: "api";
|
|
18558
18555
|
}>;
|
|
18559
|
-
|
|
18556
|
+
name: z.ZodString;
|
|
18560
18557
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18561
18558
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18562
|
-
|
|
18559
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18563
18560
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18561
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
18562
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18563
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18564
18564
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18565
18565
|
type: z.ZodLiteral<"web_client">;
|
|
18566
18566
|
webClient: z.ZodObject<{
|
|
@@ -18594,12 +18594,12 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18594
18594
|
}>;
|
|
18595
18595
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
18596
18596
|
name: z.ZodOptional<z.ZodString>;
|
|
18597
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18598
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18599
18597
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18600
18598
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18601
|
-
|
|
18599
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18602
18600
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18601
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18602
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18603
18603
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18604
18604
|
type: z.ZodLiteral<"web_client">;
|
|
18605
18605
|
webClient: z.ZodObject<{
|
|
@@ -18635,16 +18635,16 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18635
18635
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18636
18636
|
data: z.ZodObject<{
|
|
18637
18637
|
app: z.ZodObject<{
|
|
18638
|
-
id: z.ZodString;
|
|
18639
|
-
name: z.ZodString;
|
|
18640
|
-
createdAt: z.ZodString;
|
|
18641
|
-
updatedAt: z.ZodString;
|
|
18642
18638
|
type: z.ZodString;
|
|
18643
|
-
|
|
18639
|
+
name: z.ZodString;
|
|
18644
18640
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18645
18641
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18646
|
-
|
|
18642
|
+
id: z.ZodString;
|
|
18643
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18647
18644
|
enabled: z.ZodBoolean;
|
|
18645
|
+
createdAt: z.ZodString;
|
|
18646
|
+
updatedAt: z.ZodString;
|
|
18647
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18648
18648
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18649
18649
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18650
18650
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19131,45 +19131,45 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
19131
19131
|
}>;
|
|
19132
19132
|
}, undefined>, undefined>;
|
|
19133
19133
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19134
|
-
id: z.ZodString;
|
|
19135
|
-
name: z.ZodString;
|
|
19136
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19137
19134
|
type: z.ZodString;
|
|
19135
|
+
name: z.ZodString;
|
|
19138
19136
|
tenantId: z.ZodString;
|
|
19139
19137
|
projectId: z.ZodString;
|
|
19140
|
-
|
|
19138
|
+
id: z.ZodString;
|
|
19139
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19140
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19141
19141
|
credentialStoreId: z.ZodString;
|
|
19142
19142
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19143
|
-
|
|
19143
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19144
19144
|
}, {
|
|
19145
19145
|
out: {};
|
|
19146
19146
|
in: {};
|
|
19147
19147
|
}>;
|
|
19148
19148
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
19149
|
-
id: z.ZodOptional<z.ZodString>;
|
|
19150
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19151
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19152
19149
|
type: z.ZodOptional<z.ZodString>;
|
|
19150
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19153
19151
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19154
19152
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19155
|
-
|
|
19153
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19154
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19155
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19156
19156
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
19157
19157
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
19158
|
-
|
|
19158
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19159
19159
|
}, {
|
|
19160
19160
|
out: {};
|
|
19161
19161
|
in: {};
|
|
19162
19162
|
}>;
|
|
19163
19163
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
19164
|
-
id: z.ZodString;
|
|
19165
19164
|
name: z.ZodString;
|
|
19165
|
+
id: z.ZodString;
|
|
19166
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19166
19167
|
createdAt: z.ZodString;
|
|
19167
19168
|
updatedAt: z.ZodString;
|
|
19168
19169
|
userId: z.ZodNullable<z.ZodString>;
|
|
19169
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
19170
19170
|
credentialStoreId: z.ZodString;
|
|
19171
19171
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19172
|
-
|
|
19172
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
19173
19173
|
type: z.ZodEnum<{
|
|
19174
19174
|
readonly memory: "memory";
|
|
19175
19175
|
readonly keychain: "keychain";
|
|
@@ -19753,13 +19753,13 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19753
19753
|
}>>>;
|
|
19754
19754
|
}, z.core.$strip>;
|
|
19755
19755
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
19756
|
-
id: z.ZodString;
|
|
19757
19756
|
name: z.ZodString;
|
|
19757
|
+
id: z.ZodString;
|
|
19758
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19758
19759
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19759
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19760
19760
|
credentialStoreId: z.ZodString;
|
|
19761
19761
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19762
|
-
|
|
19762
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19763
19763
|
type: z.ZodEnum<{
|
|
19764
19764
|
readonly memory: "memory";
|
|
19765
19765
|
readonly keychain: "keychain";
|
|
@@ -19768,13 +19768,13 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19768
19768
|
}>;
|
|
19769
19769
|
}, z.core.$strip>;
|
|
19770
19770
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
19771
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19772
19771
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19772
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19773
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19773
19774
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19774
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19775
19775
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19776
19776
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19777
|
-
|
|
19777
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19778
19778
|
type: z.ZodOptional<z.ZodEnum<{
|
|
19779
19779
|
readonly memory: "memory";
|
|
19780
19780
|
readonly keychain: "keychain";
|
|
@@ -19839,12 +19839,11 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
19839
19839
|
error_description: z.ZodOptional<z.ZodString>;
|
|
19840
19840
|
}, z.core.$strip>;
|
|
19841
19841
|
declare const McpToolSchema: z.ZodObject<{
|
|
19842
|
-
id: z.ZodString;
|
|
19843
19842
|
name: z.ZodString;
|
|
19844
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19845
19843
|
tenantId: z.ZodString;
|
|
19846
19844
|
projectId: z.ZodString;
|
|
19847
|
-
|
|
19845
|
+
id: z.ZodString;
|
|
19846
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19848
19847
|
config: z.ZodObject<{
|
|
19849
19848
|
type: z.ZodLiteral<"mcp">;
|
|
19850
19849
|
mcp: z.ZodObject<{
|
|
@@ -19873,6 +19872,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19873
19872
|
}, z.core.$strip>;
|
|
19874
19873
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19875
19874
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19875
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19876
19876
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19877
19877
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19878
19878
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19898,16 +19898,16 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19898
19898
|
in: {};
|
|
19899
19899
|
}>;
|
|
19900
19900
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
19901
|
-
id: z.ZodString;
|
|
19902
19901
|
name: z.ZodString;
|
|
19902
|
+
id: z.ZodString;
|
|
19903
19903
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19904
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19905
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
19906
19904
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19905
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19907
19906
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19908
19907
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19909
19908
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19910
19909
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19910
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
19911
19911
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19912
19912
|
name: z.ZodString;
|
|
19913
19913
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19934,13 +19934,13 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19934
19934
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
19935
19935
|
}, z.core.$strip>>;
|
|
19936
19936
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19937
|
-
id: z.ZodString;
|
|
19938
19937
|
name: z.ZodString;
|
|
19938
|
+
id: z.ZodString;
|
|
19939
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19939
19940
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19940
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19941
19941
|
credentialStoreId: z.ZodString;
|
|
19942
19942
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19943
|
-
|
|
19943
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19944
19944
|
type: z.ZodEnum<{
|
|
19945
19945
|
readonly memory: "memory";
|
|
19946
19946
|
readonly keychain: "keychain";
|
|
@@ -19960,12 +19960,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19960
19960
|
in: {};
|
|
19961
19961
|
}>;
|
|
19962
19962
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
19963
|
-
id: z.ZodOptional<z.ZodString>;
|
|
19964
19963
|
name: z.ZodOptional<z.ZodString>;
|
|
19965
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19966
19964
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19967
19965
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19968
|
-
|
|
19966
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19967
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19969
19968
|
config: z.ZodOptional<z.ZodObject<{
|
|
19970
19969
|
type: z.ZodLiteral<"mcp">;
|
|
19971
19970
|
mcp: z.ZodObject<{
|
|
@@ -19994,6 +19993,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19994
19993
|
}, z.core.$strip>>;
|
|
19995
19994
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19996
19995
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19996
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19997
19997
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19998
19998
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
19999
19999
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -20003,12 +20003,11 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20003
20003
|
in: {};
|
|
20004
20004
|
}>;
|
|
20005
20005
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20006
|
-
id: z.ZodString;
|
|
20007
20006
|
name: z.ZodString;
|
|
20007
|
+
id: z.ZodString;
|
|
20008
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20008
20009
|
createdAt: z.ZodString;
|
|
20009
20010
|
updatedAt: z.ZodString;
|
|
20010
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20011
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20012
20011
|
config: z.ZodType<{
|
|
20013
20012
|
type: "mcp";
|
|
20014
20013
|
mcp: ToolMcpConfig;
|
|
@@ -20024,16 +20023,16 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20024
20023
|
}>>;
|
|
20025
20024
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
20026
20025
|
credentialScope: z.ZodString;
|
|
20026
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20027
20027
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
20028
20028
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
20029
20029
|
lastError: z.ZodNullable<z.ZodString>;
|
|
20030
20030
|
isWorkApp: z.ZodBoolean;
|
|
20031
20031
|
}, z.core.$strip>;
|
|
20032
20032
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
20033
|
-
id: z.ZodString;
|
|
20034
20033
|
name: z.ZodString;
|
|
20034
|
+
id: z.ZodString;
|
|
20035
20035
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20036
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20037
20036
|
config: z.ZodObject<{
|
|
20038
20037
|
type: z.ZodLiteral<"mcp">;
|
|
20039
20038
|
mcp: z.ZodObject<{
|
|
@@ -20062,16 +20061,16 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20062
20061
|
}, z.core.$strip>;
|
|
20063
20062
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20064
20063
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20064
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20065
20065
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20066
20066
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20067
20067
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20068
20068
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20069
20069
|
}, z.core.$strip>;
|
|
20070
20070
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20071
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20072
20071
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20072
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20073
20073
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20074
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20075
20074
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20076
20075
|
type: z.ZodLiteral<"mcp">;
|
|
20077
20076
|
mcp: z.ZodObject<{
|
|
@@ -20100,6 +20099,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20100
20099
|
}, z.core.$strip>>>;
|
|
20101
20100
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20102
20101
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20102
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20103
20103
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20104
20104
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
20105
20105
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -20439,11 +20439,11 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
20439
20439
|
}>;
|
|
20440
20440
|
}, undefined>, undefined>;
|
|
20441
20441
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
20442
|
-
id: z.ZodString;
|
|
20443
20442
|
name: z.ZodString;
|
|
20444
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20445
20443
|
tenantId: z.ZodString;
|
|
20446
20444
|
projectId: z.ZodString;
|
|
20445
|
+
id: z.ZodString;
|
|
20446
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20447
20447
|
agentId: z.ZodString;
|
|
20448
20448
|
functionId: z.ZodString;
|
|
20449
20449
|
}, {
|
|
@@ -20451,11 +20451,11 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
20451
20451
|
in: {};
|
|
20452
20452
|
}>;
|
|
20453
20453
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
20454
|
-
id: z.ZodOptional<z.ZodString>;
|
|
20455
20454
|
name: z.ZodOptional<z.ZodString>;
|
|
20456
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20457
20455
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20458
20456
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20457
|
+
id: z.ZodOptional<z.ZodString>;
|
|
20458
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20459
20459
|
agentId: z.ZodOptional<z.ZodString>;
|
|
20460
20460
|
functionId: z.ZodOptional<z.ZodString>;
|
|
20461
20461
|
}, {
|
|
@@ -20463,24 +20463,24 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
20463
20463
|
in: {};
|
|
20464
20464
|
}>;
|
|
20465
20465
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20466
|
-
id: z.ZodString;
|
|
20467
20466
|
name: z.ZodString;
|
|
20468
|
-
|
|
20469
|
-
updatedAt: z.ZodString;
|
|
20467
|
+
id: z.ZodString;
|
|
20470
20468
|
description: z.ZodNullable<z.ZodString>;
|
|
20471
20469
|
agentId: z.ZodString;
|
|
20470
|
+
createdAt: z.ZodString;
|
|
20471
|
+
updatedAt: z.ZodString;
|
|
20472
20472
|
functionId: z.ZodString;
|
|
20473
20473
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20474
20474
|
}, z.core.$strip>;
|
|
20475
20475
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
20476
|
-
id: z.ZodString;
|
|
20477
20476
|
name: z.ZodString;
|
|
20477
|
+
id: z.ZodString;
|
|
20478
20478
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20479
20479
|
functionId: z.ZodString;
|
|
20480
20480
|
}, z.core.$strip>;
|
|
20481
20481
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
20482
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20483
20482
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20483
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20484
20484
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20485
20485
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20486
20486
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -20846,9 +20846,9 @@ declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
|
20846
20846
|
}>;
|
|
20847
20847
|
declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
20848
20848
|
id: z.ZodString;
|
|
20849
|
+
subAgentId: z.ZodString;
|
|
20849
20850
|
createdAt: z.ZodString;
|
|
20850
20851
|
updatedAt: z.ZodString;
|
|
20851
|
-
subAgentId: z.ZodString;
|
|
20852
20852
|
functionToolId: z.ZodString;
|
|
20853
20853
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20854
20854
|
}, z.core.$strip>;
|
|
@@ -21243,13 +21243,13 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21243
21243
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
21244
21244
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
21245
21245
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21246
|
-
id: z.ZodString;
|
|
21247
21246
|
name: z.ZodString;
|
|
21247
|
+
id: z.ZodString;
|
|
21248
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21248
21249
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21249
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21250
21250
|
credentialStoreId: z.ZodString;
|
|
21251
21251
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21252
|
-
|
|
21252
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21253
21253
|
type: z.ZodEnum<{
|
|
21254
21254
|
readonly memory: "memory";
|
|
21255
21255
|
readonly keychain: "keychain";
|
|
@@ -21272,9 +21272,9 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
21272
21272
|
in: {};
|
|
21273
21273
|
}>;
|
|
21274
21274
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
21275
|
-
id: z.ZodOptional<z.ZodString>;
|
|
21276
21275
|
tenantId: z.ZodString;
|
|
21277
21276
|
projectId: z.ZodString;
|
|
21277
|
+
id: z.ZodOptional<z.ZodString>;
|
|
21278
21278
|
agentId: z.ZodString;
|
|
21279
21279
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21280
21280
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -21283,9 +21283,9 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
21283
21283
|
in: {};
|
|
21284
21284
|
}>;
|
|
21285
21285
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
21286
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21287
21286
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21288
21287
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21288
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21289
21289
|
agentId: z.ZodOptional<z.ZodString>;
|
|
21290
21290
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
21291
21291
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
@@ -21769,21 +21769,21 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
21769
21769
|
}>;
|
|
21770
21770
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
21771
21771
|
id: z.ZodString;
|
|
21772
|
+
subAgentId: z.ZodString;
|
|
21773
|
+
toolId: z.ZodString;
|
|
21772
21774
|
createdAt: z.ZodString;
|
|
21773
21775
|
updatedAt: z.ZodString;
|
|
21774
|
-
subAgentId: z.ZodString;
|
|
21775
21776
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21776
|
-
toolId: z.ZodString;
|
|
21777
21777
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21778
21778
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21779
21779
|
}, z.core.$strip>;
|
|
21780
21780
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
21781
21781
|
id: z.ZodString;
|
|
21782
|
+
subAgentId: z.ZodString;
|
|
21783
|
+
toolId: z.ZodString;
|
|
21782
21784
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21783
21785
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21784
|
-
subAgentId: z.ZodString;
|
|
21785
21786
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21786
|
-
toolId: z.ZodString;
|
|
21787
21787
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21788
21788
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21789
21789
|
}, z.core.$strip>>>>;
|
|
@@ -21791,11 +21791,11 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
21791
21791
|
}, z.core.$strip>;
|
|
21792
21792
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21793
21793
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21794
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21795
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21794
21796
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21795
21797
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21796
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21797
21798
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21798
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21799
21799
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21800
21800
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21801
21801
|
}, z.core.$strip>>>>>>;
|
|
@@ -22168,9 +22168,9 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
22168
22168
|
}>;
|
|
22169
22169
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
22170
22170
|
id: z.ZodString;
|
|
22171
|
+
subAgentId: z.ZodString;
|
|
22171
22172
|
createdAt: z.ZodString;
|
|
22172
22173
|
updatedAt: z.ZodString;
|
|
22173
|
-
subAgentId: z.ZodString;
|
|
22174
22174
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22175
22175
|
externalAgentId: z.ZodString;
|
|
22176
22176
|
}, z.core.$strip>;
|
|
@@ -22182,9 +22182,9 @@ declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
22182
22182
|
}, z.core.$strip>;
|
|
22183
22183
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22184
22184
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22185
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22185
22186
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22186
22187
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22187
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22188
22188
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22189
22189
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22190
22190
|
}, z.core.$strip>;
|
|
@@ -22555,9 +22555,9 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
22555
22555
|
}>;
|
|
22556
22556
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
22557
22557
|
id: z.ZodString;
|
|
22558
|
+
subAgentId: z.ZodString;
|
|
22558
22559
|
createdAt: z.ZodString;
|
|
22559
22560
|
updatedAt: z.ZodString;
|
|
22560
|
-
subAgentId: z.ZodString;
|
|
22561
22561
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22562
22562
|
targetAgentId: z.ZodString;
|
|
22563
22563
|
}, z.core.$strip>;
|
|
@@ -22569,9 +22569,9 @@ declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
22569
22569
|
}, z.core.$strip>;
|
|
22570
22570
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22571
22571
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22572
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22572
22573
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22573
22574
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22574
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22575
22575
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22576
22576
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22577
22577
|
}, z.core.$strip>;
|
|
@@ -23916,7 +23916,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
23916
23916
|
}, {}, {
|
|
23917
23917
|
length: 256;
|
|
23918
23918
|
}>;
|
|
23919
|
-
}, "
|
|
23919
|
+
}, "type" | "name" | "tenantId" | "projectId" | "id" | "description" | "metadata" | "taskId" | "createdAt" | "updatedAt" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23920
23920
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23921
23921
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23922
23922
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23941,17 +23941,17 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23941
23941
|
in: {};
|
|
23942
23942
|
}>;
|
|
23943
23943
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23944
|
-
id: z.ZodString;
|
|
23945
|
-
name: z.ZodNullable<z.ZodString>;
|
|
23946
|
-
createdAt: z.ZodString;
|
|
23947
|
-
updatedAt: z.ZodString;
|
|
23948
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23949
23944
|
type: z.ZodString;
|
|
23945
|
+
name: z.ZodNullable<z.ZodString>;
|
|
23946
|
+
id: z.ZodString;
|
|
23950
23947
|
description: z.ZodNullable<z.ZodString>;
|
|
23948
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23951
23949
|
taskId: z.ZodString;
|
|
23952
|
-
|
|
23950
|
+
createdAt: z.ZodString;
|
|
23951
|
+
updatedAt: z.ZodString;
|
|
23953
23952
|
contextId: z.ZodString;
|
|
23954
23953
|
visibility: z.ZodNullable<z.ZodString>;
|
|
23954
|
+
toolCallId: z.ZodNullable<z.ZodString>;
|
|
23955
23955
|
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23956
23956
|
summary: z.ZodNullable<z.ZodString>;
|
|
23957
23957
|
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -23959,17 +23959,17 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
23959
23959
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
23960
23960
|
}, z.core.$strip>;
|
|
23961
23961
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23962
|
-
id: z.ZodString;
|
|
23963
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23964
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
23965
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23966
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23967
23962
|
type: z.ZodOptional<z.ZodString>;
|
|
23963
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23964
|
+
id: z.ZodString;
|
|
23968
23965
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23966
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23969
23967
|
taskId: z.ZodString;
|
|
23970
|
-
|
|
23968
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
23969
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23971
23970
|
contextId: z.ZodString;
|
|
23972
23971
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23972
|
+
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23973
23973
|
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23974
23974
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23975
23975
|
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -23977,17 +23977,17 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
23977
23977
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23978
23978
|
}, z.core.$strip>;
|
|
23979
23979
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23980
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23981
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23982
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23983
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23984
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23985
23980
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23981
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23982
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23986
23983
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23984
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23987
23985
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23988
|
-
|
|
23986
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23987
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23989
23988
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23990
23989
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23990
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23991
23991
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23992
23992
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23993
23993
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
@@ -24057,11 +24057,11 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24057
24057
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24058
24058
|
}, z.core.$strip>;
|
|
24059
24059
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24060
|
-
id: z.ZodString;
|
|
24061
24060
|
name: z.ZodString;
|
|
24061
|
+
id: z.ZodString;
|
|
24062
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24062
24063
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24063
24064
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24064
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24065
24065
|
models: z.ZodOptional<z.ZodObject<{
|
|
24066
24066
|
base: z.ZodOptional<z.ZodObject<{
|
|
24067
24067
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24116,18 +24116,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24116
24116
|
}, z.core.$strip>>;
|
|
24117
24117
|
}, z.core.$strip>;
|
|
24118
24118
|
declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
24119
|
-
id: z.ZodString;
|
|
24120
24119
|
name: z.ZodString;
|
|
24120
|
+
id: z.ZodString;
|
|
24121
24121
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24122
24122
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24123
24123
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24124
24124
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24125
24125
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24126
|
-
id: z.ZodString;
|
|
24127
24126
|
name: z.ZodString;
|
|
24127
|
+
id: z.ZodString;
|
|
24128
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24128
24129
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24129
24130
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24130
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24131
24131
|
models: z.ZodOptional<z.ZodObject<{
|
|
24132
24132
|
base: z.ZodOptional<z.ZodObject<{
|
|
24133
24133
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24182,10 +24182,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24182
24182
|
}, z.core.$strip>>;
|
|
24183
24183
|
}, z.core.$strip>>;
|
|
24184
24184
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24185
|
-
id: z.ZodString;
|
|
24186
24185
|
name: z.ZodString;
|
|
24186
|
+
id: z.ZodString;
|
|
24187
24187
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24188
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24189
24188
|
config: z.ZodObject<{
|
|
24190
24189
|
type: z.ZodLiteral<"mcp">;
|
|
24191
24190
|
mcp: z.ZodObject<{
|
|
@@ -24214,14 +24213,15 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24214
24213
|
}, z.core.$strip>;
|
|
24215
24214
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24216
24215
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24216
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24217
24217
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24218
24218
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24219
24219
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24220
24220
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24221
24221
|
}, z.core.$strip>>>;
|
|
24222
24222
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24223
|
-
id: z.ZodString;
|
|
24224
24223
|
name: z.ZodString;
|
|
24224
|
+
id: z.ZodString;
|
|
24225
24225
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24226
24226
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24227
24227
|
baseUrl: z.ZodURL;
|
|
@@ -24232,8 +24232,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24232
24232
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24233
24233
|
}, z.core.$strip>>>;
|
|
24234
24234
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24235
|
-
id: z.ZodString;
|
|
24236
24235
|
name: z.ZodString;
|
|
24236
|
+
id: z.ZodString;
|
|
24237
24237
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24238
24238
|
functionId: z.ZodString;
|
|
24239
24239
|
}, z.core.$strip>>>;
|
|
@@ -24244,18 +24244,18 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24244
24244
|
executeCode: z.ZodString;
|
|
24245
24245
|
}, z.core.$strip>>>;
|
|
24246
24246
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24247
|
-
id: z.ZodOptional<z.ZodString>;
|
|
24248
24247
|
name: z.ZodString;
|
|
24248
|
+
id: z.ZodOptional<z.ZodString>;
|
|
24249
24249
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24250
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24251
24250
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24251
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24252
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24252
24253
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24253
24254
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24254
24255
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24255
24256
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24256
24257
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24257
24258
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24258
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24259
24259
|
}, z.core.$strip>>>;
|
|
24260
24260
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
24261
24261
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24303,18 +24303,18 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24303
24303
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24304
24304
|
}, z.core.$strip>;
|
|
24305
24305
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24306
|
-
id: z.ZodString;
|
|
24307
24306
|
name: z.ZodString;
|
|
24307
|
+
id: z.ZodString;
|
|
24308
24308
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24309
24309
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24310
24310
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24311
24311
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24312
24312
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24313
|
-
id: z.ZodString;
|
|
24314
24313
|
name: z.ZodString;
|
|
24314
|
+
id: z.ZodString;
|
|
24315
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24315
24316
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24316
24317
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24317
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24318
24318
|
models: z.ZodOptional<z.ZodObject<{
|
|
24319
24319
|
base: z.ZodOptional<z.ZodObject<{
|
|
24320
24320
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24369,10 +24369,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24369
24369
|
}, z.core.$strip>>;
|
|
24370
24370
|
}, z.core.$strip>>;
|
|
24371
24371
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24372
|
-
id: z.ZodString;
|
|
24373
24372
|
name: z.ZodString;
|
|
24373
|
+
id: z.ZodString;
|
|
24374
24374
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24375
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24376
24375
|
config: z.ZodObject<{
|
|
24377
24376
|
type: z.ZodLiteral<"mcp">;
|
|
24378
24377
|
mcp: z.ZodObject<{
|
|
@@ -24401,14 +24400,15 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24401
24400
|
}, z.core.$strip>;
|
|
24402
24401
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24403
24402
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24403
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24404
24404
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24405
24405
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24406
24406
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24407
24407
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24408
24408
|
}, z.core.$strip>>>;
|
|
24409
24409
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24410
|
-
id: z.ZodString;
|
|
24411
24410
|
name: z.ZodString;
|
|
24411
|
+
id: z.ZodString;
|
|
24412
24412
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24413
24413
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24414
24414
|
baseUrl: z.ZodURL;
|
|
@@ -24419,8 +24419,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24419
24419
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24420
24420
|
}, z.core.$strip>>>;
|
|
24421
24421
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24422
|
-
id: z.ZodString;
|
|
24423
24422
|
name: z.ZodString;
|
|
24423
|
+
id: z.ZodString;
|
|
24424
24424
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24425
24425
|
functionId: z.ZodString;
|
|
24426
24426
|
}, z.core.$strip>>>;
|
|
@@ -24431,18 +24431,18 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24431
24431
|
executeCode: z.ZodString;
|
|
24432
24432
|
}, z.core.$strip>>>;
|
|
24433
24433
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24434
|
-
id: z.ZodOptional<z.ZodString>;
|
|
24435
24434
|
name: z.ZodString;
|
|
24435
|
+
id: z.ZodOptional<z.ZodString>;
|
|
24436
24436
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24437
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24438
24437
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24438
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24439
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24439
24440
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24440
24441
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24441
24442
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24442
24443
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24443
24444
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24444
24445
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24445
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24446
24446
|
}, z.core.$strip>>>;
|
|
24447
24447
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
24448
24448
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24549,10 +24549,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
24549
24549
|
in: {};
|
|
24550
24550
|
}>;
|
|
24551
24551
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
24552
|
-
id: z.ZodString;
|
|
24553
24552
|
name: z.ZodString;
|
|
24554
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24555
24553
|
tenantId: z.ZodString;
|
|
24554
|
+
id: z.ZodString;
|
|
24555
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24556
24556
|
models: z.ZodObject<{
|
|
24557
24557
|
base: z.ZodObject<{
|
|
24558
24558
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24613,11 +24613,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
24613
24613
|
in: {};
|
|
24614
24614
|
}>;
|
|
24615
24615
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24616
|
-
id: z.ZodString;
|
|
24617
24616
|
name: z.ZodString;
|
|
24617
|
+
id: z.ZodString;
|
|
24618
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24618
24619
|
createdAt: z.ZodString;
|
|
24619
24620
|
updatedAt: z.ZodString;
|
|
24620
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24621
24621
|
models: z.ZodNullable<z.ZodObject<{
|
|
24622
24622
|
base: z.ZodObject<{
|
|
24623
24623
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24647,8 +24647,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24647
24647
|
in: {};
|
|
24648
24648
|
}>;
|
|
24649
24649
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
24650
|
-
id: z.ZodString;
|
|
24651
24650
|
name: z.ZodString;
|
|
24651
|
+
id: z.ZodString;
|
|
24652
24652
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24653
24653
|
models: z.ZodObject<{
|
|
24654
24654
|
base: z.ZodObject<{
|
|
@@ -24710,8 +24710,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
24710
24710
|
in: {};
|
|
24711
24711
|
}>;
|
|
24712
24712
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
24713
|
-
id: z.ZodString;
|
|
24714
24713
|
name: z.ZodString;
|
|
24714
|
+
id: z.ZodString;
|
|
24715
24715
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24716
24716
|
models: z.ZodObject<{
|
|
24717
24717
|
base: z.ZodObject<{
|
|
@@ -24738,18 +24738,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24738
24738
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
24739
24739
|
}, z.core.$strip>>;
|
|
24740
24740
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24741
|
-
id: z.ZodString;
|
|
24742
24741
|
name: z.ZodString;
|
|
24742
|
+
id: z.ZodString;
|
|
24743
24743
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24744
24744
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24745
24745
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24746
24746
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24747
24747
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24748
|
-
id: z.ZodString;
|
|
24749
24748
|
name: z.ZodString;
|
|
24749
|
+
id: z.ZodString;
|
|
24750
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24750
24751
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24751
24752
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24752
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24753
24753
|
models: z.ZodOptional<z.ZodObject<{
|
|
24754
24754
|
base: z.ZodOptional<z.ZodObject<{
|
|
24755
24755
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24804,10 +24804,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24804
24804
|
}, z.core.$strip>>;
|
|
24805
24805
|
}, z.core.$strip>>;
|
|
24806
24806
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24807
|
-
id: z.ZodString;
|
|
24808
24807
|
name: z.ZodString;
|
|
24808
|
+
id: z.ZodString;
|
|
24809
24809
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24810
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24811
24810
|
config: z.ZodObject<{
|
|
24812
24811
|
type: z.ZodLiteral<"mcp">;
|
|
24813
24812
|
mcp: z.ZodObject<{
|
|
@@ -24836,14 +24835,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24836
24835
|
}, z.core.$strip>;
|
|
24837
24836
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24838
24837
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24838
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24839
24839
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24840
24840
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24841
24841
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24842
24842
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24843
24843
|
}, z.core.$strip>>>;
|
|
24844
24844
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24845
|
-
id: z.ZodString;
|
|
24846
24845
|
name: z.ZodString;
|
|
24846
|
+
id: z.ZodString;
|
|
24847
24847
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24848
24848
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24849
24849
|
baseUrl: z.ZodURL;
|
|
@@ -24854,8 +24854,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24854
24854
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24855
24855
|
}, z.core.$strip>>>;
|
|
24856
24856
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24857
|
-
id: z.ZodString;
|
|
24858
24857
|
name: z.ZodString;
|
|
24858
|
+
id: z.ZodString;
|
|
24859
24859
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24860
24860
|
functionId: z.ZodString;
|
|
24861
24861
|
}, z.core.$strip>>>;
|
|
@@ -24866,18 +24866,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24866
24866
|
executeCode: z.ZodString;
|
|
24867
24867
|
}, z.core.$strip>>>;
|
|
24868
24868
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24869
|
-
id: z.ZodOptional<z.ZodString>;
|
|
24870
24869
|
name: z.ZodString;
|
|
24870
|
+
id: z.ZodOptional<z.ZodString>;
|
|
24871
24871
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24872
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24873
24872
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24873
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24874
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24874
24875
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24875
24876
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24876
24877
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24877
24878
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24878
24879
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24879
24880
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24880
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24881
24881
|
}, z.core.$strip>>>;
|
|
24882
24882
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
24883
24883
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24925,10 +24925,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24925
24925
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24926
24926
|
}, z.core.$strip>>;
|
|
24927
24927
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24928
|
-
id: z.ZodString;
|
|
24929
24928
|
name: z.ZodString;
|
|
24929
|
+
id: z.ZodString;
|
|
24930
24930
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24931
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24932
24931
|
config: z.ZodObject<{
|
|
24933
24932
|
type: z.ZodLiteral<"mcp">;
|
|
24934
24933
|
mcp: z.ZodObject<{
|
|
@@ -24957,14 +24956,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24957
24956
|
}, z.core.$strip>;
|
|
24958
24957
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24959
24958
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24959
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24960
24960
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24961
24961
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24962
24962
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24963
24963
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24964
24964
|
}, z.core.$strip>>;
|
|
24965
24965
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24966
|
-
id: z.ZodString;
|
|
24967
24966
|
name: z.ZodString;
|
|
24967
|
+
id: z.ZodString;
|
|
24968
24968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24969
24969
|
functionId: z.ZodString;
|
|
24970
24970
|
}, z.core.$strip>>>;
|
|
@@ -25057,8 +25057,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25057
25057
|
in: {};
|
|
25058
25058
|
}>>>;
|
|
25059
25059
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25060
|
-
id: z.ZodString;
|
|
25061
25060
|
name: z.ZodString;
|
|
25061
|
+
id: z.ZodString;
|
|
25062
25062
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25063
25063
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25064
25064
|
baseUrl: z.ZodURL;
|
|
@@ -25079,13 +25079,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25079
25079
|
}, z.core.$strip>>>;
|
|
25080
25080
|
}, z.core.$strict>>;
|
|
25081
25081
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25082
|
-
id: z.ZodString;
|
|
25083
25082
|
name: z.ZodString;
|
|
25083
|
+
id: z.ZodString;
|
|
25084
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25084
25085
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25085
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25086
25086
|
credentialStoreId: z.ZodString;
|
|
25087
25087
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25088
|
-
|
|
25088
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25089
25089
|
type: z.ZodEnum<{
|
|
25090
25090
|
readonly memory: "memory";
|
|
25091
25091
|
readonly keychain: "keychain";
|
|
@@ -25100,11 +25100,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25100
25100
|
in: {};
|
|
25101
25101
|
}>;
|
|
25102
25102
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25103
|
-
id: z.ZodString;
|
|
25104
25103
|
name: z.ZodString;
|
|
25104
|
+
id: z.ZodString;
|
|
25105
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25105
25106
|
createdAt: z.ZodString;
|
|
25106
25107
|
updatedAt: z.ZodString;
|
|
25107
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25108
25108
|
models: z.ZodNullable<z.ZodType<{
|
|
25109
25109
|
base?: {
|
|
25110
25110
|
model?: string | undefined;
|
|
@@ -25217,11 +25217,11 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25217
25217
|
}, z.core.$strip>]>>>;
|
|
25218
25218
|
}, z.core.$strip>;
|
|
25219
25219
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25220
|
-
id: z.ZodString;
|
|
25221
25220
|
name: z.ZodString;
|
|
25221
|
+
id: z.ZodString;
|
|
25222
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25222
25223
|
createdAt: z.ZodString;
|
|
25223
25224
|
updatedAt: z.ZodString;
|
|
25224
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25225
25225
|
models: z.ZodNullable<z.ZodType<{
|
|
25226
25226
|
base?: {
|
|
25227
25227
|
model?: string | undefined;
|
|
@@ -25340,20 +25340,20 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25340
25340
|
}, z.core.$strip>]>>>;
|
|
25341
25341
|
}, z.core.$strip>;
|
|
25342
25342
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25343
|
-
id: z.ZodString;
|
|
25344
25343
|
name: z.ZodString;
|
|
25344
|
+
id: z.ZodString;
|
|
25345
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25345
25346
|
createdAt: z.ZodString;
|
|
25346
25347
|
updatedAt: z.ZodString;
|
|
25347
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25348
25348
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25349
25349
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25350
25350
|
executionMode: z.ZodString;
|
|
25351
25351
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25352
|
-
id: z.ZodString;
|
|
25353
25352
|
name: z.ZodString;
|
|
25353
|
+
id: z.ZodString;
|
|
25354
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25354
25355
|
createdAt: z.ZodString;
|
|
25355
25356
|
updatedAt: z.ZodString;
|
|
25356
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25357
25357
|
models: z.ZodNullable<z.ZodType<{
|
|
25358
25358
|
base?: {
|
|
25359
25359
|
model?: string | undefined;
|
|
@@ -25466,12 +25466,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25466
25466
|
}, z.core.$strip>]>>>;
|
|
25467
25467
|
}, z.core.$strip>>;
|
|
25468
25468
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25469
|
-
id: z.ZodString;
|
|
25470
25469
|
name: z.ZodString;
|
|
25470
|
+
id: z.ZodString;
|
|
25471
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25471
25472
|
createdAt: z.ZodString;
|
|
25472
25473
|
updatedAt: z.ZodString;
|
|
25473
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25474
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25475
25474
|
config: z.ZodType<{
|
|
25476
25475
|
type: "mcp";
|
|
25477
25476
|
mcp: ToolMcpConfig;
|
|
@@ -25487,17 +25486,18 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25487
25486
|
}>>;
|
|
25488
25487
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25489
25488
|
credentialScope: z.ZodString;
|
|
25489
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25490
25490
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25491
25491
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25492
25492
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25493
25493
|
isWorkApp: z.ZodBoolean;
|
|
25494
25494
|
}, z.core.$strip>>>;
|
|
25495
25495
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25496
|
-
id: z.ZodString;
|
|
25497
25496
|
name: z.ZodString;
|
|
25497
|
+
id: z.ZodString;
|
|
25498
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25498
25499
|
createdAt: z.ZodString;
|
|
25499
25500
|
updatedAt: z.ZodString;
|
|
25500
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25501
25501
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25502
25502
|
baseUrl: z.ZodString;
|
|
25503
25503
|
}, z.core.$strip>>>;
|
|
@@ -25507,12 +25507,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25507
25507
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25508
25508
|
}, z.core.$strip>>>;
|
|
25509
25509
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25510
|
-
id: z.ZodString;
|
|
25511
25510
|
name: z.ZodString;
|
|
25512
|
-
|
|
25513
|
-
updatedAt: z.ZodString;
|
|
25511
|
+
id: z.ZodString;
|
|
25514
25512
|
description: z.ZodNullable<z.ZodString>;
|
|
25515
25513
|
agentId: z.ZodString;
|
|
25514
|
+
createdAt: z.ZodString;
|
|
25515
|
+
updatedAt: z.ZodString;
|
|
25516
25516
|
functionId: z.ZodString;
|
|
25517
25517
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25518
25518
|
}, z.core.$strip>>>;
|
|
@@ -25572,21 +25572,20 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25572
25572
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25573
25573
|
}, z.core.$strip>;
|
|
25574
25574
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25575
|
-
id: z.ZodString;
|
|
25576
25575
|
name: z.ZodString;
|
|
25576
|
+
id: z.ZodString;
|
|
25577
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25577
25578
|
createdAt: z.ZodString;
|
|
25578
25579
|
updatedAt: z.ZodString;
|
|
25579
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25580
25580
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25581
25581
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25582
25582
|
executionMode: z.ZodString;
|
|
25583
25583
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25584
|
-
id: z.ZodString;
|
|
25585
25584
|
name: z.ZodString;
|
|
25585
|
+
id: z.ZodString;
|
|
25586
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25586
25587
|
createdAt: z.ZodString;
|
|
25587
25588
|
updatedAt: z.ZodString;
|
|
25588
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25589
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25590
25589
|
config: z.ZodType<{
|
|
25591
25590
|
type: "mcp";
|
|
25592
25591
|
mcp: ToolMcpConfig;
|
|
@@ -25602,17 +25601,18 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25602
25601
|
}>>;
|
|
25603
25602
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25604
25603
|
credentialScope: z.ZodString;
|
|
25604
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25605
25605
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25606
25606
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25607
25607
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25608
25608
|
isWorkApp: z.ZodBoolean;
|
|
25609
25609
|
}, z.core.$strip>>>;
|
|
25610
25610
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25611
|
-
id: z.ZodString;
|
|
25612
25611
|
name: z.ZodString;
|
|
25612
|
+
id: z.ZodString;
|
|
25613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25613
25614
|
createdAt: z.ZodString;
|
|
25614
25615
|
updatedAt: z.ZodString;
|
|
25615
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25616
25616
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25617
25617
|
baseUrl: z.ZodString;
|
|
25618
25618
|
}, z.core.$strip>>>;
|
|
@@ -25622,12 +25622,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25622
25622
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25623
25623
|
}, z.core.$strip>>>;
|
|
25624
25624
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25625
|
-
id: z.ZodString;
|
|
25626
25625
|
name: z.ZodString;
|
|
25627
|
-
|
|
25628
|
-
updatedAt: z.ZodString;
|
|
25626
|
+
id: z.ZodString;
|
|
25629
25627
|
description: z.ZodNullable<z.ZodString>;
|
|
25630
25628
|
agentId: z.ZodString;
|
|
25629
|
+
createdAt: z.ZodString;
|
|
25630
|
+
updatedAt: z.ZodString;
|
|
25631
25631
|
functionId: z.ZodString;
|
|
25632
25632
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25633
25633
|
}, z.core.$strip>>>;
|
|
@@ -25686,11 +25686,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25686
25686
|
}, z.core.$strip>>;
|
|
25687
25687
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25688
25688
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25689
|
-
id: z.ZodString;
|
|
25690
25689
|
name: z.ZodString;
|
|
25690
|
+
id: z.ZodString;
|
|
25691
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25691
25692
|
createdAt: z.ZodString;
|
|
25692
25693
|
updatedAt: z.ZodString;
|
|
25693
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25694
25694
|
models: z.ZodNullable<z.ZodType<{
|
|
25695
25695
|
base?: {
|
|
25696
25696
|
model?: string | undefined;
|
|
@@ -25810,11 +25810,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25810
25810
|
}, z.core.$strip>>;
|
|
25811
25811
|
}, z.core.$strip>;
|
|
25812
25812
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25813
|
-
id: z.ZodString;
|
|
25814
25813
|
name: z.ZodString;
|
|
25814
|
+
id: z.ZodString;
|
|
25815
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25815
25816
|
createdAt: z.ZodString;
|
|
25816
25817
|
updatedAt: z.ZodString;
|
|
25817
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25818
25818
|
models: z.ZodNullable<z.ZodObject<{
|
|
25819
25819
|
base: z.ZodObject<{
|
|
25820
25820
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25840,20 +25840,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25840
25840
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
25841
25841
|
}, z.core.$strip>>;
|
|
25842
25842
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25843
|
-
id: z.ZodString;
|
|
25844
25843
|
name: z.ZodString;
|
|
25844
|
+
id: z.ZodString;
|
|
25845
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25845
25846
|
createdAt: z.ZodString;
|
|
25846
25847
|
updatedAt: z.ZodString;
|
|
25847
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25848
25848
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25849
25849
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25850
25850
|
executionMode: z.ZodString;
|
|
25851
25851
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25852
|
-
id: z.ZodString;
|
|
25853
25852
|
name: z.ZodString;
|
|
25853
|
+
id: z.ZodString;
|
|
25854
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25854
25855
|
createdAt: z.ZodString;
|
|
25855
25856
|
updatedAt: z.ZodString;
|
|
25856
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25857
25857
|
models: z.ZodNullable<z.ZodType<{
|
|
25858
25858
|
base?: {
|
|
25859
25859
|
model?: string | undefined;
|
|
@@ -25966,12 +25966,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25966
25966
|
}, z.core.$strip>]>>>;
|
|
25967
25967
|
}, z.core.$strip>>;
|
|
25968
25968
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25969
|
-
id: z.ZodString;
|
|
25970
25969
|
name: z.ZodString;
|
|
25970
|
+
id: z.ZodString;
|
|
25971
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25971
25972
|
createdAt: z.ZodString;
|
|
25972
25973
|
updatedAt: z.ZodString;
|
|
25973
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25974
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25975
25974
|
config: z.ZodType<{
|
|
25976
25975
|
type: "mcp";
|
|
25977
25976
|
mcp: ToolMcpConfig;
|
|
@@ -25987,17 +25986,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25987
25986
|
}>>;
|
|
25988
25987
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25989
25988
|
credentialScope: z.ZodString;
|
|
25989
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25990
25990
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25991
25991
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25992
25992
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25993
25993
|
isWorkApp: z.ZodBoolean;
|
|
25994
25994
|
}, z.core.$strip>>>;
|
|
25995
25995
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25996
|
-
id: z.ZodString;
|
|
25997
25996
|
name: z.ZodString;
|
|
25997
|
+
id: z.ZodString;
|
|
25998
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25998
25999
|
createdAt: z.ZodString;
|
|
25999
26000
|
updatedAt: z.ZodString;
|
|
26000
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26001
26001
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26002
26002
|
baseUrl: z.ZodString;
|
|
26003
26003
|
}, z.core.$strip>>>;
|
|
@@ -26007,12 +26007,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26007
26007
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26008
26008
|
}, z.core.$strip>>>;
|
|
26009
26009
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26010
|
-
id: z.ZodString;
|
|
26011
26010
|
name: z.ZodString;
|
|
26012
|
-
|
|
26013
|
-
updatedAt: z.ZodString;
|
|
26011
|
+
id: z.ZodString;
|
|
26014
26012
|
description: z.ZodNullable<z.ZodString>;
|
|
26015
26013
|
agentId: z.ZodString;
|
|
26014
|
+
createdAt: z.ZodString;
|
|
26015
|
+
updatedAt: z.ZodString;
|
|
26016
26016
|
functionId: z.ZodString;
|
|
26017
26017
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26018
26018
|
}, z.core.$strip>>>;
|
|
@@ -26072,12 +26072,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26072
26072
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26073
26073
|
}, z.core.$strip>>;
|
|
26074
26074
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26075
|
-
id: z.ZodString;
|
|
26076
26075
|
name: z.ZodString;
|
|
26076
|
+
id: z.ZodString;
|
|
26077
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26077
26078
|
createdAt: z.ZodString;
|
|
26078
26079
|
updatedAt: z.ZodString;
|
|
26079
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26080
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26081
26080
|
config: z.ZodType<{
|
|
26082
26081
|
type: "mcp";
|
|
26083
26082
|
mcp: ToolMcpConfig;
|
|
@@ -26093,18 +26092,19 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26093
26092
|
}>>;
|
|
26094
26093
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26095
26094
|
credentialScope: z.ZodString;
|
|
26095
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26096
26096
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26097
26097
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
26098
26098
|
lastError: z.ZodNullable<z.ZodString>;
|
|
26099
26099
|
isWorkApp: z.ZodBoolean;
|
|
26100
26100
|
}, z.core.$strip>>;
|
|
26101
26101
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26102
|
-
id: z.ZodString;
|
|
26103
26102
|
name: z.ZodString;
|
|
26104
|
-
|
|
26105
|
-
updatedAt: z.ZodString;
|
|
26103
|
+
id: z.ZodString;
|
|
26106
26104
|
description: z.ZodNullable<z.ZodString>;
|
|
26107
26105
|
agentId: z.ZodString;
|
|
26106
|
+
createdAt: z.ZodString;
|
|
26107
|
+
updatedAt: z.ZodString;
|
|
26108
26108
|
functionId: z.ZodString;
|
|
26109
26109
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26110
26110
|
}, z.core.$strip>>>;
|
|
@@ -26117,10 +26117,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26117
26117
|
executeCode: z.ZodString;
|
|
26118
26118
|
}, z.core.$strip>>>;
|
|
26119
26119
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26120
|
-
id: z.ZodString;
|
|
26121
26120
|
name: z.ZodString;
|
|
26122
|
-
|
|
26123
|
-
updatedAt: z.ZodString;
|
|
26121
|
+
id: z.ZodString;
|
|
26124
26122
|
description: z.ZodNullable<z.ZodString>;
|
|
26125
26123
|
props: z.ZodType<{
|
|
26126
26124
|
[x: string]: unknown;
|
|
@@ -26164,12 +26162,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26164
26162
|
component: string;
|
|
26165
26163
|
mockData: Record<string, unknown>;
|
|
26166
26164
|
}>>>;
|
|
26165
|
+
createdAt: z.ZodString;
|
|
26166
|
+
updatedAt: z.ZodString;
|
|
26167
26167
|
}, z.core.$strip>>>;
|
|
26168
26168
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26169
|
-
id: z.ZodString;
|
|
26170
26169
|
name: z.ZodString;
|
|
26171
|
-
|
|
26172
|
-
updatedAt: z.ZodString;
|
|
26170
|
+
id: z.ZodString;
|
|
26173
26171
|
description: z.ZodNullable<z.ZodString>;
|
|
26174
26172
|
props: z.ZodNullable<z.ZodType<{
|
|
26175
26173
|
[x: string]: unknown;
|
|
@@ -26213,13 +26211,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26213
26211
|
component: string;
|
|
26214
26212
|
mockData: Record<string, unknown>;
|
|
26215
26213
|
}>>>;
|
|
26214
|
+
createdAt: z.ZodString;
|
|
26215
|
+
updatedAt: z.ZodString;
|
|
26216
26216
|
}, z.core.$strip>>>;
|
|
26217
26217
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26218
|
-
id: z.ZodString;
|
|
26219
26218
|
name: z.ZodString;
|
|
26219
|
+
id: z.ZodString;
|
|
26220
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26220
26221
|
createdAt: z.ZodString;
|
|
26221
26222
|
updatedAt: z.ZodString;
|
|
26222
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26223
26223
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26224
26224
|
baseUrl: z.ZodString;
|
|
26225
26225
|
}, z.core.$strip>>>;
|
|
@@ -26239,15 +26239,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26239
26239
|
}, z.core.$strip>>>;
|
|
26240
26240
|
}, z.core.$strict>>;
|
|
26241
26241
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26242
|
-
id: z.ZodString;
|
|
26243
26242
|
name: z.ZodString;
|
|
26243
|
+
id: z.ZodString;
|
|
26244
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26244
26245
|
createdAt: z.ZodString;
|
|
26245
26246
|
updatedAt: z.ZodString;
|
|
26246
26247
|
userId: z.ZodNullable<z.ZodString>;
|
|
26247
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26248
26248
|
credentialStoreId: z.ZodString;
|
|
26249
26249
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26250
|
-
|
|
26250
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26251
26251
|
type: z.ZodEnum<{
|
|
26252
26252
|
readonly memory: "memory";
|
|
26253
26253
|
readonly keychain: "keychain";
|
|
@@ -26835,11 +26835,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26835
26835
|
in: {};
|
|
26836
26836
|
}>;
|
|
26837
26837
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26838
|
-
id: z.ZodString;
|
|
26839
26838
|
name: z.ZodString;
|
|
26839
|
+
id: z.ZodString;
|
|
26840
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26840
26841
|
createdAt: z.ZodString;
|
|
26841
26842
|
updatedAt: z.ZodString;
|
|
26842
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26843
26843
|
models: z.ZodNullable<z.ZodObject<{
|
|
26844
26844
|
base: z.ZodObject<{
|
|
26845
26845
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26865,12 +26865,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26865
26865
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26866
26866
|
}, z.core.$strip>>;
|
|
26867
26867
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26868
|
-
id: z.ZodString;
|
|
26869
26868
|
name: z.ZodString;
|
|
26869
|
+
id: z.ZodString;
|
|
26870
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26870
26871
|
createdAt: z.ZodString;
|
|
26871
26872
|
updatedAt: z.ZodString;
|
|
26872
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26873
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26874
26873
|
config: z.ZodType<{
|
|
26875
26874
|
type: "mcp";
|
|
26876
26875
|
mcp: ToolMcpConfig;
|
|
@@ -26886,18 +26885,19 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26886
26885
|
}>>;
|
|
26887
26886
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26888
26887
|
credentialScope: z.ZodString;
|
|
26888
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26889
26889
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26890
26890
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
26891
26891
|
lastError: z.ZodNullable<z.ZodString>;
|
|
26892
26892
|
isWorkApp: z.ZodBoolean;
|
|
26893
26893
|
}, z.core.$strip>>;
|
|
26894
26894
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26895
|
-
id: z.ZodString;
|
|
26896
26895
|
name: z.ZodString;
|
|
26897
|
-
|
|
26898
|
-
updatedAt: z.ZodString;
|
|
26896
|
+
id: z.ZodString;
|
|
26899
26897
|
description: z.ZodNullable<z.ZodString>;
|
|
26900
26898
|
agentId: z.ZodString;
|
|
26899
|
+
createdAt: z.ZodString;
|
|
26900
|
+
updatedAt: z.ZodString;
|
|
26901
26901
|
functionId: z.ZodString;
|
|
26902
26902
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26903
26903
|
}, z.core.$strip>>>;
|
|
@@ -26910,10 +26910,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26910
26910
|
executeCode: z.ZodString;
|
|
26911
26911
|
}, z.core.$strip>>>;
|
|
26912
26912
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26913
|
-
id: z.ZodString;
|
|
26914
26913
|
name: z.ZodString;
|
|
26915
|
-
|
|
26916
|
-
updatedAt: z.ZodString;
|
|
26914
|
+
id: z.ZodString;
|
|
26917
26915
|
description: z.ZodNullable<z.ZodString>;
|
|
26918
26916
|
props: z.ZodType<{
|
|
26919
26917
|
[x: string]: unknown;
|
|
@@ -26957,12 +26955,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26957
26955
|
component: string;
|
|
26958
26956
|
mockData: Record<string, unknown>;
|
|
26959
26957
|
}>>>;
|
|
26958
|
+
createdAt: z.ZodString;
|
|
26959
|
+
updatedAt: z.ZodString;
|
|
26960
26960
|
}, z.core.$strip>>>;
|
|
26961
26961
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26962
|
-
id: z.ZodString;
|
|
26963
26962
|
name: z.ZodString;
|
|
26964
|
-
|
|
26965
|
-
updatedAt: z.ZodString;
|
|
26963
|
+
id: z.ZodString;
|
|
26966
26964
|
description: z.ZodNullable<z.ZodString>;
|
|
26967
26965
|
props: z.ZodNullable<z.ZodType<{
|
|
26968
26966
|
[x: string]: unknown;
|
|
@@ -27006,13 +27004,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27006
27004
|
component: string;
|
|
27007
27005
|
mockData: Record<string, unknown>;
|
|
27008
27006
|
}>>>;
|
|
27007
|
+
createdAt: z.ZodString;
|
|
27008
|
+
updatedAt: z.ZodString;
|
|
27009
27009
|
}, z.core.$strip>>>;
|
|
27010
27010
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27011
|
-
id: z.ZodString;
|
|
27012
27011
|
name: z.ZodString;
|
|
27012
|
+
id: z.ZodString;
|
|
27013
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27013
27014
|
createdAt: z.ZodString;
|
|
27014
27015
|
updatedAt: z.ZodString;
|
|
27015
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27016
27016
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27017
27017
|
baseUrl: z.ZodString;
|
|
27018
27018
|
}, z.core.$strip>>>;
|
|
@@ -27032,15 +27032,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27032
27032
|
}, z.core.$strip>>>;
|
|
27033
27033
|
}, z.core.$strict>>;
|
|
27034
27034
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27035
|
-
id: z.ZodString;
|
|
27036
27035
|
name: z.ZodString;
|
|
27036
|
+
id: z.ZodString;
|
|
27037
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27037
27038
|
createdAt: z.ZodString;
|
|
27038
27039
|
updatedAt: z.ZodString;
|
|
27039
27040
|
userId: z.ZodNullable<z.ZodString>;
|
|
27040
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27041
27041
|
credentialStoreId: z.ZodString;
|
|
27042
27042
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27043
|
-
|
|
27043
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27044
27044
|
type: z.ZodEnum<{
|
|
27045
27045
|
readonly memory: "memory";
|
|
27046
27046
|
readonly keychain: "keychain";
|
|
@@ -27624,21 +27624,20 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27624
27624
|
}>>>;
|
|
27625
27625
|
}, z.core.$strip>>>;
|
|
27626
27626
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27627
|
-
id: z.ZodString;
|
|
27628
27627
|
name: z.ZodString;
|
|
27628
|
+
id: z.ZodString;
|
|
27629
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27629
27630
|
createdAt: z.ZodString;
|
|
27630
27631
|
updatedAt: z.ZodString;
|
|
27631
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27632
27632
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27633
27633
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27634
27634
|
executionMode: z.ZodString;
|
|
27635
27635
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27636
|
-
id: z.ZodString;
|
|
27637
27636
|
name: z.ZodString;
|
|
27637
|
+
id: z.ZodString;
|
|
27638
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27638
27639
|
createdAt: z.ZodString;
|
|
27639
27640
|
updatedAt: z.ZodString;
|
|
27640
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27641
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27642
27641
|
config: z.ZodType<{
|
|
27643
27642
|
type: "mcp";
|
|
27644
27643
|
mcp: ToolMcpConfig;
|
|
@@ -27654,17 +27653,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27654
27653
|
}>>;
|
|
27655
27654
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27656
27655
|
credentialScope: z.ZodString;
|
|
27656
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27657
27657
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27658
27658
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
27659
27659
|
lastError: z.ZodNullable<z.ZodString>;
|
|
27660
27660
|
isWorkApp: z.ZodBoolean;
|
|
27661
27661
|
}, z.core.$strip>>>;
|
|
27662
27662
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27663
|
-
id: z.ZodString;
|
|
27664
27663
|
name: z.ZodString;
|
|
27664
|
+
id: z.ZodString;
|
|
27665
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27665
27666
|
createdAt: z.ZodString;
|
|
27666
27667
|
updatedAt: z.ZodString;
|
|
27667
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27668
27668
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27669
27669
|
baseUrl: z.ZodString;
|
|
27670
27670
|
}, z.core.$strip>>>;
|
|
@@ -27674,12 +27674,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27674
27674
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27675
27675
|
}, z.core.$strip>>>;
|
|
27676
27676
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27677
|
-
id: z.ZodString;
|
|
27678
27677
|
name: z.ZodString;
|
|
27679
|
-
|
|
27680
|
-
updatedAt: z.ZodString;
|
|
27678
|
+
id: z.ZodString;
|
|
27681
27679
|
description: z.ZodNullable<z.ZodString>;
|
|
27682
27680
|
agentId: z.ZodString;
|
|
27681
|
+
createdAt: z.ZodString;
|
|
27682
|
+
updatedAt: z.ZodString;
|
|
27683
27683
|
functionId: z.ZodString;
|
|
27684
27684
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27685
27685
|
}, z.core.$strip>>>;
|
|
@@ -27738,11 +27738,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27738
27738
|
}, z.core.$strip>>;
|
|
27739
27739
|
prompt: z.ZodNullable<z.ZodString>;
|
|
27740
27740
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27741
|
-
id: z.ZodString;
|
|
27742
27741
|
name: z.ZodString;
|
|
27742
|
+
id: z.ZodString;
|
|
27743
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27743
27744
|
createdAt: z.ZodString;
|
|
27744
27745
|
updatedAt: z.ZodString;
|
|
27745
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27746
27746
|
models: z.ZodNullable<z.ZodType<{
|
|
27747
27747
|
base?: {
|
|
27748
27748
|
model?: string | undefined;
|
|
@@ -27867,11 +27867,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27867
27867
|
}>;
|
|
27868
27868
|
declare const ProjectResponse: z.ZodObject<{
|
|
27869
27869
|
data: z.ZodObject<{
|
|
27870
|
-
id: z.ZodString;
|
|
27871
27870
|
name: z.ZodString;
|
|
27871
|
+
id: z.ZodString;
|
|
27872
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27872
27873
|
createdAt: z.ZodString;
|
|
27873
27874
|
updatedAt: z.ZodString;
|
|
27874
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27875
27875
|
models: z.ZodNullable<z.ZodObject<{
|
|
27876
27876
|
base: z.ZodObject<{
|
|
27877
27877
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27903,11 +27903,11 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
27903
27903
|
}, z.core.$strip>;
|
|
27904
27904
|
declare const SubAgentResponse: z.ZodObject<{
|
|
27905
27905
|
data: z.ZodObject<{
|
|
27906
|
-
id: z.ZodString;
|
|
27907
27906
|
name: z.ZodString;
|
|
27907
|
+
id: z.ZodString;
|
|
27908
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27908
27909
|
createdAt: z.ZodString;
|
|
27909
27910
|
updatedAt: z.ZodString;
|
|
27910
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27911
27911
|
models: z.ZodNullable<z.ZodType<{
|
|
27912
27912
|
base?: {
|
|
27913
27913
|
model?: string | undefined;
|
|
@@ -28000,11 +28000,11 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28000
28000
|
}, z.core.$strip>;
|
|
28001
28001
|
declare const AgentResponse: z.ZodObject<{
|
|
28002
28002
|
data: z.ZodObject<{
|
|
28003
|
-
id: z.ZodString;
|
|
28004
28003
|
name: z.ZodString;
|
|
28004
|
+
id: z.ZodString;
|
|
28005
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28005
28006
|
createdAt: z.ZodString;
|
|
28006
28007
|
updatedAt: z.ZodString;
|
|
28007
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28008
28008
|
models: z.ZodNullable<z.ZodType<{
|
|
28009
28009
|
base?: {
|
|
28010
28010
|
model?: string | undefined;
|
|
@@ -28091,9 +28091,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28091
28091
|
}, {
|
|
28092
28092
|
transferCountIs?: number | undefined;
|
|
28093
28093
|
}>>>;
|
|
28094
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28095
28094
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28096
28095
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28096
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28097
28097
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
28098
28098
|
enabled?: boolean | undefined;
|
|
28099
28099
|
numEvents?: number | undefined;
|
|
@@ -28156,11 +28156,11 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28156
28156
|
}, z.core.$strip>;
|
|
28157
28157
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
28158
28158
|
data: z.ZodObject<{
|
|
28159
|
-
id: z.ZodString;
|
|
28160
28159
|
name: z.ZodString;
|
|
28160
|
+
id: z.ZodString;
|
|
28161
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28161
28162
|
createdAt: z.ZodString;
|
|
28162
28163
|
updatedAt: z.ZodString;
|
|
28163
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28164
28164
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28165
28165
|
baseUrl: z.ZodString;
|
|
28166
28166
|
}, z.core.$strip>;
|
|
@@ -28176,12 +28176,12 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
28176
28176
|
}, z.core.$strip>;
|
|
28177
28177
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28178
28178
|
data: z.ZodObject<{
|
|
28179
|
-
id: z.ZodString;
|
|
28180
28179
|
name: z.ZodNullable<z.ZodString>;
|
|
28180
|
+
id: z.ZodString;
|
|
28181
|
+
agentId: z.ZodString;
|
|
28181
28182
|
createdAt: z.ZodString;
|
|
28182
28183
|
updatedAt: z.ZodString;
|
|
28183
28184
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28184
|
-
agentId: z.ZodString;
|
|
28185
28185
|
publicId: z.ZodString;
|
|
28186
28186
|
keyPrefix: z.ZodString;
|
|
28187
28187
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -28192,15 +28192,15 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28192
28192
|
}, z.core.$strip>;
|
|
28193
28193
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28194
28194
|
data: z.ZodObject<{
|
|
28195
|
-
id: z.ZodString;
|
|
28196
28195
|
name: z.ZodString;
|
|
28196
|
+
id: z.ZodString;
|
|
28197
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28197
28198
|
createdAt: z.ZodString;
|
|
28198
28199
|
updatedAt: z.ZodString;
|
|
28199
28200
|
userId: z.ZodNullable<z.ZodString>;
|
|
28200
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28201
28201
|
credentialStoreId: z.ZodString;
|
|
28202
28202
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28203
|
-
|
|
28203
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28204
28204
|
type: z.ZodEnum<{
|
|
28205
28205
|
readonly memory: "memory";
|
|
28206
28206
|
readonly keychain: "keychain";
|
|
@@ -28796,12 +28796,12 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28796
28796
|
}, z.core.$strip>;
|
|
28797
28797
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28798
28798
|
data: z.ZodObject<{
|
|
28799
|
-
id: z.ZodString;
|
|
28800
28799
|
name: z.ZodString;
|
|
28801
|
-
|
|
28802
|
-
updatedAt: z.ZodString;
|
|
28800
|
+
id: z.ZodString;
|
|
28803
28801
|
description: z.ZodNullable<z.ZodString>;
|
|
28804
28802
|
agentId: z.ZodString;
|
|
28803
|
+
createdAt: z.ZodString;
|
|
28804
|
+
updatedAt: z.ZodString;
|
|
28805
28805
|
functionId: z.ZodString;
|
|
28806
28806
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28807
28807
|
}, z.core.$strip>;
|
|
@@ -28809,19 +28809,17 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
28809
28809
|
declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
28810
28810
|
data: z.ZodObject<{
|
|
28811
28811
|
id: z.ZodString;
|
|
28812
|
+
subAgentId: z.ZodString;
|
|
28812
28813
|
createdAt: z.ZodString;
|
|
28813
28814
|
updatedAt: z.ZodString;
|
|
28814
|
-
subAgentId: z.ZodString;
|
|
28815
28815
|
functionToolId: z.ZodString;
|
|
28816
28816
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28817
28817
|
}, z.core.$strip>;
|
|
28818
28818
|
}, z.core.$strip>;
|
|
28819
28819
|
declare const DataComponentResponse: z.ZodObject<{
|
|
28820
28820
|
data: z.ZodObject<{
|
|
28821
|
-
id: z.ZodString;
|
|
28822
28821
|
name: z.ZodString;
|
|
28823
|
-
|
|
28824
|
-
updatedAt: z.ZodString;
|
|
28822
|
+
id: z.ZodString;
|
|
28825
28823
|
description: z.ZodNullable<z.ZodString>;
|
|
28826
28824
|
props: z.ZodType<{
|
|
28827
28825
|
[x: string]: unknown;
|
|
@@ -28865,14 +28863,14 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
28865
28863
|
component: string;
|
|
28866
28864
|
mockData: Record<string, unknown>;
|
|
28867
28865
|
}>>>;
|
|
28866
|
+
createdAt: z.ZodString;
|
|
28867
|
+
updatedAt: z.ZodString;
|
|
28868
28868
|
}, z.core.$strip>;
|
|
28869
28869
|
}, z.core.$strip>;
|
|
28870
28870
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
28871
28871
|
data: z.ZodObject<{
|
|
28872
|
-
id: z.ZodString;
|
|
28873
28872
|
name: z.ZodString;
|
|
28874
|
-
|
|
28875
|
-
updatedAt: z.ZodString;
|
|
28873
|
+
id: z.ZodString;
|
|
28876
28874
|
description: z.ZodNullable<z.ZodString>;
|
|
28877
28875
|
props: z.ZodNullable<z.ZodType<{
|
|
28878
28876
|
[x: string]: unknown;
|
|
@@ -28916,6 +28914,8 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
28916
28914
|
component: string;
|
|
28917
28915
|
mockData: Record<string, unknown>;
|
|
28918
28916
|
}>>>;
|
|
28917
|
+
createdAt: z.ZodString;
|
|
28918
|
+
updatedAt: z.ZodString;
|
|
28919
28919
|
}, z.core.$strip>;
|
|
28920
28920
|
}, z.core.$strip>;
|
|
28921
28921
|
declare const SubAgentRelationResponse: z.ZodObject<{
|
|
@@ -28931,39 +28931,40 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
28931
28931
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
28932
28932
|
data: z.ZodObject<{
|
|
28933
28933
|
id: z.ZodString;
|
|
28934
|
+
subAgentId: z.ZodString;
|
|
28935
|
+
toolId: z.ZodString;
|
|
28934
28936
|
createdAt: z.ZodString;
|
|
28935
28937
|
updatedAt: z.ZodString;
|
|
28936
|
-
subAgentId: z.ZodString;
|
|
28937
28938
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28938
|
-
toolId: z.ZodString;
|
|
28939
28939
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28940
28940
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28941
28941
|
}, z.core.$strip>;
|
|
28942
28942
|
}, z.core.$strip>;
|
|
28943
28943
|
declare const TriggerResponse: z.ZodObject<{
|
|
28944
28944
|
data: z.ZodObject<{
|
|
28945
|
-
id: z.ZodString;
|
|
28946
28945
|
name: z.ZodString;
|
|
28946
|
+
id: z.ZodString;
|
|
28947
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28948
|
+
enabled: z.ZodBoolean;
|
|
28947
28949
|
createdAt: z.ZodString;
|
|
28948
28950
|
updatedAt: z.ZodString;
|
|
28949
|
-
|
|
28951
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28950
28952
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28951
|
-
enabled: z.ZodBoolean;
|
|
28952
28953
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28953
28954
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
28954
28955
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28955
28956
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28956
28957
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28957
28958
|
algorithm: z.ZodEnum<{
|
|
28959
|
+
md5: "md5";
|
|
28958
28960
|
sha256: "sha256";
|
|
28959
28961
|
sha512: "sha512";
|
|
28960
28962
|
sha384: "sha384";
|
|
28961
28963
|
sha1: "sha1";
|
|
28962
|
-
md5: "md5";
|
|
28963
28964
|
}>;
|
|
28964
28965
|
encoding: z.ZodEnum<{
|
|
28965
|
-
hex: "hex";
|
|
28966
28966
|
base64: "base64";
|
|
28967
|
+
hex: "hex";
|
|
28967
28968
|
}>;
|
|
28968
28969
|
signature: z.ZodObject<{
|
|
28969
28970
|
source: z.ZodEnum<{
|
|
@@ -28999,13 +29000,12 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28999
29000
|
}, z.core.$strip>>;
|
|
29000
29001
|
}, z.core.$strip>>>;
|
|
29001
29002
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29002
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29003
29003
|
}, z.core.$strip>;
|
|
29004
29004
|
}, z.core.$strip>;
|
|
29005
29005
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
29006
29006
|
data: z.ZodObject<{
|
|
29007
29007
|
id: z.ZodString;
|
|
29008
|
-
|
|
29008
|
+
status: z.ZodString;
|
|
29009
29009
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29010
29010
|
type: z.ZodEnum<{
|
|
29011
29011
|
commit: "commit";
|
|
@@ -29015,7 +29015,7 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29015
29015
|
name: z.ZodString;
|
|
29016
29016
|
hash: z.ZodString;
|
|
29017
29017
|
}, z.core.$strip>>>;
|
|
29018
|
-
|
|
29018
|
+
createdAt: z.ZodString;
|
|
29019
29019
|
triggerId: z.ZodString;
|
|
29020
29020
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29021
29021
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -29025,22 +29025,22 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29025
29025
|
}, z.core.$strip>;
|
|
29026
29026
|
declare const FeedbackResponse: z.ZodObject<{
|
|
29027
29027
|
data: z.ZodObject<{
|
|
29028
|
+
type: z.ZodString;
|
|
29028
29029
|
id: z.ZodString;
|
|
29030
|
+
details: z.ZodNullable<z.ZodString>;
|
|
29029
29031
|
createdAt: z.ZodString;
|
|
29030
29032
|
updatedAt: z.ZodString;
|
|
29031
|
-
type: z.ZodString;
|
|
29032
|
-
details: z.ZodNullable<z.ZodString>;
|
|
29033
29033
|
conversationId: z.ZodString;
|
|
29034
29034
|
messageId: z.ZodNullable<z.ZodString>;
|
|
29035
29035
|
}, z.core.$strip>;
|
|
29036
29036
|
}, z.core.$strip>;
|
|
29037
29037
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29038
29038
|
data: z.ZodArray<z.ZodObject<{
|
|
29039
|
-
id: z.ZodString;
|
|
29040
29039
|
name: z.ZodString;
|
|
29040
|
+
id: z.ZodString;
|
|
29041
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29041
29042
|
createdAt: z.ZodString;
|
|
29042
29043
|
updatedAt: z.ZodString;
|
|
29043
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29044
29044
|
models: z.ZodNullable<z.ZodObject<{
|
|
29045
29045
|
base: z.ZodObject<{
|
|
29046
29046
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29078,11 +29078,11 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29078
29078
|
}, z.core.$strip>;
|
|
29079
29079
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
29080
29080
|
data: z.ZodArray<z.ZodObject<{
|
|
29081
|
-
id: z.ZodString;
|
|
29082
29081
|
name: z.ZodString;
|
|
29082
|
+
id: z.ZodString;
|
|
29083
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29083
29084
|
createdAt: z.ZodString;
|
|
29084
29085
|
updatedAt: z.ZodString;
|
|
29085
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29086
29086
|
models: z.ZodNullable<z.ZodType<{
|
|
29087
29087
|
base?: {
|
|
29088
29088
|
model?: string | undefined;
|
|
@@ -29181,11 +29181,11 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29181
29181
|
}, z.core.$strip>;
|
|
29182
29182
|
declare const AgentListResponse: z.ZodObject<{
|
|
29183
29183
|
data: z.ZodArray<z.ZodObject<{
|
|
29184
|
-
id: z.ZodString;
|
|
29185
29184
|
name: z.ZodString;
|
|
29185
|
+
id: z.ZodString;
|
|
29186
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29186
29187
|
createdAt: z.ZodString;
|
|
29187
29188
|
updatedAt: z.ZodString;
|
|
29188
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29189
29189
|
models: z.ZodNullable<z.ZodType<{
|
|
29190
29190
|
base?: {
|
|
29191
29191
|
model?: string | undefined;
|
|
@@ -29272,9 +29272,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29272
29272
|
}, {
|
|
29273
29273
|
transferCountIs?: number | undefined;
|
|
29274
29274
|
}>>>;
|
|
29275
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
29276
29275
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29277
29276
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29277
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
29278
29278
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
29279
29279
|
enabled?: boolean | undefined;
|
|
29280
29280
|
numEvents?: number | undefined;
|
|
@@ -29343,11 +29343,11 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29343
29343
|
}, z.core.$strip>;
|
|
29344
29344
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
29345
29345
|
data: z.ZodArray<z.ZodObject<{
|
|
29346
|
-
id: z.ZodString;
|
|
29347
29346
|
name: z.ZodString;
|
|
29347
|
+
id: z.ZodString;
|
|
29348
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29348
29349
|
createdAt: z.ZodString;
|
|
29349
29350
|
updatedAt: z.ZodString;
|
|
29350
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29351
29351
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29352
29352
|
baseUrl: z.ZodString;
|
|
29353
29353
|
}, z.core.$strip>>;
|
|
@@ -29375,12 +29375,12 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29375
29375
|
}, z.core.$strip>;
|
|
29376
29376
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29377
29377
|
data: z.ZodArray<z.ZodObject<{
|
|
29378
|
-
id: z.ZodString;
|
|
29379
29378
|
name: z.ZodNullable<z.ZodString>;
|
|
29379
|
+
id: z.ZodString;
|
|
29380
|
+
agentId: z.ZodString;
|
|
29380
29381
|
createdAt: z.ZodString;
|
|
29381
29382
|
updatedAt: z.ZodString;
|
|
29382
29383
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29383
|
-
agentId: z.ZodString;
|
|
29384
29384
|
publicId: z.ZodString;
|
|
29385
29385
|
keyPrefix: z.ZodString;
|
|
29386
29386
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29397,16 +29397,16 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29397
29397
|
}, z.core.$strip>;
|
|
29398
29398
|
declare const AppResponse: z.ZodObject<{
|
|
29399
29399
|
data: z.ZodObject<{
|
|
29400
|
-
id: z.ZodString;
|
|
29401
|
-
name: z.ZodString;
|
|
29402
|
-
createdAt: z.ZodString;
|
|
29403
|
-
updatedAt: z.ZodString;
|
|
29404
29400
|
type: z.ZodString;
|
|
29405
|
-
|
|
29401
|
+
name: z.ZodString;
|
|
29406
29402
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29407
29403
|
projectId: z.ZodNullable<z.ZodString>;
|
|
29408
|
-
|
|
29404
|
+
id: z.ZodString;
|
|
29405
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29409
29406
|
enabled: z.ZodBoolean;
|
|
29407
|
+
createdAt: z.ZodString;
|
|
29408
|
+
updatedAt: z.ZodString;
|
|
29409
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
29410
29410
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29411
29411
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
29412
29412
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -29442,16 +29442,16 @@ declare const AppResponse: z.ZodObject<{
|
|
|
29442
29442
|
}, z.core.$strip>;
|
|
29443
29443
|
declare const AppListResponse: z.ZodObject<{
|
|
29444
29444
|
data: z.ZodArray<z.ZodObject<{
|
|
29445
|
-
id: z.ZodString;
|
|
29446
|
-
name: z.ZodString;
|
|
29447
|
-
createdAt: z.ZodString;
|
|
29448
|
-
updatedAt: z.ZodString;
|
|
29449
29445
|
type: z.ZodString;
|
|
29450
|
-
|
|
29446
|
+
name: z.ZodString;
|
|
29451
29447
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
29452
29448
|
projectId: z.ZodNullable<z.ZodString>;
|
|
29453
|
-
|
|
29449
|
+
id: z.ZodString;
|
|
29450
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29454
29451
|
enabled: z.ZodBoolean;
|
|
29452
|
+
createdAt: z.ZodString;
|
|
29453
|
+
updatedAt: z.ZodString;
|
|
29454
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
29455
29455
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29456
29456
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
29457
29457
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -29493,15 +29493,15 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
29493
29493
|
}, z.core.$strip>;
|
|
29494
29494
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29495
29495
|
data: z.ZodArray<z.ZodObject<{
|
|
29496
|
-
id: z.ZodString;
|
|
29497
29496
|
name: z.ZodString;
|
|
29497
|
+
id: z.ZodString;
|
|
29498
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29498
29499
|
createdAt: z.ZodString;
|
|
29499
29500
|
updatedAt: z.ZodString;
|
|
29500
29501
|
userId: z.ZodNullable<z.ZodString>;
|
|
29501
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29502
29502
|
credentialStoreId: z.ZodString;
|
|
29503
29503
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29504
|
-
|
|
29504
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29505
29505
|
type: z.ZodEnum<{
|
|
29506
29506
|
readonly memory: "memory";
|
|
29507
29507
|
readonly keychain: "keychain";
|
|
@@ -30109,12 +30109,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30109
30109
|
}, z.core.$strip>;
|
|
30110
30110
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30111
30111
|
data: z.ZodArray<z.ZodObject<{
|
|
30112
|
-
id: z.ZodString;
|
|
30113
30112
|
name: z.ZodString;
|
|
30114
|
-
|
|
30115
|
-
updatedAt: z.ZodString;
|
|
30113
|
+
id: z.ZodString;
|
|
30116
30114
|
description: z.ZodNullable<z.ZodString>;
|
|
30117
30115
|
agentId: z.ZodString;
|
|
30116
|
+
createdAt: z.ZodString;
|
|
30117
|
+
updatedAt: z.ZodString;
|
|
30118
30118
|
functionId: z.ZodString;
|
|
30119
30119
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30120
30120
|
}, z.core.$strip>>;
|
|
@@ -30128,9 +30128,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
30128
30128
|
declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
30129
30129
|
data: z.ZodArray<z.ZodObject<{
|
|
30130
30130
|
id: z.ZodString;
|
|
30131
|
+
subAgentId: z.ZodString;
|
|
30131
30132
|
createdAt: z.ZodString;
|
|
30132
30133
|
updatedAt: z.ZodString;
|
|
30133
|
-
subAgentId: z.ZodString;
|
|
30134
30134
|
functionToolId: z.ZodString;
|
|
30135
30135
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30136
30136
|
}, z.core.$strip>>;
|
|
@@ -30143,11 +30143,11 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30143
30143
|
}, z.core.$strip>;
|
|
30144
30144
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
30145
30145
|
data: z.ZodArray<z.ZodObject<{
|
|
30146
|
+
type: z.ZodString;
|
|
30146
30147
|
id: z.ZodString;
|
|
30148
|
+
details: z.ZodNullable<z.ZodString>;
|
|
30147
30149
|
createdAt: z.ZodString;
|
|
30148
30150
|
updatedAt: z.ZodString;
|
|
30149
|
-
type: z.ZodString;
|
|
30150
|
-
details: z.ZodNullable<z.ZodString>;
|
|
30151
30151
|
conversationId: z.ZodString;
|
|
30152
30152
|
messageId: z.ZodNullable<z.ZodString>;
|
|
30153
30153
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30161,10 +30161,8 @@ declare const FeedbackListResponse: z.ZodObject<{
|
|
|
30161
30161
|
}, z.core.$strip>;
|
|
30162
30162
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
30163
30163
|
data: z.ZodArray<z.ZodObject<{
|
|
30164
|
-
id: z.ZodString;
|
|
30165
30164
|
name: z.ZodString;
|
|
30166
|
-
|
|
30167
|
-
updatedAt: z.ZodString;
|
|
30165
|
+
id: z.ZodString;
|
|
30168
30166
|
description: z.ZodNullable<z.ZodString>;
|
|
30169
30167
|
props: z.ZodType<{
|
|
30170
30168
|
[x: string]: unknown;
|
|
@@ -30208,6 +30206,8 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
30208
30206
|
component: string;
|
|
30209
30207
|
mockData: Record<string, unknown>;
|
|
30210
30208
|
}>>>;
|
|
30209
|
+
createdAt: z.ZodString;
|
|
30210
|
+
updatedAt: z.ZodString;
|
|
30211
30211
|
}, z.core.$strip>>;
|
|
30212
30212
|
pagination: z.ZodObject<{
|
|
30213
30213
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30218,10 +30218,8 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
30218
30218
|
}, z.core.$strip>;
|
|
30219
30219
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
30220
30220
|
data: z.ZodArray<z.ZodObject<{
|
|
30221
|
-
id: z.ZodString;
|
|
30222
30221
|
name: z.ZodString;
|
|
30223
|
-
|
|
30224
|
-
updatedAt: z.ZodString;
|
|
30222
|
+
id: z.ZodString;
|
|
30225
30223
|
description: z.ZodNullable<z.ZodString>;
|
|
30226
30224
|
props: z.ZodNullable<z.ZodType<{
|
|
30227
30225
|
[x: string]: unknown;
|
|
@@ -30265,6 +30263,8 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
30265
30263
|
component: string;
|
|
30266
30264
|
mockData: Record<string, unknown>;
|
|
30267
30265
|
}>>>;
|
|
30266
|
+
createdAt: z.ZodString;
|
|
30267
|
+
updatedAt: z.ZodString;
|
|
30268
30268
|
}, z.core.$strip>>;
|
|
30269
30269
|
pagination: z.ZodObject<{
|
|
30270
30270
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30292,11 +30292,11 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
30292
30292
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
30293
30293
|
data: z.ZodArray<z.ZodObject<{
|
|
30294
30294
|
id: z.ZodString;
|
|
30295
|
+
subAgentId: z.ZodString;
|
|
30296
|
+
toolId: z.ZodString;
|
|
30295
30297
|
createdAt: z.ZodString;
|
|
30296
30298
|
updatedAt: z.ZodString;
|
|
30297
|
-
subAgentId: z.ZodString;
|
|
30298
30299
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30299
|
-
toolId: z.ZodString;
|
|
30300
30300
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30301
30301
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30302
30302
|
}, z.core.$strip>>;
|
|
@@ -30309,28 +30309,29 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30309
30309
|
}, z.core.$strip>;
|
|
30310
30310
|
declare const TriggerListResponse: z.ZodObject<{
|
|
30311
30311
|
data: z.ZodArray<z.ZodObject<{
|
|
30312
|
-
id: z.ZodString;
|
|
30313
30312
|
name: z.ZodString;
|
|
30313
|
+
id: z.ZodString;
|
|
30314
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30315
|
+
enabled: z.ZodBoolean;
|
|
30314
30316
|
createdAt: z.ZodString;
|
|
30315
30317
|
updatedAt: z.ZodString;
|
|
30316
|
-
|
|
30318
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30317
30319
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30318
|
-
enabled: z.ZodBoolean;
|
|
30319
30320
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30320
30321
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30321
30322
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30322
30323
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30323
30324
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30324
30325
|
algorithm: z.ZodEnum<{
|
|
30326
|
+
md5: "md5";
|
|
30325
30327
|
sha256: "sha256";
|
|
30326
30328
|
sha512: "sha512";
|
|
30327
30329
|
sha384: "sha384";
|
|
30328
30330
|
sha1: "sha1";
|
|
30329
|
-
md5: "md5";
|
|
30330
30331
|
}>;
|
|
30331
30332
|
encoding: z.ZodEnum<{
|
|
30332
|
-
hex: "hex";
|
|
30333
30333
|
base64: "base64";
|
|
30334
|
+
hex: "hex";
|
|
30334
30335
|
}>;
|
|
30335
30336
|
signature: z.ZodObject<{
|
|
30336
30337
|
source: z.ZodEnum<{
|
|
@@ -30366,7 +30367,6 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30366
30367
|
}, z.core.$strip>>;
|
|
30367
30368
|
}, z.core.$strip>>>;
|
|
30368
30369
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30369
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30370
30370
|
}, z.core.$strip>>;
|
|
30371
30371
|
pagination: z.ZodObject<{
|
|
30372
30372
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30378,7 +30378,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30378
30378
|
declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
30379
30379
|
data: z.ZodArray<z.ZodObject<{
|
|
30380
30380
|
id: z.ZodString;
|
|
30381
|
-
|
|
30381
|
+
status: z.ZodString;
|
|
30382
30382
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30383
30383
|
type: z.ZodEnum<{
|
|
30384
30384
|
commit: "commit";
|
|
@@ -30388,7 +30388,7 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30388
30388
|
name: z.ZodString;
|
|
30389
30389
|
hash: z.ZodString;
|
|
30390
30390
|
}, z.core.$strip>>>;
|
|
30391
|
-
|
|
30391
|
+
createdAt: z.ZodString;
|
|
30392
30392
|
triggerId: z.ZodString;
|
|
30393
30393
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30394
30394
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -30404,28 +30404,29 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30404
30404
|
}, z.core.$strip>;
|
|
30405
30405
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30406
30406
|
data: z.ZodObject<{
|
|
30407
|
-
id: z.ZodString;
|
|
30408
30407
|
name: z.ZodString;
|
|
30408
|
+
id: z.ZodString;
|
|
30409
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30410
|
+
enabled: z.ZodBoolean;
|
|
30409
30411
|
createdAt: z.ZodString;
|
|
30410
30412
|
updatedAt: z.ZodString;
|
|
30411
|
-
|
|
30413
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30412
30414
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30413
|
-
enabled: z.ZodBoolean;
|
|
30414
30415
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30415
30416
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30416
30417
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30417
30418
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30418
30419
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30419
30420
|
algorithm: z.ZodEnum<{
|
|
30421
|
+
md5: "md5";
|
|
30420
30422
|
sha256: "sha256";
|
|
30421
30423
|
sha512: "sha512";
|
|
30422
30424
|
sha384: "sha384";
|
|
30423
30425
|
sha1: "sha1";
|
|
30424
|
-
md5: "md5";
|
|
30425
30426
|
}>;
|
|
30426
30427
|
encoding: z.ZodEnum<{
|
|
30427
|
-
hex: "hex";
|
|
30428
30428
|
base64: "base64";
|
|
30429
|
+
hex: "hex";
|
|
30429
30430
|
}>;
|
|
30430
30431
|
signature: z.ZodObject<{
|
|
30431
30432
|
source: z.ZodEnum<{
|
|
@@ -30461,34 +30462,34 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30461
30462
|
}, z.core.$strip>>;
|
|
30462
30463
|
}, z.core.$strip>>>;
|
|
30463
30464
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30464
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30465
30465
|
webhookUrl: z.ZodString;
|
|
30466
30466
|
}, z.core.$strip>;
|
|
30467
30467
|
}, z.core.$strip>;
|
|
30468
30468
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
30469
30469
|
data: z.ZodObject<{
|
|
30470
|
-
id: z.ZodString;
|
|
30471
30470
|
name: z.ZodString;
|
|
30471
|
+
id: z.ZodString;
|
|
30472
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30473
|
+
enabled: z.ZodBoolean;
|
|
30472
30474
|
createdAt: z.ZodString;
|
|
30473
30475
|
updatedAt: z.ZodString;
|
|
30474
|
-
|
|
30476
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30475
30477
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30476
|
-
enabled: z.ZodBoolean;
|
|
30477
30478
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30478
30479
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30479
30480
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30480
30481
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30481
30482
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30482
30483
|
algorithm: z.ZodEnum<{
|
|
30484
|
+
md5: "md5";
|
|
30483
30485
|
sha256: "sha256";
|
|
30484
30486
|
sha512: "sha512";
|
|
30485
30487
|
sha384: "sha384";
|
|
30486
30488
|
sha1: "sha1";
|
|
30487
|
-
md5: "md5";
|
|
30488
30489
|
}>;
|
|
30489
30490
|
encoding: z.ZodEnum<{
|
|
30490
|
-
hex: "hex";
|
|
30491
30491
|
base64: "base64";
|
|
30492
|
+
hex: "hex";
|
|
30492
30493
|
}>;
|
|
30493
30494
|
signature: z.ZodObject<{
|
|
30494
30495
|
source: z.ZodEnum<{
|
|
@@ -30524,35 +30525,35 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30524
30525
|
}, z.core.$strip>>;
|
|
30525
30526
|
}, z.core.$strip>>>;
|
|
30526
30527
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30527
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30528
30528
|
webhookUrl: z.ZodString;
|
|
30529
30529
|
}, z.core.$strip>;
|
|
30530
30530
|
warning: z.ZodOptional<z.ZodString>;
|
|
30531
30531
|
}, z.core.$strip>;
|
|
30532
30532
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30533
30533
|
data: z.ZodArray<z.ZodObject<{
|
|
30534
|
-
id: z.ZodString;
|
|
30535
30534
|
name: z.ZodString;
|
|
30535
|
+
id: z.ZodString;
|
|
30536
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30537
|
+
enabled: z.ZodBoolean;
|
|
30536
30538
|
createdAt: z.ZodString;
|
|
30537
30539
|
updatedAt: z.ZodString;
|
|
30538
|
-
|
|
30540
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30539
30541
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30540
|
-
enabled: z.ZodBoolean;
|
|
30541
30542
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30542
30543
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30543
30544
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30544
30545
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30545
30546
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30546
30547
|
algorithm: z.ZodEnum<{
|
|
30548
|
+
md5: "md5";
|
|
30547
30549
|
sha256: "sha256";
|
|
30548
30550
|
sha512: "sha512";
|
|
30549
30551
|
sha384: "sha384";
|
|
30550
30552
|
sha1: "sha1";
|
|
30551
|
-
md5: "md5";
|
|
30552
30553
|
}>;
|
|
30553
30554
|
encoding: z.ZodEnum<{
|
|
30554
|
-
hex: "hex";
|
|
30555
30555
|
base64: "base64";
|
|
30556
|
+
hex: "hex";
|
|
30556
30557
|
}>;
|
|
30557
30558
|
signature: z.ZodObject<{
|
|
30558
30559
|
source: z.ZodEnum<{
|
|
@@ -30588,7 +30589,6 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30588
30589
|
}, z.core.$strip>>;
|
|
30589
30590
|
}, z.core.$strip>>>;
|
|
30590
30591
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30591
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30592
30592
|
webhookUrl: z.ZodString;
|
|
30593
30593
|
}, z.core.$strip>>;
|
|
30594
30594
|
pagination: z.ZodObject<{
|
|
@@ -30606,16 +30606,16 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
30606
30606
|
pending: z.ZodNumber;
|
|
30607
30607
|
}, z.core.$strip>;
|
|
30608
30608
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30609
|
-
id: z.ZodString;
|
|
30610
30609
|
name: z.ZodString;
|
|
30611
|
-
|
|
30612
|
-
updatedAt: z.ZodString;
|
|
30613
|
-
ref: z.ZodString;
|
|
30610
|
+
id: z.ZodString;
|
|
30614
30611
|
description: z.ZodNullable<z.ZodString>;
|
|
30615
30612
|
enabled: z.ZodBoolean;
|
|
30613
|
+
ref: z.ZodString;
|
|
30614
|
+
createdAt: z.ZodString;
|
|
30615
|
+
updatedAt: z.ZodString;
|
|
30616
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30616
30617
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30617
30618
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30618
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30619
30619
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30620
30620
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30621
30621
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30644,16 +30644,16 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30644
30644
|
type ScheduledTriggerWithRunInfo = z.infer<typeof ScheduledTriggerWithRunInfoSchema>;
|
|
30645
30645
|
declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
30646
30646
|
data: z.ZodObject<{
|
|
30647
|
-
id: z.ZodString;
|
|
30648
30647
|
name: z.ZodString;
|
|
30649
|
-
|
|
30650
|
-
updatedAt: z.ZodString;
|
|
30651
|
-
ref: z.ZodString;
|
|
30648
|
+
id: z.ZodString;
|
|
30652
30649
|
description: z.ZodNullable<z.ZodString>;
|
|
30653
30650
|
enabled: z.ZodBoolean;
|
|
30651
|
+
ref: z.ZodString;
|
|
30652
|
+
createdAt: z.ZodString;
|
|
30653
|
+
updatedAt: z.ZodString;
|
|
30654
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30654
30655
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30655
30656
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30656
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30657
30657
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30658
30658
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30659
30659
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30667,16 +30667,16 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30667
30667
|
}, z.core.$strip>;
|
|
30668
30668
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
30669
30669
|
data: z.ZodArray<z.ZodObject<{
|
|
30670
|
-
id: z.ZodString;
|
|
30671
30670
|
name: z.ZodString;
|
|
30672
|
-
|
|
30673
|
-
updatedAt: z.ZodString;
|
|
30674
|
-
ref: z.ZodString;
|
|
30671
|
+
id: z.ZodString;
|
|
30675
30672
|
description: z.ZodNullable<z.ZodString>;
|
|
30676
30673
|
enabled: z.ZodBoolean;
|
|
30674
|
+
ref: z.ZodString;
|
|
30675
|
+
createdAt: z.ZodString;
|
|
30676
|
+
updatedAt: z.ZodString;
|
|
30677
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30677
30678
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30678
30679
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30679
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30680
30680
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30681
30681
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30682
30682
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30696,16 +30696,16 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30696
30696
|
}, z.core.$strip>;
|
|
30697
30697
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30698
30698
|
data: z.ZodArray<z.ZodObject<{
|
|
30699
|
-
id: z.ZodString;
|
|
30700
30699
|
name: z.ZodString;
|
|
30701
|
-
|
|
30702
|
-
updatedAt: z.ZodString;
|
|
30703
|
-
ref: z.ZodString;
|
|
30700
|
+
id: z.ZodString;
|
|
30704
30701
|
description: z.ZodNullable<z.ZodString>;
|
|
30705
30702
|
enabled: z.ZodBoolean;
|
|
30703
|
+
ref: z.ZodString;
|
|
30704
|
+
createdAt: z.ZodString;
|
|
30705
|
+
updatedAt: z.ZodString;
|
|
30706
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30706
30707
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30707
30708
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30708
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30709
30709
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30710
30710
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30711
30711
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30741,7 +30741,13 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30741
30741
|
declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
30742
30742
|
data: z.ZodObject<{
|
|
30743
30743
|
id: z.ZodString;
|
|
30744
|
-
|
|
30744
|
+
status: z.ZodEnum<{
|
|
30745
|
+
pending: "pending";
|
|
30746
|
+
failed: "failed";
|
|
30747
|
+
running: "running";
|
|
30748
|
+
completed: "completed";
|
|
30749
|
+
cancelled: "cancelled";
|
|
30750
|
+
}>;
|
|
30745
30751
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30746
30752
|
type: z.ZodEnum<{
|
|
30747
30753
|
commit: "commit";
|
|
@@ -30751,13 +30757,7 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30751
30757
|
name: z.ZodString;
|
|
30752
30758
|
hash: z.ZodString;
|
|
30753
30759
|
}, z.core.$strip>>>;
|
|
30754
|
-
|
|
30755
|
-
pending: "pending";
|
|
30756
|
-
failed: "failed";
|
|
30757
|
-
running: "running";
|
|
30758
|
-
completed: "completed";
|
|
30759
|
-
cancelled: "cancelled";
|
|
30760
|
-
}>;
|
|
30760
|
+
createdAt: z.ZodString;
|
|
30761
30761
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30762
30762
|
scheduledTriggerId: z.ZodString;
|
|
30763
30763
|
scheduledFor: z.ZodString;
|
|
@@ -30772,7 +30772,13 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30772
30772
|
declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
30773
30773
|
data: z.ZodArray<z.ZodObject<{
|
|
30774
30774
|
id: z.ZodString;
|
|
30775
|
-
|
|
30775
|
+
status: z.ZodEnum<{
|
|
30776
|
+
pending: "pending";
|
|
30777
|
+
failed: "failed";
|
|
30778
|
+
running: "running";
|
|
30779
|
+
completed: "completed";
|
|
30780
|
+
cancelled: "cancelled";
|
|
30781
|
+
}>;
|
|
30776
30782
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30777
30783
|
type: z.ZodEnum<{
|
|
30778
30784
|
commit: "commit";
|
|
@@ -30782,13 +30788,7 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30782
30788
|
name: z.ZodString;
|
|
30783
30789
|
hash: z.ZodString;
|
|
30784
30790
|
}, z.core.$strip>>>;
|
|
30785
|
-
|
|
30786
|
-
pending: "pending";
|
|
30787
|
-
failed: "failed";
|
|
30788
|
-
running: "running";
|
|
30789
|
-
completed: "completed";
|
|
30790
|
-
cancelled: "cancelled";
|
|
30791
|
-
}>;
|
|
30791
|
+
createdAt: z.ZodString;
|
|
30792
30792
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30793
30793
|
scheduledTriggerId: z.ZodString;
|
|
30794
30794
|
scheduledFor: z.ZodString;
|
|
@@ -30809,23 +30809,23 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30809
30809
|
declare const SubAgentDataComponentResponse: z.ZodObject<{
|
|
30810
30810
|
data: z.ZodObject<{
|
|
30811
30811
|
id: z.ZodString;
|
|
30812
|
-
createdAt: z.ZodString;
|
|
30813
30812
|
subAgentId: z.ZodString;
|
|
30813
|
+
createdAt: z.ZodString;
|
|
30814
30814
|
dataComponentId: z.ZodString;
|
|
30815
30815
|
}, z.core.$strip>;
|
|
30816
30816
|
}, z.core.$strip>;
|
|
30817
30817
|
declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
30818
30818
|
data: z.ZodObject<{
|
|
30819
30819
|
id: z.ZodString;
|
|
30820
|
-
createdAt: z.ZodString;
|
|
30821
30820
|
subAgentId: z.ZodString;
|
|
30821
|
+
createdAt: z.ZodString;
|
|
30822
30822
|
artifactComponentId: z.ZodString;
|
|
30823
30823
|
}, z.core.$strip>;
|
|
30824
30824
|
}, z.core.$strip>;
|
|
30825
30825
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
30826
30826
|
data: z.ZodObject<{
|
|
30827
|
-
id: z.ZodString;
|
|
30828
30827
|
name: z.ZodString;
|
|
30828
|
+
id: z.ZodString;
|
|
30829
30829
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30830
30830
|
models: z.ZodObject<{
|
|
30831
30831
|
base: z.ZodObject<{
|
|
@@ -30852,18 +30852,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30852
30852
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
30853
30853
|
}, z.core.$strip>>;
|
|
30854
30854
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30855
|
-
id: z.ZodString;
|
|
30856
30855
|
name: z.ZodString;
|
|
30856
|
+
id: z.ZodString;
|
|
30857
30857
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30858
30858
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30859
30859
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30860
30860
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
30861
30861
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30862
|
-
id: z.ZodString;
|
|
30863
30862
|
name: z.ZodString;
|
|
30863
|
+
id: z.ZodString;
|
|
30864
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30864
30865
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30865
30866
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30866
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30867
30867
|
models: z.ZodOptional<z.ZodObject<{
|
|
30868
30868
|
base: z.ZodOptional<z.ZodObject<{
|
|
30869
30869
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30918,10 +30918,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30918
30918
|
}, z.core.$strip>>;
|
|
30919
30919
|
}, z.core.$strip>>;
|
|
30920
30920
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30921
|
-
id: z.ZodString;
|
|
30922
30921
|
name: z.ZodString;
|
|
30922
|
+
id: z.ZodString;
|
|
30923
30923
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30924
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30925
30924
|
config: z.ZodObject<{
|
|
30926
30925
|
type: z.ZodLiteral<"mcp">;
|
|
30927
30926
|
mcp: z.ZodObject<{
|
|
@@ -30950,14 +30949,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30950
30949
|
}, z.core.$strip>;
|
|
30951
30950
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30952
30951
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
30952
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30953
30953
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
30954
30954
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
30955
30955
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30956
30956
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30957
30957
|
}, z.core.$strip>>>;
|
|
30958
30958
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30959
|
-
id: z.ZodString;
|
|
30960
30959
|
name: z.ZodString;
|
|
30960
|
+
id: z.ZodString;
|
|
30961
30961
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30962
30962
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30963
30963
|
baseUrl: z.ZodURL;
|
|
@@ -30968,8 +30968,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30968
30968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30969
30969
|
}, z.core.$strip>>>;
|
|
30970
30970
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30971
|
-
id: z.ZodString;
|
|
30972
30971
|
name: z.ZodString;
|
|
30972
|
+
id: z.ZodString;
|
|
30973
30973
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30974
30974
|
functionId: z.ZodString;
|
|
30975
30975
|
}, z.core.$strip>>>;
|
|
@@ -30980,18 +30980,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30980
30980
|
executeCode: z.ZodString;
|
|
30981
30981
|
}, z.core.$strip>>>;
|
|
30982
30982
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30983
|
-
id: z.ZodOptional<z.ZodString>;
|
|
30984
30983
|
name: z.ZodString;
|
|
30984
|
+
id: z.ZodOptional<z.ZodString>;
|
|
30985
30985
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30986
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30987
30986
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30987
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30988
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30988
30989
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30989
30990
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30990
30991
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30991
30992
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30992
30993
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30993
30994
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30994
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30995
30995
|
}, z.core.$strip>>>;
|
|
30996
30996
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
30997
30997
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -31039,10 +31039,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31039
31039
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31040
31040
|
}, z.core.$strip>>;
|
|
31041
31041
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31042
|
-
id: z.ZodString;
|
|
31043
31042
|
name: z.ZodString;
|
|
31043
|
+
id: z.ZodString;
|
|
31044
31044
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31045
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31046
31045
|
config: z.ZodObject<{
|
|
31047
31046
|
type: z.ZodLiteral<"mcp">;
|
|
31048
31047
|
mcp: z.ZodObject<{
|
|
@@ -31071,14 +31070,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31071
31070
|
}, z.core.$strip>;
|
|
31072
31071
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31073
31072
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31073
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31074
31074
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31075
31075
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
31076
31076
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31077
31077
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
31078
31078
|
}, z.core.$strip>>;
|
|
31079
31079
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31080
|
-
id: z.ZodString;
|
|
31081
31080
|
name: z.ZodString;
|
|
31081
|
+
id: z.ZodString;
|
|
31082
31082
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31083
31083
|
functionId: z.ZodString;
|
|
31084
31084
|
}, z.core.$strip>>>;
|
|
@@ -31171,8 +31171,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31171
31171
|
in: {};
|
|
31172
31172
|
}>>>;
|
|
31173
31173
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31174
|
-
id: z.ZodString;
|
|
31175
31174
|
name: z.ZodString;
|
|
31175
|
+
id: z.ZodString;
|
|
31176
31176
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31177
31177
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31178
31178
|
baseUrl: z.ZodURL;
|
|
@@ -31193,13 +31193,13 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31193
31193
|
}, z.core.$strip>>>;
|
|
31194
31194
|
}, z.core.$strict>>;
|
|
31195
31195
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31196
|
-
id: z.ZodString;
|
|
31197
31196
|
name: z.ZodString;
|
|
31197
|
+
id: z.ZodString;
|
|
31198
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31198
31199
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31199
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31200
31200
|
credentialStoreId: z.ZodString;
|
|
31201
31201
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31202
|
-
|
|
31202
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31203
31203
|
type: z.ZodEnum<{
|
|
31204
31204
|
readonly memory: "memory";
|
|
31205
31205
|
readonly keychain: "keychain";
|
|
@@ -31216,11 +31216,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31216
31216
|
}, z.core.$strip>;
|
|
31217
31217
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31218
31218
|
data: z.ZodObject<{
|
|
31219
|
-
id: z.ZodString;
|
|
31220
31219
|
name: z.ZodString;
|
|
31220
|
+
id: z.ZodString;
|
|
31221
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31221
31222
|
createdAt: z.ZodString;
|
|
31222
31223
|
updatedAt: z.ZodString;
|
|
31223
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31224
31224
|
models: z.ZodNullable<z.ZodObject<{
|
|
31225
31225
|
base: z.ZodObject<{
|
|
31226
31226
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31246,20 +31246,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31246
31246
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31247
31247
|
}, z.core.$strip>>;
|
|
31248
31248
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31249
|
-
id: z.ZodString;
|
|
31250
31249
|
name: z.ZodString;
|
|
31250
|
+
id: z.ZodString;
|
|
31251
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31251
31252
|
createdAt: z.ZodString;
|
|
31252
31253
|
updatedAt: z.ZodString;
|
|
31253
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31254
31254
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31255
31255
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31256
31256
|
executionMode: z.ZodString;
|
|
31257
31257
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31258
|
-
id: z.ZodString;
|
|
31259
31258
|
name: z.ZodString;
|
|
31259
|
+
id: z.ZodString;
|
|
31260
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31260
31261
|
createdAt: z.ZodString;
|
|
31261
31262
|
updatedAt: z.ZodString;
|
|
31262
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31263
31263
|
models: z.ZodNullable<z.ZodType<{
|
|
31264
31264
|
base?: {
|
|
31265
31265
|
model?: string | undefined;
|
|
@@ -31372,12 +31372,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31372
31372
|
}, z.core.$strip>]>>>;
|
|
31373
31373
|
}, z.core.$strip>>;
|
|
31374
31374
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31375
|
-
id: z.ZodString;
|
|
31376
31375
|
name: z.ZodString;
|
|
31376
|
+
id: z.ZodString;
|
|
31377
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31377
31378
|
createdAt: z.ZodString;
|
|
31378
31379
|
updatedAt: z.ZodString;
|
|
31379
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31380
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31381
31380
|
config: z.ZodType<{
|
|
31382
31381
|
type: "mcp";
|
|
31383
31382
|
mcp: ToolMcpConfig;
|
|
@@ -31393,17 +31392,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31393
31392
|
}>>;
|
|
31394
31393
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31395
31394
|
credentialScope: z.ZodString;
|
|
31395
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31396
31396
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31397
31397
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
31398
31398
|
lastError: z.ZodNullable<z.ZodString>;
|
|
31399
31399
|
isWorkApp: z.ZodBoolean;
|
|
31400
31400
|
}, z.core.$strip>>>;
|
|
31401
31401
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31402
|
-
id: z.ZodString;
|
|
31403
31402
|
name: z.ZodString;
|
|
31403
|
+
id: z.ZodString;
|
|
31404
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31404
31405
|
createdAt: z.ZodString;
|
|
31405
31406
|
updatedAt: z.ZodString;
|
|
31406
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31407
31407
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31408
31408
|
baseUrl: z.ZodString;
|
|
31409
31409
|
}, z.core.$strip>>>;
|
|
@@ -31413,12 +31413,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31413
31413
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31414
31414
|
}, z.core.$strip>>>;
|
|
31415
31415
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31416
|
-
id: z.ZodString;
|
|
31417
31416
|
name: z.ZodString;
|
|
31418
|
-
|
|
31419
|
-
updatedAt: z.ZodString;
|
|
31417
|
+
id: z.ZodString;
|
|
31420
31418
|
description: z.ZodNullable<z.ZodString>;
|
|
31421
31419
|
agentId: z.ZodString;
|
|
31420
|
+
createdAt: z.ZodString;
|
|
31421
|
+
updatedAt: z.ZodString;
|
|
31422
31422
|
functionId: z.ZodString;
|
|
31423
31423
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31424
31424
|
}, z.core.$strip>>>;
|
|
@@ -31478,12 +31478,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31478
31478
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31479
31479
|
}, z.core.$strip>>;
|
|
31480
31480
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31481
|
-
id: z.ZodString;
|
|
31482
31481
|
name: z.ZodString;
|
|
31482
|
+
id: z.ZodString;
|
|
31483
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31483
31484
|
createdAt: z.ZodString;
|
|
31484
31485
|
updatedAt: z.ZodString;
|
|
31485
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31486
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31487
31486
|
config: z.ZodType<{
|
|
31488
31487
|
type: "mcp";
|
|
31489
31488
|
mcp: ToolMcpConfig;
|
|
@@ -31499,18 +31498,19 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31499
31498
|
}>>;
|
|
31500
31499
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31501
31500
|
credentialScope: z.ZodString;
|
|
31501
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31502
31502
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31503
31503
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
31504
31504
|
lastError: z.ZodNullable<z.ZodString>;
|
|
31505
31505
|
isWorkApp: z.ZodBoolean;
|
|
31506
31506
|
}, z.core.$strip>>;
|
|
31507
31507
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31508
|
-
id: z.ZodString;
|
|
31509
31508
|
name: z.ZodString;
|
|
31510
|
-
|
|
31511
|
-
updatedAt: z.ZodString;
|
|
31509
|
+
id: z.ZodString;
|
|
31512
31510
|
description: z.ZodNullable<z.ZodString>;
|
|
31513
31511
|
agentId: z.ZodString;
|
|
31512
|
+
createdAt: z.ZodString;
|
|
31513
|
+
updatedAt: z.ZodString;
|
|
31514
31514
|
functionId: z.ZodString;
|
|
31515
31515
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31516
31516
|
}, z.core.$strip>>>;
|
|
@@ -31523,10 +31523,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31523
31523
|
executeCode: z.ZodString;
|
|
31524
31524
|
}, z.core.$strip>>>;
|
|
31525
31525
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31526
|
-
id: z.ZodString;
|
|
31527
31526
|
name: z.ZodString;
|
|
31528
|
-
|
|
31529
|
-
updatedAt: z.ZodString;
|
|
31527
|
+
id: z.ZodString;
|
|
31530
31528
|
description: z.ZodNullable<z.ZodString>;
|
|
31531
31529
|
props: z.ZodType<{
|
|
31532
31530
|
[x: string]: unknown;
|
|
@@ -31570,12 +31568,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31570
31568
|
component: string;
|
|
31571
31569
|
mockData: Record<string, unknown>;
|
|
31572
31570
|
}>>>;
|
|
31571
|
+
createdAt: z.ZodString;
|
|
31572
|
+
updatedAt: z.ZodString;
|
|
31573
31573
|
}, z.core.$strip>>>;
|
|
31574
31574
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31575
|
-
id: z.ZodString;
|
|
31576
31575
|
name: z.ZodString;
|
|
31577
|
-
|
|
31578
|
-
updatedAt: z.ZodString;
|
|
31576
|
+
id: z.ZodString;
|
|
31579
31577
|
description: z.ZodNullable<z.ZodString>;
|
|
31580
31578
|
props: z.ZodNullable<z.ZodType<{
|
|
31581
31579
|
[x: string]: unknown;
|
|
@@ -31619,13 +31617,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31619
31617
|
component: string;
|
|
31620
31618
|
mockData: Record<string, unknown>;
|
|
31621
31619
|
}>>>;
|
|
31620
|
+
createdAt: z.ZodString;
|
|
31621
|
+
updatedAt: z.ZodString;
|
|
31622
31622
|
}, z.core.$strip>>>;
|
|
31623
31623
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31624
|
-
id: z.ZodString;
|
|
31625
31624
|
name: z.ZodString;
|
|
31625
|
+
id: z.ZodString;
|
|
31626
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31626
31627
|
createdAt: z.ZodString;
|
|
31627
31628
|
updatedAt: z.ZodString;
|
|
31628
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31629
31629
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31630
31630
|
baseUrl: z.ZodString;
|
|
31631
31631
|
}, z.core.$strip>>>;
|
|
@@ -31645,15 +31645,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31645
31645
|
}, z.core.$strip>>>;
|
|
31646
31646
|
}, z.core.$strict>>;
|
|
31647
31647
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31648
|
-
id: z.ZodString;
|
|
31649
31648
|
name: z.ZodString;
|
|
31649
|
+
id: z.ZodString;
|
|
31650
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31650
31651
|
createdAt: z.ZodString;
|
|
31651
31652
|
updatedAt: z.ZodString;
|
|
31652
31653
|
userId: z.ZodNullable<z.ZodString>;
|
|
31653
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31654
31654
|
credentialStoreId: z.ZodString;
|
|
31655
31655
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31656
|
-
|
|
31656
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31657
31657
|
type: z.ZodEnum<{
|
|
31658
31658
|
readonly memory: "memory";
|
|
31659
31659
|
readonly keychain: "keychain";
|
|
@@ -32243,11 +32243,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32243
32243
|
}, z.core.$strip>;
|
|
32244
32244
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32245
32245
|
data: z.ZodObject<{
|
|
32246
|
-
id: z.ZodString;
|
|
32247
32246
|
name: z.ZodString;
|
|
32247
|
+
id: z.ZodString;
|
|
32248
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32248
32249
|
createdAt: z.ZodString;
|
|
32249
32250
|
updatedAt: z.ZodString;
|
|
32250
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32251
32251
|
models: z.ZodNullable<z.ZodObject<{
|
|
32252
32252
|
base: z.ZodObject<{
|
|
32253
32253
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -32273,12 +32273,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32273
32273
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
32274
32274
|
}, z.core.$strip>>;
|
|
32275
32275
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32276
|
-
id: z.ZodString;
|
|
32277
32276
|
name: z.ZodString;
|
|
32277
|
+
id: z.ZodString;
|
|
32278
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32278
32279
|
createdAt: z.ZodString;
|
|
32279
32280
|
updatedAt: z.ZodString;
|
|
32280
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32281
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32282
32281
|
config: z.ZodType<{
|
|
32283
32282
|
type: "mcp";
|
|
32284
32283
|
mcp: ToolMcpConfig;
|
|
@@ -32294,18 +32293,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32294
32293
|
}>>;
|
|
32295
32294
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32296
32295
|
credentialScope: z.ZodString;
|
|
32296
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32297
32297
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32298
32298
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
32299
32299
|
lastError: z.ZodNullable<z.ZodString>;
|
|
32300
32300
|
isWorkApp: z.ZodBoolean;
|
|
32301
32301
|
}, z.core.$strip>>;
|
|
32302
32302
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32303
|
-
id: z.ZodString;
|
|
32304
32303
|
name: z.ZodString;
|
|
32305
|
-
|
|
32306
|
-
updatedAt: z.ZodString;
|
|
32304
|
+
id: z.ZodString;
|
|
32307
32305
|
description: z.ZodNullable<z.ZodString>;
|
|
32308
32306
|
agentId: z.ZodString;
|
|
32307
|
+
createdAt: z.ZodString;
|
|
32308
|
+
updatedAt: z.ZodString;
|
|
32309
32309
|
functionId: z.ZodString;
|
|
32310
32310
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32311
32311
|
}, z.core.$strip>>>;
|
|
@@ -32318,10 +32318,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32318
32318
|
executeCode: z.ZodString;
|
|
32319
32319
|
}, z.core.$strip>>>;
|
|
32320
32320
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32321
|
-
id: z.ZodString;
|
|
32322
32321
|
name: z.ZodString;
|
|
32323
|
-
|
|
32324
|
-
updatedAt: z.ZodString;
|
|
32322
|
+
id: z.ZodString;
|
|
32325
32323
|
description: z.ZodNullable<z.ZodString>;
|
|
32326
32324
|
props: z.ZodType<{
|
|
32327
32325
|
[x: string]: unknown;
|
|
@@ -32365,12 +32363,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32365
32363
|
component: string;
|
|
32366
32364
|
mockData: Record<string, unknown>;
|
|
32367
32365
|
}>>>;
|
|
32366
|
+
createdAt: z.ZodString;
|
|
32367
|
+
updatedAt: z.ZodString;
|
|
32368
32368
|
}, z.core.$strip>>>;
|
|
32369
32369
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32370
|
-
id: z.ZodString;
|
|
32371
32370
|
name: z.ZodString;
|
|
32372
|
-
|
|
32373
|
-
updatedAt: z.ZodString;
|
|
32371
|
+
id: z.ZodString;
|
|
32374
32372
|
description: z.ZodNullable<z.ZodString>;
|
|
32375
32373
|
props: z.ZodNullable<z.ZodType<{
|
|
32376
32374
|
[x: string]: unknown;
|
|
@@ -32414,13 +32412,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32414
32412
|
component: string;
|
|
32415
32413
|
mockData: Record<string, unknown>;
|
|
32416
32414
|
}>>>;
|
|
32415
|
+
createdAt: z.ZodString;
|
|
32416
|
+
updatedAt: z.ZodString;
|
|
32417
32417
|
}, z.core.$strip>>>;
|
|
32418
32418
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32419
|
-
id: z.ZodString;
|
|
32420
32419
|
name: z.ZodString;
|
|
32420
|
+
id: z.ZodString;
|
|
32421
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32421
32422
|
createdAt: z.ZodString;
|
|
32422
32423
|
updatedAt: z.ZodString;
|
|
32423
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32424
32424
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32425
32425
|
baseUrl: z.ZodString;
|
|
32426
32426
|
}, z.core.$strip>>>;
|
|
@@ -32440,15 +32440,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32440
32440
|
}, z.core.$strip>>>;
|
|
32441
32441
|
}, z.core.$strict>>;
|
|
32442
32442
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32443
|
-
id: z.ZodString;
|
|
32444
32443
|
name: z.ZodString;
|
|
32444
|
+
id: z.ZodString;
|
|
32445
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32445
32446
|
createdAt: z.ZodString;
|
|
32446
32447
|
updatedAt: z.ZodString;
|
|
32447
32448
|
userId: z.ZodNullable<z.ZodString>;
|
|
32448
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32449
32449
|
credentialStoreId: z.ZodString;
|
|
32450
32450
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32451
|
-
|
|
32451
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32452
32452
|
type: z.ZodEnum<{
|
|
32453
32453
|
readonly memory: "memory";
|
|
32454
32454
|
readonly keychain: "keychain";
|
|
@@ -33032,21 +33032,20 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33032
33032
|
}>>>;
|
|
33033
33033
|
}, z.core.$strip>>>;
|
|
33034
33034
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33035
|
-
id: z.ZodString;
|
|
33036
33035
|
name: z.ZodString;
|
|
33036
|
+
id: z.ZodString;
|
|
33037
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33037
33038
|
createdAt: z.ZodString;
|
|
33038
33039
|
updatedAt: z.ZodString;
|
|
33039
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33040
33040
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33041
33041
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33042
33042
|
executionMode: z.ZodString;
|
|
33043
33043
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33044
|
-
id: z.ZodString;
|
|
33045
33044
|
name: z.ZodString;
|
|
33045
|
+
id: z.ZodString;
|
|
33046
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33046
33047
|
createdAt: z.ZodString;
|
|
33047
33048
|
updatedAt: z.ZodString;
|
|
33048
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33049
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33050
33049
|
config: z.ZodType<{
|
|
33051
33050
|
type: "mcp";
|
|
33052
33051
|
mcp: ToolMcpConfig;
|
|
@@ -33062,17 +33061,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33062
33061
|
}>>;
|
|
33063
33062
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33064
33063
|
credentialScope: z.ZodString;
|
|
33064
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33065
33065
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33066
33066
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
33067
33067
|
lastError: z.ZodNullable<z.ZodString>;
|
|
33068
33068
|
isWorkApp: z.ZodBoolean;
|
|
33069
33069
|
}, z.core.$strip>>>;
|
|
33070
33070
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33071
|
-
id: z.ZodString;
|
|
33072
33071
|
name: z.ZodString;
|
|
33072
|
+
id: z.ZodString;
|
|
33073
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33073
33074
|
createdAt: z.ZodString;
|
|
33074
33075
|
updatedAt: z.ZodString;
|
|
33075
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33076
33076
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33077
33077
|
baseUrl: z.ZodString;
|
|
33078
33078
|
}, z.core.$strip>>>;
|
|
@@ -33082,12 +33082,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33082
33082
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33083
33083
|
}, z.core.$strip>>>;
|
|
33084
33084
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33085
|
-
id: z.ZodString;
|
|
33086
33085
|
name: z.ZodString;
|
|
33087
|
-
|
|
33088
|
-
updatedAt: z.ZodString;
|
|
33086
|
+
id: z.ZodString;
|
|
33089
33087
|
description: z.ZodNullable<z.ZodString>;
|
|
33090
33088
|
agentId: z.ZodString;
|
|
33089
|
+
createdAt: z.ZodString;
|
|
33090
|
+
updatedAt: z.ZodString;
|
|
33091
33091
|
functionId: z.ZodString;
|
|
33092
33092
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33093
33093
|
}, z.core.$strip>>>;
|
|
@@ -33146,11 +33146,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33146
33146
|
}, z.core.$strip>>;
|
|
33147
33147
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33148
33148
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33149
|
-
id: z.ZodString;
|
|
33150
33149
|
name: z.ZodString;
|
|
33150
|
+
id: z.ZodString;
|
|
33151
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33151
33152
|
createdAt: z.ZodString;
|
|
33152
33153
|
updatedAt: z.ZodString;
|
|
33153
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33154
33154
|
models: z.ZodNullable<z.ZodType<{
|
|
33155
33155
|
base?: {
|
|
33156
33156
|
model?: string | undefined;
|
|
@@ -33276,18 +33276,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33276
33276
|
}, z.core.$strip>;
|
|
33277
33277
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33278
33278
|
data: z.ZodObject<{
|
|
33279
|
-
id: z.ZodString;
|
|
33280
33279
|
name: z.ZodString;
|
|
33280
|
+
id: z.ZodString;
|
|
33281
33281
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33282
33282
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33283
33283
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33284
33284
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
33285
33285
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33286
|
-
id: z.ZodString;
|
|
33287
33286
|
name: z.ZodString;
|
|
33287
|
+
id: z.ZodString;
|
|
33288
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33288
33289
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33289
33290
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33290
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33291
33291
|
models: z.ZodOptional<z.ZodObject<{
|
|
33292
33292
|
base: z.ZodOptional<z.ZodObject<{
|
|
33293
33293
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33342,10 +33342,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33342
33342
|
}, z.core.$strip>>;
|
|
33343
33343
|
}, z.core.$strip>>;
|
|
33344
33344
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33345
|
-
id: z.ZodString;
|
|
33346
33345
|
name: z.ZodString;
|
|
33346
|
+
id: z.ZodString;
|
|
33347
33347
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33348
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33349
33348
|
config: z.ZodObject<{
|
|
33350
33349
|
type: z.ZodLiteral<"mcp">;
|
|
33351
33350
|
mcp: z.ZodObject<{
|
|
@@ -33374,14 +33373,15 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33374
33373
|
}, z.core.$strip>;
|
|
33375
33374
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33376
33375
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33376
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33377
33377
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
33378
33378
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33379
33379
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33380
33380
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
33381
33381
|
}, z.core.$strip>>>;
|
|
33382
33382
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33383
|
-
id: z.ZodString;
|
|
33384
33383
|
name: z.ZodString;
|
|
33384
|
+
id: z.ZodString;
|
|
33385
33385
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33386
33386
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33387
33387
|
baseUrl: z.ZodURL;
|
|
@@ -33392,8 +33392,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33392
33392
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33393
33393
|
}, z.core.$strip>>>;
|
|
33394
33394
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33395
|
-
id: z.ZodString;
|
|
33396
33395
|
name: z.ZodString;
|
|
33396
|
+
id: z.ZodString;
|
|
33397
33397
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33398
33398
|
functionId: z.ZodString;
|
|
33399
33399
|
}, z.core.$strip>>>;
|
|
@@ -33404,18 +33404,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33404
33404
|
executeCode: z.ZodString;
|
|
33405
33405
|
}, z.core.$strip>>>;
|
|
33406
33406
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33407
|
-
id: z.ZodOptional<z.ZodString>;
|
|
33408
33407
|
name: z.ZodString;
|
|
33408
|
+
id: z.ZodOptional<z.ZodString>;
|
|
33409
33409
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33410
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33411
33410
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33411
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33412
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33412
33413
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33413
33414
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33414
33415
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33415
33416
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33416
33417
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33417
33418
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33418
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33419
33419
|
}, z.core.$strip>>>;
|
|
33420
33420
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
33421
33421
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -33465,20 +33465,20 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33465
33465
|
}, z.core.$strip>;
|
|
33466
33466
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33467
33467
|
data: z.ZodObject<{
|
|
33468
|
-
id: z.ZodString;
|
|
33469
33468
|
name: z.ZodString;
|
|
33469
|
+
id: z.ZodString;
|
|
33470
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33470
33471
|
createdAt: z.ZodString;
|
|
33471
33472
|
updatedAt: z.ZodString;
|
|
33472
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33473
33473
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33474
33474
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33475
33475
|
executionMode: z.ZodString;
|
|
33476
33476
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33477
|
-
id: z.ZodString;
|
|
33478
33477
|
name: z.ZodString;
|
|
33478
|
+
id: z.ZodString;
|
|
33479
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33479
33480
|
createdAt: z.ZodString;
|
|
33480
33481
|
updatedAt: z.ZodString;
|
|
33481
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33482
33482
|
models: z.ZodNullable<z.ZodType<{
|
|
33483
33483
|
base?: {
|
|
33484
33484
|
model?: string | undefined;
|
|
@@ -33591,12 +33591,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33591
33591
|
}, z.core.$strip>]>>>;
|
|
33592
33592
|
}, z.core.$strip>>;
|
|
33593
33593
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33594
|
-
id: z.ZodString;
|
|
33595
33594
|
name: z.ZodString;
|
|
33595
|
+
id: z.ZodString;
|
|
33596
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33596
33597
|
createdAt: z.ZodString;
|
|
33597
33598
|
updatedAt: z.ZodString;
|
|
33598
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33599
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33600
33599
|
config: z.ZodType<{
|
|
33601
33600
|
type: "mcp";
|
|
33602
33601
|
mcp: ToolMcpConfig;
|
|
@@ -33612,17 +33611,18 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33612
33611
|
}>>;
|
|
33613
33612
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33614
33613
|
credentialScope: z.ZodString;
|
|
33614
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33615
33615
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33616
33616
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
33617
33617
|
lastError: z.ZodNullable<z.ZodString>;
|
|
33618
33618
|
isWorkApp: z.ZodBoolean;
|
|
33619
33619
|
}, z.core.$strip>>>;
|
|
33620
33620
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33621
|
-
id: z.ZodString;
|
|
33622
33621
|
name: z.ZodString;
|
|
33622
|
+
id: z.ZodString;
|
|
33623
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33623
33624
|
createdAt: z.ZodString;
|
|
33624
33625
|
updatedAt: z.ZodString;
|
|
33625
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33626
33626
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33627
33627
|
baseUrl: z.ZodString;
|
|
33628
33628
|
}, z.core.$strip>>>;
|
|
@@ -33632,12 +33632,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33632
33632
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33633
33633
|
}, z.core.$strip>>>;
|
|
33634
33634
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33635
|
-
id: z.ZodString;
|
|
33636
33635
|
name: z.ZodString;
|
|
33637
|
-
|
|
33638
|
-
updatedAt: z.ZodString;
|
|
33636
|
+
id: z.ZodString;
|
|
33639
33637
|
description: z.ZodNullable<z.ZodString>;
|
|
33640
33638
|
agentId: z.ZodString;
|
|
33639
|
+
createdAt: z.ZodString;
|
|
33640
|
+
updatedAt: z.ZodString;
|
|
33641
33641
|
functionId: z.ZodString;
|
|
33642
33642
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33643
33643
|
}, z.core.$strip>>>;
|
|
@@ -33718,12 +33718,11 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
33718
33718
|
}, z.core.$strip>;
|
|
33719
33719
|
declare const McpToolResponse: z.ZodObject<{
|
|
33720
33720
|
data: z.ZodObject<{
|
|
33721
|
-
id: z.ZodString;
|
|
33722
33721
|
name: z.ZodString;
|
|
33723
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33724
33722
|
tenantId: z.ZodString;
|
|
33725
33723
|
projectId: z.ZodString;
|
|
33726
|
-
|
|
33724
|
+
id: z.ZodString;
|
|
33725
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33727
33726
|
config: z.ZodObject<{
|
|
33728
33727
|
type: z.ZodLiteral<"mcp">;
|
|
33729
33728
|
mcp: z.ZodObject<{
|
|
@@ -33752,6 +33751,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33752
33751
|
}, z.core.$strip>;
|
|
33753
33752
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33754
33753
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33754
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33755
33755
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33756
33756
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33757
33757
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33779,12 +33779,11 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33779
33779
|
}, z.core.$strip>;
|
|
33780
33780
|
declare const McpToolListResponse: z.ZodObject<{
|
|
33781
33781
|
data: z.ZodArray<z.ZodObject<{
|
|
33782
|
-
id: z.ZodString;
|
|
33783
33782
|
name: z.ZodString;
|
|
33784
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33785
33783
|
tenantId: z.ZodString;
|
|
33786
33784
|
projectId: z.ZodString;
|
|
33787
|
-
|
|
33785
|
+
id: z.ZodString;
|
|
33786
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33788
33787
|
config: z.ZodObject<{
|
|
33789
33788
|
type: z.ZodLiteral<"mcp">;
|
|
33790
33789
|
mcp: z.ZodObject<{
|
|
@@ -33813,6 +33812,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33813
33812
|
}, z.core.$strip>;
|
|
33814
33813
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33815
33814
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33815
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33816
33816
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33817
33817
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33818
33818
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33847,9 +33847,9 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33847
33847
|
declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
33848
33848
|
data: z.ZodObject<{
|
|
33849
33849
|
id: z.ZodString;
|
|
33850
|
+
subAgentId: z.ZodString;
|
|
33850
33851
|
createdAt: z.ZodString;
|
|
33851
33852
|
updatedAt: z.ZodString;
|
|
33852
|
-
subAgentId: z.ZodString;
|
|
33853
33853
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33854
33854
|
targetAgentId: z.ZodString;
|
|
33855
33855
|
}, z.core.$strip>;
|
|
@@ -33857,9 +33857,9 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
33857
33857
|
declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
33858
33858
|
data: z.ZodArray<z.ZodObject<{
|
|
33859
33859
|
id: z.ZodString;
|
|
33860
|
+
subAgentId: z.ZodString;
|
|
33860
33861
|
createdAt: z.ZodString;
|
|
33861
33862
|
updatedAt: z.ZodString;
|
|
33862
|
-
subAgentId: z.ZodString;
|
|
33863
33863
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33864
33864
|
targetAgentId: z.ZodString;
|
|
33865
33865
|
}, z.core.$strip>>;
|
|
@@ -33873,9 +33873,9 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
33873
33873
|
declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
33874
33874
|
data: z.ZodObject<{
|
|
33875
33875
|
id: z.ZodString;
|
|
33876
|
+
subAgentId: z.ZodString;
|
|
33876
33877
|
createdAt: z.ZodString;
|
|
33877
33878
|
updatedAt: z.ZodString;
|
|
33878
|
-
subAgentId: z.ZodString;
|
|
33879
33879
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33880
33880
|
externalAgentId: z.ZodString;
|
|
33881
33881
|
}, z.core.$strip>;
|
|
@@ -33883,9 +33883,9 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
33883
33883
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
33884
33884
|
data: z.ZodArray<z.ZodObject<{
|
|
33885
33885
|
id: z.ZodString;
|
|
33886
|
+
subAgentId: z.ZodString;
|
|
33886
33887
|
createdAt: z.ZodString;
|
|
33887
33888
|
updatedAt: z.ZodString;
|
|
33888
|
-
subAgentId: z.ZodString;
|
|
33889
33889
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33890
33890
|
externalAgentId: z.ZodString;
|
|
33891
33891
|
}, z.core.$strip>>;
|
|
@@ -33898,10 +33898,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33898
33898
|
}, z.core.$strip>;
|
|
33899
33899
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
33900
33900
|
data: z.ZodArray<z.ZodObject<{
|
|
33901
|
-
id: z.ZodString;
|
|
33902
33901
|
name: z.ZodString;
|
|
33903
|
-
|
|
33904
|
-
updatedAt: z.ZodString;
|
|
33902
|
+
id: z.ZodString;
|
|
33905
33903
|
description: z.ZodNullable<z.ZodString>;
|
|
33906
33904
|
props: z.ZodType<{
|
|
33907
33905
|
[x: string]: unknown;
|
|
@@ -33945,14 +33943,14 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
33945
33943
|
component: string;
|
|
33946
33944
|
mockData: Record<string, unknown>;
|
|
33947
33945
|
}>>>;
|
|
33946
|
+
createdAt: z.ZodString;
|
|
33947
|
+
updatedAt: z.ZodString;
|
|
33948
33948
|
}, z.core.$strip>>;
|
|
33949
33949
|
}, z.core.$strip>;
|
|
33950
33950
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
33951
33951
|
data: z.ZodArray<z.ZodObject<{
|
|
33952
|
-
id: z.ZodString;
|
|
33953
33952
|
name: z.ZodString;
|
|
33954
|
-
|
|
33955
|
-
updatedAt: z.ZodString;
|
|
33953
|
+
id: z.ZodString;
|
|
33956
33954
|
description: z.ZodNullable<z.ZodString>;
|
|
33957
33955
|
props: z.ZodNullable<z.ZodType<{
|
|
33958
33956
|
[x: string]: unknown;
|
|
@@ -33996,6 +33994,8 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
33996
33994
|
component: string;
|
|
33997
33995
|
mockData: Record<string, unknown>;
|
|
33998
33996
|
}>>>;
|
|
33997
|
+
createdAt: z.ZodString;
|
|
33998
|
+
updatedAt: z.ZodString;
|
|
33999
33999
|
}, z.core.$strip>>;
|
|
34000
34000
|
}, z.core.$strip>;
|
|
34001
34001
|
declare const HeadersScopeSchema: z.ZodObject<{
|
|
@@ -34305,8 +34305,8 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
34305
34305
|
}>;
|
|
34306
34306
|
}, undefined>, undefined>;
|
|
34307
34307
|
declare const ProjectMetadataInsertSchema: z.ZodObject<{
|
|
34308
|
-
id: z.ZodString;
|
|
34309
34308
|
tenantId: z.ZodString;
|
|
34309
|
+
id: z.ZodString;
|
|
34310
34310
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34311
34311
|
mainBranchName: z.ZodString;
|
|
34312
34312
|
}, {
|
|
@@ -34320,8 +34320,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
34320
34320
|
disconnected: "disconnected";
|
|
34321
34321
|
}>;
|
|
34322
34322
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
34323
|
-
Organization: "Organization";
|
|
34324
34323
|
User: "User";
|
|
34324
|
+
Organization: "Organization";
|
|
34325
34325
|
}>;
|
|
34326
34326
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34327
34327
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -34416,7 +34416,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34416
34416
|
tableName: "work_app_github_installations";
|
|
34417
34417
|
dataType: "string";
|
|
34418
34418
|
columnType: "PgVarchar";
|
|
34419
|
-
data: "
|
|
34419
|
+
data: "User" | "Organization";
|
|
34420
34420
|
driverParam: string;
|
|
34421
34421
|
notNull: true;
|
|
34422
34422
|
hasDefault: false;
|
|
@@ -34429,7 +34429,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34429
34429
|
generated: undefined;
|
|
34430
34430
|
}, {}, {
|
|
34431
34431
|
length: 20;
|
|
34432
|
-
$type: "
|
|
34432
|
+
$type: "User" | "Organization";
|
|
34433
34433
|
}>;
|
|
34434
34434
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
34435
34435
|
name: "status";
|
|
@@ -34582,7 +34582,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34582
34582
|
tableName: "work_app_github_installations";
|
|
34583
34583
|
dataType: "string";
|
|
34584
34584
|
columnType: "PgVarchar";
|
|
34585
|
-
data: "
|
|
34585
|
+
data: "User" | "Organization";
|
|
34586
34586
|
driverParam: string;
|
|
34587
34587
|
notNull: true;
|
|
34588
34588
|
hasDefault: false;
|
|
@@ -34595,7 +34595,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34595
34595
|
generated: undefined;
|
|
34596
34596
|
}, {}, {
|
|
34597
34597
|
length: 20;
|
|
34598
|
-
$type: "
|
|
34598
|
+
$type: "User" | "Organization";
|
|
34599
34599
|
}>;
|
|
34600
34600
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
34601
34601
|
name: "status";
|
|
@@ -34657,14 +34657,14 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34657
34657
|
}>;
|
|
34658
34658
|
}, undefined>, undefined>;
|
|
34659
34659
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
34660
|
+
tenantId: z.ZodString;
|
|
34660
34661
|
id: z.ZodString;
|
|
34661
34662
|
accountId: z.ZodString;
|
|
34662
|
-
tenantId: z.ZodString;
|
|
34663
34663
|
installationId: z.ZodString;
|
|
34664
34664
|
accountLogin: z.ZodString;
|
|
34665
34665
|
accountType: z.ZodEnum<{
|
|
34666
|
-
Organization: "Organization";
|
|
34667
34666
|
User: "User";
|
|
34667
|
+
Organization: "Organization";
|
|
34668
34668
|
}>;
|
|
34669
34669
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34670
34670
|
pending: "pending";
|
|
@@ -34678,28 +34678,28 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
34678
34678
|
}>;
|
|
34679
34679
|
declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
34680
34680
|
id: z.ZodString;
|
|
34681
|
+
status: z.ZodString;
|
|
34681
34682
|
createdAt: z.ZodString;
|
|
34682
34683
|
updatedAt: z.ZodString;
|
|
34683
34684
|
accountId: z.ZodString;
|
|
34684
|
-
status: z.ZodString;
|
|
34685
34685
|
installationId: z.ZodString;
|
|
34686
34686
|
accountLogin: z.ZodString;
|
|
34687
34687
|
accountType: z.ZodString;
|
|
34688
34688
|
}, z.core.$strip>;
|
|
34689
34689
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
34690
|
-
|
|
34690
|
+
tenantId: z.ZodString;
|
|
34691
34691
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34692
34692
|
pending: "pending";
|
|
34693
34693
|
active: "active";
|
|
34694
34694
|
suspended: "suspended";
|
|
34695
34695
|
disconnected: "disconnected";
|
|
34696
34696
|
}>>>;
|
|
34697
|
-
|
|
34697
|
+
accountId: z.ZodString;
|
|
34698
34698
|
installationId: z.ZodString;
|
|
34699
34699
|
accountLogin: z.ZodString;
|
|
34700
34700
|
accountType: z.ZodEnum<{
|
|
34701
|
-
Organization: "Organization";
|
|
34702
34701
|
User: "User";
|
|
34702
|
+
Organization: "Organization";
|
|
34703
34703
|
}>;
|
|
34704
34704
|
}, z.core.$strip>;
|
|
34705
34705
|
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -37191,10 +37191,10 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
37191
37191
|
in: {};
|
|
37192
37192
|
}>;
|
|
37193
37193
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
37194
|
-
id: z.ZodString;
|
|
37195
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37196
37194
|
tenantId: z.ZodString;
|
|
37197
37195
|
projectId: z.ZodString;
|
|
37196
|
+
id: z.ZodString;
|
|
37197
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37198
37198
|
agentId: z.ZodString;
|
|
37199
37199
|
conversationId: z.ZodString;
|
|
37200
37200
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -37209,10 +37209,10 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
37209
37209
|
in: {};
|
|
37210
37210
|
}>;
|
|
37211
37211
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
37212
|
-
id: z.ZodOptional<z.ZodString>;
|
|
37213
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37214
37212
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
37215
37213
|
projectId: z.ZodOptional<z.ZodString>;
|
|
37214
|
+
id: z.ZodOptional<z.ZodString>;
|
|
37215
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37216
37216
|
agentId: z.ZodOptional<z.ZodString>;
|
|
37217
37217
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
37218
37218
|
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|