@inkeep/agents-core 0.0.0-dev-20260408202201 → 0.0.0-dev-20260408222751
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +21 -21
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/triggers.d.ts +4 -4
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +10 -10
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/feedback.d.ts +6 -6
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +453 -453
- package/dist/db/runtime/runtime-schema.d.ts +403 -403
- package/dist/validation/schemas/skills.d.ts +15 -15
- package/dist/validation/schemas.d.ts +536 -536
- package/package.json +1 -1
|
@@ -741,6 +741,8 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
742
|
id: z.ZodString;
|
|
743
743
|
name: z.ZodString;
|
|
744
|
+
createdAt: z.ZodString;
|
|
745
|
+
updatedAt: z.ZodString;
|
|
744
746
|
description: z.ZodNullable<z.ZodString>;
|
|
745
747
|
models: z.ZodNullable<z.ZodType<{
|
|
746
748
|
base?: {
|
|
@@ -829,13 +831,13 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
829
831
|
}, {
|
|
830
832
|
stepCountIs?: number | undefined;
|
|
831
833
|
}>>>;
|
|
832
|
-
createdAt: z.ZodString;
|
|
833
|
-
updatedAt: z.ZodString;
|
|
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
837
|
id: z.ZodString;
|
|
838
838
|
name: z.ZodString;
|
|
839
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
840
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
839
841
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
840
842
|
models: z.ZodOptional<z.ZodObject<{
|
|
841
843
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -867,13 +869,13 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
867
869
|
}, {
|
|
868
870
|
stepCountIs?: number | undefined;
|
|
869
871
|
}>>>>;
|
|
870
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
871
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
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
875
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
876
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
878
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
877
879
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
878
880
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
879
881
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -905,8 +907,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
905
907
|
}, {
|
|
906
908
|
stepCountIs?: number | undefined;
|
|
907
909
|
}>>>>>>;
|
|
908
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
909
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
910
910
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
911
911
|
}, z.core.$strip>;
|
|
912
912
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "projectId" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen" | "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>>;
|
|
@@ -2827,6 +2827,8 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
2828
|
id: z.ZodString;
|
|
2829
2829
|
name: z.ZodString;
|
|
2830
|
+
createdAt: z.ZodString;
|
|
2831
|
+
updatedAt: z.ZodString;
|
|
2830
2832
|
description: z.ZodNullable<z.ZodString>;
|
|
2831
2833
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2832
2834
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
@@ -2975,8 +2977,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2975
2977
|
transferCountIs?: number | undefined;
|
|
2976
2978
|
}>>>;
|
|
2977
2979
|
executionMode: z.ZodString;
|
|
2978
|
-
createdAt: z.ZodString;
|
|
2979
|
-
updatedAt: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
2982
|
id: z.ZodString;
|
|
@@ -3346,8 +3346,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3346
3346
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3347
3347
|
source: z.ZodEnum<{
|
|
3348
3348
|
query: "query";
|
|
3349
|
-
header: "header";
|
|
3350
3349
|
body: "body";
|
|
3350
|
+
header: "header";
|
|
3351
3351
|
}>;
|
|
3352
3352
|
key: z.ZodString;
|
|
3353
3353
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3376,8 +3376,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3376
3376
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3377
3377
|
source: z.ZodEnum<{
|
|
3378
3378
|
literal: "literal";
|
|
3379
|
-
header: "header";
|
|
3380
3379
|
body: "body";
|
|
3380
|
+
header: "header";
|
|
3381
3381
|
}>;
|
|
3382
3382
|
key: z.ZodOptional<z.ZodString>;
|
|
3383
3383
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3473,21 +3473,21 @@ 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<{
|
|
3488
3488
|
query: "query";
|
|
3489
|
-
header: "header";
|
|
3490
3489
|
body: "body";
|
|
3490
|
+
header: "header";
|
|
3491
3491
|
}>;
|
|
3492
3492
|
key: z.ZodString;
|
|
3493
3493
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3496,8 +3496,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3496
3496
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3497
3497
|
source: z.ZodEnum<{
|
|
3498
3498
|
literal: "literal";
|
|
3499
|
-
header: "header";
|
|
3500
3499
|
body: "body";
|
|
3500
|
+
header: "header";
|
|
3501
3501
|
}>;
|
|
3502
3502
|
key: z.ZodOptional<z.ZodString>;
|
|
3503
3503
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3548,8 +3548,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3548
3548
|
*/
|
|
3549
3549
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3550
3550
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3551
|
-
success: "success";
|
|
3552
3551
|
pending: "pending";
|
|
3552
|
+
success: "success";
|
|
3553
3553
|
failed: "failed";
|
|
3554
3554
|
}>;
|
|
3555
3555
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
@@ -3569,21 +3569,21 @@ 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<{
|
|
3584
3584
|
query: "query";
|
|
3585
|
-
header: "header";
|
|
3586
3585
|
body: "body";
|
|
3586
|
+
header: "header";
|
|
3587
3587
|
}>;
|
|
3588
3588
|
key: z.ZodString;
|
|
3589
3589
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3592,8 +3592,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3592
3592
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3593
3593
|
source: z.ZodEnum<{
|
|
3594
3594
|
literal: "literal";
|
|
3595
|
-
header: "header";
|
|
3596
3595
|
body: "body";
|
|
3596
|
+
header: "header";
|
|
3597
3597
|
}>;
|
|
3598
3598
|
key: z.ZodOptional<z.ZodString>;
|
|
3599
3599
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3775,16 +3775,16 @@ 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
|
-
source: "query" | "
|
|
3781
|
+
source: "query" | "body" | "header";
|
|
3782
3782
|
key: string;
|
|
3783
3783
|
prefix?: string | undefined;
|
|
3784
3784
|
regex?: string | undefined;
|
|
3785
3785
|
};
|
|
3786
3786
|
signedComponents: {
|
|
3787
|
-
source: "literal" | "
|
|
3787
|
+
source: "literal" | "body" | "header";
|
|
3788
3788
|
required: boolean;
|
|
3789
3789
|
key?: string | undefined;
|
|
3790
3790
|
value?: string | undefined;
|
|
@@ -3812,16 +3812,16 @@ 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
|
-
source: "query" | "
|
|
3818
|
+
source: "query" | "body" | "header";
|
|
3819
3819
|
key: string;
|
|
3820
3820
|
prefix?: string | undefined;
|
|
3821
3821
|
regex?: string | undefined;
|
|
3822
3822
|
};
|
|
3823
3823
|
signedComponents: {
|
|
3824
|
-
source: "literal" | "
|
|
3824
|
+
source: "literal" | "body" | "header";
|
|
3825
3825
|
required: boolean;
|
|
3826
3826
|
key?: string | undefined;
|
|
3827
3827
|
value?: string | undefined;
|
|
@@ -4145,16 +4145,16 @@ 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
|
-
source: "query" | "
|
|
4151
|
+
source: "query" | "body" | "header";
|
|
4152
4152
|
key: string;
|
|
4153
4153
|
prefix?: string | undefined;
|
|
4154
4154
|
regex?: string | undefined;
|
|
4155
4155
|
};
|
|
4156
4156
|
signedComponents: {
|
|
4157
|
-
source: "literal" | "
|
|
4157
|
+
source: "literal" | "body" | "header";
|
|
4158
4158
|
required: boolean;
|
|
4159
4159
|
key?: string | undefined;
|
|
4160
4160
|
value?: string | undefined;
|
|
@@ -4182,16 +4182,16 @@ 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
|
-
source: "query" | "
|
|
4188
|
+
source: "query" | "body" | "header";
|
|
4189
4189
|
key: string;
|
|
4190
4190
|
prefix?: string | undefined;
|
|
4191
4191
|
regex?: string | undefined;
|
|
4192
4192
|
};
|
|
4193
4193
|
signedComponents: {
|
|
4194
|
-
source: "literal" | "
|
|
4194
|
+
source: "literal" | "body" | "header";
|
|
4195
4195
|
required: boolean;
|
|
4196
4196
|
key?: string | undefined;
|
|
4197
4197
|
value?: string | undefined;
|
|
@@ -4358,7 +4358,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4358
4358
|
}, {}, {
|
|
4359
4359
|
length: 256;
|
|
4360
4360
|
}>;
|
|
4361
|
-
}, "
|
|
4361
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "agentId" | "projectId" | "tenantId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "createdBy">, undefined>, undefined>;
|
|
4362
4362
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4363
4363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4364
4364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4384,11 +4384,10 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4384
4384
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4385
4385
|
id: z.ZodString;
|
|
4386
4386
|
name: z.ZodString;
|
|
4387
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4388
|
-
enabled: z.ZodBoolean;
|
|
4389
4387
|
createdAt: z.ZodString;
|
|
4390
4388
|
updatedAt: z.ZodString;
|
|
4391
|
-
|
|
4389
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4390
|
+
enabled: z.ZodBoolean;
|
|
4392
4391
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4393
4392
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4394
4393
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4396,21 +4395,21 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4396
4395
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4397
4396
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4398
4397
|
algorithm: z.ZodEnum<{
|
|
4398
|
+
md5: "md5";
|
|
4399
4399
|
sha256: "sha256";
|
|
4400
4400
|
sha512: "sha512";
|
|
4401
4401
|
sha384: "sha384";
|
|
4402
4402
|
sha1: "sha1";
|
|
4403
|
-
md5: "md5";
|
|
4404
4403
|
}>;
|
|
4405
4404
|
encoding: z.ZodEnum<{
|
|
4406
|
-
hex: "hex";
|
|
4407
4405
|
base64: "base64";
|
|
4406
|
+
hex: "hex";
|
|
4408
4407
|
}>;
|
|
4409
4408
|
signature: z.ZodObject<{
|
|
4410
4409
|
source: z.ZodEnum<{
|
|
4411
4410
|
query: "query";
|
|
4412
|
-
header: "header";
|
|
4413
4411
|
body: "body";
|
|
4412
|
+
header: "header";
|
|
4414
4413
|
}>;
|
|
4415
4414
|
key: z.ZodString;
|
|
4416
4415
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4419,8 +4418,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4419
4418
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4420
4419
|
source: z.ZodEnum<{
|
|
4421
4420
|
literal: "literal";
|
|
4422
|
-
header: "header";
|
|
4423
4421
|
body: "body";
|
|
4422
|
+
header: "header";
|
|
4424
4423
|
}>;
|
|
4425
4424
|
key: z.ZodOptional<z.ZodString>;
|
|
4426
4425
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4440,13 +4439,13 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4440
4439
|
}, z.core.$strip>>;
|
|
4441
4440
|
}, z.core.$strip>>>;
|
|
4442
4441
|
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
4445
|
id: z.ZodOptional<z.ZodString>;
|
|
4446
4446
|
name: z.ZodString;
|
|
4447
4447
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4448
4448
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4449
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4450
4449
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4451
4450
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4452
4451
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4454,15 +4453,15 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4454
4453
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4455
4454
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4456
4455
|
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
4459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4460
4460
|
name: 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>>>;
|
|
4463
4461
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4464
4462
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4465
|
-
|
|
4463
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4464
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4466
4465
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4467
4466
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4468
4467
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4470,15 +4469,15 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4470
4469
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4471
4470
|
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4472
4471
|
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
4475
|
id: z.ZodString;
|
|
4476
4476
|
name: z.ZodString;
|
|
4477
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4478
|
-
enabled: z.ZodBoolean;
|
|
4479
4477
|
createdAt: z.ZodString;
|
|
4480
4478
|
updatedAt: z.ZodString;
|
|
4481
|
-
|
|
4479
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4480
|
+
enabled: z.ZodBoolean;
|
|
4482
4481
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4483
4482
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4484
4483
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4486,21 +4485,21 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4486
4485
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4487
4486
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4488
4487
|
algorithm: z.ZodEnum<{
|
|
4488
|
+
md5: "md5";
|
|
4489
4489
|
sha256: "sha256";
|
|
4490
4490
|
sha512: "sha512";
|
|
4491
4491
|
sha384: "sha384";
|
|
4492
4492
|
sha1: "sha1";
|
|
4493
|
-
md5: "md5";
|
|
4494
4493
|
}>;
|
|
4495
4494
|
encoding: z.ZodEnum<{
|
|
4496
|
-
hex: "hex";
|
|
4497
4495
|
base64: "base64";
|
|
4496
|
+
hex: "hex";
|
|
4498
4497
|
}>;
|
|
4499
4498
|
signature: z.ZodObject<{
|
|
4500
4499
|
source: z.ZodEnum<{
|
|
4501
4500
|
query: "query";
|
|
4502
|
-
header: "header";
|
|
4503
4501
|
body: "body";
|
|
4502
|
+
header: "header";
|
|
4504
4503
|
}>;
|
|
4505
4504
|
key: z.ZodString;
|
|
4506
4505
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4509,8 +4508,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4509
4508
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4510
4509
|
source: z.ZodEnum<{
|
|
4511
4510
|
literal: "literal";
|
|
4512
|
-
header: "header";
|
|
4513
4511
|
body: "body";
|
|
4512
|
+
header: "header";
|
|
4514
4513
|
}>;
|
|
4515
4514
|
key: z.ZodOptional<z.ZodString>;
|
|
4516
4515
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4530,6 +4529,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4530
4529
|
}, z.core.$strip>>;
|
|
4531
4530
|
}, z.core.$strip>>>;
|
|
4532
4531
|
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
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "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,6 +5051,7 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5051
5051
|
}>;
|
|
5052
5052
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5053
5053
|
id: z.ZodString;
|
|
5054
|
+
createdAt: z.ZodString;
|
|
5054
5055
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5055
5056
|
type: z.ZodEnum<{
|
|
5056
5057
|
commit: "commit";
|
|
@@ -5060,7 +5061,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5060
5061
|
name: z.ZodString;
|
|
5061
5062
|
hash: z.ZodString;
|
|
5062
5063
|
}, z.core.$strip>>>;
|
|
5063
|
-
createdAt: z.ZodString;
|
|
5064
5064
|
status: z.ZodString;
|
|
5065
5065
|
triggerId: z.ZodString;
|
|
5066
5066
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -5069,6 +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
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5072
5073
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5073
5074
|
type: "commit" | "tag" | "branch";
|
|
5074
5075
|
name: string;
|
|
@@ -5086,7 +5087,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5086
5087
|
name: string;
|
|
5087
5088
|
hash: string;
|
|
5088
5089
|
}>>>>;
|
|
5089
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5090
5090
|
status: z.ZodOptional<z.ZodString>;
|
|
5091
5091
|
triggerId: z.ZodString;
|
|
5092
5092
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5097,6 +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
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5100
5101
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5101
5102
|
type: "commit" | "tag" | "branch";
|
|
5102
5103
|
name: string;
|
|
@@ -5114,7 +5115,6 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5114
5115
|
name: string;
|
|
5115
5116
|
hash: string;
|
|
5116
5117
|
}>>>>>>;
|
|
5117
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5118
5118
|
status: 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>>>>;
|
|
@@ -5152,17 +5152,17 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5152
5152
|
in: {};
|
|
5153
5153
|
}>;
|
|
5154
5154
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5155
|
-
tenantId: z.ZodString;
|
|
5156
|
-
projectId: z.ZodString;
|
|
5157
5155
|
id: z.ZodString;
|
|
5158
5156
|
name: z.ZodString;
|
|
5159
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5160
5157
|
ref: z.ZodOptional<z.ZodString>;
|
|
5158
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5161
5159
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5162
5160
|
agentId: z.ZodString;
|
|
5163
|
-
|
|
5161
|
+
projectId: z.ZodString;
|
|
5162
|
+
tenantId: z.ZodString;
|
|
5164
5163
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5165
5164
|
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
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
5180
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
5181
5179
|
id: z.ZodOptional<z.ZodString>;
|
|
5182
5180
|
name: z.ZodOptional<z.ZodString>;
|
|
5183
5181
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5184
5182
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5185
|
-
|
|
5183
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
5184
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
5186
5185
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5187
5186
|
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>>>;
|
|
@@ -5202,14 +5202,14 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5202
5202
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5203
5203
|
id: z.ZodString;
|
|
5204
5204
|
name: z.ZodString;
|
|
5205
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5206
|
-
ref: z.ZodString;
|
|
5207
|
-
enabled: z.ZodBoolean;
|
|
5208
5205
|
createdAt: z.ZodString;
|
|
5209
5206
|
updatedAt: z.ZodString;
|
|
5210
|
-
|
|
5207
|
+
ref: z.ZodString;
|
|
5208
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5209
|
+
enabled: z.ZodBoolean;
|
|
5211
5210
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5212
5211
|
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
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5226
5225
|
ref: z.ZodOptional<z.ZodString>;
|
|
5226
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5227
5227
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5228
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
5228
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5230
5229
|
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
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5245
5244
|
ref: z.ZodOptional<z.ZodString>;
|
|
5245
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5246
5246
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5247
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5248
5247
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5249
5248
|
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>>;
|
|
@@ -5261,12 +5261,12 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5261
5261
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5262
5262
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5263
5263
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5264
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5265
5264
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5265
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5266
5266
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5267
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5268
5267
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5269
5268
|
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
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "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,6 +5976,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5976
5976
|
}>;
|
|
5977
5977
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5978
5978
|
id: z.ZodString;
|
|
5979
|
+
createdAt: z.ZodString;
|
|
5979
5980
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5980
5981
|
type: z.ZodEnum<{
|
|
5981
5982
|
commit: "commit";
|
|
@@ -5985,9 +5986,6 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5985
5986
|
name: z.ZodString;
|
|
5986
5987
|
hash: z.ZodString;
|
|
5987
5988
|
}, z.core.$strip>>>;
|
|
5988
|
-
createdAt: z.ZodString;
|
|
5989
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5990
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5991
5989
|
status: z.ZodEnum<{
|
|
5992
5990
|
pending: "pending";
|
|
5993
5991
|
failed: "failed";
|
|
@@ -5995,15 +5993,18 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5995
5993
|
completed: "completed";
|
|
5996
5994
|
cancelled: "cancelled";
|
|
5997
5995
|
}>;
|
|
5996
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5998
5997
|
scheduledTriggerId: z.ZodString;
|
|
5999
5998
|
scheduledFor: z.ZodString;
|
|
6000
5999
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
6001
6000
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
6002
6001
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6002
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6003
6003
|
attemptNumber: z.ZodInt;
|
|
6004
6004
|
idempotencyKey: z.ZodString;
|
|
6005
6005
|
}, z.core.$strip>;
|
|
6006
6006
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6007
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6007
6008
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6008
6009
|
type: "commit" | "tag" | "branch";
|
|
6009
6010
|
name: string;
|
|
@@ -6021,21 +6022,21 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6021
6022
|
name: string;
|
|
6022
6023
|
hash: string;
|
|
6023
6024
|
}>>>>;
|
|
6024
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6025
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6026
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6027
6025
|
status: z.ZodString;
|
|
6026
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6028
6027
|
scheduledTriggerId: z.ZodString;
|
|
6029
6028
|
scheduledFor: z.ZodString;
|
|
6030
6029
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6031
6030
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6032
6031
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
6032
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6033
6033
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6034
6034
|
idempotencyKey: z.ZodString;
|
|
6035
6035
|
id: z.ZodString;
|
|
6036
6036
|
}, z.core.$strip>;
|
|
6037
6037
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6038
6038
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6039
6040
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6040
6041
|
type: "commit" | "tag" | "branch";
|
|
6041
6042
|
name: string;
|
|
@@ -6053,15 +6054,14 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6053
6054
|
name: string;
|
|
6054
6055
|
hash: string;
|
|
6055
6056
|
}>>>>>>;
|
|
6056
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6057
|
-
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6058
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6059
6057
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6058
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6060
6059
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6061
6060
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6062
6061
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6063
6062
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6064
6063
|
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
6064
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6065
6065
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6066
6066
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6067
6067
|
}, z.core.$strip>;
|
|
@@ -6289,6 +6289,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6289
6289
|
}>;
|
|
6290
6290
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6291
6291
|
id: z.ZodString;
|
|
6292
|
+
createdAt: z.ZodString;
|
|
6293
|
+
updatedAt: z.ZodString;
|
|
6292
6294
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6293
6295
|
type: z.ZodEnum<{
|
|
6294
6296
|
commit: "commit";
|
|
@@ -6298,16 +6300,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6298
6300
|
name: z.ZodString;
|
|
6299
6301
|
hash: z.ZodString;
|
|
6300
6302
|
}, z.core.$strip>>>;
|
|
6301
|
-
createdAt: z.ZodString;
|
|
6302
|
-
updatedAt: z.ZodString;
|
|
6303
6303
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6304
|
+
status: z.ZodString;
|
|
6304
6305
|
agentId: z.ZodString;
|
|
6305
6306
|
subAgentId: z.ZodString;
|
|
6306
|
-
status: 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
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6312
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6311
6313
|
ref: z.ZodObject<{
|
|
6312
6314
|
type: z.ZodEnum<{
|
|
6313
6315
|
commit: "commit";
|
|
@@ -6317,17 +6319,17 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6317
6319
|
name: z.ZodString;
|
|
6318
6320
|
hash: z.ZodString;
|
|
6319
6321
|
}, z.core.$strip>;
|
|
6320
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6321
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6322
6322
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6323
|
+
status: z.ZodString;
|
|
6323
6324
|
agentId: z.ZodString;
|
|
6324
6325
|
subAgentId: z.ZodString;
|
|
6325
|
-
status: 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
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6332
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6331
6333
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6332
6334
|
type: z.ZodEnum<{
|
|
6333
6335
|
commit: "commit";
|
|
@@ -6337,12 +6339,10 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6337
6339
|
name: z.ZodString;
|
|
6338
6340
|
hash: z.ZodString;
|
|
6339
6341
|
}, z.core.$strip>>>;
|
|
6340
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6341
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6342
6342
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6343
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6343
6344
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6344
6345
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6345
|
-
status: 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,12 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7279
7279
|
}>;
|
|
7280
7280
|
}, undefined>, undefined>;
|
|
7281
7281
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7282
|
-
tenantId: z.ZodString;
|
|
7283
|
-
projectId: z.ZodString;
|
|
7284
7282
|
id: z.ZodString;
|
|
7285
7283
|
name: z.ZodString;
|
|
7286
7284
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7287
7285
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7286
|
+
projectId: z.ZodString;
|
|
7287
|
+
tenantId: z.ZodString;
|
|
7288
7288
|
config: z.ZodObject<{
|
|
7289
7289
|
type: z.ZodLiteral<"mcp">;
|
|
7290
7290
|
mcp: z.ZodObject<{
|
|
@@ -7400,6 +7400,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7400
7400
|
}>;
|
|
7401
7401
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7402
7402
|
id: z.ZodString;
|
|
7403
|
+
createdAt: z.ZodString;
|
|
7404
|
+
updatedAt: z.ZodString;
|
|
7403
7405
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7404
7406
|
type: z.ZodEnum<{
|
|
7405
7407
|
commit: "commit";
|
|
@@ -7409,18 +7411,17 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7409
7411
|
name: z.ZodString;
|
|
7410
7412
|
hash: z.ZodString;
|
|
7411
7413
|
}, z.core.$strip>>>;
|
|
7412
|
-
|
|
7413
|
-
createdAt: z.ZodString;
|
|
7414
|
-
updatedAt: z.ZodString;
|
|
7414
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
7415
7415
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7416
7416
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7417
|
-
|
|
7417
|
+
title: 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
|
-
|
|
7423
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7424
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7424
7425
|
ref: z.ZodObject<{
|
|
7425
7426
|
type: z.ZodEnum<{
|
|
7426
7427
|
commit: "commit";
|
|
@@ -7430,18 +7431,18 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7430
7431
|
name: z.ZodString;
|
|
7431
7432
|
hash: z.ZodString;
|
|
7432
7433
|
}, z.core.$strip>;
|
|
7433
|
-
|
|
7434
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7435
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7434
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7436
7435
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7437
7436
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7438
|
-
|
|
7437
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7438
|
+
title: z.ZodOptional<z.ZodNullable<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
|
-
|
|
7444
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7445
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7445
7446
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7446
7447
|
type: z.ZodEnum<{
|
|
7447
7448
|
commit: "commit";
|
|
@@ -7451,12 +7452,11 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7451
7452
|
name: z.ZodString;
|
|
7452
7453
|
hash: z.ZodString;
|
|
7453
7454
|
}, z.core.$strip>>>;
|
|
7454
|
-
|
|
7455
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7456
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7455
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7457
7456
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7458
7457
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7459
|
-
|
|
7458
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7459
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7460
7460
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7461
7461
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7462
7462
|
}, z.core.$strip>;
|
|
@@ -8310,8 +8310,8 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8310
8310
|
createdAt: z.ZodString;
|
|
8311
8311
|
updatedAt: z.ZodString;
|
|
8312
8312
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8313
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8314
8313
|
role: z.ZodString;
|
|
8314
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8315
8315
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8316
8316
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8317
8317
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8331,8 +8331,8 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8331
8331
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8332
8332
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8333
8333
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8334
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8335
8334
|
role: z.ZodString;
|
|
8335
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8336
8336
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8337
8337
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8338
8338
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8352,8 +8352,8 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8352
8352
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8353
8353
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8354
8354
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8355
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8356
8355
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8356
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8357
8357
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8358
8358
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8359
8359
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8739,32 +8739,32 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8739
8739
|
}>;
|
|
8740
8740
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8741
8741
|
id: z.ZodString;
|
|
8742
|
-
type: z.ZodString;
|
|
8743
8742
|
createdAt: z.ZodString;
|
|
8744
8743
|
updatedAt: z.ZodString;
|
|
8744
|
+
type: z.ZodString;
|
|
8745
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>;
|
|
8750
8752
|
type: z.ZodEnum<{
|
|
8751
8753
|
positive: "positive";
|
|
8752
8754
|
negative: "negative";
|
|
8753
8755
|
}>;
|
|
8754
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8755
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8756
8756
|
details: z.ZodOptional<z.ZodNullable<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>>>;
|
|
8762
8764
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
8763
8765
|
positive: "positive";
|
|
8764
8766
|
negative: "negative";
|
|
8765
8767
|
}>>>;
|
|
8766
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8767
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8768
8768
|
details: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8769
8769
|
}, z.core.$strip>;
|
|
8770
8770
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -8847,7 +8847,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8847
8847
|
}>;
|
|
8848
8848
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
8849
8849
|
id: z.ZodString;
|
|
8850
|
-
|
|
8850
|
+
createdAt: z.ZodString;
|
|
8851
|
+
updatedAt: z.ZodString;
|
|
8851
8852
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8852
8853
|
type: z.ZodEnum<{
|
|
8853
8854
|
commit: "commit";
|
|
@@ -8858,8 +8859,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8858
8859
|
hash: z.ZodString;
|
|
8859
8860
|
}, z.core.$strip>>>;
|
|
8860
8861
|
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8861
|
-
|
|
8862
|
-
updatedAt: z.ZodString;
|
|
8862
|
+
contextConfigId: z.ZodString;
|
|
8863
8863
|
conversationId: z.ZodString;
|
|
8864
8864
|
contextVariableKey: z.ZodString;
|
|
8865
8865
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
@@ -8868,7 +8868,8 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8868
8868
|
}, z.core.$strip>;
|
|
8869
8869
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
8870
8870
|
id: z.ZodString;
|
|
8871
|
-
|
|
8871
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8872
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8872
8873
|
ref: z.ZodObject<{
|
|
8873
8874
|
type: z.ZodEnum<{
|
|
8874
8875
|
commit: "commit";
|
|
@@ -8879,8 +8880,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8879
8880
|
hash: z.ZodString;
|
|
8880
8881
|
}, z.core.$strip>;
|
|
8881
8882
|
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8882
|
-
|
|
8883
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8883
|
+
contextConfigId: z.ZodString;
|
|
8884
8884
|
conversationId: z.ZodString;
|
|
8885
8885
|
contextVariableKey: z.ZodString;
|
|
8886
8886
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8889,7 +8889,8 @@ 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
|
-
|
|
8892
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8893
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8893
8894
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8894
8895
|
type: z.ZodEnum<{
|
|
8895
8896
|
commit: "commit";
|
|
@@ -8900,8 +8901,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8900
8901
|
hash: z.ZodString;
|
|
8901
8902
|
}, z.core.$strip>>>;
|
|
8902
8903
|
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8903
|
-
|
|
8904
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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>>;
|
|
8907
8907
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8992,6 +8992,8 @@ 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;
|
|
8995
8997
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8996
8998
|
type: z.ZodEnum<{
|
|
8997
8999
|
commit: "commit";
|
|
@@ -9001,13 +9003,13 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9001
9003
|
name: z.ZodString;
|
|
9002
9004
|
hash: z.ZodString;
|
|
9003
9005
|
}, z.core.$strip>>>;
|
|
9004
|
-
createdAt: z.ZodString;
|
|
9005
|
-
updatedAt: z.ZodString;
|
|
9006
9006
|
datasetId: z.ZodString;
|
|
9007
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9008
9007
|
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
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>;
|
|
9011
9013
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9012
9014
|
type: "commit" | "tag" | "branch";
|
|
9013
9015
|
name: string;
|
|
@@ -9025,13 +9027,13 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9025
9027
|
name: string;
|
|
9026
9028
|
hash: string;
|
|
9027
9029
|
}>>>>;
|
|
9028
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9029
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9030
9030
|
datasetId: z.ZodString;
|
|
9031
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9032
9031
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
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>>>;
|
|
9035
9037
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9036
9038
|
type: "commit" | "tag" | "branch";
|
|
9037
9039
|
name: string;
|
|
@@ -9049,11 +9051,9 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9049
9051
|
name: string;
|
|
9050
9052
|
hash: string;
|
|
9051
9053
|
}>>>>>>;
|
|
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
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9056
9055
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9056
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9057
9057
|
}, z.core.$strip>;
|
|
9058
9058
|
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9059
9059
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -9744,28 +9744,28 @@ 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>>>;
|
|
9748
9747
|
id: z.ZodString;
|
|
9749
9748
|
createdAt: z.ZodString;
|
|
9750
9749
|
updatedAt: z.ZodString;
|
|
9751
|
-
|
|
9750
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9752
9751
|
conversationId: z.ZodString;
|
|
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>>>>;
|
|
9757
9756
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9758
9757
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9759
|
-
|
|
9758
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9760
9759
|
conversationId: z.ZodString;
|
|
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>>>>>>;
|
|
9765
9764
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9766
9765
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9767
|
-
|
|
9766
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9768
9767
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9768
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9769
9769
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9770
9770
|
}, z.core.$strip>;
|
|
9771
9771
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -9849,6 +9849,8 @@ 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;
|
|
9852
9854
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9853
9855
|
type: z.ZodEnum<{
|
|
9854
9856
|
commit: "commit";
|
|
@@ -9858,12 +9860,12 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
9858
9860
|
name: z.ZodString;
|
|
9859
9861
|
hash: z.ZodString;
|
|
9860
9862
|
}, z.core.$strip>>>;
|
|
9861
|
-
createdAt: z.ZodString;
|
|
9862
|
-
updatedAt: z.ZodString;
|
|
9863
|
-
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9864
9863
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
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>;
|
|
9867
9869
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9868
9870
|
type: "commit" | "tag" | "branch";
|
|
9869
9871
|
name: string;
|
|
@@ -9881,12 +9883,12 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
9881
9883
|
name: string;
|
|
9882
9884
|
hash: string;
|
|
9883
9885
|
}>>>>;
|
|
9884
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9885
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9886
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9887
9886
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
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>>>;
|
|
9890
9892
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9891
9893
|
type: "commit" | "tag" | "branch";
|
|
9892
9894
|
name: string;
|
|
@@ -9904,10 +9906,8 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
9904
9906
|
name: string;
|
|
9905
9907
|
hash: string;
|
|
9906
9908
|
}>>>>>>;
|
|
9907
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9908
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9909
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9910
9909
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9910
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9911
9911
|
}, z.core.$strip>;
|
|
9912
9912
|
declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9913
9913
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -10229,33 +10229,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10229
10229
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10230
10230
|
id: z.ZodString;
|
|
10231
10231
|
name: z.ZodString;
|
|
10232
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10233
10232
|
createdAt: z.ZodString;
|
|
10234
10233
|
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>>;
|
|
10240
10239
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10241
10240
|
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>>>>;
|
|
10248
10247
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10249
10248
|
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
10254
|
id: z.ZodString;
|
|
10255
10255
|
name: z.ZodString;
|
|
10256
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10257
10256
|
createdAt: z.ZodString;
|
|
10258
10257
|
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>;
|
|
@@ -11280,20 +11280,20 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11280
11280
|
id: z.ZodString;
|
|
11281
11281
|
createdAt: z.ZodString;
|
|
11282
11282
|
updatedAt: z.ZodString;
|
|
11283
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11284
11283
|
evaluationRunConfigId: z.ZodString;
|
|
11284
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11285
11285
|
}, z.core.$strip>;
|
|
11286
11286
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11287
11287
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11288
11288
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11289
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11290
11289
|
evaluationRunConfigId: z.ZodString;
|
|
11290
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11291
11291
|
}, z.core.$strip>;
|
|
11292
11292
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11293
11293
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11294
11294
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11295
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11296
11295
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11296
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11297
11297
|
}, z.core.$strip>;
|
|
11298
11298
|
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11299
11299
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -11584,20 +11584,20 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
11584
11584
|
id: z.ZodString;
|
|
11585
11585
|
createdAt: z.ZodString;
|
|
11586
11586
|
updatedAt: z.ZodString;
|
|
11587
|
-
evaluatorId: z.ZodString;
|
|
11588
11587
|
evaluationJobConfigId: z.ZodString;
|
|
11588
|
+
evaluatorId: z.ZodString;
|
|
11589
11589
|
}, z.core.$strip>;
|
|
11590
11590
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11591
11591
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11592
11592
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11593
|
-
evaluatorId: z.ZodString;
|
|
11594
11593
|
evaluationJobConfigId: z.ZodString;
|
|
11594
|
+
evaluatorId: z.ZodString;
|
|
11595
11595
|
}, z.core.$strip>;
|
|
11596
11596
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11597
11597
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11598
11598
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11599
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11600
11599
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11600
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11601
11601
|
}, z.core.$strip>;
|
|
11602
11602
|
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11603
11603
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -11888,20 +11888,20 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
11888
11888
|
id: z.ZodString;
|
|
11889
11889
|
createdAt: z.ZodString;
|
|
11890
11890
|
updatedAt: z.ZodString;
|
|
11891
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11892
11891
|
evaluatorId: z.ZodString;
|
|
11892
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11893
11893
|
}, z.core.$strip>;
|
|
11894
11894
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11895
11895
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11896
11896
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11897
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11898
11897
|
evaluatorId: z.ZodString;
|
|
11898
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11899
11899
|
}, z.core.$strip>;
|
|
11900
11900
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11901
11901
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11902
11902
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11903
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11904
11903
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11904
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11905
11905
|
}, z.core.$strip>;
|
|
11906
11906
|
declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11907
11907
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -12403,6 +12403,9 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
12403
12403
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
12404
12404
|
id: z.ZodString;
|
|
12405
12405
|
name: z.ZodString;
|
|
12406
|
+
createdAt: z.ZodString;
|
|
12407
|
+
updatedAt: z.ZodString;
|
|
12408
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12406
12409
|
description: z.ZodNullable<z.ZodString>;
|
|
12407
12410
|
model: z.ZodType<{
|
|
12408
12411
|
model?: string | undefined;
|
|
@@ -12426,13 +12429,13 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
12426
12429
|
allowedProviders?: string[] | undefined;
|
|
12427
12430
|
}>>;
|
|
12428
12431
|
prompt: z.ZodString;
|
|
12429
|
-
createdAt: z.ZodString;
|
|
12430
|
-
updatedAt: z.ZodString;
|
|
12431
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12432
12432
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
12433
12433
|
}, z.core.$strip>;
|
|
12434
12434
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12435
12435
|
name: z.ZodString;
|
|
12436
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12437
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12438
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12436
12439
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12437
12440
|
model: z.ZodType<{
|
|
12438
12441
|
model?: string | undefined;
|
|
@@ -12456,13 +12459,13 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12456
12459
|
allowedProviders?: string[] | undefined;
|
|
12457
12460
|
}>>;
|
|
12458
12461
|
prompt: z.ZodString;
|
|
12459
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12460
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12461
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12462
12462
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12463
12463
|
}, z.core.$strip>;
|
|
12464
12464
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12465
12465
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12466
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12467
|
+
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>>>>>;
|
|
12466
12469
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12467
12470
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12468
12471
|
model?: string | undefined;
|
|
@@ -12486,9 +12489,6 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12486
12489
|
allowedProviders?: string[] | undefined;
|
|
12487
12490
|
}>>>>;
|
|
12488
12491
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12489
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12490
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12491
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12492
12492
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12493
12493
|
}, z.core.$strip>;
|
|
12494
12494
|
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -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>>;
|
|
13082
13081
|
id: z.ZodString;
|
|
13083
13082
|
createdAt: z.ZodString;
|
|
13084
13083
|
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>>;
|
|
13090
13089
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13091
13090
|
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>>>>;
|
|
13096
13095
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13097
13096
|
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
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13102
13101
|
id: z.ZodOptional<z.ZodString>;
|
|
13102
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
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>;
|
|
@@ -13457,23 +13457,23 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
13457
13457
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
13458
13458
|
id: z.ZodString;
|
|
13459
13459
|
name: z.ZodString;
|
|
13460
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13461
13460
|
createdAt: z.ZodString;
|
|
13462
13461
|
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>>;
|
|
13468
13467
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13469
13468
|
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>>>>;
|
|
13475
13474
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13476
13475
|
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", {
|
|
@@ -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
|
-
tenantId: z.ZodString;
|
|
14735
|
-
projectId: z.ZodString;
|
|
14736
14734
|
id: z.ZodString;
|
|
14737
14735
|
name: z.ZodString;
|
|
14738
14736
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14737
|
+
projectId: z.ZodString;
|
|
14738
|
+
tenantId: 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
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
14787
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
14788
14786
|
id: z.ZodOptional<z.ZodString>;
|
|
14789
14787
|
name: z.ZodOptional<z.ZodString>;
|
|
14790
14788
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14789
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
14790
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
14791
14791
|
props: z.ZodOptional<z.ZodType<{
|
|
14792
14792
|
[x: string]: unknown;
|
|
14793
14793
|
type: "object";
|
|
@@ -14837,9 +14837,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
14837
14837
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
14838
14838
|
id: z.ZodString;
|
|
14839
14839
|
name: z.ZodString;
|
|
14840
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14841
14840
|
createdAt: z.ZodString;
|
|
14842
14841
|
updatedAt: z.ZodString;
|
|
14842
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14843
14843
|
props: z.ZodType<{
|
|
14844
14844
|
[x: string]: unknown;
|
|
14845
14845
|
type: "object";
|
|
@@ -15462,7 +15462,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15462
15462
|
}, {}, {
|
|
15463
15463
|
length: 256;
|
|
15464
15464
|
}>;
|
|
15465
|
-
}, "
|
|
15465
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "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>>;
|
|
@@ -15979,9 +15979,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15979
15979
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15980
15980
|
id: z.ZodString;
|
|
15981
15981
|
name: z.ZodString;
|
|
15982
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15983
15982
|
createdAt: z.ZodString;
|
|
15984
15983
|
updatedAt: z.ZodString;
|
|
15984
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15985
15985
|
props: z.ZodNullable<z.ZodType<{
|
|
15986
15986
|
[x: string]: unknown;
|
|
15987
15987
|
type: "object";
|
|
@@ -16056,9 +16056,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16056
16056
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16057
16057
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16058
16058
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16059
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16060
16059
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16061
16060
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16061
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16062
16062
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
16063
16063
|
[x: string]: unknown;
|
|
16064
16064
|
type: "object";
|
|
@@ -16426,11 +16426,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
16426
16426
|
in: {};
|
|
16427
16427
|
}>;
|
|
16428
16428
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
16429
|
-
tenantId: z.ZodString;
|
|
16430
|
-
projectId: z.ZodString;
|
|
16431
16429
|
id: z.ZodString;
|
|
16432
16430
|
name: z.ZodString;
|
|
16433
16431
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16432
|
+
projectId: z.ZodString;
|
|
16433
|
+
tenantId: 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
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16442
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
16443
16441
|
id: z.ZodOptional<z.ZodString>;
|
|
16444
16442
|
name: z.ZodOptional<z.ZodString>;
|
|
16445
16443
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16444
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
16445
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16446
16446
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16447
16447
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16448
16448
|
}, {
|
|
@@ -16452,9 +16452,9 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16452
16452
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
16453
16453
|
id: z.ZodString;
|
|
16454
16454
|
name: z.ZodString;
|
|
16455
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16456
16455
|
createdAt: z.ZodString;
|
|
16457
16456
|
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>;
|
|
@@ -16475,6 +16475,8 @@ declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
|
16475
16475
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16476
16476
|
id: z.ZodString;
|
|
16477
16477
|
name: z.ZodString;
|
|
16478
|
+
createdAt: z.ZodString;
|
|
16479
|
+
updatedAt: z.ZodString;
|
|
16478
16480
|
description: z.ZodNullable<z.ZodString>;
|
|
16479
16481
|
models: z.ZodNullable<z.ZodType<{
|
|
16480
16482
|
base?: {
|
|
@@ -16563,16 +16565,14 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16563
16565
|
}, {
|
|
16564
16566
|
stepCountIs?: number | undefined;
|
|
16565
16567
|
}>>>;
|
|
16566
|
-
createdAt: z.ZodString;
|
|
16567
|
-
updatedAt: z.ZodString;
|
|
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
16571
|
id: z.ZodString;
|
|
16572
16572
|
name: z.ZodString;
|
|
16573
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16574
16573
|
createdAt: z.ZodString;
|
|
16575
16574
|
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">;
|
|
@@ -17040,8 +17040,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
17040
17040
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
17041
17041
|
name: z.ZodOptional<z.ZodString>;
|
|
17042
17042
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17043
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17044
17043
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17044
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17045
17045
|
}, {
|
|
17046
17046
|
out: {};
|
|
17047
17047
|
in: {};
|
|
@@ -17051,8 +17051,8 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
17051
17051
|
name: z.ZodNullable<z.ZodString>;
|
|
17052
17052
|
createdAt: z.ZodString;
|
|
17053
17053
|
updatedAt: z.ZodString;
|
|
17054
|
-
agentId: z.ZodString;
|
|
17055
17054
|
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>;
|
|
@@ -17067,8 +17067,8 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17067
17067
|
name: z.ZodNullable<z.ZodString>;
|
|
17068
17068
|
createdAt: z.ZodString;
|
|
17069
17069
|
updatedAt: z.ZodString;
|
|
17070
|
-
agentId: z.ZodString;
|
|
17071
17070
|
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>;
|
|
@@ -17083,8 +17083,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
17083
17083
|
name: z.ZodString;
|
|
17084
17084
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17085
17085
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17086
|
-
agentId: z.ZodString;
|
|
17087
17086
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17087
|
+
agentId: z.ZodString;
|
|
17088
17088
|
}, {
|
|
17089
17089
|
out: {};
|
|
17090
17090
|
in: {};
|
|
@@ -17092,8 +17092,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
17092
17092
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17093
17093
|
name: z.ZodOptional<z.ZodString>;
|
|
17094
17094
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17095
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17096
17095
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17096
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17097
17097
|
}, {
|
|
17098
17098
|
out: {};
|
|
17099
17099
|
in: {};
|
|
@@ -17889,13 +17889,13 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
17889
17889
|
in: {};
|
|
17890
17890
|
}>;
|
|
17891
17891
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
17892
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17893
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17894
17892
|
name: z.ZodOptional<z.ZodString>;
|
|
17893
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17895
17894
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17896
17895
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17896
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17897
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17897
17898
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17898
|
-
updatedAt: z.ZodOptional<z.ZodOptional<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
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18510
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
18511
18509
|
id: z.ZodString;
|
|
18512
18510
|
name: z.ZodString;
|
|
18511
|
+
createdAt: z.ZodString;
|
|
18512
|
+
updatedAt: z.ZodString;
|
|
18513
18513
|
description: z.ZodNullable<z.ZodString>;
|
|
18514
|
-
type: z.ZodString;
|
|
18515
18514
|
enabled: z.ZodBoolean;
|
|
18515
|
+
type: z.ZodString;
|
|
18516
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18517
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18516
18518
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18517
|
-
createdAt: z.ZodString;
|
|
18518
|
-
updatedAt: 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
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18553
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18554
18552
|
name: z.ZodString;
|
|
18553
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
18554
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18555
18555
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18556
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18556
18557
|
type: z.ZodEnum<{
|
|
18557
18558
|
web_client: "web_client";
|
|
18558
18559
|
api: "api";
|
|
18559
18560
|
}>;
|
|
18560
|
-
|
|
18561
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18562
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18561
18563
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18562
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
18563
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18564
18564
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18565
18565
|
type: z.ZodLiteral<"web_client">;
|
|
18566
18566
|
webClient: z.ZodObject<{
|
|
@@ -18593,13 +18593,13 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18593
18593
|
in: {};
|
|
18594
18594
|
}>;
|
|
18595
18595
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
18596
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18597
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18598
18596
|
name: z.ZodOptional<z.ZodString>;
|
|
18597
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18599
18598
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18600
18599
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18600
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18601
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18601
18602
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18602
|
-
updatedAt: z.ZodOptional<z.ZodOptional<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
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18639
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
18640
18638
|
id: z.ZodString;
|
|
18641
18639
|
name: z.ZodString;
|
|
18640
|
+
createdAt: z.ZodString;
|
|
18641
|
+
updatedAt: z.ZodString;
|
|
18642
18642
|
description: z.ZodNullable<z.ZodString>;
|
|
18643
|
-
type: z.ZodString;
|
|
18644
18643
|
enabled: z.ZodBoolean;
|
|
18644
|
+
type: z.ZodString;
|
|
18645
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
18646
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18645
18647
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18646
|
-
createdAt: z.ZodString;
|
|
18647
|
-
updatedAt: z.ZodString;
|
|
18648
18648
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18649
18649
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18650
18650
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19131,31 +19131,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
19131
19131
|
}>;
|
|
19132
19132
|
}, undefined>, undefined>;
|
|
19133
19133
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19134
|
-
tenantId: z.ZodString;
|
|
19135
|
-
projectId: z.ZodString;
|
|
19136
19134
|
id: z.ZodString;
|
|
19137
19135
|
name: z.ZodString;
|
|
19136
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19138
19137
|
type: z.ZodString;
|
|
19138
|
+
projectId: z.ZodString;
|
|
19139
|
+
tenantId: z.ZodString;
|
|
19139
19140
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19141
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19140
19142
|
credentialStoreId: z.ZodString;
|
|
19141
19143
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19142
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
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
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19150
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19151
19149
|
id: z.ZodOptional<z.ZodString>;
|
|
19152
19150
|
name: z.ZodOptional<z.ZodString>;
|
|
19151
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19153
19152
|
type: z.ZodOptional<z.ZodString>;
|
|
19153
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19154
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19154
19155
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19156
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19155
19157
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
19156
19158
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
19157
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19158
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19159
19159
|
}, {
|
|
19160
19160
|
out: {};
|
|
19161
19161
|
in: {};
|
|
@@ -19165,11 +19165,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19165
19165
|
name: z.ZodString;
|
|
19166
19166
|
createdAt: z.ZodString;
|
|
19167
19167
|
updatedAt: z.ZodString;
|
|
19168
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
19168
19169
|
toolId: z.ZodNullable<z.ZodString>;
|
|
19170
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
19169
19171
|
credentialStoreId: z.ZodString;
|
|
19170
19172
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19171
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
19172
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
19173
19173
|
type: z.ZodEnum<{
|
|
19174
19174
|
readonly memory: "memory";
|
|
19175
19175
|
readonly keychain: "keychain";
|
|
@@ -19755,11 +19755,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19755
19755
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
19756
19756
|
id: z.ZodString;
|
|
19757
19757
|
name: z.ZodString;
|
|
19758
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19758
19759
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19760
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19759
19761
|
credentialStoreId: z.ZodString;
|
|
19760
19762
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19761
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19762
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19763
19763
|
type: z.ZodEnum<{
|
|
19764
19764
|
readonly memory: "memory";
|
|
19765
19765
|
readonly keychain: "keychain";
|
|
@@ -19770,11 +19770,11 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19770
19770
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
19771
19771
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19772
19772
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19773
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19773
19774
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19775
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19774
19776
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19775
19777
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19776
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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,12 @@ 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
|
-
tenantId: z.ZodString;
|
|
19843
|
-
projectId: z.ZodString;
|
|
19844
19842
|
id: z.ZodString;
|
|
19845
19843
|
name: z.ZodString;
|
|
19846
19844
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19847
19845
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19846
|
+
projectId: z.ZodString;
|
|
19847
|
+
tenantId: z.ZodString;
|
|
19848
19848
|
config: z.ZodObject<{
|
|
19849
19849
|
type: z.ZodLiteral<"mcp">;
|
|
19850
19850
|
mcp: z.ZodObject<{
|
|
@@ -19900,20 +19900,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19900
19900
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
19901
19901
|
id: z.ZodString;
|
|
19902
19902
|
name: z.ZodString;
|
|
19903
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19903
19904
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19905
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
19904
19906
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19905
19907
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19906
19908
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19907
19909
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19908
19910
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19909
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
19910
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19911
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19912
19911
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19913
19912
|
name: z.ZodString;
|
|
19914
19913
|
description: z.ZodOptional<z.ZodString>;
|
|
19915
19914
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19916
19915
|
}, z.core.$strip>>>;
|
|
19916
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19917
19917
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19918
19918
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19919
19919
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19936,11 +19936,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19936
19936
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19937
19937
|
id: z.ZodString;
|
|
19938
19938
|
name: z.ZodString;
|
|
19939
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19939
19940
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19941
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19940
19942
|
credentialStoreId: z.ZodString;
|
|
19941
19943
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19942
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
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,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19960
19960
|
in: {};
|
|
19961
19961
|
}>;
|
|
19962
19962
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
19963
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19964
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19965
19963
|
id: z.ZodOptional<z.ZodString>;
|
|
19966
19964
|
name: z.ZodOptional<z.ZodString>;
|
|
19967
19965
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19968
19966
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19967
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19968
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19969
19969
|
config: z.ZodOptional<z.ZodObject<{
|
|
19970
19970
|
type: z.ZodLiteral<"mcp">;
|
|
19971
19971
|
mcp: z.ZodObject<{
|
|
@@ -20005,9 +20005,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20005
20005
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20006
20006
|
id: z.ZodString;
|
|
20007
20007
|
name: z.ZodString;
|
|
20008
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20009
20008
|
createdAt: z.ZodString;
|
|
20010
20009
|
updatedAt: z.ZodString;
|
|
20010
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20011
20011
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20012
20012
|
config: z.ZodType<{
|
|
20013
20013
|
type: "mcp";
|
|
@@ -20439,24 +20439,24 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
20439
20439
|
}>;
|
|
20440
20440
|
}, undefined>, undefined>;
|
|
20441
20441
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
20442
|
-
tenantId: z.ZodString;
|
|
20443
|
-
projectId: z.ZodString;
|
|
20444
20442
|
id: z.ZodString;
|
|
20445
20443
|
name: z.ZodString;
|
|
20446
20444
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20447
20445
|
agentId: z.ZodString;
|
|
20446
|
+
projectId: z.ZodString;
|
|
20447
|
+
tenantId: z.ZodString;
|
|
20448
20448
|
functionId: z.ZodString;
|
|
20449
20449
|
}, {
|
|
20450
20450
|
out: {};
|
|
20451
20451
|
in: {};
|
|
20452
20452
|
}>;
|
|
20453
20453
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
20454
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
20455
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20456
20454
|
id: z.ZodOptional<z.ZodString>;
|
|
20457
20455
|
name: z.ZodOptional<z.ZodString>;
|
|
20458
20456
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20459
20457
|
agentId: z.ZodOptional<z.ZodString>;
|
|
20458
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20459
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
20460
20460
|
functionId: z.ZodOptional<z.ZodString>;
|
|
20461
20461
|
}, {
|
|
20462
20462
|
out: {};
|
|
@@ -20465,9 +20465,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
20465
20465
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20466
20466
|
id: z.ZodString;
|
|
20467
20467
|
name: z.ZodString;
|
|
20468
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20469
20468
|
createdAt: z.ZodString;
|
|
20470
20469
|
updatedAt: z.ZodString;
|
|
20470
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20471
20471
|
agentId: z.ZodString;
|
|
20472
20472
|
functionId: z.ZodString;
|
|
20473
20473
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -20848,14 +20848,14 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
20848
20848
|
id: z.ZodString;
|
|
20849
20849
|
createdAt: z.ZodString;
|
|
20850
20850
|
updatedAt: z.ZodString;
|
|
20851
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20852
20851
|
subAgentId: z.ZodString;
|
|
20853
20852
|
functionToolId: z.ZodString;
|
|
20853
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20854
20854
|
}, z.core.$strip>;
|
|
20855
20855
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
20856
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20857
20856
|
subAgentId: z.ZodString;
|
|
20858
20857
|
functionToolId: z.ZodString;
|
|
20858
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20859
20859
|
}, {
|
|
20860
20860
|
out: {};
|
|
20861
20861
|
in: {};
|
|
@@ -21186,22 +21186,22 @@ declare const FunctionApiSelectSchema: z.ZodObject<{
|
|
|
21186
21186
|
createdAt: z.ZodString;
|
|
21187
21187
|
updatedAt: z.ZodString;
|
|
21188
21188
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
21189
|
-
executeCode: z.ZodString;
|
|
21190
21189
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
21190
|
+
executeCode: z.ZodString;
|
|
21191
21191
|
}, z.core.$strip>;
|
|
21192
21192
|
declare const FunctionApiInsertSchema: z.ZodObject<{
|
|
21193
21193
|
id: z.ZodString;
|
|
21194
21194
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21195
|
-
executeCode: z.ZodString;
|
|
21196
21195
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21196
|
+
executeCode: z.ZodString;
|
|
21197
21197
|
}, z.core.$strip>;
|
|
21198
21198
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
21199
21199
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21200
21200
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21201
21201
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21202
21202
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21203
|
-
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21204
21203
|
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21204
|
+
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21205
21205
|
}, z.core.$strip>;
|
|
21206
21206
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
21207
21207
|
url: z.ZodString;
|
|
@@ -21245,11 +21245,11 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21245
21245
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21246
21246
|
id: z.ZodString;
|
|
21247
21247
|
name: z.ZodString;
|
|
21248
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21248
21249
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21250
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21249
21251
|
credentialStoreId: z.ZodString;
|
|
21250
21252
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21251
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21252
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21253
21253
|
type: z.ZodEnum<{
|
|
21254
21254
|
readonly memory: "memory";
|
|
21255
21255
|
readonly keychain: "keychain";
|
|
@@ -21272,23 +21272,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
21272
21272
|
in: {};
|
|
21273
21273
|
}>;
|
|
21274
21274
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
21275
|
-
tenantId: z.ZodString;
|
|
21276
|
-
projectId: z.ZodString;
|
|
21277
21275
|
id: z.ZodOptional<z.ZodString>;
|
|
21278
|
-
agentId: z.ZodString;
|
|
21279
21276
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21280
21277
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21278
|
+
agentId: z.ZodString;
|
|
21279
|
+
projectId: z.ZodString;
|
|
21280
|
+
tenantId: z.ZodString;
|
|
21281
21281
|
}, {
|
|
21282
21282
|
out: {};
|
|
21283
21283
|
in: {};
|
|
21284
21284
|
}>;
|
|
21285
21285
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
21286
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
21287
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
21288
21286
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21289
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
21290
21287
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
21291
21288
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
21289
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
21290
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
21291
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21292
21292
|
}, {
|
|
21293
21293
|
out: {};
|
|
21294
21294
|
in: {};
|
|
@@ -21771,34 +21771,34 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
21771
21771
|
id: z.ZodString;
|
|
21772
21772
|
createdAt: z.ZodString;
|
|
21773
21773
|
updatedAt: z.ZodString;
|
|
21774
|
-
toolId: z.ZodString;
|
|
21775
21774
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21776
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21777
21775
|
subAgentId: z.ZodString;
|
|
21776
|
+
toolId: z.ZodString;
|
|
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
21782
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21783
21783
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21784
|
-
toolId: z.ZodString;
|
|
21785
21784
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21785
|
+
subAgentId: z.ZodString;
|
|
21786
|
+
toolId: z.ZodString;
|
|
21786
21787
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21787
21788
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21788
21789
|
}, z.core.$strip>>>>;
|
|
21789
|
-
subAgentId: z.ZodString;
|
|
21790
21790
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
21791
21791
|
}, z.core.$strip>;
|
|
21792
21792
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21793
21793
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21794
21794
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21795
21795
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21796
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21797
21796
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21797
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21798
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21798
21799
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21799
21800
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21800
21801
|
}, z.core.$strip>>>>>>;
|
|
21801
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21802
21802
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21803
21803
|
}, z.core.$strip>;
|
|
21804
21804
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -22171,8 +22171,8 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
22171
22171
|
createdAt: z.ZodString;
|
|
22172
22172
|
updatedAt: z.ZodString;
|
|
22173
22173
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22174
|
-
externalAgentId: z.ZodString;
|
|
22175
22174
|
subAgentId: z.ZodString;
|
|
22175
|
+
externalAgentId: z.ZodString;
|
|
22176
22176
|
}, z.core.$strip>;
|
|
22177
22177
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
22178
22178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -22185,8 +22185,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22185
22185
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22186
22186
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22187
22187
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22188
|
-
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22189
22188
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22189
|
+
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22190
22190
|
}, z.core.$strip>;
|
|
22191
22191
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22192
22192
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -23916,7 +23916,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
23916
23916
|
}, {}, {
|
|
23917
23917
|
length: 256;
|
|
23918
23918
|
}>;
|
|
23919
|
-
}, "
|
|
23919
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "type" | "projectId" | "tenantId" | "taskId" | "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>>;
|
|
@@ -23943,11 +23943,11 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23943
23943
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23944
23944
|
id: z.ZodString;
|
|
23945
23945
|
name: z.ZodNullable<z.ZodString>;
|
|
23946
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23947
|
-
type: z.ZodString;
|
|
23948
23946
|
createdAt: z.ZodString;
|
|
23949
23947
|
updatedAt: z.ZodString;
|
|
23950
23948
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23949
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23950
|
+
type: z.ZodString;
|
|
23951
23951
|
taskId: z.ZodString;
|
|
23952
23952
|
contextId: z.ZodString;
|
|
23953
23953
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -23961,11 +23961,11 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
23961
23961
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23962
23962
|
id: z.ZodString;
|
|
23963
23963
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23964
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23965
|
-
type: z.ZodOptional<z.ZodString>;
|
|
23966
23964
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23967
23965
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23968
23966
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23967
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23968
|
+
type: z.ZodOptional<z.ZodString>;
|
|
23969
23969
|
taskId: z.ZodString;
|
|
23970
23970
|
contextId: z.ZodString;
|
|
23971
23971
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23979,11 +23979,11 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
23979
23979
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23980
23980
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23981
23981
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23982
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23983
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23984
23982
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23985
23983
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23986
23984
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23985
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23986
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23987
23987
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23988
23988
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23989
23989
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -24059,6 +24059,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24059
24059
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24060
24060
|
id: z.ZodString;
|
|
24061
24061
|
name: z.ZodString;
|
|
24062
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24063
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24062
24064
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24063
24065
|
models: z.ZodOptional<z.ZodObject<{
|
|
24064
24066
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -24080,8 +24082,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24080
24082
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24081
24083
|
}, z.core.$strip>>;
|
|
24082
24084
|
}, z.core.$strip>>;
|
|
24083
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24084
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24085
24085
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24086
24086
|
type: z.ZodLiteral<"internal">;
|
|
24087
24087
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -24125,6 +24125,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24125
24125
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24126
24126
|
id: z.ZodString;
|
|
24127
24127
|
name: z.ZodString;
|
|
24128
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24129
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24128
24130
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24129
24131
|
models: z.ZodOptional<z.ZodObject<{
|
|
24130
24132
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -24146,8 +24148,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24146
24148
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24147
24149
|
}, z.core.$strip>>;
|
|
24148
24150
|
}, z.core.$strip>>;
|
|
24149
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24150
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24151
24151
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24152
24152
|
type: z.ZodLiteral<"internal">;
|
|
24153
24153
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -24240,15 +24240,14 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24240
24240
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24241
24241
|
id: z.ZodString;
|
|
24242
24242
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24243
|
-
executeCode: z.ZodString;
|
|
24244
24243
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24244
|
+
executeCode: z.ZodString;
|
|
24245
24245
|
}, z.core.$strip>>>;
|
|
24246
24246
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24247
24247
|
id: z.ZodOptional<z.ZodString>;
|
|
24248
24248
|
name: z.ZodString;
|
|
24249
24249
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24250
24250
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24251
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24252
24251
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24253
24252
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24254
24253
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24256,6 +24255,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24256
24255
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24257
24256
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24258
24257
|
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>;
|
|
@@ -24312,6 +24312,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24312
24312
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24313
24313
|
id: z.ZodString;
|
|
24314
24314
|
name: z.ZodString;
|
|
24315
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24316
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24315
24317
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24316
24318
|
models: z.ZodOptional<z.ZodObject<{
|
|
24317
24319
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -24333,8 +24335,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24333
24335
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24334
24336
|
}, z.core.$strip>>;
|
|
24335
24337
|
}, z.core.$strip>>;
|
|
24336
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24337
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24338
24338
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24339
24339
|
type: z.ZodLiteral<"internal">;
|
|
24340
24340
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -24427,15 +24427,14 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24427
24427
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24428
24428
|
id: z.ZodString;
|
|
24429
24429
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24430
|
-
executeCode: z.ZodString;
|
|
24431
24430
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24431
|
+
executeCode: z.ZodString;
|
|
24432
24432
|
}, z.core.$strip>>>;
|
|
24433
24433
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24434
24434
|
id: z.ZodOptional<z.ZodString>;
|
|
24435
24435
|
name: z.ZodString;
|
|
24436
24436
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24437
24437
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24438
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24439
24438
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24440
24439
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24441
24440
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24443,6 +24442,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24443
24442
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24444
24443
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24445
24444
|
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
|
-
tenantId: z.ZodString;
|
|
24553
24552
|
id: z.ZodString;
|
|
24554
24553
|
name: z.ZodString;
|
|
24555
24554
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24555
|
+
tenantId: z.ZodString;
|
|
24556
24556
|
models: z.ZodObject<{
|
|
24557
24557
|
base: z.ZodObject<{
|
|
24558
24558
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24615,6 +24615,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
24615
24615
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24616
24616
|
id: z.ZodString;
|
|
24617
24617
|
name: z.ZodString;
|
|
24618
|
+
createdAt: z.ZodString;
|
|
24619
|
+
updatedAt: z.ZodString;
|
|
24618
24620
|
description: z.ZodNullable<z.ZodString>;
|
|
24619
24621
|
models: z.ZodNullable<z.ZodObject<{
|
|
24620
24622
|
base: z.ZodObject<{
|
|
@@ -24640,8 +24642,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24640
24642
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
24641
24643
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
24642
24644
|
}, z.core.$strip>>;
|
|
24643
|
-
createdAt: z.ZodString;
|
|
24644
|
-
updatedAt: z.ZodString;
|
|
24645
24645
|
}, {
|
|
24646
24646
|
out: {};
|
|
24647
24647
|
in: {};
|
|
@@ -24747,6 +24747,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24747
24747
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24748
24748
|
id: z.ZodString;
|
|
24749
24749
|
name: z.ZodString;
|
|
24750
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24751
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24750
24752
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24751
24753
|
models: z.ZodOptional<z.ZodObject<{
|
|
24752
24754
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -24768,8 +24770,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24768
24770
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24769
24771
|
}, z.core.$strip>>;
|
|
24770
24772
|
}, z.core.$strip>>;
|
|
24771
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24772
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24773
24773
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24774
24774
|
type: z.ZodLiteral<"internal">;
|
|
24775
24775
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -24862,15 +24862,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24862
24862
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24863
24863
|
id: z.ZodString;
|
|
24864
24864
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24865
|
-
executeCode: z.ZodString;
|
|
24866
24865
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24866
|
+
executeCode: z.ZodString;
|
|
24867
24867
|
}, z.core.$strip>>>;
|
|
24868
24868
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24869
24869
|
id: z.ZodOptional<z.ZodString>;
|
|
24870
24870
|
name: z.ZodString;
|
|
24871
24871
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24872
24872
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24873
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24874
24873
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24875
24874
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24876
24875
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24878,6 +24877,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24878
24877
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24879
24878
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24880
24879
|
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>;
|
|
@@ -24971,8 +24971,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24971
24971
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24972
24972
|
id: z.ZodString;
|
|
24973
24973
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24974
|
-
executeCode: z.ZodString;
|
|
24975
24974
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24975
|
+
executeCode: z.ZodString;
|
|
24976
24976
|
}, z.core.$strip>>>;
|
|
24977
24977
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
24978
24978
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -25081,11 +25081,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25081
25081
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25082
25082
|
id: z.ZodString;
|
|
25083
25083
|
name: z.ZodString;
|
|
25084
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25084
25085
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25086
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25085
25087
|
credentialStoreId: z.ZodString;
|
|
25086
25088
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25087
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25088
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25089
25089
|
type: z.ZodEnum<{
|
|
25090
25090
|
readonly memory: "memory";
|
|
25091
25091
|
readonly keychain: "keychain";
|
|
@@ -25102,6 +25102,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25102
25102
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25103
25103
|
id: z.ZodString;
|
|
25104
25104
|
name: z.ZodString;
|
|
25105
|
+
createdAt: z.ZodString;
|
|
25106
|
+
updatedAt: z.ZodString;
|
|
25105
25107
|
description: z.ZodNullable<z.ZodString>;
|
|
25106
25108
|
models: z.ZodNullable<z.ZodType<{
|
|
25107
25109
|
base?: {
|
|
@@ -25189,8 +25191,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25189
25191
|
}, {
|
|
25190
25192
|
stepCountIs?: number | undefined;
|
|
25191
25193
|
}>>>;
|
|
25192
|
-
createdAt: z.ZodString;
|
|
25193
|
-
updatedAt: z.ZodString;
|
|
25194
25194
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25195
25195
|
type: z.ZodLiteral<"internal">;
|
|
25196
25196
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25219,6 +25219,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25219
25219
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25220
25220
|
id: z.ZodString;
|
|
25221
25221
|
name: z.ZodString;
|
|
25222
|
+
createdAt: z.ZodString;
|
|
25223
|
+
updatedAt: z.ZodString;
|
|
25222
25224
|
description: z.ZodNullable<z.ZodString>;
|
|
25223
25225
|
models: z.ZodNullable<z.ZodType<{
|
|
25224
25226
|
base?: {
|
|
@@ -25306,8 +25308,6 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25306
25308
|
}, {
|
|
25307
25309
|
stepCountIs?: number | undefined;
|
|
25308
25310
|
}>>>;
|
|
25309
|
-
createdAt: z.ZodString;
|
|
25310
|
-
updatedAt: z.ZodString;
|
|
25311
25311
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25312
25312
|
type: z.ZodLiteral<"internal">;
|
|
25313
25313
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25342,15 +25342,17 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25342
25342
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25343
25343
|
id: z.ZodString;
|
|
25344
25344
|
name: z.ZodString;
|
|
25345
|
+
createdAt: z.ZodString;
|
|
25346
|
+
updatedAt: z.ZodString;
|
|
25345
25347
|
description: z.ZodNullable<z.ZodString>;
|
|
25346
25348
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25347
25349
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25348
25350
|
executionMode: z.ZodString;
|
|
25349
|
-
createdAt: z.ZodString;
|
|
25350
|
-
updatedAt: z.ZodString;
|
|
25351
25351
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25352
25352
|
id: z.ZodString;
|
|
25353
25353
|
name: z.ZodString;
|
|
25354
|
+
createdAt: z.ZodString;
|
|
25355
|
+
updatedAt: z.ZodString;
|
|
25354
25356
|
description: z.ZodNullable<z.ZodString>;
|
|
25355
25357
|
models: z.ZodNullable<z.ZodType<{
|
|
25356
25358
|
base?: {
|
|
@@ -25438,8 +25440,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25438
25440
|
}, {
|
|
25439
25441
|
stepCountIs?: number | undefined;
|
|
25440
25442
|
}>>>;
|
|
25441
|
-
createdAt: z.ZodString;
|
|
25442
|
-
updatedAt: z.ZodString;
|
|
25443
25443
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25444
25444
|
type: z.ZodLiteral<"internal">;
|
|
25445
25445
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25468,9 +25468,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25468
25468
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25469
25469
|
id: z.ZodString;
|
|
25470
25470
|
name: z.ZodString;
|
|
25471
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25472
25471
|
createdAt: z.ZodString;
|
|
25473
25472
|
updatedAt: z.ZodString;
|
|
25473
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25474
25474
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25475
25475
|
config: z.ZodType<{
|
|
25476
25476
|
type: "mcp";
|
|
@@ -25495,9 +25495,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25495
25495
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25496
25496
|
id: z.ZodString;
|
|
25497
25497
|
name: z.ZodString;
|
|
25498
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25499
25498
|
createdAt: z.ZodString;
|
|
25500
25499
|
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>>>;
|
|
@@ -25509,9 +25509,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25509
25509
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25510
25510
|
id: z.ZodString;
|
|
25511
25511
|
name: z.ZodString;
|
|
25512
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25513
25512
|
createdAt: z.ZodString;
|
|
25514
25513
|
updatedAt: z.ZodString;
|
|
25514
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25515
25515
|
agentId: z.ZodString;
|
|
25516
25516
|
functionId: z.ZodString;
|
|
25517
25517
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -25521,8 +25521,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25521
25521
|
createdAt: z.ZodString;
|
|
25522
25522
|
updatedAt: z.ZodString;
|
|
25523
25523
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25524
|
-
executeCode: z.ZodString;
|
|
25525
25524
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25525
|
+
executeCode: z.ZodString;
|
|
25526
25526
|
}, z.core.$strip>>>;
|
|
25527
25527
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25528
25528
|
id: z.ZodString;
|
|
@@ -25574,18 +25574,18 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25574
25574
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25575
25575
|
id: z.ZodString;
|
|
25576
25576
|
name: z.ZodString;
|
|
25577
|
+
createdAt: z.ZodString;
|
|
25578
|
+
updatedAt: z.ZodString;
|
|
25577
25579
|
description: z.ZodNullable<z.ZodString>;
|
|
25578
25580
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25579
25581
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25580
25582
|
executionMode: z.ZodString;
|
|
25581
|
-
createdAt: z.ZodString;
|
|
25582
|
-
updatedAt: z.ZodString;
|
|
25583
25583
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25584
25584
|
id: z.ZodString;
|
|
25585
25585
|
name: z.ZodString;
|
|
25586
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25587
25586
|
createdAt: z.ZodString;
|
|
25588
25587
|
updatedAt: z.ZodString;
|
|
25588
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25589
25589
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25590
25590
|
config: z.ZodType<{
|
|
25591
25591
|
type: "mcp";
|
|
@@ -25610,9 +25610,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25610
25610
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25611
25611
|
id: z.ZodString;
|
|
25612
25612
|
name: z.ZodString;
|
|
25613
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25614
25613
|
createdAt: z.ZodString;
|
|
25615
25614
|
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>>>;
|
|
@@ -25624,9 +25624,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25624
25624
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25625
25625
|
id: z.ZodString;
|
|
25626
25626
|
name: z.ZodString;
|
|
25627
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25628
25627
|
createdAt: z.ZodString;
|
|
25629
25628
|
updatedAt: z.ZodString;
|
|
25629
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25630
25630
|
agentId: z.ZodString;
|
|
25631
25631
|
functionId: z.ZodString;
|
|
25632
25632
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -25636,8 +25636,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25636
25636
|
createdAt: z.ZodString;
|
|
25637
25637
|
updatedAt: z.ZodString;
|
|
25638
25638
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25639
|
-
executeCode: z.ZodString;
|
|
25640
25639
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25640
|
+
executeCode: z.ZodString;
|
|
25641
25641
|
}, z.core.$strip>>>;
|
|
25642
25642
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25643
25643
|
id: z.ZodString;
|
|
@@ -25688,6 +25688,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25688
25688
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25689
25689
|
id: z.ZodString;
|
|
25690
25690
|
name: z.ZodString;
|
|
25691
|
+
createdAt: z.ZodString;
|
|
25692
|
+
updatedAt: z.ZodString;
|
|
25691
25693
|
description: z.ZodNullable<z.ZodString>;
|
|
25692
25694
|
models: z.ZodNullable<z.ZodType<{
|
|
25693
25695
|
base?: {
|
|
@@ -25775,8 +25777,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25775
25777
|
}, {
|
|
25776
25778
|
stepCountIs?: number | undefined;
|
|
25777
25779
|
}>>>;
|
|
25778
|
-
createdAt: z.ZodString;
|
|
25779
|
-
updatedAt: z.ZodString;
|
|
25780
25780
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25781
25781
|
type: z.ZodLiteral<"internal">;
|
|
25782
25782
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25812,6 +25812,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25812
25812
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25813
25813
|
id: z.ZodString;
|
|
25814
25814
|
name: z.ZodString;
|
|
25815
|
+
createdAt: z.ZodString;
|
|
25816
|
+
updatedAt: z.ZodString;
|
|
25815
25817
|
description: z.ZodNullable<z.ZodString>;
|
|
25816
25818
|
models: z.ZodNullable<z.ZodObject<{
|
|
25817
25819
|
base: z.ZodObject<{
|
|
@@ -25837,20 +25839,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25837
25839
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
25838
25840
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
25839
25841
|
}, z.core.$strip>>;
|
|
25840
|
-
createdAt: z.ZodString;
|
|
25841
|
-
updatedAt: z.ZodString;
|
|
25842
25842
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25843
25843
|
id: z.ZodString;
|
|
25844
25844
|
name: z.ZodString;
|
|
25845
|
+
createdAt: z.ZodString;
|
|
25846
|
+
updatedAt: z.ZodString;
|
|
25845
25847
|
description: z.ZodNullable<z.ZodString>;
|
|
25846
25848
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25847
25849
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25848
25850
|
executionMode: z.ZodString;
|
|
25849
|
-
createdAt: z.ZodString;
|
|
25850
|
-
updatedAt: z.ZodString;
|
|
25851
25851
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25852
25852
|
id: z.ZodString;
|
|
25853
25853
|
name: z.ZodString;
|
|
25854
|
+
createdAt: z.ZodString;
|
|
25855
|
+
updatedAt: z.ZodString;
|
|
25854
25856
|
description: z.ZodNullable<z.ZodString>;
|
|
25855
25857
|
models: z.ZodNullable<z.ZodType<{
|
|
25856
25858
|
base?: {
|
|
@@ -25938,8 +25940,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25938
25940
|
}, {
|
|
25939
25941
|
stepCountIs?: number | undefined;
|
|
25940
25942
|
}>>>;
|
|
25941
|
-
createdAt: z.ZodString;
|
|
25942
|
-
updatedAt: z.ZodString;
|
|
25943
25943
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25944
25944
|
type: z.ZodLiteral<"internal">;
|
|
25945
25945
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25968,9 +25968,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25968
25968
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25969
25969
|
id: z.ZodString;
|
|
25970
25970
|
name: z.ZodString;
|
|
25971
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25972
25971
|
createdAt: z.ZodString;
|
|
25973
25972
|
updatedAt: z.ZodString;
|
|
25973
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25974
25974
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25975
25975
|
config: z.ZodType<{
|
|
25976
25976
|
type: "mcp";
|
|
@@ -25995,9 +25995,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25995
25995
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25996
25996
|
id: z.ZodString;
|
|
25997
25997
|
name: z.ZodString;
|
|
25998
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25999
25998
|
createdAt: z.ZodString;
|
|
26000
25999
|
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>>>;
|
|
@@ -26009,9 +26009,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26009
26009
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26010
26010
|
id: z.ZodString;
|
|
26011
26011
|
name: z.ZodString;
|
|
26012
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26013
26012
|
createdAt: z.ZodString;
|
|
26014
26013
|
updatedAt: z.ZodString;
|
|
26014
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26015
26015
|
agentId: z.ZodString;
|
|
26016
26016
|
functionId: z.ZodString;
|
|
26017
26017
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26021,8 +26021,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26021
26021
|
createdAt: z.ZodString;
|
|
26022
26022
|
updatedAt: z.ZodString;
|
|
26023
26023
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26024
|
-
executeCode: z.ZodString;
|
|
26025
26024
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26025
|
+
executeCode: z.ZodString;
|
|
26026
26026
|
}, z.core.$strip>>>;
|
|
26027
26027
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26028
26028
|
id: z.ZodString;
|
|
@@ -26074,9 +26074,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26074
26074
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26075
26075
|
id: z.ZodString;
|
|
26076
26076
|
name: z.ZodString;
|
|
26077
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26078
26077
|
createdAt: z.ZodString;
|
|
26079
26078
|
updatedAt: z.ZodString;
|
|
26079
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26080
26080
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26081
26081
|
config: z.ZodType<{
|
|
26082
26082
|
type: "mcp";
|
|
@@ -26101,9 +26101,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26101
26101
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26102
26102
|
id: z.ZodString;
|
|
26103
26103
|
name: z.ZodString;
|
|
26104
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26105
26104
|
createdAt: z.ZodString;
|
|
26106
26105
|
updatedAt: z.ZodString;
|
|
26106
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26107
26107
|
agentId: z.ZodString;
|
|
26108
26108
|
functionId: z.ZodString;
|
|
26109
26109
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26113,15 +26113,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26113
26113
|
createdAt: z.ZodString;
|
|
26114
26114
|
updatedAt: z.ZodString;
|
|
26115
26115
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26116
|
-
executeCode: z.ZodString;
|
|
26117
26116
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26117
|
+
executeCode: z.ZodString;
|
|
26118
26118
|
}, z.core.$strip>>>;
|
|
26119
26119
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26120
26120
|
id: z.ZodString;
|
|
26121
26121
|
name: z.ZodString;
|
|
26122
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26123
26122
|
createdAt: z.ZodString;
|
|
26124
26123
|
updatedAt: z.ZodString;
|
|
26124
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26125
26125
|
props: z.ZodType<{
|
|
26126
26126
|
[x: string]: unknown;
|
|
26127
26127
|
type: "object";
|
|
@@ -26168,9 +26168,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26168
26168
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26169
26169
|
id: z.ZodString;
|
|
26170
26170
|
name: z.ZodString;
|
|
26171
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26172
26171
|
createdAt: z.ZodString;
|
|
26173
26172
|
updatedAt: z.ZodString;
|
|
26173
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26174
26174
|
props: z.ZodNullable<z.ZodType<{
|
|
26175
26175
|
[x: string]: unknown;
|
|
26176
26176
|
type: "object";
|
|
@@ -26217,9 +26217,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26217
26217
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26218
26218
|
id: z.ZodString;
|
|
26219
26219
|
name: z.ZodString;
|
|
26220
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26221
26220
|
createdAt: z.ZodString;
|
|
26222
26221
|
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>>>;
|
|
@@ -26243,11 +26243,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26243
26243
|
name: z.ZodString;
|
|
26244
26244
|
createdAt: z.ZodString;
|
|
26245
26245
|
updatedAt: z.ZodString;
|
|
26246
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26246
26247
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26248
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26247
26249
|
credentialStoreId: z.ZodString;
|
|
26248
26250
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26249
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26250
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26251
26251
|
type: z.ZodEnum<{
|
|
26252
26252
|
readonly memory: "memory";
|
|
26253
26253
|
readonly keychain: "keychain";
|
|
@@ -26837,6 +26837,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26837
26837
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26838
26838
|
id: z.ZodString;
|
|
26839
26839
|
name: z.ZodString;
|
|
26840
|
+
createdAt: z.ZodString;
|
|
26841
|
+
updatedAt: z.ZodString;
|
|
26840
26842
|
description: z.ZodNullable<z.ZodString>;
|
|
26841
26843
|
models: z.ZodNullable<z.ZodObject<{
|
|
26842
26844
|
base: z.ZodObject<{
|
|
@@ -26862,14 +26864,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26862
26864
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
26863
26865
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26864
26866
|
}, z.core.$strip>>;
|
|
26865
|
-
createdAt: z.ZodString;
|
|
26866
|
-
updatedAt: z.ZodString;
|
|
26867
26867
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26868
26868
|
id: z.ZodString;
|
|
26869
26869
|
name: z.ZodString;
|
|
26870
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26871
26870
|
createdAt: z.ZodString;
|
|
26872
26871
|
updatedAt: z.ZodString;
|
|
26872
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26873
26873
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26874
26874
|
config: z.ZodType<{
|
|
26875
26875
|
type: "mcp";
|
|
@@ -26894,9 +26894,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26894
26894
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26895
26895
|
id: z.ZodString;
|
|
26896
26896
|
name: z.ZodString;
|
|
26897
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26898
26897
|
createdAt: z.ZodString;
|
|
26899
26898
|
updatedAt: z.ZodString;
|
|
26899
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26900
26900
|
agentId: z.ZodString;
|
|
26901
26901
|
functionId: z.ZodString;
|
|
26902
26902
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26906,15 +26906,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26906
26906
|
createdAt: z.ZodString;
|
|
26907
26907
|
updatedAt: z.ZodString;
|
|
26908
26908
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26909
|
-
executeCode: z.ZodString;
|
|
26910
26909
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26910
|
+
executeCode: z.ZodString;
|
|
26911
26911
|
}, z.core.$strip>>>;
|
|
26912
26912
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26913
26913
|
id: z.ZodString;
|
|
26914
26914
|
name: z.ZodString;
|
|
26915
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26916
26915
|
createdAt: z.ZodString;
|
|
26917
26916
|
updatedAt: z.ZodString;
|
|
26917
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26918
26918
|
props: z.ZodType<{
|
|
26919
26919
|
[x: string]: unknown;
|
|
26920
26920
|
type: "object";
|
|
@@ -26961,9 +26961,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26961
26961
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26962
26962
|
id: z.ZodString;
|
|
26963
26963
|
name: z.ZodString;
|
|
26964
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26965
26964
|
createdAt: z.ZodString;
|
|
26966
26965
|
updatedAt: z.ZodString;
|
|
26966
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26967
26967
|
props: z.ZodNullable<z.ZodType<{
|
|
26968
26968
|
[x: string]: unknown;
|
|
26969
26969
|
type: "object";
|
|
@@ -27010,9 +27010,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27010
27010
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27011
27011
|
id: z.ZodString;
|
|
27012
27012
|
name: z.ZodString;
|
|
27013
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27014
27013
|
createdAt: z.ZodString;
|
|
27015
27014
|
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>>>;
|
|
@@ -27036,11 +27036,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27036
27036
|
name: z.ZodString;
|
|
27037
27037
|
createdAt: z.ZodString;
|
|
27038
27038
|
updatedAt: z.ZodString;
|
|
27039
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27039
27040
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27041
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27040
27042
|
credentialStoreId: z.ZodString;
|
|
27041
27043
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27042
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27043
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27044
27044
|
type: z.ZodEnum<{
|
|
27045
27045
|
readonly memory: "memory";
|
|
27046
27046
|
readonly keychain: "keychain";
|
|
@@ -27626,18 +27626,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27626
27626
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27627
27627
|
id: z.ZodString;
|
|
27628
27628
|
name: z.ZodString;
|
|
27629
|
+
createdAt: z.ZodString;
|
|
27630
|
+
updatedAt: z.ZodString;
|
|
27629
27631
|
description: z.ZodNullable<z.ZodString>;
|
|
27630
27632
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27631
27633
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27632
27634
|
executionMode: z.ZodString;
|
|
27633
|
-
createdAt: z.ZodString;
|
|
27634
|
-
updatedAt: z.ZodString;
|
|
27635
27635
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27636
27636
|
id: z.ZodString;
|
|
27637
27637
|
name: z.ZodString;
|
|
27638
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27639
27638
|
createdAt: z.ZodString;
|
|
27640
27639
|
updatedAt: z.ZodString;
|
|
27640
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27641
27641
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27642
27642
|
config: z.ZodType<{
|
|
27643
27643
|
type: "mcp";
|
|
@@ -27662,9 +27662,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27662
27662
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27663
27663
|
id: z.ZodString;
|
|
27664
27664
|
name: z.ZodString;
|
|
27665
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27666
27665
|
createdAt: z.ZodString;
|
|
27667
27666
|
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>>>;
|
|
@@ -27676,9 +27676,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27676
27676
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27677
27677
|
id: z.ZodString;
|
|
27678
27678
|
name: z.ZodString;
|
|
27679
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27680
27679
|
createdAt: z.ZodString;
|
|
27681
27680
|
updatedAt: z.ZodString;
|
|
27681
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27682
27682
|
agentId: z.ZodString;
|
|
27683
27683
|
functionId: z.ZodString;
|
|
27684
27684
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27688,8 +27688,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27688
27688
|
createdAt: z.ZodString;
|
|
27689
27689
|
updatedAt: z.ZodString;
|
|
27690
27690
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27691
|
-
executeCode: z.ZodString;
|
|
27692
27691
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27692
|
+
executeCode: z.ZodString;
|
|
27693
27693
|
}, z.core.$strip>>>;
|
|
27694
27694
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27695
27695
|
id: z.ZodString;
|
|
@@ -27740,6 +27740,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27740
27740
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27741
27741
|
id: z.ZodString;
|
|
27742
27742
|
name: z.ZodString;
|
|
27743
|
+
createdAt: z.ZodString;
|
|
27744
|
+
updatedAt: z.ZodString;
|
|
27743
27745
|
description: z.ZodNullable<z.ZodString>;
|
|
27744
27746
|
models: z.ZodNullable<z.ZodType<{
|
|
27745
27747
|
base?: {
|
|
@@ -27827,8 +27829,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27827
27829
|
}, {
|
|
27828
27830
|
stepCountIs?: number | undefined;
|
|
27829
27831
|
}>>>;
|
|
27830
|
-
createdAt: z.ZodString;
|
|
27831
|
-
updatedAt: z.ZodString;
|
|
27832
27832
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
27833
27833
|
type: z.ZodLiteral<"internal">;
|
|
27834
27834
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -27869,6 +27869,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
27869
27869
|
data: z.ZodObject<{
|
|
27870
27870
|
id: z.ZodString;
|
|
27871
27871
|
name: z.ZodString;
|
|
27872
|
+
createdAt: z.ZodString;
|
|
27873
|
+
updatedAt: z.ZodString;
|
|
27872
27874
|
description: z.ZodNullable<z.ZodString>;
|
|
27873
27875
|
models: z.ZodNullable<z.ZodObject<{
|
|
27874
27876
|
base: z.ZodObject<{
|
|
@@ -27894,8 +27896,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
27894
27896
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
27895
27897
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
27896
27898
|
}, z.core.$strip>>;
|
|
27897
|
-
createdAt: z.ZodString;
|
|
27898
|
-
updatedAt: z.ZodString;
|
|
27899
27899
|
}, {
|
|
27900
27900
|
out: {};
|
|
27901
27901
|
in: {};
|
|
@@ -27905,6 +27905,8 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
27905
27905
|
data: z.ZodObject<{
|
|
27906
27906
|
id: z.ZodString;
|
|
27907
27907
|
name: z.ZodString;
|
|
27908
|
+
createdAt: z.ZodString;
|
|
27909
|
+
updatedAt: z.ZodString;
|
|
27908
27910
|
description: z.ZodNullable<z.ZodString>;
|
|
27909
27911
|
models: z.ZodNullable<z.ZodType<{
|
|
27910
27912
|
base?: {
|
|
@@ -27993,8 +27995,6 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
27993
27995
|
}, {
|
|
27994
27996
|
stepCountIs?: number | undefined;
|
|
27995
27997
|
}>>>;
|
|
27996
|
-
createdAt: z.ZodString;
|
|
27997
|
-
updatedAt: z.ZodString;
|
|
27998
27998
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
27999
27999
|
}, z.core.$strip>;
|
|
28000
28000
|
}, z.core.$strip>;
|
|
@@ -28002,6 +28002,8 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28002
28002
|
data: z.ZodObject<{
|
|
28003
28003
|
id: z.ZodString;
|
|
28004
28004
|
name: z.ZodString;
|
|
28005
|
+
createdAt: z.ZodString;
|
|
28006
|
+
updatedAt: z.ZodString;
|
|
28005
28007
|
description: z.ZodNullable<z.ZodString>;
|
|
28006
28008
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28007
28009
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
@@ -28150,17 +28152,15 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28150
28152
|
transferCountIs?: number | undefined;
|
|
28151
28153
|
}>>>;
|
|
28152
28154
|
executionMode: z.ZodString;
|
|
28153
|
-
createdAt: z.ZodString;
|
|
28154
|
-
updatedAt: z.ZodString;
|
|
28155
28155
|
}, z.core.$strip>;
|
|
28156
28156
|
}, z.core.$strip>;
|
|
28157
28157
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
28158
28158
|
data: z.ZodObject<{
|
|
28159
28159
|
id: z.ZodString;
|
|
28160
28160
|
name: z.ZodString;
|
|
28161
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28162
28161
|
createdAt: z.ZodString;
|
|
28163
28162
|
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>;
|
|
@@ -28180,8 +28180,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28180
28180
|
name: z.ZodNullable<z.ZodString>;
|
|
28181
28181
|
createdAt: z.ZodString;
|
|
28182
28182
|
updatedAt: z.ZodString;
|
|
28183
|
-
agentId: z.ZodString;
|
|
28184
28183
|
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>;
|
|
@@ -28196,11 +28196,11 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28196
28196
|
name: z.ZodString;
|
|
28197
28197
|
createdAt: z.ZodString;
|
|
28198
28198
|
updatedAt: z.ZodString;
|
|
28199
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28199
28200
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28201
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28200
28202
|
credentialStoreId: z.ZodString;
|
|
28201
28203
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28202
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28203
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28204
28204
|
type: z.ZodEnum<{
|
|
28205
28205
|
readonly memory: "memory";
|
|
28206
28206
|
readonly keychain: "keychain";
|
|
@@ -28790,17 +28790,17 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28790
28790
|
createdAt: z.ZodString;
|
|
28791
28791
|
updatedAt: z.ZodString;
|
|
28792
28792
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28793
|
-
executeCode: z.ZodString;
|
|
28794
28793
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28794
|
+
executeCode: z.ZodString;
|
|
28795
28795
|
}, z.core.$strip>;
|
|
28796
28796
|
}, z.core.$strip>;
|
|
28797
28797
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28798
28798
|
data: z.ZodObject<{
|
|
28799
28799
|
id: z.ZodString;
|
|
28800
28800
|
name: z.ZodString;
|
|
28801
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28802
28801
|
createdAt: z.ZodString;
|
|
28803
28802
|
updatedAt: z.ZodString;
|
|
28803
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28804
28804
|
agentId: z.ZodString;
|
|
28805
28805
|
functionId: z.ZodString;
|
|
28806
28806
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -28811,18 +28811,18 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
28811
28811
|
id: z.ZodString;
|
|
28812
28812
|
createdAt: z.ZodString;
|
|
28813
28813
|
updatedAt: z.ZodString;
|
|
28814
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28815
28814
|
subAgentId: z.ZodString;
|
|
28816
28815
|
functionToolId: z.ZodString;
|
|
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
28821
|
id: z.ZodString;
|
|
28822
28822
|
name: z.ZodString;
|
|
28823
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28824
28823
|
createdAt: z.ZodString;
|
|
28825
28824
|
updatedAt: z.ZodString;
|
|
28825
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28826
28826
|
props: z.ZodType<{
|
|
28827
28827
|
[x: string]: unknown;
|
|
28828
28828
|
type: "object";
|
|
@@ -28871,9 +28871,9 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
28871
28871
|
data: z.ZodObject<{
|
|
28872
28872
|
id: z.ZodString;
|
|
28873
28873
|
name: z.ZodString;
|
|
28874
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28875
28874
|
createdAt: z.ZodString;
|
|
28876
28875
|
updatedAt: z.ZodString;
|
|
28876
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28877
28877
|
props: z.ZodNullable<z.ZodType<{
|
|
28878
28878
|
[x: string]: unknown;
|
|
28879
28879
|
type: "object";
|
|
@@ -28933,10 +28933,10 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
28933
28933
|
id: z.ZodString;
|
|
28934
28934
|
createdAt: z.ZodString;
|
|
28935
28935
|
updatedAt: z.ZodString;
|
|
28936
|
-
toolId: z.ZodString;
|
|
28937
28936
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28938
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28939
28937
|
subAgentId: z.ZodString;
|
|
28938
|
+
toolId: z.ZodString;
|
|
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>;
|
|
@@ -28944,11 +28944,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28944
28944
|
data: z.ZodObject<{
|
|
28945
28945
|
id: z.ZodString;
|
|
28946
28946
|
name: z.ZodString;
|
|
28947
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28948
|
-
enabled: z.ZodBoolean;
|
|
28949
28947
|
createdAt: z.ZodString;
|
|
28950
28948
|
updatedAt: z.ZodString;
|
|
28951
|
-
|
|
28949
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28950
|
+
enabled: z.ZodBoolean;
|
|
28952
28951
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28953
28952
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28954
28953
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -28956,21 +28955,21 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28956
28955
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28957
28956
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28958
28957
|
algorithm: z.ZodEnum<{
|
|
28958
|
+
md5: "md5";
|
|
28959
28959
|
sha256: "sha256";
|
|
28960
28960
|
sha512: "sha512";
|
|
28961
28961
|
sha384: "sha384";
|
|
28962
28962
|
sha1: "sha1";
|
|
28963
|
-
md5: "md5";
|
|
28964
28963
|
}>;
|
|
28965
28964
|
encoding: z.ZodEnum<{
|
|
28966
|
-
hex: "hex";
|
|
28967
28965
|
base64: "base64";
|
|
28966
|
+
hex: "hex";
|
|
28968
28967
|
}>;
|
|
28969
28968
|
signature: z.ZodObject<{
|
|
28970
28969
|
source: z.ZodEnum<{
|
|
28971
28970
|
query: "query";
|
|
28972
|
-
header: "header";
|
|
28973
28971
|
body: "body";
|
|
28972
|
+
header: "header";
|
|
28974
28973
|
}>;
|
|
28975
28974
|
key: z.ZodString;
|
|
28976
28975
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28979,8 +28978,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28979
28978
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28980
28979
|
source: z.ZodEnum<{
|
|
28981
28980
|
literal: "literal";
|
|
28982
|
-
header: "header";
|
|
28983
28981
|
body: "body";
|
|
28982
|
+
header: "header";
|
|
28984
28983
|
}>;
|
|
28985
28984
|
key: z.ZodOptional<z.ZodString>;
|
|
28986
28985
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29000,11 +28999,13 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29000
28999
|
}, z.core.$strip>>;
|
|
29001
29000
|
}, z.core.$strip>>>;
|
|
29002
29001
|
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
|
+
createdAt: z.ZodString;
|
|
29008
29009
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29009
29010
|
type: z.ZodEnum<{
|
|
29010
29011
|
commit: "commit";
|
|
@@ -29014,7 +29015,6 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29014
29015
|
name: z.ZodString;
|
|
29015
29016
|
hash: z.ZodString;
|
|
29016
29017
|
}, z.core.$strip>>>;
|
|
29017
|
-
createdAt: z.ZodString;
|
|
29018
29018
|
status: z.ZodString;
|
|
29019
29019
|
triggerId: z.ZodString;
|
|
29020
29020
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -29026,9 +29026,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29026
29026
|
declare const FeedbackResponse: z.ZodObject<{
|
|
29027
29027
|
data: z.ZodObject<{
|
|
29028
29028
|
id: z.ZodString;
|
|
29029
|
-
type: z.ZodString;
|
|
29030
29029
|
createdAt: z.ZodString;
|
|
29031
29030
|
updatedAt: z.ZodString;
|
|
29031
|
+
type: z.ZodString;
|
|
29032
29032
|
details: z.ZodNullable<z.ZodString>;
|
|
29033
29033
|
conversationId: z.ZodString;
|
|
29034
29034
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -29038,6 +29038,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29038
29038
|
data: z.ZodArray<z.ZodObject<{
|
|
29039
29039
|
id: z.ZodString;
|
|
29040
29040
|
name: z.ZodString;
|
|
29041
|
+
createdAt: z.ZodString;
|
|
29042
|
+
updatedAt: z.ZodString;
|
|
29041
29043
|
description: z.ZodNullable<z.ZodString>;
|
|
29042
29044
|
models: z.ZodNullable<z.ZodObject<{
|
|
29043
29045
|
base: z.ZodObject<{
|
|
@@ -29063,8 +29065,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29063
29065
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
29064
29066
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
29065
29067
|
}, z.core.$strip>>;
|
|
29066
|
-
createdAt: z.ZodString;
|
|
29067
|
-
updatedAt: z.ZodString;
|
|
29068
29068
|
}, {
|
|
29069
29069
|
out: {};
|
|
29070
29070
|
in: {};
|
|
@@ -29080,6 +29080,8 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29080
29080
|
data: z.ZodArray<z.ZodObject<{
|
|
29081
29081
|
id: z.ZodString;
|
|
29082
29082
|
name: z.ZodString;
|
|
29083
|
+
createdAt: z.ZodString;
|
|
29084
|
+
updatedAt: z.ZodString;
|
|
29083
29085
|
description: z.ZodNullable<z.ZodString>;
|
|
29084
29086
|
models: z.ZodNullable<z.ZodType<{
|
|
29085
29087
|
base?: {
|
|
@@ -29168,8 +29170,6 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29168
29170
|
}, {
|
|
29169
29171
|
stepCountIs?: number | undefined;
|
|
29170
29172
|
}>>>;
|
|
29171
|
-
createdAt: z.ZodString;
|
|
29172
|
-
updatedAt: z.ZodString;
|
|
29173
29173
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
29174
29174
|
}, z.core.$strip>>;
|
|
29175
29175
|
pagination: z.ZodObject<{
|
|
@@ -29183,6 +29183,8 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29183
29183
|
data: z.ZodArray<z.ZodObject<{
|
|
29184
29184
|
id: z.ZodString;
|
|
29185
29185
|
name: z.ZodString;
|
|
29186
|
+
createdAt: z.ZodString;
|
|
29187
|
+
updatedAt: z.ZodString;
|
|
29186
29188
|
description: z.ZodNullable<z.ZodString>;
|
|
29187
29189
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29188
29190
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
@@ -29331,8 +29333,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29331
29333
|
transferCountIs?: number | undefined;
|
|
29332
29334
|
}>>>;
|
|
29333
29335
|
executionMode: z.ZodString;
|
|
29334
|
-
createdAt: z.ZodString;
|
|
29335
|
-
updatedAt: z.ZodString;
|
|
29336
29336
|
}, z.core.$strip>>;
|
|
29337
29337
|
pagination: z.ZodObject<{
|
|
29338
29338
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29345,9 +29345,9 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
29345
29345
|
data: z.ZodArray<z.ZodObject<{
|
|
29346
29346
|
id: z.ZodString;
|
|
29347
29347
|
name: z.ZodString;
|
|
29348
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29349
29348
|
createdAt: z.ZodString;
|
|
29350
29349
|
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>>;
|
|
@@ -29379,8 +29379,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29379
29379
|
name: z.ZodNullable<z.ZodString>;
|
|
29380
29380
|
createdAt: z.ZodString;
|
|
29381
29381
|
updatedAt: z.ZodString;
|
|
29382
|
-
agentId: z.ZodString;
|
|
29383
29382
|
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
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
29401
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
29402
29400
|
id: z.ZodString;
|
|
29403
29401
|
name: z.ZodString;
|
|
29402
|
+
createdAt: z.ZodString;
|
|
29403
|
+
updatedAt: z.ZodString;
|
|
29404
29404
|
description: z.ZodNullable<z.ZodString>;
|
|
29405
|
-
type: z.ZodString;
|
|
29406
29405
|
enabled: z.ZodBoolean;
|
|
29406
|
+
type: z.ZodString;
|
|
29407
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
29408
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
29407
29409
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29408
|
-
createdAt: z.ZodString;
|
|
29409
|
-
updatedAt: 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
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
29446
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
29447
29445
|
id: z.ZodString;
|
|
29448
29446
|
name: z.ZodString;
|
|
29447
|
+
createdAt: z.ZodString;
|
|
29448
|
+
updatedAt: z.ZodString;
|
|
29449
29449
|
description: z.ZodNullable<z.ZodString>;
|
|
29450
|
-
type: z.ZodString;
|
|
29451
29450
|
enabled: z.ZodBoolean;
|
|
29451
|
+
type: z.ZodString;
|
|
29452
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
29453
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
29452
29454
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29453
|
-
createdAt: z.ZodString;
|
|
29454
|
-
updatedAt: z.ZodString;
|
|
29455
29455
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29456
29456
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
29457
29457
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -29497,11 +29497,11 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29497
29497
|
name: z.ZodString;
|
|
29498
29498
|
createdAt: z.ZodString;
|
|
29499
29499
|
updatedAt: z.ZodString;
|
|
29500
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29500
29501
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29502
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29501
29503
|
credentialStoreId: z.ZodString;
|
|
29502
29504
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29503
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29504
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29505
29505
|
type: z.ZodEnum<{
|
|
29506
29506
|
readonly memory: "memory";
|
|
29507
29507
|
readonly keychain: "keychain";
|
|
@@ -30097,8 +30097,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30097
30097
|
createdAt: z.ZodString;
|
|
30098
30098
|
updatedAt: z.ZodString;
|
|
30099
30099
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30100
|
-
executeCode: z.ZodString;
|
|
30101
30100
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30101
|
+
executeCode: z.ZodString;
|
|
30102
30102
|
}, z.core.$strip>>;
|
|
30103
30103
|
pagination: z.ZodObject<{
|
|
30104
30104
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30111,9 +30111,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
30111
30111
|
data: z.ZodArray<z.ZodObject<{
|
|
30112
30112
|
id: z.ZodString;
|
|
30113
30113
|
name: z.ZodString;
|
|
30114
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30115
30114
|
createdAt: z.ZodString;
|
|
30116
30115
|
updatedAt: z.ZodString;
|
|
30116
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30117
30117
|
agentId: z.ZodString;
|
|
30118
30118
|
functionId: z.ZodString;
|
|
30119
30119
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -30130,9 +30130,9 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30130
30130
|
id: z.ZodString;
|
|
30131
30131
|
createdAt: z.ZodString;
|
|
30132
30132
|
updatedAt: z.ZodString;
|
|
30133
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30134
30133
|
subAgentId: z.ZodString;
|
|
30135
30134
|
functionToolId: z.ZodString;
|
|
30135
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30136
30136
|
}, z.core.$strip>>;
|
|
30137
30137
|
pagination: z.ZodObject<{
|
|
30138
30138
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30144,9 +30144,9 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30144
30144
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
30145
30145
|
data: z.ZodArray<z.ZodObject<{
|
|
30146
30146
|
id: z.ZodString;
|
|
30147
|
-
type: z.ZodString;
|
|
30148
30147
|
createdAt: z.ZodString;
|
|
30149
30148
|
updatedAt: z.ZodString;
|
|
30149
|
+
type: z.ZodString;
|
|
30150
30150
|
details: z.ZodNullable<z.ZodString>;
|
|
30151
30151
|
conversationId: z.ZodString;
|
|
30152
30152
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -30163,9 +30163,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
30163
30163
|
data: z.ZodArray<z.ZodObject<{
|
|
30164
30164
|
id: z.ZodString;
|
|
30165
30165
|
name: z.ZodString;
|
|
30166
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30167
30166
|
createdAt: z.ZodString;
|
|
30168
30167
|
updatedAt: z.ZodString;
|
|
30168
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30169
30169
|
props: z.ZodType<{
|
|
30170
30170
|
[x: string]: unknown;
|
|
30171
30171
|
type: "object";
|
|
@@ -30220,9 +30220,9 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
30220
30220
|
data: z.ZodArray<z.ZodObject<{
|
|
30221
30221
|
id: z.ZodString;
|
|
30222
30222
|
name: z.ZodString;
|
|
30223
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30224
30223
|
createdAt: z.ZodString;
|
|
30225
30224
|
updatedAt: z.ZodString;
|
|
30225
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30226
30226
|
props: z.ZodNullable<z.ZodType<{
|
|
30227
30227
|
[x: string]: unknown;
|
|
30228
30228
|
type: "object";
|
|
@@ -30294,10 +30294,10 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30294
30294
|
id: z.ZodString;
|
|
30295
30295
|
createdAt: z.ZodString;
|
|
30296
30296
|
updatedAt: z.ZodString;
|
|
30297
|
-
toolId: z.ZodString;
|
|
30298
30297
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30299
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30300
30298
|
subAgentId: z.ZodString;
|
|
30299
|
+
toolId: z.ZodString;
|
|
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>>;
|
|
30303
30303
|
pagination: z.ZodObject<{
|
|
@@ -30311,11 +30311,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30311
30311
|
data: z.ZodArray<z.ZodObject<{
|
|
30312
30312
|
id: z.ZodString;
|
|
30313
30313
|
name: z.ZodString;
|
|
30314
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30315
|
-
enabled: z.ZodBoolean;
|
|
30316
30314
|
createdAt: z.ZodString;
|
|
30317
30315
|
updatedAt: z.ZodString;
|
|
30318
|
-
|
|
30316
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30317
|
+
enabled: z.ZodBoolean;
|
|
30319
30318
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30320
30319
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30321
30320
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -30323,21 +30322,21 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30323
30322
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30324
30323
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30325
30324
|
algorithm: z.ZodEnum<{
|
|
30325
|
+
md5: "md5";
|
|
30326
30326
|
sha256: "sha256";
|
|
30327
30327
|
sha512: "sha512";
|
|
30328
30328
|
sha384: "sha384";
|
|
30329
30329
|
sha1: "sha1";
|
|
30330
|
-
md5: "md5";
|
|
30331
30330
|
}>;
|
|
30332
30331
|
encoding: z.ZodEnum<{
|
|
30333
|
-
hex: "hex";
|
|
30334
30332
|
base64: "base64";
|
|
30333
|
+
hex: "hex";
|
|
30335
30334
|
}>;
|
|
30336
30335
|
signature: z.ZodObject<{
|
|
30337
30336
|
source: z.ZodEnum<{
|
|
30338
30337
|
query: "query";
|
|
30339
|
-
header: "header";
|
|
30340
30338
|
body: "body";
|
|
30339
|
+
header: "header";
|
|
30341
30340
|
}>;
|
|
30342
30341
|
key: z.ZodString;
|
|
30343
30342
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30346,8 +30345,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30346
30345
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30347
30346
|
source: z.ZodEnum<{
|
|
30348
30347
|
literal: "literal";
|
|
30349
|
-
header: "header";
|
|
30350
30348
|
body: "body";
|
|
30349
|
+
header: "header";
|
|
30351
30350
|
}>;
|
|
30352
30351
|
key: z.ZodOptional<z.ZodString>;
|
|
30353
30352
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30367,6 +30366,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30367
30366
|
}, z.core.$strip>>;
|
|
30368
30367
|
}, z.core.$strip>>>;
|
|
30369
30368
|
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,6 +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
|
+
createdAt: z.ZodString;
|
|
30381
30382
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30382
30383
|
type: z.ZodEnum<{
|
|
30383
30384
|
commit: "commit";
|
|
@@ -30387,7 +30388,6 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30387
30388
|
name: z.ZodString;
|
|
30388
30389
|
hash: z.ZodString;
|
|
30389
30390
|
}, z.core.$strip>>>;
|
|
30390
|
-
createdAt: z.ZodString;
|
|
30391
30391
|
status: z.ZodString;
|
|
30392
30392
|
triggerId: z.ZodString;
|
|
30393
30393
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -30406,11 +30406,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30406
30406
|
data: z.ZodObject<{
|
|
30407
30407
|
id: z.ZodString;
|
|
30408
30408
|
name: z.ZodString;
|
|
30409
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30410
|
-
enabled: z.ZodBoolean;
|
|
30411
30409
|
createdAt: z.ZodString;
|
|
30412
30410
|
updatedAt: z.ZodString;
|
|
30413
|
-
|
|
30411
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30412
|
+
enabled: z.ZodBoolean;
|
|
30414
30413
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30415
30414
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30416
30415
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -30418,21 +30417,21 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30418
30417
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30419
30418
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30420
30419
|
algorithm: z.ZodEnum<{
|
|
30420
|
+
md5: "md5";
|
|
30421
30421
|
sha256: "sha256";
|
|
30422
30422
|
sha512: "sha512";
|
|
30423
30423
|
sha384: "sha384";
|
|
30424
30424
|
sha1: "sha1";
|
|
30425
|
-
md5: "md5";
|
|
30426
30425
|
}>;
|
|
30427
30426
|
encoding: z.ZodEnum<{
|
|
30428
|
-
hex: "hex";
|
|
30429
30427
|
base64: "base64";
|
|
30428
|
+
hex: "hex";
|
|
30430
30429
|
}>;
|
|
30431
30430
|
signature: z.ZodObject<{
|
|
30432
30431
|
source: z.ZodEnum<{
|
|
30433
30432
|
query: "query";
|
|
30434
|
-
header: "header";
|
|
30435
30433
|
body: "body";
|
|
30434
|
+
header: "header";
|
|
30436
30435
|
}>;
|
|
30437
30436
|
key: z.ZodString;
|
|
30438
30437
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30441,8 +30440,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30441
30440
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30442
30441
|
source: z.ZodEnum<{
|
|
30443
30442
|
literal: "literal";
|
|
30444
|
-
header: "header";
|
|
30445
30443
|
body: "body";
|
|
30444
|
+
header: "header";
|
|
30446
30445
|
}>;
|
|
30447
30446
|
key: z.ZodOptional<z.ZodString>;
|
|
30448
30447
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30462,6 +30461,7 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30462
30461
|
}, z.core.$strip>>;
|
|
30463
30462
|
}, z.core.$strip>>>;
|
|
30464
30463
|
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>;
|
|
@@ -30469,11 +30469,10 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30469
30469
|
data: z.ZodObject<{
|
|
30470
30470
|
id: z.ZodString;
|
|
30471
30471
|
name: z.ZodString;
|
|
30472
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30473
|
-
enabled: z.ZodBoolean;
|
|
30474
30472
|
createdAt: z.ZodString;
|
|
30475
30473
|
updatedAt: z.ZodString;
|
|
30476
|
-
|
|
30474
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30475
|
+
enabled: z.ZodBoolean;
|
|
30477
30476
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30478
30477
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30479
30478
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -30481,21 +30480,21 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30481
30480
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30482
30481
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30483
30482
|
algorithm: z.ZodEnum<{
|
|
30483
|
+
md5: "md5";
|
|
30484
30484
|
sha256: "sha256";
|
|
30485
30485
|
sha512: "sha512";
|
|
30486
30486
|
sha384: "sha384";
|
|
30487
30487
|
sha1: "sha1";
|
|
30488
|
-
md5: "md5";
|
|
30489
30488
|
}>;
|
|
30490
30489
|
encoding: z.ZodEnum<{
|
|
30491
|
-
hex: "hex";
|
|
30492
30490
|
base64: "base64";
|
|
30491
|
+
hex: "hex";
|
|
30493
30492
|
}>;
|
|
30494
30493
|
signature: z.ZodObject<{
|
|
30495
30494
|
source: z.ZodEnum<{
|
|
30496
30495
|
query: "query";
|
|
30497
|
-
header: "header";
|
|
30498
30496
|
body: "body";
|
|
30497
|
+
header: "header";
|
|
30499
30498
|
}>;
|
|
30500
30499
|
key: z.ZodString;
|
|
30501
30500
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30504,8 +30503,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30504
30503
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30505
30504
|
source: z.ZodEnum<{
|
|
30506
30505
|
literal: "literal";
|
|
30507
|
-
header: "header";
|
|
30508
30506
|
body: "body";
|
|
30507
|
+
header: "header";
|
|
30509
30508
|
}>;
|
|
30510
30509
|
key: z.ZodOptional<z.ZodString>;
|
|
30511
30510
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30525,6 +30524,7 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30525
30524
|
}, z.core.$strip>>;
|
|
30526
30525
|
}, z.core.$strip>>>;
|
|
30527
30526
|
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>;
|
|
@@ -30533,11 +30533,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30533
30533
|
data: z.ZodArray<z.ZodObject<{
|
|
30534
30534
|
id: z.ZodString;
|
|
30535
30535
|
name: z.ZodString;
|
|
30536
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30537
|
-
enabled: z.ZodBoolean;
|
|
30538
30536
|
createdAt: z.ZodString;
|
|
30539
30537
|
updatedAt: z.ZodString;
|
|
30540
|
-
|
|
30538
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30539
|
+
enabled: z.ZodBoolean;
|
|
30541
30540
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30542
30541
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30543
30542
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -30545,21 +30544,21 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30545
30544
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30546
30545
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30547
30546
|
algorithm: z.ZodEnum<{
|
|
30547
|
+
md5: "md5";
|
|
30548
30548
|
sha256: "sha256";
|
|
30549
30549
|
sha512: "sha512";
|
|
30550
30550
|
sha384: "sha384";
|
|
30551
30551
|
sha1: "sha1";
|
|
30552
|
-
md5: "md5";
|
|
30553
30552
|
}>;
|
|
30554
30553
|
encoding: z.ZodEnum<{
|
|
30555
|
-
hex: "hex";
|
|
30556
30554
|
base64: "base64";
|
|
30555
|
+
hex: "hex";
|
|
30557
30556
|
}>;
|
|
30558
30557
|
signature: z.ZodObject<{
|
|
30559
30558
|
source: z.ZodEnum<{
|
|
30560
30559
|
query: "query";
|
|
30561
|
-
header: "header";
|
|
30562
30560
|
body: "body";
|
|
30561
|
+
header: "header";
|
|
30563
30562
|
}>;
|
|
30564
30563
|
key: z.ZodString;
|
|
30565
30564
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30568,8 +30567,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30568
30567
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30569
30568
|
source: z.ZodEnum<{
|
|
30570
30569
|
literal: "literal";
|
|
30571
|
-
header: "header";
|
|
30572
30570
|
body: "body";
|
|
30571
|
+
header: "header";
|
|
30573
30572
|
}>;
|
|
30574
30573
|
key: z.ZodOptional<z.ZodString>;
|
|
30575
30574
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30589,6 +30588,7 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30589
30588
|
}, z.core.$strip>>;
|
|
30590
30589
|
}, z.core.$strip>>>;
|
|
30591
30590
|
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<{
|
|
@@ -30608,14 +30608,14 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
30608
30608
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30609
30609
|
id: z.ZodString;
|
|
30610
30610
|
name: z.ZodString;
|
|
30611
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30612
|
-
ref: z.ZodString;
|
|
30613
|
-
enabled: z.ZodBoolean;
|
|
30614
30611
|
createdAt: z.ZodString;
|
|
30615
30612
|
updatedAt: z.ZodString;
|
|
30616
|
-
|
|
30613
|
+
ref: z.ZodString;
|
|
30614
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30615
|
+
enabled: z.ZodBoolean;
|
|
30617
30616
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30618
30617
|
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>;
|
|
@@ -30646,14 +30646,14 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30646
30646
|
data: z.ZodObject<{
|
|
30647
30647
|
id: z.ZodString;
|
|
30648
30648
|
name: z.ZodString;
|
|
30649
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30650
|
-
ref: z.ZodString;
|
|
30651
|
-
enabled: z.ZodBoolean;
|
|
30652
30649
|
createdAt: z.ZodString;
|
|
30653
30650
|
updatedAt: z.ZodString;
|
|
30654
|
-
|
|
30651
|
+
ref: z.ZodString;
|
|
30652
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30653
|
+
enabled: z.ZodBoolean;
|
|
30655
30654
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30656
30655
|
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>;
|
|
@@ -30669,14 +30669,14 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30669
30669
|
data: z.ZodArray<z.ZodObject<{
|
|
30670
30670
|
id: z.ZodString;
|
|
30671
30671
|
name: z.ZodString;
|
|
30672
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30673
|
-
ref: z.ZodString;
|
|
30674
|
-
enabled: z.ZodBoolean;
|
|
30675
30672
|
createdAt: z.ZodString;
|
|
30676
30673
|
updatedAt: z.ZodString;
|
|
30677
|
-
|
|
30674
|
+
ref: z.ZodString;
|
|
30675
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30676
|
+
enabled: z.ZodBoolean;
|
|
30678
30677
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30679
30678
|
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>;
|
|
@@ -30698,14 +30698,14 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30698
30698
|
data: z.ZodArray<z.ZodObject<{
|
|
30699
30699
|
id: z.ZodString;
|
|
30700
30700
|
name: z.ZodString;
|
|
30701
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30702
|
-
ref: z.ZodString;
|
|
30703
|
-
enabled: z.ZodBoolean;
|
|
30704
30701
|
createdAt: z.ZodString;
|
|
30705
30702
|
updatedAt: z.ZodString;
|
|
30706
|
-
|
|
30703
|
+
ref: z.ZodString;
|
|
30704
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30705
|
+
enabled: z.ZodBoolean;
|
|
30707
30706
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30708
30707
|
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,6 +30741,7 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30741
30741
|
declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
30742
30742
|
data: z.ZodObject<{
|
|
30743
30743
|
id: z.ZodString;
|
|
30744
|
+
createdAt: z.ZodString;
|
|
30744
30745
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30745
30746
|
type: z.ZodEnum<{
|
|
30746
30747
|
commit: "commit";
|
|
@@ -30750,9 +30751,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30750
30751
|
name: z.ZodString;
|
|
30751
30752
|
hash: z.ZodString;
|
|
30752
30753
|
}, z.core.$strip>>>;
|
|
30753
|
-
createdAt: z.ZodString;
|
|
30754
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30755
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30756
30754
|
status: z.ZodEnum<{
|
|
30757
30755
|
pending: "pending";
|
|
30758
30756
|
failed: "failed";
|
|
@@ -30760,11 +30758,13 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30760
30758
|
completed: "completed";
|
|
30761
30759
|
cancelled: "cancelled";
|
|
30762
30760
|
}>;
|
|
30761
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30763
30762
|
scheduledTriggerId: z.ZodString;
|
|
30764
30763
|
scheduledFor: z.ZodString;
|
|
30765
30764
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
30766
30765
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
30767
30766
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30767
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30768
30768
|
attemptNumber: z.ZodInt;
|
|
30769
30769
|
idempotencyKey: z.ZodString;
|
|
30770
30770
|
}, z.core.$strip>;
|
|
@@ -30772,6 +30772,7 @@ 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
|
+
createdAt: z.ZodString;
|
|
30775
30776
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30776
30777
|
type: z.ZodEnum<{
|
|
30777
30778
|
commit: "commit";
|
|
@@ -30781,9 +30782,6 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30781
30782
|
name: z.ZodString;
|
|
30782
30783
|
hash: z.ZodString;
|
|
30783
30784
|
}, z.core.$strip>>>;
|
|
30784
|
-
createdAt: z.ZodString;
|
|
30785
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30786
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30787
30785
|
status: z.ZodEnum<{
|
|
30788
30786
|
pending: "pending";
|
|
30789
30787
|
failed: "failed";
|
|
@@ -30791,11 +30789,13 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30791
30789
|
completed: "completed";
|
|
30792
30790
|
cancelled: "cancelled";
|
|
30793
30791
|
}>;
|
|
30792
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30794
30793
|
scheduledTriggerId: z.ZodString;
|
|
30795
30794
|
scheduledFor: z.ZodString;
|
|
30796
30795
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
30797
30796
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
30798
30797
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30798
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30799
30799
|
attemptNumber: z.ZodInt;
|
|
30800
30800
|
idempotencyKey: z.ZodString;
|
|
30801
30801
|
}, z.core.$strip>>;
|
|
@@ -30861,6 +30861,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30861
30861
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30862
30862
|
id: z.ZodString;
|
|
30863
30863
|
name: z.ZodString;
|
|
30864
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30865
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30864
30866
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30865
30867
|
models: z.ZodOptional<z.ZodObject<{
|
|
30866
30868
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -30882,8 +30884,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30882
30884
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30883
30885
|
}, z.core.$strip>>;
|
|
30884
30886
|
}, z.core.$strip>>;
|
|
30885
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30886
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30887
30887
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
30888
30888
|
type: z.ZodLiteral<"internal">;
|
|
30889
30889
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -30976,15 +30976,14 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30976
30976
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30977
30977
|
id: z.ZodString;
|
|
30978
30978
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30979
|
-
executeCode: z.ZodString;
|
|
30980
30979
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30980
|
+
executeCode: z.ZodString;
|
|
30981
30981
|
}, z.core.$strip>>>;
|
|
30982
30982
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30983
30983
|
id: z.ZodOptional<z.ZodString>;
|
|
30984
30984
|
name: z.ZodString;
|
|
30985
30985
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30986
30986
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30987
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30988
30987
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30989
30988
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30990
30989
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30992,6 +30991,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30992
30991
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30993
30992
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30994
30993
|
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>;
|
|
@@ -31085,8 +31085,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31085
31085
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31086
31086
|
id: z.ZodString;
|
|
31087
31087
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31088
|
-
executeCode: z.ZodString;
|
|
31089
31088
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31089
|
+
executeCode: z.ZodString;
|
|
31090
31090
|
}, z.core.$strip>>>;
|
|
31091
31091
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
31092
31092
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -31195,11 +31195,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31195
31195
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31196
31196
|
id: z.ZodString;
|
|
31197
31197
|
name: z.ZodString;
|
|
31198
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31198
31199
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31200
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31199
31201
|
credentialStoreId: z.ZodString;
|
|
31200
31202
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31201
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31202
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31203
31203
|
type: z.ZodEnum<{
|
|
31204
31204
|
readonly memory: "memory";
|
|
31205
31205
|
readonly keychain: "keychain";
|
|
@@ -31218,6 +31218,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31218
31218
|
data: z.ZodObject<{
|
|
31219
31219
|
id: z.ZodString;
|
|
31220
31220
|
name: z.ZodString;
|
|
31221
|
+
createdAt: z.ZodString;
|
|
31222
|
+
updatedAt: z.ZodString;
|
|
31221
31223
|
description: z.ZodNullable<z.ZodString>;
|
|
31222
31224
|
models: z.ZodNullable<z.ZodObject<{
|
|
31223
31225
|
base: z.ZodObject<{
|
|
@@ -31243,20 +31245,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31243
31245
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
31244
31246
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31245
31247
|
}, z.core.$strip>>;
|
|
31246
|
-
createdAt: z.ZodString;
|
|
31247
|
-
updatedAt: z.ZodString;
|
|
31248
31248
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31249
31249
|
id: z.ZodString;
|
|
31250
31250
|
name: z.ZodString;
|
|
31251
|
+
createdAt: z.ZodString;
|
|
31252
|
+
updatedAt: z.ZodString;
|
|
31251
31253
|
description: z.ZodNullable<z.ZodString>;
|
|
31252
31254
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31253
31255
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31254
31256
|
executionMode: z.ZodString;
|
|
31255
|
-
createdAt: z.ZodString;
|
|
31256
|
-
updatedAt: z.ZodString;
|
|
31257
31257
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31258
31258
|
id: z.ZodString;
|
|
31259
31259
|
name: z.ZodString;
|
|
31260
|
+
createdAt: z.ZodString;
|
|
31261
|
+
updatedAt: z.ZodString;
|
|
31260
31262
|
description: z.ZodNullable<z.ZodString>;
|
|
31261
31263
|
models: z.ZodNullable<z.ZodType<{
|
|
31262
31264
|
base?: {
|
|
@@ -31344,8 +31346,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31344
31346
|
}, {
|
|
31345
31347
|
stepCountIs?: number | undefined;
|
|
31346
31348
|
}>>>;
|
|
31347
|
-
createdAt: z.ZodString;
|
|
31348
|
-
updatedAt: z.ZodString;
|
|
31349
31349
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31350
31350
|
type: z.ZodLiteral<"internal">;
|
|
31351
31351
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -31374,9 +31374,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31374
31374
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31375
31375
|
id: z.ZodString;
|
|
31376
31376
|
name: z.ZodString;
|
|
31377
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31378
31377
|
createdAt: z.ZodString;
|
|
31379
31378
|
updatedAt: z.ZodString;
|
|
31379
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31380
31380
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31381
31381
|
config: z.ZodType<{
|
|
31382
31382
|
type: "mcp";
|
|
@@ -31401,9 +31401,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31401
31401
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31402
31402
|
id: z.ZodString;
|
|
31403
31403
|
name: z.ZodString;
|
|
31404
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31405
31404
|
createdAt: z.ZodString;
|
|
31406
31405
|
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>>>;
|
|
@@ -31415,9 +31415,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31415
31415
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31416
31416
|
id: z.ZodString;
|
|
31417
31417
|
name: z.ZodString;
|
|
31418
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31419
31418
|
createdAt: z.ZodString;
|
|
31420
31419
|
updatedAt: z.ZodString;
|
|
31420
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31421
31421
|
agentId: z.ZodString;
|
|
31422
31422
|
functionId: z.ZodString;
|
|
31423
31423
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -31427,8 +31427,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31427
31427
|
createdAt: z.ZodString;
|
|
31428
31428
|
updatedAt: z.ZodString;
|
|
31429
31429
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31430
|
-
executeCode: z.ZodString;
|
|
31431
31430
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31431
|
+
executeCode: z.ZodString;
|
|
31432
31432
|
}, z.core.$strip>>>;
|
|
31433
31433
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
31434
31434
|
id: z.ZodString;
|
|
@@ -31480,9 +31480,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31480
31480
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31481
31481
|
id: z.ZodString;
|
|
31482
31482
|
name: z.ZodString;
|
|
31483
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31484
31483
|
createdAt: z.ZodString;
|
|
31485
31484
|
updatedAt: z.ZodString;
|
|
31485
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31486
31486
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31487
31487
|
config: z.ZodType<{
|
|
31488
31488
|
type: "mcp";
|
|
@@ -31507,9 +31507,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31507
31507
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31508
31508
|
id: z.ZodString;
|
|
31509
31509
|
name: z.ZodString;
|
|
31510
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31511
31510
|
createdAt: z.ZodString;
|
|
31512
31511
|
updatedAt: z.ZodString;
|
|
31512
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31513
31513
|
agentId: z.ZodString;
|
|
31514
31514
|
functionId: z.ZodString;
|
|
31515
31515
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -31519,15 +31519,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31519
31519
|
createdAt: z.ZodString;
|
|
31520
31520
|
updatedAt: z.ZodString;
|
|
31521
31521
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31522
|
-
executeCode: z.ZodString;
|
|
31523
31522
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31523
|
+
executeCode: z.ZodString;
|
|
31524
31524
|
}, z.core.$strip>>>;
|
|
31525
31525
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31526
31526
|
id: z.ZodString;
|
|
31527
31527
|
name: z.ZodString;
|
|
31528
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31529
31528
|
createdAt: z.ZodString;
|
|
31530
31529
|
updatedAt: z.ZodString;
|
|
31530
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31531
31531
|
props: z.ZodType<{
|
|
31532
31532
|
[x: string]: unknown;
|
|
31533
31533
|
type: "object";
|
|
@@ -31574,9 +31574,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31574
31574
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31575
31575
|
id: z.ZodString;
|
|
31576
31576
|
name: z.ZodString;
|
|
31577
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31578
31577
|
createdAt: z.ZodString;
|
|
31579
31578
|
updatedAt: z.ZodString;
|
|
31579
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31580
31580
|
props: z.ZodNullable<z.ZodType<{
|
|
31581
31581
|
[x: string]: unknown;
|
|
31582
31582
|
type: "object";
|
|
@@ -31623,9 +31623,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31623
31623
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31624
31624
|
id: z.ZodString;
|
|
31625
31625
|
name: z.ZodString;
|
|
31626
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31627
31626
|
createdAt: z.ZodString;
|
|
31628
31627
|
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>>>;
|
|
@@ -31649,11 +31649,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31649
31649
|
name: z.ZodString;
|
|
31650
31650
|
createdAt: z.ZodString;
|
|
31651
31651
|
updatedAt: z.ZodString;
|
|
31652
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
31652
31653
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31654
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31653
31655
|
credentialStoreId: z.ZodString;
|
|
31654
31656
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31655
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
31656
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31657
31657
|
type: z.ZodEnum<{
|
|
31658
31658
|
readonly memory: "memory";
|
|
31659
31659
|
readonly keychain: "keychain";
|
|
@@ -32245,6 +32245,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32245
32245
|
data: z.ZodObject<{
|
|
32246
32246
|
id: z.ZodString;
|
|
32247
32247
|
name: z.ZodString;
|
|
32248
|
+
createdAt: z.ZodString;
|
|
32249
|
+
updatedAt: z.ZodString;
|
|
32248
32250
|
description: z.ZodNullable<z.ZodString>;
|
|
32249
32251
|
models: z.ZodNullable<z.ZodObject<{
|
|
32250
32252
|
base: z.ZodObject<{
|
|
@@ -32270,14 +32272,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32270
32272
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
32271
32273
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
32272
32274
|
}, z.core.$strip>>;
|
|
32273
|
-
createdAt: z.ZodString;
|
|
32274
|
-
updatedAt: z.ZodString;
|
|
32275
32275
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32276
32276
|
id: z.ZodString;
|
|
32277
32277
|
name: z.ZodString;
|
|
32278
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32279
32278
|
createdAt: z.ZodString;
|
|
32280
32279
|
updatedAt: z.ZodString;
|
|
32280
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32281
32281
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32282
32282
|
config: z.ZodType<{
|
|
32283
32283
|
type: "mcp";
|
|
@@ -32302,9 +32302,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32302
32302
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32303
32303
|
id: z.ZodString;
|
|
32304
32304
|
name: z.ZodString;
|
|
32305
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32306
32305
|
createdAt: z.ZodString;
|
|
32307
32306
|
updatedAt: z.ZodString;
|
|
32307
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32308
32308
|
agentId: z.ZodString;
|
|
32309
32309
|
functionId: z.ZodString;
|
|
32310
32310
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -32314,15 +32314,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32314
32314
|
createdAt: z.ZodString;
|
|
32315
32315
|
updatedAt: z.ZodString;
|
|
32316
32316
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32317
|
-
executeCode: z.ZodString;
|
|
32318
32317
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32318
|
+
executeCode: z.ZodString;
|
|
32319
32319
|
}, z.core.$strip>>>;
|
|
32320
32320
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32321
32321
|
id: z.ZodString;
|
|
32322
32322
|
name: z.ZodString;
|
|
32323
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32324
32323
|
createdAt: z.ZodString;
|
|
32325
32324
|
updatedAt: z.ZodString;
|
|
32325
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32326
32326
|
props: z.ZodType<{
|
|
32327
32327
|
[x: string]: unknown;
|
|
32328
32328
|
type: "object";
|
|
@@ -32369,9 +32369,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32369
32369
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32370
32370
|
id: z.ZodString;
|
|
32371
32371
|
name: z.ZodString;
|
|
32372
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32373
32372
|
createdAt: z.ZodString;
|
|
32374
32373
|
updatedAt: z.ZodString;
|
|
32374
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32375
32375
|
props: z.ZodNullable<z.ZodType<{
|
|
32376
32376
|
[x: string]: unknown;
|
|
32377
32377
|
type: "object";
|
|
@@ -32418,9 +32418,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32418
32418
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32419
32419
|
id: z.ZodString;
|
|
32420
32420
|
name: z.ZodString;
|
|
32421
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32422
32421
|
createdAt: z.ZodString;
|
|
32423
32422
|
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>>>;
|
|
@@ -32444,11 +32444,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32444
32444
|
name: z.ZodString;
|
|
32445
32445
|
createdAt: z.ZodString;
|
|
32446
32446
|
updatedAt: z.ZodString;
|
|
32447
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32447
32448
|
toolId: z.ZodNullable<z.ZodString>;
|
|
32449
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32448
32450
|
credentialStoreId: z.ZodString;
|
|
32449
32451
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32450
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32451
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32452
32452
|
type: z.ZodEnum<{
|
|
32453
32453
|
readonly memory: "memory";
|
|
32454
32454
|
readonly keychain: "keychain";
|
|
@@ -33034,18 +33034,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33034
33034
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33035
33035
|
id: z.ZodString;
|
|
33036
33036
|
name: z.ZodString;
|
|
33037
|
+
createdAt: z.ZodString;
|
|
33038
|
+
updatedAt: z.ZodString;
|
|
33037
33039
|
description: z.ZodNullable<z.ZodString>;
|
|
33038
33040
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33039
33041
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33040
33042
|
executionMode: z.ZodString;
|
|
33041
|
-
createdAt: z.ZodString;
|
|
33042
|
-
updatedAt: z.ZodString;
|
|
33043
33043
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33044
33044
|
id: z.ZodString;
|
|
33045
33045
|
name: z.ZodString;
|
|
33046
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33047
33046
|
createdAt: z.ZodString;
|
|
33048
33047
|
updatedAt: z.ZodString;
|
|
33048
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33049
33049
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33050
33050
|
config: z.ZodType<{
|
|
33051
33051
|
type: "mcp";
|
|
@@ -33070,9 +33070,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33070
33070
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33071
33071
|
id: z.ZodString;
|
|
33072
33072
|
name: z.ZodString;
|
|
33073
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33074
33073
|
createdAt: z.ZodString;
|
|
33075
33074
|
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>>>;
|
|
@@ -33084,9 +33084,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33084
33084
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33085
33085
|
id: z.ZodString;
|
|
33086
33086
|
name: z.ZodString;
|
|
33087
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33088
33087
|
createdAt: z.ZodString;
|
|
33089
33088
|
updatedAt: z.ZodString;
|
|
33089
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33090
33090
|
agentId: z.ZodString;
|
|
33091
33091
|
functionId: z.ZodString;
|
|
33092
33092
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -33096,8 +33096,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33096
33096
|
createdAt: z.ZodString;
|
|
33097
33097
|
updatedAt: z.ZodString;
|
|
33098
33098
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33099
|
-
executeCode: z.ZodString;
|
|
33100
33099
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33100
|
+
executeCode: z.ZodString;
|
|
33101
33101
|
}, z.core.$strip>>>;
|
|
33102
33102
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33103
33103
|
id: z.ZodString;
|
|
@@ -33148,6 +33148,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33148
33148
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33149
33149
|
id: z.ZodString;
|
|
33150
33150
|
name: z.ZodString;
|
|
33151
|
+
createdAt: z.ZodString;
|
|
33152
|
+
updatedAt: z.ZodString;
|
|
33151
33153
|
description: z.ZodNullable<z.ZodString>;
|
|
33152
33154
|
models: z.ZodNullable<z.ZodType<{
|
|
33153
33155
|
base?: {
|
|
@@ -33235,8 +33237,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33235
33237
|
}, {
|
|
33236
33238
|
stepCountIs?: number | undefined;
|
|
33237
33239
|
}>>>;
|
|
33238
|
-
createdAt: z.ZodString;
|
|
33239
|
-
updatedAt: z.ZodString;
|
|
33240
33240
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33241
33241
|
type: z.ZodLiteral<"internal">;
|
|
33242
33242
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -33285,6 +33285,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33285
33285
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33286
33286
|
id: z.ZodString;
|
|
33287
33287
|
name: z.ZodString;
|
|
33288
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
33289
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33288
33290
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33289
33291
|
models: z.ZodOptional<z.ZodObject<{
|
|
33290
33292
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -33306,8 +33308,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33306
33308
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33307
33309
|
}, z.core.$strip>>;
|
|
33308
33310
|
}, z.core.$strip>>;
|
|
33309
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
33310
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33311
33311
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33312
33312
|
type: z.ZodLiteral<"internal">;
|
|
33313
33313
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -33400,15 +33400,14 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33400
33400
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33401
33401
|
id: z.ZodString;
|
|
33402
33402
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33403
|
-
executeCode: z.ZodString;
|
|
33404
33403
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33404
|
+
executeCode: z.ZodString;
|
|
33405
33405
|
}, z.core.$strip>>>;
|
|
33406
33406
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33407
33407
|
id: z.ZodOptional<z.ZodString>;
|
|
33408
33408
|
name: z.ZodString;
|
|
33409
33409
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33410
33410
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33411
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33412
33411
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33413
33412
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33414
33413
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33416,6 +33415,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33416
33415
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33417
33416
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33418
33417
|
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>;
|
|
@@ -33467,15 +33467,17 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33467
33467
|
data: z.ZodObject<{
|
|
33468
33468
|
id: z.ZodString;
|
|
33469
33469
|
name: z.ZodString;
|
|
33470
|
+
createdAt: z.ZodString;
|
|
33471
|
+
updatedAt: z.ZodString;
|
|
33470
33472
|
description: z.ZodNullable<z.ZodString>;
|
|
33471
33473
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33472
33474
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33473
33475
|
executionMode: z.ZodString;
|
|
33474
|
-
createdAt: z.ZodString;
|
|
33475
|
-
updatedAt: z.ZodString;
|
|
33476
33476
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33477
33477
|
id: z.ZodString;
|
|
33478
33478
|
name: z.ZodString;
|
|
33479
|
+
createdAt: z.ZodString;
|
|
33480
|
+
updatedAt: z.ZodString;
|
|
33479
33481
|
description: z.ZodNullable<z.ZodString>;
|
|
33480
33482
|
models: z.ZodNullable<z.ZodType<{
|
|
33481
33483
|
base?: {
|
|
@@ -33563,8 +33565,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33563
33565
|
}, {
|
|
33564
33566
|
stepCountIs?: number | undefined;
|
|
33565
33567
|
}>>>;
|
|
33566
|
-
createdAt: z.ZodString;
|
|
33567
|
-
updatedAt: z.ZodString;
|
|
33568
33568
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33569
33569
|
type: z.ZodLiteral<"internal">;
|
|
33570
33570
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -33593,9 +33593,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33593
33593
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33594
33594
|
id: z.ZodString;
|
|
33595
33595
|
name: z.ZodString;
|
|
33596
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33597
33596
|
createdAt: z.ZodString;
|
|
33598
33597
|
updatedAt: z.ZodString;
|
|
33598
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33599
33599
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33600
33600
|
config: z.ZodType<{
|
|
33601
33601
|
type: "mcp";
|
|
@@ -33620,9 +33620,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33620
33620
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33621
33621
|
id: z.ZodString;
|
|
33622
33622
|
name: z.ZodString;
|
|
33623
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33624
33623
|
createdAt: z.ZodString;
|
|
33625
33624
|
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>>>;
|
|
@@ -33634,9 +33634,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33634
33634
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33635
33635
|
id: z.ZodString;
|
|
33636
33636
|
name: z.ZodString;
|
|
33637
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33638
33637
|
createdAt: z.ZodString;
|
|
33639
33638
|
updatedAt: z.ZodString;
|
|
33639
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33640
33640
|
agentId: z.ZodString;
|
|
33641
33641
|
functionId: z.ZodString;
|
|
33642
33642
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -33646,8 +33646,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33646
33646
|
createdAt: z.ZodString;
|
|
33647
33647
|
updatedAt: z.ZodString;
|
|
33648
33648
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33649
|
-
executeCode: z.ZodString;
|
|
33650
33649
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33650
|
+
executeCode: z.ZodString;
|
|
33651
33651
|
}, z.core.$strip>>>;
|
|
33652
33652
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33653
33653
|
id: z.ZodString;
|
|
@@ -33718,12 +33718,12 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
33718
33718
|
}, z.core.$strip>;
|
|
33719
33719
|
declare const McpToolResponse: z.ZodObject<{
|
|
33720
33720
|
data: z.ZodObject<{
|
|
33721
|
-
tenantId: z.ZodString;
|
|
33722
|
-
projectId: z.ZodString;
|
|
33723
33721
|
id: z.ZodString;
|
|
33724
33722
|
name: z.ZodString;
|
|
33725
33723
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33726
33724
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33725
|
+
projectId: z.ZodString;
|
|
33726
|
+
tenantId: z.ZodString;
|
|
33727
33727
|
config: z.ZodObject<{
|
|
33728
33728
|
type: z.ZodLiteral<"mcp">;
|
|
33729
33729
|
mcp: z.ZodObject<{
|
|
@@ -33779,12 +33779,12 @@ 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
|
-
tenantId: z.ZodString;
|
|
33783
|
-
projectId: z.ZodString;
|
|
33784
33782
|
id: z.ZodString;
|
|
33785
33783
|
name: z.ZodString;
|
|
33786
33784
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33787
33785
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33786
|
+
projectId: z.ZodString;
|
|
33787
|
+
tenantId: z.ZodString;
|
|
33788
33788
|
config: z.ZodObject<{
|
|
33789
33789
|
type: z.ZodLiteral<"mcp">;
|
|
33790
33790
|
mcp: z.ZodObject<{
|
|
@@ -33876,8 +33876,8 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
33876
33876
|
createdAt: z.ZodString;
|
|
33877
33877
|
updatedAt: z.ZodString;
|
|
33878
33878
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33879
|
-
externalAgentId: z.ZodString;
|
|
33880
33879
|
subAgentId: z.ZodString;
|
|
33880
|
+
externalAgentId: z.ZodString;
|
|
33881
33881
|
}, z.core.$strip>;
|
|
33882
33882
|
}, z.core.$strip>;
|
|
33883
33883
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
@@ -33886,8 +33886,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33886
33886
|
createdAt: z.ZodString;
|
|
33887
33887
|
updatedAt: z.ZodString;
|
|
33888
33888
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33889
|
-
externalAgentId: z.ZodString;
|
|
33890
33889
|
subAgentId: z.ZodString;
|
|
33890
|
+
externalAgentId: z.ZodString;
|
|
33891
33891
|
}, z.core.$strip>>;
|
|
33892
33892
|
pagination: z.ZodObject<{
|
|
33893
33893
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -33900,9 +33900,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
33900
33900
|
data: z.ZodArray<z.ZodObject<{
|
|
33901
33901
|
id: z.ZodString;
|
|
33902
33902
|
name: z.ZodString;
|
|
33903
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33904
33903
|
createdAt: z.ZodString;
|
|
33905
33904
|
updatedAt: z.ZodString;
|
|
33905
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33906
33906
|
props: z.ZodType<{
|
|
33907
33907
|
[x: string]: unknown;
|
|
33908
33908
|
type: "object";
|
|
@@ -33951,9 +33951,9 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
33951
33951
|
data: z.ZodArray<z.ZodObject<{
|
|
33952
33952
|
id: z.ZodString;
|
|
33953
33953
|
name: z.ZodString;
|
|
33954
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33955
33954
|
createdAt: z.ZodString;
|
|
33956
33955
|
updatedAt: z.ZodString;
|
|
33956
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33957
33957
|
props: z.ZodNullable<z.ZodType<{
|
|
33958
33958
|
[x: string]: unknown;
|
|
33959
33959
|
type: "object";
|
|
@@ -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
|
-
tenantId: z.ZodString;
|
|
34309
34308
|
id: z.ZodString;
|
|
34309
|
+
tenantId: z.ZodString;
|
|
34310
34310
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34311
34311
|
mainBranchName: z.ZodString;
|
|
34312
34312
|
}, {
|
|
@@ -34657,9 +34657,9 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34657
34657
|
}>;
|
|
34658
34658
|
}, undefined>, undefined>;
|
|
34659
34659
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
34660
|
-
tenantId: z.ZodString;
|
|
34661
34660
|
id: z.ZodString;
|
|
34662
34661
|
accountId: z.ZodString;
|
|
34662
|
+
tenantId: z.ZodString;
|
|
34663
34663
|
installationId: z.ZodString;
|
|
34664
34664
|
accountLogin: z.ZodString;
|
|
34665
34665
|
accountType: z.ZodEnum<{
|
|
@@ -34687,7 +34687,6 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
|
34687
34687
|
accountType: z.ZodString;
|
|
34688
34688
|
}, z.core.$strip>;
|
|
34689
34689
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
34690
|
-
tenantId: z.ZodString;
|
|
34691
34690
|
accountId: z.ZodString;
|
|
34692
34691
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34693
34692
|
pending: "pending";
|
|
@@ -34695,6 +34694,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
34695
34694
|
suspended: "suspended";
|
|
34696
34695
|
disconnected: "disconnected";
|
|
34697
34696
|
}>>>;
|
|
34697
|
+
tenantId: z.ZodString;
|
|
34698
34698
|
installationId: z.ZodString;
|
|
34699
34699
|
accountLogin: z.ZodString;
|
|
34700
34700
|
accountType: z.ZodEnum<{
|
|
@@ -36876,16 +36876,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
36876
36876
|
}, {}, {}>;
|
|
36877
36877
|
}, undefined>, undefined>;
|
|
36878
36878
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
36879
|
-
projectId: z.ZodString;
|
|
36880
36879
|
agentId: z.ZodString;
|
|
36880
|
+
projectId: z.ZodString;
|
|
36881
36881
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36882
36882
|
}, {
|
|
36883
36883
|
out: {};
|
|
36884
36884
|
in: {};
|
|
36885
36885
|
}>;
|
|
36886
36886
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
36887
|
-
projectId: z.ZodString;
|
|
36888
36887
|
agentId: z.ZodString;
|
|
36888
|
+
projectId: z.ZodString;
|
|
36889
36889
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36890
36890
|
agentName: z.ZodString;
|
|
36891
36891
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -36901,8 +36901,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
36901
36901
|
selected: "selected";
|
|
36902
36902
|
}>;
|
|
36903
36903
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
36904
|
-
tenantId: z.ZodString;
|
|
36905
36904
|
projectId: z.ZodString;
|
|
36905
|
+
tenantId: z.ZodString;
|
|
36906
36906
|
toolId: z.ZodString;
|
|
36907
36907
|
channelAccessMode: z.ZodEnum<{
|
|
36908
36908
|
all: "all";
|
|
@@ -37191,13 +37191,13 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
37191
37191
|
in: {};
|
|
37192
37192
|
}>;
|
|
37193
37193
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
37194
|
-
tenantId: z.ZodString;
|
|
37195
|
-
projectId: z.ZodString;
|
|
37196
37194
|
id: z.ZodString;
|
|
37197
37195
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37198
37196
|
agentId: z.ZodString;
|
|
37199
|
-
|
|
37197
|
+
projectId: z.ZodString;
|
|
37198
|
+
tenantId: z.ZodString;
|
|
37200
37199
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37200
|
+
conversationId: z.ZodString;
|
|
37201
37201
|
status: z.ZodDefault<z.ZodEnum<{
|
|
37202
37202
|
failed: "failed";
|
|
37203
37203
|
running: "running";
|
|
@@ -37209,13 +37209,13 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
37209
37209
|
in: {};
|
|
37210
37210
|
}>;
|
|
37211
37211
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
37212
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
37213
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
37214
37212
|
id: z.ZodOptional<z.ZodString>;
|
|
37215
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>>>>>>;
|
|
37216
37214
|
agentId: z.ZodOptional<z.ZodString>;
|
|
37217
|
-
|
|
37215
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
37216
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
37218
37217
|
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
37218
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
37219
37219
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
37220
37220
|
failed: "failed";
|
|
37221
37221
|
running: "running";
|