@inkeep/agents-core 0.73.3 → 0.73.5
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/constants/models.d.ts +3 -0
- package/dist/constants/models.js +3 -0
- package/dist/data-access/manage/agents.d.ts +21 -21
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +18 -18
- package/dist/data-access/manage/skills.d.ts +15 -15
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +30 -30
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +27 -27
- package/dist/data-access/manage/triggers.d.ts +5 -5
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/events.d.ts +5 -5
- package/dist/data-access/runtime/feedback.d.ts +6 -6
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/db/manage/manage-client.js +3 -0
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-client.js +2 -0
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/types/@vercel__functions/index.d.ts +3 -3
- package/dist/utils/database-pool.d.ts +8 -0
- package/dist/utils/database-pool.js +36 -0
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +37 -37
- package/dist/validation/schemas.d.ts +516 -516
- package/package.json +2 -2
|
@@ -741,10 +741,9 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
742
|
id: z.ZodString;
|
|
743
743
|
name: z.ZodString;
|
|
744
|
-
description: z.ZodNullable<z.ZodString>;
|
|
745
744
|
createdAt: z.ZodString;
|
|
746
745
|
updatedAt: z.ZodString;
|
|
747
|
-
|
|
746
|
+
description: z.ZodNullable<z.ZodString>;
|
|
748
747
|
models: z.ZodNullable<z.ZodType<{
|
|
749
748
|
base?: {
|
|
750
749
|
model?: string | undefined;
|
|
@@ -822,6 +821,7 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
822
821
|
allowedProviders?: string[] | undefined;
|
|
823
822
|
} | undefined;
|
|
824
823
|
}>>>;
|
|
824
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
825
825
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
826
826
|
stepCountIs?: number | undefined;
|
|
827
827
|
}, {
|
|
@@ -836,10 +836,9 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
836
836
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
837
837
|
id: z.ZodString;
|
|
838
838
|
name: z.ZodString;
|
|
839
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
840
839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
841
840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
842
|
-
|
|
841
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
843
842
|
models: z.ZodOptional<z.ZodObject<{
|
|
844
843
|
base: z.ZodOptional<z.ZodObject<{
|
|
845
844
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -860,6 +859,7 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
860
859
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
861
860
|
}, z.core.$strip>>;
|
|
862
861
|
}, z.core.$strip>>;
|
|
862
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
863
863
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
864
864
|
stepCountIs?: number | undefined;
|
|
865
865
|
}, {
|
|
@@ -874,10 +874,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
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
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
878
877
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
878
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
880
|
-
|
|
879
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
881
880
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
882
881
|
base: z.ZodOptional<z.ZodObject<{
|
|
883
882
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -898,6 +897,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
898
897
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
899
898
|
}, z.core.$strip>>;
|
|
900
899
|
}, z.core.$strip>>>>;
|
|
900
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
901
901
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
902
902
|
stepCountIs?: number | undefined;
|
|
903
903
|
}, {
|
|
@@ -1335,9 +1335,9 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1335
1335
|
}>;
|
|
1336
1336
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1337
1337
|
id: z.ZodString;
|
|
1338
|
-
agentId: z.ZodString;
|
|
1339
1338
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1340
1339
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
agentId: z.ZodString;
|
|
1341
1341
|
sourceSubAgentId: z.ZodString;
|
|
1342
1342
|
targetSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1343
1343
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "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,10 +2827,9 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
2828
|
id: z.ZodString;
|
|
2829
2829
|
name: z.ZodString;
|
|
2830
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2831
2830
|
createdAt: z.ZodString;
|
|
2832
2831
|
updatedAt: z.ZodString;
|
|
2833
|
-
|
|
2832
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2834
2833
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2835
2834
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2836
2835
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -2910,6 +2909,7 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2910
2909
|
allowedProviders?: string[] | undefined;
|
|
2911
2910
|
} | undefined;
|
|
2912
2911
|
}>>>;
|
|
2912
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2913
2913
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2914
2914
|
enabled?: boolean | undefined;
|
|
2915
2915
|
numEvents?: number | undefined;
|
|
@@ -2982,7 +2982,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2982
2982
|
id: z.ZodString;
|
|
2983
2983
|
name: z.ZodString;
|
|
2984
2984
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2986
2985
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2987
2986
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2988
2987
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -3062,6 +3061,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3062
3061
|
allowedProviders?: string[] | undefined;
|
|
3063
3062
|
} | undefined;
|
|
3064
3063
|
}>>>>;
|
|
3064
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3065
3065
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3066
3066
|
enabled?: boolean | undefined;
|
|
3067
3067
|
numEvents?: number | undefined;
|
|
@@ -3133,7 +3133,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3133
3133
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3134
3134
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3135
3135
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3136
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3137
3136
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3138
3137
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3139
3138
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -3213,6 +3212,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3213
3212
|
allowedProviders?: string[] | undefined;
|
|
3214
3213
|
} | undefined;
|
|
3215
3214
|
}>>>>>>;
|
|
3215
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3216
3216
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3217
3217
|
enabled?: boolean | undefined;
|
|
3218
3218
|
numEvents?: number | undefined;
|
|
@@ -3473,15 +3473,15 @@ declare const SignatureValidationOptionsSchema: z.ZodObject<{
|
|
|
3473
3473
|
*/
|
|
3474
3474
|
declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
3475
3475
|
algorithm: z.ZodEnum<{
|
|
3476
|
-
md5: "md5";
|
|
3477
3476
|
sha256: "sha256";
|
|
3478
3477
|
sha512: "sha512";
|
|
3479
3478
|
sha384: "sha384";
|
|
3480
3479
|
sha1: "sha1";
|
|
3480
|
+
md5: "md5";
|
|
3481
3481
|
}>;
|
|
3482
3482
|
encoding: z.ZodEnum<{
|
|
3483
|
-
base64: "base64";
|
|
3484
3483
|
hex: "hex";
|
|
3484
|
+
base64: "base64";
|
|
3485
3485
|
}>;
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
@@ -3570,15 +3570,15 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3570
3570
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3571
3571
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3572
3572
|
algorithm: z.ZodEnum<{
|
|
3573
|
-
md5: "md5";
|
|
3574
3573
|
sha256: "sha256";
|
|
3575
3574
|
sha512: "sha512";
|
|
3576
3575
|
sha384: "sha384";
|
|
3577
3576
|
sha1: "sha1";
|
|
3577
|
+
md5: "md5";
|
|
3578
3578
|
}>;
|
|
3579
3579
|
encoding: z.ZodEnum<{
|
|
3580
|
-
base64: "base64";
|
|
3581
3580
|
hex: "hex";
|
|
3581
|
+
base64: "base64";
|
|
3582
3582
|
}>;
|
|
3583
3583
|
signature: z.ZodObject<{
|
|
3584
3584
|
source: z.ZodEnum<{
|
|
@@ -3777,8 +3777,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3777
3777
|
dataType: "json";
|
|
3778
3778
|
columnType: "PgJsonb";
|
|
3779
3779
|
data: {
|
|
3780
|
-
algorithm: "
|
|
3781
|
-
encoding: "
|
|
3780
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3781
|
+
encoding: "hex" | "base64";
|
|
3782
3782
|
signature: {
|
|
3783
3783
|
source: "query" | "body" | "header";
|
|
3784
3784
|
key: string;
|
|
@@ -3814,8 +3814,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3814
3814
|
generated: undefined;
|
|
3815
3815
|
}, {}, {
|
|
3816
3816
|
$type: {
|
|
3817
|
-
algorithm: "
|
|
3818
|
-
encoding: "
|
|
3817
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3818
|
+
encoding: "hex" | "base64";
|
|
3819
3819
|
signature: {
|
|
3820
3820
|
source: "query" | "body" | "header";
|
|
3821
3821
|
key: string;
|
|
@@ -4164,8 +4164,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4164
4164
|
dataType: "json";
|
|
4165
4165
|
columnType: "PgJsonb";
|
|
4166
4166
|
data: {
|
|
4167
|
-
algorithm: "
|
|
4168
|
-
encoding: "
|
|
4167
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4168
|
+
encoding: "hex" | "base64";
|
|
4169
4169
|
signature: {
|
|
4170
4170
|
source: "query" | "body" | "header";
|
|
4171
4171
|
key: string;
|
|
@@ -4201,8 +4201,8 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4201
4201
|
generated: undefined;
|
|
4202
4202
|
}, {}, {
|
|
4203
4203
|
$type: {
|
|
4204
|
-
algorithm: "
|
|
4205
|
-
encoding: "
|
|
4204
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4205
|
+
encoding: "hex" | "base64";
|
|
4206
4206
|
signature: {
|
|
4207
4207
|
source: "query" | "body" | "header";
|
|
4208
4208
|
key: string;
|
|
@@ -4394,7 +4394,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4394
4394
|
}, {}, {
|
|
4395
4395
|
length: 256;
|
|
4396
4396
|
}>;
|
|
4397
|
-
}, "
|
|
4397
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "agentId" | "projectId" | "tenantId" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "dispatchDelayMs" | "createdBy">, undefined>, undefined>;
|
|
4398
4398
|
declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4399
4399
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4400
4400
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4428,11 +4428,10 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4428
4428
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4429
4429
|
id: z.ZodString;
|
|
4430
4430
|
name: z.ZodString;
|
|
4431
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4432
4431
|
createdAt: z.ZodString;
|
|
4433
4432
|
updatedAt: z.ZodString;
|
|
4433
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4434
4434
|
enabled: z.ZodBoolean;
|
|
4435
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4436
4435
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4437
4436
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4438
4437
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4440,15 +4439,15 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4440
4439
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4441
4440
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4442
4441
|
algorithm: z.ZodEnum<{
|
|
4443
|
-
md5: "md5";
|
|
4444
4442
|
sha256: "sha256";
|
|
4445
4443
|
sha512: "sha512";
|
|
4446
4444
|
sha384: "sha384";
|
|
4447
4445
|
sha1: "sha1";
|
|
4446
|
+
md5: "md5";
|
|
4448
4447
|
}>;
|
|
4449
4448
|
encoding: z.ZodEnum<{
|
|
4450
|
-
base64: "base64";
|
|
4451
4449
|
hex: "hex";
|
|
4450
|
+
base64: "base64";
|
|
4452
4451
|
}>;
|
|
4453
4452
|
signature: z.ZodObject<{
|
|
4454
4453
|
source: z.ZodEnum<{
|
|
@@ -4485,13 +4484,13 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4485
4484
|
}, z.core.$strip>>>;
|
|
4486
4485
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4487
4486
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4487
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4488
4488
|
}, z.core.$strip>;
|
|
4489
4489
|
declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4490
4490
|
id: z.ZodOptional<z.ZodString>;
|
|
4491
4491
|
name: z.ZodString;
|
|
4492
4492
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4493
4493
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4494
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4495
4494
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4496
4495
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4497
4496
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4500,6 +4499,7 @@ declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
4500
4499
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4501
4500
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4502
4501
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4502
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4503
4503
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4504
4504
|
}, z.core.$strip>;
|
|
4505
4505
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
@@ -4507,7 +4507,6 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4507
4507
|
name: z.ZodString;
|
|
4508
4508
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4509
4509
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4510
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4511
4510
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4512
4511
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4513
4512
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4516,16 +4515,16 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4516
4515
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4517
4516
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4518
4517
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4518
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4519
4519
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4520
4520
|
}, z.core.$strip>;
|
|
4521
4521
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4522
4522
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4523
4523
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4524
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4525
4524
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4526
4525
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4526
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4527
4527
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4528
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4529
4528
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4530
4529
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4531
4530
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4540,16 +4539,16 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4540
4539
|
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4541
4540
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4542
4541
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
4542
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4543
4543
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4544
4544
|
}, z.core.$strip>;
|
|
4545
4545
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4546
4546
|
id: z.ZodString;
|
|
4547
4547
|
name: z.ZodString;
|
|
4548
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4549
4548
|
createdAt: z.ZodString;
|
|
4550
4549
|
updatedAt: z.ZodString;
|
|
4550
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4551
4551
|
enabled: z.ZodBoolean;
|
|
4552
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4553
4552
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4554
4553
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4555
4554
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4557,15 +4556,15 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4557
4556
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4558
4557
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4559
4558
|
algorithm: z.ZodEnum<{
|
|
4560
|
-
md5: "md5";
|
|
4561
4559
|
sha256: "sha256";
|
|
4562
4560
|
sha512: "sha512";
|
|
4563
4561
|
sha384: "sha384";
|
|
4564
4562
|
sha1: "sha1";
|
|
4563
|
+
md5: "md5";
|
|
4565
4564
|
}>;
|
|
4566
4565
|
encoding: z.ZodEnum<{
|
|
4567
|
-
base64: "base64";
|
|
4568
4566
|
hex: "hex";
|
|
4567
|
+
base64: "base64";
|
|
4569
4568
|
}>;
|
|
4570
4569
|
signature: z.ZodObject<{
|
|
4571
4570
|
source: z.ZodEnum<{
|
|
@@ -4602,6 +4601,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4602
4601
|
}, z.core.$strip>>>;
|
|
4603
4602
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4604
4603
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4604
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4605
4605
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
4606
4606
|
userCount: z.ZodNumber;
|
|
4607
4607
|
webhookUrl: z.ZodString;
|
|
@@ -5167,7 +5167,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5167
5167
|
}, {}, {
|
|
5168
5168
|
length: 256;
|
|
5169
5169
|
}>;
|
|
5170
|
-
}, "
|
|
5170
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "runAsUserId" | "triggerId" | "conversationId" | "batchId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5171
5171
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5172
5172
|
userIds: z.ZodArray<z.ZodString>;
|
|
5173
5173
|
}, z.core.$strip>;
|
|
@@ -5214,7 +5214,6 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5214
5214
|
}>;
|
|
5215
5215
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5216
5216
|
id: z.ZodString;
|
|
5217
|
-
status: z.ZodString;
|
|
5218
5217
|
createdAt: z.ZodString;
|
|
5219
5218
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5220
5219
|
type: z.ZodEnum<{
|
|
@@ -5225,6 +5224,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5225
5224
|
name: z.ZodString;
|
|
5226
5225
|
hash: z.ZodString;
|
|
5227
5226
|
}, z.core.$strip>>>;
|
|
5227
|
+
status: z.ZodString;
|
|
5228
5228
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
5229
|
triggerId: z.ZodString;
|
|
5230
5230
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -5234,7 +5234,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5234
5234
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5235
5235
|
}, z.core.$strip>;
|
|
5236
5236
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5237
|
-
status: z.ZodOptional<z.ZodString>;
|
|
5238
5237
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5239
5238
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5240
5239
|
type: "commit" | "tag" | "branch";
|
|
@@ -5253,6 +5252,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5253
5252
|
name: string;
|
|
5254
5253
|
hash: string;
|
|
5255
5254
|
}>>>>;
|
|
5255
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5256
5256
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5257
5257
|
triggerId: z.ZodString;
|
|
5258
5258
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5264,7 +5264,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5264
5264
|
}, z.core.$strip>;
|
|
5265
5265
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5266
5266
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5267
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5268
5267
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5269
5268
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5270
5269
|
type: "commit" | "tag" | "branch";
|
|
@@ -5283,6 +5282,7 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5283
5282
|
name: string;
|
|
5284
5283
|
hash: string;
|
|
5285
5284
|
}>>>>>>;
|
|
5285
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5286
5286
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5287
5287
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5288
5288
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5776,7 +5776,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod15.BuildSchema<"insert"
|
|
|
5776
5776
|
}, {}, {
|
|
5777
5777
|
length: 256;
|
|
5778
5778
|
}>;
|
|
5779
|
-
}, "
|
|
5779
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "projectId" | "tenantId" | "enabled" | "headers" | "url" | "eventTypes">, undefined>, undefined>;
|
|
5780
5780
|
declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
5781
5781
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5782
5782
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5796,9 +5796,9 @@ declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
|
5796
5796
|
declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
5797
5797
|
id: z.ZodString;
|
|
5798
5798
|
name: z.ZodString;
|
|
5799
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5800
5799
|
createdAt: z.ZodString;
|
|
5801
5800
|
updatedAt: z.ZodString;
|
|
5801
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5802
5802
|
enabled: z.ZodBoolean;
|
|
5803
5803
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5804
5804
|
url: z.ZodString;
|
|
@@ -5823,9 +5823,9 @@ declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
|
5823
5823
|
declare const WebhookDestinationApiUpdateSchema: z.ZodObject<{
|
|
5824
5824
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5825
5825
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5826
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5827
5826
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5828
5827
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5828
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5829
5829
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5830
5830
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
5831
5831
|
url: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5836,9 +5836,9 @@ declare const WebhookDestinationResponse: z.ZodObject<{
|
|
|
5836
5836
|
data: z.ZodObject<{
|
|
5837
5837
|
id: z.ZodString;
|
|
5838
5838
|
name: z.ZodString;
|
|
5839
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5840
5839
|
createdAt: z.ZodString;
|
|
5841
5840
|
updatedAt: z.ZodString;
|
|
5841
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5842
5842
|
enabled: z.ZodBoolean;
|
|
5843
5843
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5844
5844
|
url: z.ZodString;
|
|
@@ -5855,9 +5855,9 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
5855
5855
|
data: z.ZodArray<z.ZodObject<{
|
|
5856
5856
|
id: z.ZodString;
|
|
5857
5857
|
name: z.ZodString;
|
|
5858
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5859
5858
|
createdAt: z.ZodString;
|
|
5860
5859
|
updatedAt: z.ZodString;
|
|
5860
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5861
5861
|
enabled: z.ZodBoolean;
|
|
5862
5862
|
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5863
5863
|
url: z.ZodString;
|
|
@@ -5906,18 +5906,18 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5906
5906
|
in: {};
|
|
5907
5907
|
}>;
|
|
5908
5908
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5909
|
-
tenantId: z.ZodString;
|
|
5910
|
-
projectId: z.ZodString;
|
|
5911
5909
|
id: z.ZodString;
|
|
5912
5910
|
name: z.ZodString;
|
|
5911
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5913
5912
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5914
5913
|
agentId: z.ZodString;
|
|
5915
|
-
|
|
5914
|
+
projectId: z.ZodString;
|
|
5915
|
+
tenantId: z.ZodString;
|
|
5916
5916
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5917
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5918
5917
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5919
5918
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
5919
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
5920
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5921
5921
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5922
5922
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5923
5923
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5930,16 +5930,16 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5930
5930
|
in: {};
|
|
5931
5931
|
}>;
|
|
5932
5932
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5933
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
5934
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
5935
5933
|
id: z.ZodOptional<z.ZodString>;
|
|
5936
5934
|
name: z.ZodOptional<z.ZodString>;
|
|
5937
5935
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5938
5936
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5939
|
-
|
|
5937
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
5938
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
5940
5939
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5941
5940
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5942
5941
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
5942
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5943
5943
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5944
5944
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5945
5945
|
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
@@ -5956,16 +5956,16 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5956
5956
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5957
5957
|
id: z.ZodString;
|
|
5958
5958
|
name: z.ZodString;
|
|
5959
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5960
5959
|
createdAt: z.ZodString;
|
|
5961
5960
|
updatedAt: z.ZodString;
|
|
5962
5961
|
ref: z.ZodString;
|
|
5962
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5963
5963
|
enabled: z.ZodBoolean;
|
|
5964
5964
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5965
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
5966
5965
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5967
5966
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5968
5967
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
5968
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
5969
5969
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
5970
5970
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
5971
5971
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5976,13 +5976,13 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5976
5976
|
}, z.core.$strip>;
|
|
5977
5977
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5978
5978
|
name: z.ZodString;
|
|
5979
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5980
5979
|
ref: z.ZodOptional<z.ZodString>;
|
|
5980
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5981
5981
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5982
5982
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5983
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5984
5983
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5985
5984
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5985
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5986
5986
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5987
5987
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5988
5988
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5995,13 +5995,13 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5995
5995
|
}, z.core.$strip>;
|
|
5996
5996
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5997
5997
|
name: z.ZodString;
|
|
5998
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5999
5998
|
ref: z.ZodOptional<z.ZodString>;
|
|
5999
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6000
6000
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6001
6001
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6002
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6003
6002
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6004
6003
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6004
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6005
6005
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6006
6006
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6007
6007
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6015,13 +6015,13 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6015
6015
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
6016
6016
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6017
6017
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6018
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6019
6018
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6019
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6020
6020
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6021
6021
|
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6022
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6023
6022
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6024
6023
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6024
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6025
6025
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6026
6026
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6027
6027
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6690,7 +6690,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
6690
6690
|
}, {}, {
|
|
6691
6691
|
length: 256;
|
|
6692
6692
|
}>;
|
|
6693
|
-
}, "
|
|
6693
|
+
}, "id" | "createdAt" | "ref" | "status" | "agentId" | "projectId" | "tenantId" | "runAsUserId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6694
6694
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6695
6695
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6696
6696
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6730,13 +6730,6 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6730
6730
|
}>;
|
|
6731
6731
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
6732
6732
|
id: z.ZodString;
|
|
6733
|
-
status: z.ZodEnum<{
|
|
6734
|
-
pending: "pending";
|
|
6735
|
-
failed: "failed";
|
|
6736
|
-
running: "running";
|
|
6737
|
-
completed: "completed";
|
|
6738
|
-
cancelled: "cancelled";
|
|
6739
|
-
}>;
|
|
6740
6733
|
createdAt: z.ZodString;
|
|
6741
6734
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6742
6735
|
type: z.ZodEnum<{
|
|
@@ -6747,18 +6740,24 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6747
6740
|
name: z.ZodString;
|
|
6748
6741
|
hash: z.ZodString;
|
|
6749
6742
|
}, z.core.$strip>>>;
|
|
6743
|
+
status: z.ZodEnum<{
|
|
6744
|
+
pending: "pending";
|
|
6745
|
+
failed: "failed";
|
|
6746
|
+
running: "running";
|
|
6747
|
+
completed: "completed";
|
|
6748
|
+
cancelled: "cancelled";
|
|
6749
|
+
}>;
|
|
6750
6750
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6751
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6752
6751
|
scheduledTriggerId: z.ZodString;
|
|
6753
6752
|
scheduledFor: z.ZodString;
|
|
6754
6753
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
6755
6754
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
6756
6755
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6756
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6757
6757
|
attemptNumber: z.ZodInt;
|
|
6758
6758
|
idempotencyKey: z.ZodString;
|
|
6759
6759
|
}, z.core.$strip>;
|
|
6760
6760
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6761
|
-
status: z.ZodString;
|
|
6762
6761
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6763
6762
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6764
6763
|
type: "commit" | "tag" | "branch";
|
|
@@ -6777,20 +6776,20 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6777
6776
|
name: string;
|
|
6778
6777
|
hash: string;
|
|
6779
6778
|
}>>>>;
|
|
6779
|
+
status: z.ZodString;
|
|
6780
6780
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6781
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6782
6781
|
scheduledTriggerId: z.ZodString;
|
|
6783
6782
|
scheduledFor: z.ZodString;
|
|
6784
6783
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6785
6784
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6786
6785
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
6786
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6787
6787
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6788
6788
|
idempotencyKey: z.ZodString;
|
|
6789
6789
|
id: z.ZodString;
|
|
6790
6790
|
}, z.core.$strip>;
|
|
6791
6791
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6792
6792
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6793
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6794
6793
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6795
6794
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6796
6795
|
type: "commit" | "tag" | "branch";
|
|
@@ -6809,13 +6808,14 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6809
6808
|
name: string;
|
|
6810
6809
|
hash: string;
|
|
6811
6810
|
}>>>>>>;
|
|
6811
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6812
6812
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6813
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6814
6813
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6815
6814
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6816
6815
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6817
6816
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6818
6817
|
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
6818
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6819
6819
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6820
6820
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6821
6821
|
}, z.core.$strip>;
|
|
@@ -7043,10 +7043,6 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
7043
7043
|
}>;
|
|
7044
7044
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
7045
7045
|
id: z.ZodString;
|
|
7046
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7047
|
-
agentId: z.ZodString;
|
|
7048
|
-
subAgentId: z.ZodString;
|
|
7049
|
-
status: z.ZodString;
|
|
7050
7046
|
createdAt: z.ZodString;
|
|
7051
7047
|
updatedAt: z.ZodString;
|
|
7052
7048
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -7058,14 +7054,14 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7058
7054
|
name: z.ZodString;
|
|
7059
7055
|
hash: z.ZodString;
|
|
7060
7056
|
}, z.core.$strip>>>;
|
|
7057
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7058
|
+
status: z.ZodString;
|
|
7059
|
+
agentId: z.ZodString;
|
|
7061
7060
|
contextId: z.ZodString;
|
|
7061
|
+
subAgentId: z.ZodString;
|
|
7062
7062
|
}, z.core.$strip>;
|
|
7063
7063
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
7064
7064
|
id: z.ZodString;
|
|
7065
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7066
|
-
agentId: z.ZodString;
|
|
7067
|
-
subAgentId: z.ZodString;
|
|
7068
|
-
status: z.ZodString;
|
|
7069
7065
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7070
7066
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7071
7067
|
ref: z.ZodObject<{
|
|
@@ -7077,15 +7073,15 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
7077
7073
|
name: z.ZodString;
|
|
7078
7074
|
hash: z.ZodString;
|
|
7079
7075
|
}, z.core.$strip>;
|
|
7076
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7077
|
+
status: z.ZodString;
|
|
7078
|
+
agentId: z.ZodString;
|
|
7080
7079
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7081
7080
|
contextId: z.ZodString;
|
|
7081
|
+
subAgentId: z.ZodString;
|
|
7082
7082
|
}, z.core.$strip>;
|
|
7083
7083
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7084
7084
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7085
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7086
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7087
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7088
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7089
7085
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7090
7086
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7091
7087
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -7097,8 +7093,12 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7097
7093
|
name: z.ZodString;
|
|
7098
7094
|
hash: z.ZodString;
|
|
7099
7095
|
}, z.core.$strip>>>;
|
|
7096
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7097
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7098
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7100
7099
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7101
7100
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7101
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7102
7102
|
}, z.core.$strip>;
|
|
7103
7103
|
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7104
7104
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -8033,11 +8033,11 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8033
8033
|
}>;
|
|
8034
8034
|
}, undefined>, undefined>;
|
|
8035
8035
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
8036
|
-
tenantId: z.ZodString;
|
|
8037
|
-
projectId: z.ZodString;
|
|
8038
8036
|
id: z.ZodString;
|
|
8039
8037
|
name: z.ZodString;
|
|
8040
8038
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8039
|
+
projectId: z.ZodString;
|
|
8040
|
+
tenantId: z.ZodString;
|
|
8041
8041
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8042
8042
|
config: z.ZodObject<{
|
|
8043
8043
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -8160,10 +8160,6 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
8160
8160
|
}>;
|
|
8161
8161
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
8162
8162
|
id: z.ZodString;
|
|
8163
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8164
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8165
|
-
title: z.ZodNullable<z.ZodString>;
|
|
8166
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
8167
8163
|
createdAt: z.ZodString;
|
|
8168
8164
|
updatedAt: z.ZodString;
|
|
8169
8165
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -8176,16 +8172,16 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
8176
8172
|
hash: z.ZodString;
|
|
8177
8173
|
}, z.core.$strip>>>;
|
|
8178
8174
|
userId: z.ZodNullable<z.ZodString>;
|
|
8175
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8176
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8177
|
+
title: z.ZodNullable<z.ZodString>;
|
|
8178
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
8179
8179
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8180
8180
|
activeSubAgentId: z.ZodString;
|
|
8181
8181
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
8182
8182
|
}, z.core.$strip>;
|
|
8183
8183
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
8184
8184
|
id: z.ZodString;
|
|
8185
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8186
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8187
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8188
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8189
8185
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8190
8186
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8191
8187
|
ref: z.ZodObject<{
|
|
@@ -8198,6 +8194,10 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8198
8194
|
hash: z.ZodString;
|
|
8199
8195
|
}, z.core.$strip>;
|
|
8200
8196
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8197
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8198
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8199
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8200
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8201
8201
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8202
8202
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8203
8203
|
activeSubAgentId: z.ZodString;
|
|
@@ -8205,10 +8205,6 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8205
8205
|
}, z.core.$strip>;
|
|
8206
8206
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
8207
8207
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8208
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8209
|
-
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8210
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8211
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8212
8208
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8213
8209
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8214
8210
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -8221,6 +8217,10 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
8221
8217
|
hash: z.ZodString;
|
|
8222
8218
|
}, z.core.$strip>>>;
|
|
8223
8219
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8220
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8221
|
+
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8222
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8223
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8224
8224
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8225
8225
|
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8226
8226
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8312,12 +8312,12 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8312
8312
|
}>;
|
|
8313
8313
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8314
8314
|
id: z.ZodString;
|
|
8315
|
-
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8316
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8317
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8318
8315
|
createdAt: z.ZodString;
|
|
8319
8316
|
updatedAt: z.ZodString;
|
|
8317
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8320
8318
|
role: z.ZodString;
|
|
8319
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8320
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8321
8321
|
conversationId: z.ZodString;
|
|
8322
8322
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8323
8323
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8335,12 +8335,12 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8335
8335
|
}, z.core.$strip>;
|
|
8336
8336
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8337
8337
|
id: z.ZodString;
|
|
8338
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8339
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8340
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8341
8338
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8342
8339
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8340
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8343
8341
|
role: z.ZodString;
|
|
8342
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8343
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8344
8344
|
conversationId: z.ZodString;
|
|
8345
8345
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8346
8346
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8358,12 +8358,12 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8358
8358
|
}, z.core.$strip>;
|
|
8359
8359
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8360
8360
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8361
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8362
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8363
|
-
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8364
8361
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8365
8362
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8363
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8366
8364
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8365
|
+
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8366
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8367
8367
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8368
8368
|
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8369
8369
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8750,40 +8750,40 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8750
8750
|
}>;
|
|
8751
8751
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8752
8752
|
id: z.ZodString;
|
|
8753
|
-
type: z.ZodString;
|
|
8754
8753
|
createdAt: z.ZodString;
|
|
8755
8754
|
updatedAt: z.ZodString;
|
|
8755
|
+
type: z.ZodString;
|
|
8756
8756
|
conversationId: z.ZodString;
|
|
8757
8757
|
messageId: z.ZodNullable<z.ZodString>;
|
|
8758
8758
|
details: z.ZodNullable<z.ZodString>;
|
|
8759
8759
|
}, z.core.$strip>;
|
|
8760
8760
|
declare const FeedbackApiInsertSchema: z.ZodObject<{
|
|
8761
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8762
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8761
8763
|
type: z.ZodEnum<{
|
|
8762
8764
|
positive: "positive";
|
|
8763
8765
|
negative: "negative";
|
|
8764
8766
|
}>;
|
|
8765
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8766
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8767
8767
|
conversationId: z.ZodString;
|
|
8768
8768
|
messageId: z.ZodOptional<z.ZodString>;
|
|
8769
8769
|
details: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8770
8770
|
id: z.ZodOptional<z.ZodString>;
|
|
8771
8771
|
}, z.core.$strip>;
|
|
8772
8772
|
declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
8773
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8774
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8773
8775
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
8774
8776
|
positive: "positive";
|
|
8775
8777
|
negative: "negative";
|
|
8776
8778
|
}>>>;
|
|
8777
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8778
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8779
8779
|
details: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8780
8780
|
}, z.core.$strip>;
|
|
8781
8781
|
declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
8782
8782
|
feedback: z.ZodObject<{
|
|
8783
8783
|
id: z.ZodString;
|
|
8784
|
-
type: z.ZodString;
|
|
8785
8784
|
createdAt: z.ZodString;
|
|
8786
8785
|
updatedAt: z.ZodString;
|
|
8786
|
+
type: z.ZodString;
|
|
8787
8787
|
conversationId: z.ZodString;
|
|
8788
8788
|
messageId: z.ZodNullable<z.ZodString>;
|
|
8789
8789
|
details: z.ZodNullable<z.ZodString>;
|
|
@@ -9330,12 +9330,12 @@ declare const EventInsertSchema: z.ZodObject<{
|
|
|
9330
9330
|
}>;
|
|
9331
9331
|
declare const EventApiSelectSchema: z.ZodObject<{
|
|
9332
9332
|
id: z.ZodString;
|
|
9333
|
-
|
|
9333
|
+
createdAt: z.ZodString;
|
|
9334
|
+
updatedAt: z.ZodString;
|
|
9334
9335
|
type: z.ZodString;
|
|
9336
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9335
9337
|
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9336
9338
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9337
|
-
createdAt: z.ZodString;
|
|
9338
|
-
updatedAt: z.ZodString;
|
|
9339
9339
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9340
9340
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9341
9341
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -9354,12 +9354,12 @@ declare const EventApiInsertSchema: z.ZodObject<{
|
|
|
9354
9354
|
declare const WebhookEventCreatedDataSchema: z.ZodObject<{
|
|
9355
9355
|
event: z.ZodObject<{
|
|
9356
9356
|
id: z.ZodString;
|
|
9357
|
-
|
|
9357
|
+
createdAt: z.ZodString;
|
|
9358
|
+
updatedAt: z.ZodString;
|
|
9358
9359
|
type: z.ZodString;
|
|
9360
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9359
9361
|
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9360
9362
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9361
|
-
createdAt: z.ZodString;
|
|
9362
|
-
updatedAt: z.ZodString;
|
|
9363
9363
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
9364
9364
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
9365
9365
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -9603,8 +9603,8 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9603
9603
|
hash: z.ZodString;
|
|
9604
9604
|
}, z.core.$strip>>>;
|
|
9605
9605
|
datasetId: z.ZodString;
|
|
9606
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9607
9606
|
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9607
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9608
9608
|
}, z.core.$strip>;
|
|
9609
9609
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9610
9610
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -9627,8 +9627,8 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9627
9627
|
hash: string;
|
|
9628
9628
|
}>>>>;
|
|
9629
9629
|
datasetId: z.ZodString;
|
|
9630
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9631
9630
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9631
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9632
9632
|
}, z.core.$strip>;
|
|
9633
9633
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9634
9634
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9651,8 +9651,8 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9651
9651
|
hash: string;
|
|
9652
9652
|
}>>>>>>;
|
|
9653
9653
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9654
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9655
9654
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9655
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9656
9656
|
}, z.core.$strip>;
|
|
9657
9657
|
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9658
9658
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -10343,28 +10343,28 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
10343
10343
|
in: {};
|
|
10344
10344
|
}>;
|
|
10345
10345
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
10346
|
-
id: z.ZodString;
|
|
10347
10346
|
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10347
|
+
id: z.ZodString;
|
|
10348
10348
|
createdAt: z.ZodString;
|
|
10349
10349
|
updatedAt: z.ZodString;
|
|
10350
|
-
evaluatorId: z.ZodString;
|
|
10351
10350
|
conversationId: z.ZodString;
|
|
10351
|
+
evaluatorId: z.ZodString;
|
|
10352
10352
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
10353
10353
|
}, z.core.$strip>;
|
|
10354
10354
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
10355
10355
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10356
10356
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10357
10357
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10358
|
-
evaluatorId: z.ZodString;
|
|
10359
10358
|
conversationId: z.ZodString;
|
|
10359
|
+
evaluatorId: z.ZodString;
|
|
10360
10360
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10361
10361
|
}, z.core.$strip>;
|
|
10362
10362
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
10363
10363
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
10364
10364
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10365
10365
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10366
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10367
10366
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10367
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10368
10368
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10369
10369
|
}, z.core.$strip>;
|
|
10370
10370
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -10459,8 +10459,8 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10459
10459
|
name: z.ZodString;
|
|
10460
10460
|
hash: z.ZodString;
|
|
10461
10461
|
}, z.core.$strip>>>;
|
|
10462
|
-
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10463
10462
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10463
|
+
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10464
10464
|
}, z.core.$strip>;
|
|
10465
10465
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10466
10466
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -10482,8 +10482,8 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
10482
10482
|
name: string;
|
|
10483
10483
|
hash: string;
|
|
10484
10484
|
}>>>>;
|
|
10485
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10486
10485
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10486
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10487
10487
|
}, z.core.$strip>;
|
|
10488
10488
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10489
10489
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -10505,8 +10505,8 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10505
10505
|
name: string;
|
|
10506
10506
|
hash: string;
|
|
10507
10507
|
}>>>>>>;
|
|
10508
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10509
10508
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10509
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10510
10510
|
}, z.core.$strip>;
|
|
10511
10511
|
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10512
10512
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -10828,33 +10828,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10828
10828
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10829
10829
|
id: z.ZodString;
|
|
10830
10830
|
name: z.ZodString;
|
|
10831
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10832
10831
|
createdAt: z.ZodString;
|
|
10833
10832
|
updatedAt: z.ZodString;
|
|
10833
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10834
10834
|
isActive: z.ZodBoolean;
|
|
10835
10835
|
}, z.core.$strip>;
|
|
10836
10836
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10837
10837
|
name: z.ZodString;
|
|
10838
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10839
10838
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10840
10839
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10840
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10841
10841
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10842
10842
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10843
10843
|
}, z.core.$strip>;
|
|
10844
10844
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10845
10845
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10846
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10847
10846
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10848
10847
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10848
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10849
10849
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10850
10850
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10851
10851
|
}, z.core.$strip>;
|
|
10852
10852
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10853
10853
|
id: z.ZodString;
|
|
10854
10854
|
name: z.ZodString;
|
|
10855
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10856
10855
|
createdAt: z.ZodString;
|
|
10857
10856
|
updatedAt: z.ZodString;
|
|
10857
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10858
10858
|
isActive: z.ZodBoolean;
|
|
10859
10859
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10860
10860
|
}, z.core.$strip>;
|
|
@@ -11879,20 +11879,20 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11879
11879
|
id: z.ZodString;
|
|
11880
11880
|
createdAt: z.ZodString;
|
|
11881
11881
|
updatedAt: z.ZodString;
|
|
11882
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11883
11882
|
evaluationRunConfigId: z.ZodString;
|
|
11883
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11884
11884
|
}, z.core.$strip>;
|
|
11885
11885
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11886
11886
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11887
11887
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11888
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11889
11888
|
evaluationRunConfigId: z.ZodString;
|
|
11889
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11890
11890
|
}, z.core.$strip>;
|
|
11891
11891
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11892
11892
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11893
11893
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11894
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11895
11894
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11895
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11896
11896
|
}, z.core.$strip>;
|
|
11897
11897
|
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11898
11898
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -12183,20 +12183,20 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
12183
12183
|
id: z.ZodString;
|
|
12184
12184
|
createdAt: z.ZodString;
|
|
12185
12185
|
updatedAt: z.ZodString;
|
|
12186
|
-
evaluatorId: z.ZodString;
|
|
12187
12186
|
evaluationJobConfigId: z.ZodString;
|
|
12187
|
+
evaluatorId: z.ZodString;
|
|
12188
12188
|
}, z.core.$strip>;
|
|
12189
12189
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12190
12190
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12191
12191
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12192
|
-
evaluatorId: z.ZodString;
|
|
12193
12192
|
evaluationJobConfigId: z.ZodString;
|
|
12193
|
+
evaluatorId: z.ZodString;
|
|
12194
12194
|
}, z.core.$strip>;
|
|
12195
12195
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12196
12196
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12197
12197
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12198
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12199
12198
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12199
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12200
12200
|
}, z.core.$strip>;
|
|
12201
12201
|
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12202
12202
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -12487,20 +12487,20 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
12487
12487
|
id: z.ZodString;
|
|
12488
12488
|
createdAt: z.ZodString;
|
|
12489
12489
|
updatedAt: z.ZodString;
|
|
12490
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12491
12490
|
evaluatorId: z.ZodString;
|
|
12491
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12492
12492
|
}, z.core.$strip>;
|
|
12493
12493
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12494
12494
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12495
12495
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12496
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12497
12496
|
evaluatorId: z.ZodString;
|
|
12497
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12498
12498
|
}, z.core.$strip>;
|
|
12499
12499
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12500
12500
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12501
12501
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12502
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12503
12502
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12503
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12504
12504
|
}, z.core.$strip>;
|
|
12505
12505
|
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12506
12506
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -13002,11 +13002,10 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
13002
13002
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
13003
13003
|
id: z.ZodString;
|
|
13004
13004
|
name: z.ZodString;
|
|
13005
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13006
13005
|
createdAt: z.ZodString;
|
|
13007
13006
|
updatedAt: z.ZodString;
|
|
13008
13007
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13009
|
-
|
|
13008
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13010
13009
|
model: z.ZodType<{
|
|
13011
13010
|
model?: string | undefined;
|
|
13012
13011
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13028,15 +13027,15 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13028
13027
|
fallbackModels?: string[] | undefined;
|
|
13029
13028
|
allowedProviders?: string[] | undefined;
|
|
13030
13029
|
}>>;
|
|
13030
|
+
prompt: z.ZodString;
|
|
13031
13031
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
13032
13032
|
}, z.core.$strip>;
|
|
13033
13033
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
13034
13034
|
name: z.ZodString;
|
|
13035
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13036
13035
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13037
13036
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13038
13037
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13039
|
-
|
|
13038
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13040
13039
|
model: z.ZodType<{
|
|
13041
13040
|
model?: string | undefined;
|
|
13042
13041
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13058,15 +13057,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13058
13057
|
fallbackModels?: string[] | undefined;
|
|
13059
13058
|
allowedProviders?: string[] | undefined;
|
|
13060
13059
|
}>>;
|
|
13060
|
+
prompt: z.ZodString;
|
|
13061
13061
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
13062
13062
|
}, z.core.$strip>;
|
|
13063
13063
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
13064
13064
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13065
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13066
13065
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13067
13066
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13068
13067
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13069
|
-
|
|
13068
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13070
13069
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
13071
13070
|
model?: string | undefined;
|
|
13072
13071
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -13088,6 +13087,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13088
13087
|
fallbackModels?: string[] | undefined;
|
|
13089
13088
|
allowedProviders?: string[] | undefined;
|
|
13090
13089
|
}>>>>;
|
|
13090
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13091
13091
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
13092
13092
|
}, z.core.$strip>;
|
|
13093
13093
|
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -13677,8 +13677,8 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13677
13677
|
in: {};
|
|
13678
13678
|
}>;
|
|
13679
13679
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13680
|
-
id: z.ZodString;
|
|
13681
13680
|
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13681
|
+
id: z.ZodString;
|
|
13682
13682
|
createdAt: z.ZodString;
|
|
13683
13683
|
updatedAt: z.ZodString;
|
|
13684
13684
|
datasetId: z.ZodString;
|
|
@@ -13697,8 +13697,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13697
13697
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13698
13698
|
}, z.core.$strip>;
|
|
13699
13699
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13700
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13701
13700
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13701
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13702
13702
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13703
13703
|
agentId: z.ZodString;
|
|
13704
13704
|
}, z.core.$strip>;
|
|
@@ -14056,23 +14056,23 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
14056
14056
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
14057
14057
|
id: z.ZodString;
|
|
14058
14058
|
name: z.ZodString;
|
|
14059
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14060
14059
|
createdAt: z.ZodString;
|
|
14061
14060
|
updatedAt: z.ZodString;
|
|
14061
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14062
14062
|
datasetId: z.ZodString;
|
|
14063
14063
|
}, z.core.$strip>;
|
|
14064
14064
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
14065
14065
|
name: z.ZodString;
|
|
14066
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14067
14066
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14068
14067
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14068
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14069
14069
|
datasetId: z.ZodString;
|
|
14070
14070
|
}, z.core.$strip>;
|
|
14071
14071
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
14072
14072
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14073
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14074
14073
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14075
14074
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14075
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14076
14076
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14077
14077
|
}, z.core.$strip>;
|
|
14078
14078
|
declare const AgentDatasetRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -14362,15 +14362,15 @@ declare const AgentDatasetRelationUpdateSchema: z.ZodObject<{
|
|
|
14362
14362
|
}>;
|
|
14363
14363
|
declare const AgentDatasetRelationApiSelectSchema: z.ZodObject<{
|
|
14364
14364
|
id: z.ZodString;
|
|
14365
|
-
agentId: z.ZodString;
|
|
14366
14365
|
createdAt: z.ZodString;
|
|
14367
14366
|
updatedAt: z.ZodString;
|
|
14367
|
+
agentId: z.ZodString;
|
|
14368
14368
|
datasetId: z.ZodString;
|
|
14369
14369
|
}, z.core.$strip>;
|
|
14370
14370
|
declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
14371
|
-
agentId: z.ZodString;
|
|
14372
14371
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14373
14372
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14373
|
+
agentId: z.ZodString;
|
|
14374
14374
|
datasetId: z.ZodString;
|
|
14375
14375
|
}, z.core.$strip>;
|
|
14376
14376
|
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -14660,15 +14660,15 @@ declare const AgentEvaluatorRelationUpdateSchema: z.ZodObject<{
|
|
|
14660
14660
|
}>;
|
|
14661
14661
|
declare const AgentEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
14662
14662
|
id: z.ZodString;
|
|
14663
|
-
agentId: z.ZodString;
|
|
14664
14663
|
createdAt: z.ZodString;
|
|
14665
14664
|
updatedAt: z.ZodString;
|
|
14665
|
+
agentId: z.ZodString;
|
|
14666
14666
|
evaluatorId: z.ZodString;
|
|
14667
14667
|
}, z.core.$strip>;
|
|
14668
14668
|
declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
14669
|
-
agentId: z.ZodString;
|
|
14670
14669
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14671
14670
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14671
|
+
agentId: z.ZodString;
|
|
14672
14672
|
evaluatorId: z.ZodString;
|
|
14673
14673
|
}, z.core.$strip>;
|
|
14674
14674
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -15330,11 +15330,11 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
15330
15330
|
}>;
|
|
15331
15331
|
}, undefined>, undefined>;
|
|
15332
15332
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
15333
|
-
tenantId: z.ZodString;
|
|
15334
|
-
projectId: z.ZodString;
|
|
15335
15333
|
id: z.ZodString;
|
|
15336
15334
|
name: z.ZodString;
|
|
15337
15335
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15336
|
+
projectId: z.ZodString;
|
|
15337
|
+
tenantId: z.ZodString;
|
|
15338
15338
|
props: z.ZodType<{
|
|
15339
15339
|
[x: string]: unknown;
|
|
15340
15340
|
type: "object";
|
|
@@ -15382,11 +15382,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
15382
15382
|
in: {};
|
|
15383
15383
|
}>;
|
|
15384
15384
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
15385
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
15386
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
15387
15385
|
id: z.ZodOptional<z.ZodString>;
|
|
15388
15386
|
name: z.ZodOptional<z.ZodString>;
|
|
15389
15387
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15388
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
15389
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
15390
15390
|
props: z.ZodOptional<z.ZodType<{
|
|
15391
15391
|
[x: string]: unknown;
|
|
15392
15392
|
type: "object";
|
|
@@ -15436,9 +15436,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
15436
15436
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
15437
15437
|
id: z.ZodString;
|
|
15438
15438
|
name: z.ZodString;
|
|
15439
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15440
15439
|
createdAt: z.ZodString;
|
|
15441
15440
|
updatedAt: z.ZodString;
|
|
15441
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15442
15442
|
props: z.ZodType<{
|
|
15443
15443
|
[x: string]: unknown;
|
|
15444
15444
|
type: "object";
|
|
@@ -16061,7 +16061,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
16061
16061
|
}, {}, {
|
|
16062
16062
|
length: 256;
|
|
16063
16063
|
}>;
|
|
16064
|
-
}, "
|
|
16064
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
16065
16065
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
16066
16066
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
16067
16067
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16076,8 +16076,8 @@ declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
|
16076
16076
|
}>;
|
|
16077
16077
|
declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<{
|
|
16078
16078
|
id: z.ZodString;
|
|
16079
|
-
subAgentId: z.ZodString;
|
|
16080
16079
|
createdAt: z.ZodString;
|
|
16080
|
+
subAgentId: z.ZodString;
|
|
16081
16081
|
dataComponentId: z.ZodString;
|
|
16082
16082
|
}, z.core.$strip>;
|
|
16083
16083
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
@@ -16090,8 +16090,8 @@ declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
|
16090
16090
|
}>;
|
|
16091
16091
|
declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
16092
16092
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16093
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16094
16093
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16094
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16095
16095
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16096
16096
|
}, z.core.$strip>;
|
|
16097
16097
|
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -16578,9 +16578,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
16578
16578
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
16579
16579
|
id: z.ZodString;
|
|
16580
16580
|
name: z.ZodString;
|
|
16581
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16582
16581
|
createdAt: z.ZodString;
|
|
16583
16582
|
updatedAt: z.ZodString;
|
|
16583
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16584
16584
|
props: z.ZodNullable<z.ZodType<{
|
|
16585
16585
|
[x: string]: unknown;
|
|
16586
16586
|
type: "object";
|
|
@@ -16655,9 +16655,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16655
16655
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16656
16656
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16657
16657
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16658
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16659
16658
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16660
16659
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16660
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16661
16661
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
16662
16662
|
[x: string]: unknown;
|
|
16663
16663
|
type: "object";
|
|
@@ -16992,8 +16992,8 @@ declare const SubAgentArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
16992
16992
|
}>;
|
|
16993
16993
|
declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
16994
16994
|
id: z.ZodString;
|
|
16995
|
-
subAgentId: z.ZodString;
|
|
16996
16995
|
createdAt: z.ZodString;
|
|
16996
|
+
subAgentId: z.ZodString;
|
|
16997
16997
|
artifactComponentId: z.ZodString;
|
|
16998
16998
|
}, z.core.$strip>;
|
|
16999
16999
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
@@ -17006,8 +17006,8 @@ declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
17006
17006
|
}>;
|
|
17007
17007
|
declare const SubAgentArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
17008
17008
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17009
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17010
17009
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17010
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17011
17011
|
artifactComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17012
17012
|
}, z.core.$strip>;
|
|
17013
17013
|
declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
@@ -17025,11 +17025,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
17025
17025
|
in: {};
|
|
17026
17026
|
}>;
|
|
17027
17027
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
17028
|
-
tenantId: z.ZodString;
|
|
17029
|
-
projectId: z.ZodString;
|
|
17030
17028
|
id: z.ZodString;
|
|
17031
17029
|
name: z.ZodString;
|
|
17032
17030
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17031
|
+
projectId: z.ZodString;
|
|
17032
|
+
tenantId: z.ZodString;
|
|
17033
17033
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17034
17034
|
baseUrl: z.ZodURL;
|
|
17035
17035
|
}, {
|
|
@@ -17037,11 +17037,11 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
17037
17037
|
in: {};
|
|
17038
17038
|
}>;
|
|
17039
17039
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
17040
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
17041
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
17042
17040
|
id: z.ZodOptional<z.ZodString>;
|
|
17043
17041
|
name: z.ZodOptional<z.ZodString>;
|
|
17044
17042
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17043
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
17044
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
17045
17045
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17046
17046
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
17047
17047
|
}, {
|
|
@@ -17051,9 +17051,9 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
17051
17051
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
17052
17052
|
id: z.ZodString;
|
|
17053
17053
|
name: z.ZodString;
|
|
17054
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17055
17054
|
createdAt: z.ZodString;
|
|
17056
17055
|
updatedAt: z.ZodString;
|
|
17056
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17057
17057
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17058
17058
|
baseUrl: z.ZodString;
|
|
17059
17059
|
}, z.core.$strip>;
|
|
@@ -17074,10 +17074,9 @@ declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
|
17074
17074
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17075
17075
|
id: z.ZodString;
|
|
17076
17076
|
name: z.ZodString;
|
|
17077
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17078
17077
|
createdAt: z.ZodString;
|
|
17079
17078
|
updatedAt: z.ZodString;
|
|
17080
|
-
|
|
17079
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17081
17080
|
models: z.ZodNullable<z.ZodType<{
|
|
17082
17081
|
base?: {
|
|
17083
17082
|
model?: string | undefined;
|
|
@@ -17155,6 +17154,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17155
17154
|
allowedProviders?: string[] | undefined;
|
|
17156
17155
|
} | undefined;
|
|
17157
17156
|
}>>>;
|
|
17157
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
17158
17158
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
17159
17159
|
stepCountIs?: number | undefined;
|
|
17160
17160
|
}, {
|
|
@@ -17169,9 +17169,9 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17169
17169
|
}, z.core.$strip>, z.ZodObject<{
|
|
17170
17170
|
id: z.ZodString;
|
|
17171
17171
|
name: z.ZodString;
|
|
17172
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17173
17172
|
createdAt: z.ZodString;
|
|
17174
17173
|
updatedAt: z.ZodString;
|
|
17174
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17175
17175
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17176
17176
|
baseUrl: z.ZodString;
|
|
17177
17177
|
type: z.ZodLiteral<"external">;
|
|
@@ -17638,9 +17638,9 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
17638
17638
|
}>;
|
|
17639
17639
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
17640
17640
|
name: z.ZodOptional<z.ZodString>;
|
|
17641
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17642
17641
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17643
17642
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17643
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17644
17644
|
}, {
|
|
17645
17645
|
out: {};
|
|
17646
17646
|
in: {};
|
|
@@ -17648,10 +17648,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
17648
17648
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
17649
17649
|
id: z.ZodString;
|
|
17650
17650
|
name: z.ZodNullable<z.ZodString>;
|
|
17651
|
-
agentId: z.ZodString;
|
|
17652
17651
|
createdAt: z.ZodString;
|
|
17653
17652
|
updatedAt: z.ZodString;
|
|
17654
17653
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17654
|
+
agentId: z.ZodString;
|
|
17655
17655
|
publicId: z.ZodString;
|
|
17656
17656
|
keyPrefix: z.ZodString;
|
|
17657
17657
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17664,10 +17664,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17664
17664
|
apiKey: z.ZodObject<{
|
|
17665
17665
|
id: z.ZodString;
|
|
17666
17666
|
name: z.ZodNullable<z.ZodString>;
|
|
17667
|
-
agentId: z.ZodString;
|
|
17668
17667
|
createdAt: z.ZodString;
|
|
17669
17668
|
updatedAt: z.ZodString;
|
|
17670
17669
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17670
|
+
agentId: z.ZodString;
|
|
17671
17671
|
publicId: z.ZodString;
|
|
17672
17672
|
keyPrefix: z.ZodString;
|
|
17673
17673
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17680,19 +17680,19 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17680
17680
|
}, z.core.$strip>;
|
|
17681
17681
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
17682
17682
|
name: z.ZodString;
|
|
17683
|
-
agentId: z.ZodString;
|
|
17684
17683
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17685
17684
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17686
17685
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17686
|
+
agentId: z.ZodString;
|
|
17687
17687
|
}, {
|
|
17688
17688
|
out: {};
|
|
17689
17689
|
in: {};
|
|
17690
17690
|
}>;
|
|
17691
17691
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17692
17692
|
name: z.ZodOptional<z.ZodString>;
|
|
17693
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
17694
17693
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17695
17694
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17695
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
17696
17696
|
}, {
|
|
17697
17697
|
out: {};
|
|
17698
17698
|
in: {};
|
|
@@ -18616,11 +18616,11 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
18616
18616
|
in: {};
|
|
18617
18617
|
}>;
|
|
18618
18618
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
18619
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18620
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18621
18619
|
name: z.ZodOptional<z.ZodString>;
|
|
18622
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18623
18620
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18621
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18622
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18623
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18624
18624
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18625
18625
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18626
18626
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -19300,14 +19300,14 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
19300
19300
|
}, {}, {}>;
|
|
19301
19301
|
}, undefined>, undefined>;
|
|
19302
19302
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
19303
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
19304
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
19305
19303
|
id: z.ZodString;
|
|
19306
19304
|
name: z.ZodString;
|
|
19307
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19308
|
-
type: z.ZodString;
|
|
19309
19305
|
createdAt: z.ZodString;
|
|
19310
19306
|
updatedAt: z.ZodString;
|
|
19307
|
+
type: z.ZodString;
|
|
19308
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19309
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
19310
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
19311
19311
|
enabled: z.ZodBoolean;
|
|
19312
19312
|
prompt: z.ZodNullable<z.ZodString>;
|
|
19313
19313
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19358,17 +19358,17 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19358
19358
|
in: {};
|
|
19359
19359
|
}>;
|
|
19360
19360
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
19361
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19362
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19363
19361
|
name: z.ZodString;
|
|
19364
|
-
|
|
19362
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
19363
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19365
19364
|
type: z.ZodEnum<{
|
|
19366
19365
|
web_client: "web_client";
|
|
19367
19366
|
api: "api";
|
|
19368
19367
|
support_copilot: "support_copilot";
|
|
19369
19368
|
}>;
|
|
19370
|
-
|
|
19371
|
-
|
|
19369
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19370
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19371
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19372
19372
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19373
19373
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19374
19374
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -19418,11 +19418,11 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19418
19418
|
in: {};
|
|
19419
19419
|
}>;
|
|
19420
19420
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
19421
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19422
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19423
19421
|
name: z.ZodOptional<z.ZodString>;
|
|
19424
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19425
19422
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19423
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19424
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19425
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19426
19426
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19427
19427
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19428
19428
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -19475,14 +19475,14 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
19475
19475
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
19476
19476
|
data: z.ZodObject<{
|
|
19477
19477
|
app: z.ZodObject<{
|
|
19478
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
19479
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
19480
19478
|
id: z.ZodString;
|
|
19481
19479
|
name: z.ZodString;
|
|
19482
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19483
|
-
type: z.ZodString;
|
|
19484
19480
|
createdAt: z.ZodString;
|
|
19485
19481
|
updatedAt: z.ZodString;
|
|
19482
|
+
type: z.ZodString;
|
|
19483
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19484
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
19485
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
19486
19486
|
enabled: z.ZodBoolean;
|
|
19487
19487
|
prompt: z.ZodNullable<z.ZodString>;
|
|
19488
19488
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19986,31 +19986,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
19986
19986
|
}>;
|
|
19987
19987
|
}, undefined>, undefined>;
|
|
19988
19988
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19989
|
-
tenantId: z.ZodString;
|
|
19990
|
-
projectId: z.ZodString;
|
|
19991
19989
|
id: z.ZodString;
|
|
19992
19990
|
name: z.ZodString;
|
|
19993
|
-
type: z.ZodString;
|
|
19994
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19995
19991
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19992
|
+
type: z.ZodString;
|
|
19993
|
+
projectId: z.ZodString;
|
|
19994
|
+
tenantId: z.ZodString;
|
|
19995
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19996
19996
|
credentialStoreId: z.ZodString;
|
|
19997
19997
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19998
|
-
|
|
19998
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19999
19999
|
}, {
|
|
20000
20000
|
out: {};
|
|
20001
20001
|
in: {};
|
|
20002
20002
|
}>;
|
|
20003
20003
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
20004
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
20005
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20006
20004
|
id: z.ZodOptional<z.ZodString>;
|
|
20007
20005
|
name: z.ZodOptional<z.ZodString>;
|
|
20008
|
-
type: z.ZodOptional<z.ZodString>;
|
|
20009
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20010
20006
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20007
|
+
type: z.ZodOptional<z.ZodString>;
|
|
20008
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20009
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
20010
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20011
20011
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
20012
20012
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20013
|
-
|
|
20013
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20014
20014
|
}, {
|
|
20015
20015
|
out: {};
|
|
20016
20016
|
in: {};
|
|
@@ -20018,13 +20018,13 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
20018
20018
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
20019
20019
|
id: z.ZodString;
|
|
20020
20020
|
name: z.ZodString;
|
|
20021
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
20022
20021
|
createdAt: z.ZodString;
|
|
20023
20022
|
updatedAt: z.ZodString;
|
|
20024
20023
|
userId: z.ZodNullable<z.ZodString>;
|
|
20024
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
20025
20025
|
credentialStoreId: z.ZodString;
|
|
20026
20026
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20027
|
-
|
|
20027
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
20028
20028
|
type: z.ZodEnum<{
|
|
20029
20029
|
readonly memory: "memory";
|
|
20030
20030
|
readonly keychain: "keychain";
|
|
@@ -20610,11 +20610,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20610
20610
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20611
20611
|
id: z.ZodString;
|
|
20612
20612
|
name: z.ZodString;
|
|
20613
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20614
20613
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20614
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20615
20615
|
credentialStoreId: z.ZodString;
|
|
20616
20616
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20617
|
-
|
|
20617
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20618
20618
|
type: z.ZodEnum<{
|
|
20619
20619
|
readonly memory: "memory";
|
|
20620
20620
|
readonly keychain: "keychain";
|
|
@@ -20625,11 +20625,11 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20625
20625
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20626
20626
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20627
20627
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20628
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20629
20628
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20629
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20630
20630
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20631
20631
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20632
|
-
|
|
20632
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20633
20633
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20634
20634
|
readonly memory: "memory";
|
|
20635
20635
|
readonly keychain: "keychain";
|
|
@@ -20694,11 +20694,11 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
20694
20694
|
error_description: z.ZodOptional<z.ZodString>;
|
|
20695
20695
|
}, z.core.$strip>;
|
|
20696
20696
|
declare const McpToolSchema: z.ZodObject<{
|
|
20697
|
-
tenantId: z.ZodString;
|
|
20698
|
-
projectId: z.ZodString;
|
|
20699
20697
|
id: z.ZodString;
|
|
20700
20698
|
name: z.ZodString;
|
|
20701
20699
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20700
|
+
projectId: z.ZodString;
|
|
20701
|
+
tenantId: z.ZodString;
|
|
20702
20702
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20703
20703
|
config: z.ZodObject<{
|
|
20704
20704
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -20757,12 +20757,12 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20757
20757
|
name: z.ZodString;
|
|
20758
20758
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20759
20759
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20760
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
20760
20761
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20761
20762
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20762
20763
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20763
20764
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20764
20765
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20765
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
20766
20766
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20767
20767
|
name: z.ZodString;
|
|
20768
20768
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20791,11 +20791,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20791
20791
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20792
20792
|
id: z.ZodString;
|
|
20793
20793
|
name: z.ZodString;
|
|
20794
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20795
20794
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20795
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20796
20796
|
credentialStoreId: z.ZodString;
|
|
20797
20797
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20798
|
-
|
|
20798
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20799
20799
|
type: z.ZodEnum<{
|
|
20800
20800
|
readonly memory: "memory";
|
|
20801
20801
|
readonly keychain: "keychain";
|
|
@@ -20815,11 +20815,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20815
20815
|
in: {};
|
|
20816
20816
|
}>;
|
|
20817
20817
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
20818
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
20819
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20820
20818
|
id: z.ZodOptional<z.ZodString>;
|
|
20821
20819
|
name: z.ZodOptional<z.ZodString>;
|
|
20822
20820
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20821
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20822
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
20823
20823
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
20824
20824
|
config: z.ZodOptional<z.ZodObject<{
|
|
20825
20825
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -20860,9 +20860,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20860
20860
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20861
20861
|
id: z.ZodString;
|
|
20862
20862
|
name: z.ZodString;
|
|
20863
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20864
20863
|
createdAt: z.ZodString;
|
|
20865
20864
|
updatedAt: z.ZodString;
|
|
20865
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20866
20866
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20867
20867
|
config: z.ZodType<{
|
|
20868
20868
|
type: "mcp";
|
|
@@ -21294,24 +21294,24 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
21294
21294
|
}>;
|
|
21295
21295
|
}, undefined>, undefined>;
|
|
21296
21296
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
21297
|
-
tenantId: z.ZodString;
|
|
21298
|
-
projectId: z.ZodString;
|
|
21299
21297
|
id: z.ZodString;
|
|
21300
21298
|
name: z.ZodString;
|
|
21301
21299
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21302
21300
|
agentId: z.ZodString;
|
|
21301
|
+
projectId: z.ZodString;
|
|
21302
|
+
tenantId: z.ZodString;
|
|
21303
21303
|
functionId: z.ZodString;
|
|
21304
21304
|
}, {
|
|
21305
21305
|
out: {};
|
|
21306
21306
|
in: {};
|
|
21307
21307
|
}>;
|
|
21308
21308
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
21309
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
21310
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
21311
21309
|
id: z.ZodOptional<z.ZodString>;
|
|
21312
21310
|
name: z.ZodOptional<z.ZodString>;
|
|
21313
21311
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21314
21312
|
agentId: z.ZodOptional<z.ZodString>;
|
|
21313
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
21314
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21315
21315
|
functionId: z.ZodOptional<z.ZodString>;
|
|
21316
21316
|
}, {
|
|
21317
21317
|
out: {};
|
|
@@ -21320,10 +21320,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21320
21320
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21321
21321
|
id: z.ZodString;
|
|
21322
21322
|
name: z.ZodString;
|
|
21323
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21324
|
-
agentId: z.ZodString;
|
|
21325
21323
|
createdAt: z.ZodString;
|
|
21326
21324
|
updatedAt: z.ZodString;
|
|
21325
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21326
|
+
agentId: z.ZodString;
|
|
21327
21327
|
functionId: z.ZodString;
|
|
21328
21328
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21329
21329
|
}, z.core.$strip>;
|
|
@@ -21701,16 +21701,16 @@ declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
|
21701
21701
|
}>;
|
|
21702
21702
|
declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
21703
21703
|
id: z.ZodString;
|
|
21704
|
-
subAgentId: z.ZodString;
|
|
21705
21704
|
createdAt: z.ZodString;
|
|
21706
21705
|
updatedAt: z.ZodString;
|
|
21707
|
-
|
|
21706
|
+
subAgentId: z.ZodString;
|
|
21708
21707
|
functionToolId: z.ZodString;
|
|
21708
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21709
21709
|
}, z.core.$strip>;
|
|
21710
21710
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21711
21711
|
subAgentId: z.ZodString;
|
|
21712
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21713
21712
|
functionToolId: z.ZodString;
|
|
21713
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21714
21714
|
}, {
|
|
21715
21715
|
out: {};
|
|
21716
21716
|
in: {};
|
|
@@ -22041,22 +22041,22 @@ declare const FunctionApiSelectSchema: z.ZodObject<{
|
|
|
22041
22041
|
createdAt: z.ZodString;
|
|
22042
22042
|
updatedAt: z.ZodString;
|
|
22043
22043
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
22044
|
-
executeCode: z.ZodString;
|
|
22045
22044
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
22045
|
+
executeCode: z.ZodString;
|
|
22046
22046
|
}, z.core.$strip>;
|
|
22047
22047
|
declare const FunctionApiInsertSchema: z.ZodObject<{
|
|
22048
22048
|
id: z.ZodString;
|
|
22049
22049
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22050
|
-
executeCode: z.ZodString;
|
|
22051
22050
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22051
|
+
executeCode: z.ZodString;
|
|
22052
22052
|
}, z.core.$strip>;
|
|
22053
22053
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
22054
22054
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22055
22055
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22056
22056
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22057
22057
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
22058
|
-
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22059
22058
|
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22059
|
+
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22060
22060
|
}, z.core.$strip>;
|
|
22061
22061
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
22062
22062
|
url: z.ZodString;
|
|
@@ -22100,11 +22100,11 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22100
22100
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22101
22101
|
id: z.ZodString;
|
|
22102
22102
|
name: z.ZodString;
|
|
22103
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22104
22103
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22104
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22105
22105
|
credentialStoreId: z.ZodString;
|
|
22106
22106
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22107
|
-
|
|
22107
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22108
22108
|
type: z.ZodEnum<{
|
|
22109
22109
|
readonly memory: "memory";
|
|
22110
22110
|
readonly keychain: "keychain";
|
|
@@ -22127,23 +22127,23 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22127
22127
|
in: {};
|
|
22128
22128
|
}>;
|
|
22129
22129
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22130
|
-
tenantId: z.ZodString;
|
|
22131
|
-
projectId: z.ZodString;
|
|
22132
22130
|
id: z.ZodOptional<z.ZodString>;
|
|
22133
|
-
agentId: z.ZodString;
|
|
22134
22131
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22135
22132
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22133
|
+
agentId: z.ZodString;
|
|
22134
|
+
projectId: z.ZodString;
|
|
22135
|
+
tenantId: z.ZodString;
|
|
22136
22136
|
}, {
|
|
22137
22137
|
out: {};
|
|
22138
22138
|
in: {};
|
|
22139
22139
|
}>;
|
|
22140
22140
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22141
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22142
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22143
22141
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22144
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22145
22142
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22146
22143
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
22144
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22145
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22146
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22147
22147
|
}, {
|
|
22148
22148
|
out: {};
|
|
22149
22149
|
in: {};
|
|
@@ -22624,37 +22624,37 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
22624
22624
|
}>;
|
|
22625
22625
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
22626
22626
|
id: z.ZodString;
|
|
22627
|
-
subAgentId: z.ZodString;
|
|
22628
|
-
toolId: z.ZodString;
|
|
22629
22627
|
createdAt: z.ZodString;
|
|
22630
22628
|
updatedAt: z.ZodString;
|
|
22631
22629
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22632
|
-
|
|
22630
|
+
toolId: z.ZodString;
|
|
22631
|
+
subAgentId: z.ZodString;
|
|
22633
22632
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22633
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22634
22634
|
}, z.core.$strip>;
|
|
22635
22635
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
22636
22636
|
id: z.ZodString;
|
|
22637
|
-
subAgentId: z.ZodString;
|
|
22638
|
-
toolId: z.ZodString;
|
|
22639
22637
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22640
22638
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22641
22639
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22642
|
-
|
|
22640
|
+
toolId: z.ZodString;
|
|
22641
|
+
subAgentId: z.ZodString;
|
|
22643
22642
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22644
22643
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22645
22644
|
}, z.core.$strip>>>>;
|
|
22645
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
22646
22646
|
}, z.core.$strip>;
|
|
22647
22647
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
22648
22648
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22649
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22650
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22651
22649
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22652
22650
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22653
22651
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22654
|
-
|
|
22652
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22653
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22655
22654
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22656
22655
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22657
22656
|
}, z.core.$strip>>>>>>;
|
|
22657
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22658
22658
|
}, z.core.$strip>;
|
|
22659
22659
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
22660
22660
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -23023,10 +23023,10 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
23023
23023
|
}>;
|
|
23024
23024
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
23025
23025
|
id: z.ZodString;
|
|
23026
|
-
subAgentId: z.ZodString;
|
|
23027
23026
|
createdAt: z.ZodString;
|
|
23028
23027
|
updatedAt: z.ZodString;
|
|
23029
23028
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23029
|
+
subAgentId: z.ZodString;
|
|
23030
23030
|
externalAgentId: z.ZodString;
|
|
23031
23031
|
}, z.core.$strip>;
|
|
23032
23032
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -23037,10 +23037,10 @@ declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
23037
23037
|
}, z.core.$strip>;
|
|
23038
23038
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
23039
23039
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23040
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23041
23040
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23042
23041
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23043
23042
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23043
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23044
23044
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23045
23045
|
}, z.core.$strip>;
|
|
23046
23046
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -23410,10 +23410,10 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
23410
23410
|
}>;
|
|
23411
23411
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
23412
23412
|
id: z.ZodString;
|
|
23413
|
-
subAgentId: z.ZodString;
|
|
23414
23413
|
createdAt: z.ZodString;
|
|
23415
23414
|
updatedAt: z.ZodString;
|
|
23416
23415
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23416
|
+
subAgentId: z.ZodString;
|
|
23417
23417
|
targetAgentId: z.ZodString;
|
|
23418
23418
|
}, z.core.$strip>;
|
|
23419
23419
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -23424,10 +23424,10 @@ declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
23424
23424
|
}, z.core.$strip>;
|
|
23425
23425
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
23426
23426
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23427
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23428
23427
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23429
23428
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23430
23429
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23430
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23431
23431
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23432
23432
|
}, z.core.$strip>;
|
|
23433
23433
|
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -24771,7 +24771,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
24771
24771
|
}, {}, {
|
|
24772
24772
|
length: 256;
|
|
24773
24773
|
}>;
|
|
24774
|
-
}, "
|
|
24774
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "type" | "metadata" | "description" | "projectId" | "tenantId" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24775
24775
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24776
24776
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24777
24777
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24798,11 +24798,11 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24798
24798
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
24799
24799
|
id: z.ZodString;
|
|
24800
24800
|
name: z.ZodNullable<z.ZodString>;
|
|
24801
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24802
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24803
|
-
type: z.ZodString;
|
|
24804
24801
|
createdAt: z.ZodString;
|
|
24805
24802
|
updatedAt: z.ZodString;
|
|
24803
|
+
type: z.ZodString;
|
|
24804
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24805
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24806
24806
|
contextId: z.ZodString;
|
|
24807
24807
|
visibility: z.ZodNullable<z.ZodString>;
|
|
24808
24808
|
taskId: z.ZodString;
|
|
@@ -24816,11 +24816,11 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
24816
24816
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
24817
24817
|
id: z.ZodString;
|
|
24818
24818
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24819
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24820
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24821
|
-
type: z.ZodOptional<z.ZodString>;
|
|
24822
24819
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24823
24820
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24821
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24822
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24823
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24824
24824
|
contextId: z.ZodString;
|
|
24825
24825
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24826
24826
|
taskId: z.ZodString;
|
|
@@ -24834,11 +24834,11 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
24834
24834
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24835
24835
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24836
24836
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24837
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24838
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24839
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24840
24837
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24841
24838
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24839
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24840
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24841
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24842
24842
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24843
24843
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24844
24844
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24914,9 +24914,9 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24914
24914
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24915
24915
|
id: z.ZodString;
|
|
24916
24916
|
name: z.ZodString;
|
|
24917
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24918
24917
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24919
24918
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24919
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24920
24920
|
models: z.ZodOptional<z.ZodObject<{
|
|
24921
24921
|
base: z.ZodOptional<z.ZodObject<{
|
|
24922
24922
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24980,9 +24980,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24980
24980
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24981
24981
|
id: z.ZodString;
|
|
24982
24982
|
name: z.ZodString;
|
|
24983
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24984
24983
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24985
24984
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24985
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24986
24986
|
models: z.ZodOptional<z.ZodObject<{
|
|
24987
24987
|
base: z.ZodOptional<z.ZodObject<{
|
|
24988
24988
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25095,15 +25095,14 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25095
25095
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25096
25096
|
id: z.ZodString;
|
|
25097
25097
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25098
|
-
executeCode: z.ZodString;
|
|
25099
25098
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25099
|
+
executeCode: z.ZodString;
|
|
25100
25100
|
}, z.core.$strip>>>;
|
|
25101
25101
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25102
25102
|
id: z.ZodOptional<z.ZodString>;
|
|
25103
25103
|
name: z.ZodString;
|
|
25104
25104
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25105
25105
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25106
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25107
25106
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25108
25107
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25109
25108
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25112,6 +25111,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25112
25111
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25113
25112
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25114
25113
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25114
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25115
25115
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25116
25116
|
}, z.core.$strip>>>;
|
|
25117
25117
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25169,9 +25169,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25169
25169
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25170
25170
|
id: z.ZodString;
|
|
25171
25171
|
name: z.ZodString;
|
|
25172
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25173
25172
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25174
25173
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25174
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25175
25175
|
models: z.ZodOptional<z.ZodObject<{
|
|
25176
25176
|
base: z.ZodOptional<z.ZodObject<{
|
|
25177
25177
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25284,15 +25284,14 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25284
25284
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25285
25285
|
id: z.ZodString;
|
|
25286
25286
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25287
|
-
executeCode: z.ZodString;
|
|
25288
25287
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25288
|
+
executeCode: z.ZodString;
|
|
25289
25289
|
}, z.core.$strip>>>;
|
|
25290
25290
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25291
25291
|
id: z.ZodOptional<z.ZodString>;
|
|
25292
25292
|
name: z.ZodString;
|
|
25293
25293
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25294
25294
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25295
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25296
25295
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25297
25296
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25298
25297
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25301,6 +25300,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25301
25300
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25302
25301
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25303
25302
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25303
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25304
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25305
25305
|
}, z.core.$strip>>>;
|
|
25306
25306
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25408,10 +25408,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25408
25408
|
in: {};
|
|
25409
25409
|
}>;
|
|
25410
25410
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25411
|
-
tenantId: z.ZodString;
|
|
25412
25411
|
id: z.ZodString;
|
|
25413
25412
|
name: z.ZodString;
|
|
25414
25413
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25414
|
+
tenantId: z.ZodString;
|
|
25415
25415
|
models: z.ZodObject<{
|
|
25416
25416
|
base: z.ZodObject<{
|
|
25417
25417
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25474,9 +25474,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25474
25474
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25475
25475
|
id: z.ZodString;
|
|
25476
25476
|
name: z.ZodString;
|
|
25477
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25478
25477
|
createdAt: z.ZodString;
|
|
25479
25478
|
updatedAt: z.ZodString;
|
|
25479
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25480
25480
|
models: z.ZodNullable<z.ZodObject<{
|
|
25481
25481
|
base: z.ZodObject<{
|
|
25482
25482
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25606,9 +25606,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25606
25606
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25607
25607
|
id: z.ZodString;
|
|
25608
25608
|
name: z.ZodString;
|
|
25609
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25610
25609
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25611
25610
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25611
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25612
25612
|
models: z.ZodOptional<z.ZodObject<{
|
|
25613
25613
|
base: z.ZodOptional<z.ZodObject<{
|
|
25614
25614
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25721,15 +25721,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25721
25721
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25722
25722
|
id: z.ZodString;
|
|
25723
25723
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25724
|
-
executeCode: z.ZodString;
|
|
25725
25724
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25725
|
+
executeCode: z.ZodString;
|
|
25726
25726
|
}, z.core.$strip>>>;
|
|
25727
25727
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25728
25728
|
id: z.ZodOptional<z.ZodString>;
|
|
25729
25729
|
name: z.ZodString;
|
|
25730
25730
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25731
25731
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25732
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25733
25732
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25734
25733
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25735
25734
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25738,6 +25737,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25738
25737
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25739
25738
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25740
25739
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25740
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25741
25741
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25742
25742
|
}, z.core.$strip>>>;
|
|
25743
25743
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25832,8 +25832,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25832
25832
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25833
25833
|
id: z.ZodString;
|
|
25834
25834
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25835
|
-
executeCode: z.ZodString;
|
|
25836
25835
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25836
|
+
executeCode: z.ZodString;
|
|
25837
25837
|
}, z.core.$strip>>>;
|
|
25838
25838
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
25839
25839
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -25942,11 +25942,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25942
25942
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25943
25943
|
id: z.ZodString;
|
|
25944
25944
|
name: z.ZodString;
|
|
25945
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25946
25945
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25946
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25947
25947
|
credentialStoreId: z.ZodString;
|
|
25948
25948
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25949
|
-
|
|
25949
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25950
25950
|
type: z.ZodEnum<{
|
|
25951
25951
|
readonly memory: "memory";
|
|
25952
25952
|
readonly keychain: "keychain";
|
|
@@ -25963,9 +25963,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25963
25963
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25964
25964
|
id: z.ZodString;
|
|
25965
25965
|
name: z.ZodString;
|
|
25966
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25967
25966
|
createdAt: z.ZodString;
|
|
25968
25967
|
updatedAt: z.ZodString;
|
|
25968
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25969
25969
|
models: z.ZodNullable<z.ZodType<{
|
|
25970
25970
|
base?: {
|
|
25971
25971
|
model?: string | undefined;
|
|
@@ -26080,9 +26080,9 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26080
26080
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26081
26081
|
id: z.ZodString;
|
|
26082
26082
|
name: z.ZodString;
|
|
26083
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26084
26083
|
createdAt: z.ZodString;
|
|
26085
26084
|
updatedAt: z.ZodString;
|
|
26085
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26086
26086
|
models: z.ZodNullable<z.ZodType<{
|
|
26087
26087
|
base?: {
|
|
26088
26088
|
model?: string | undefined;
|
|
@@ -26203,18 +26203,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26203
26203
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
26204
26204
|
id: z.ZodString;
|
|
26205
26205
|
name: z.ZodString;
|
|
26206
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26207
26206
|
createdAt: z.ZodString;
|
|
26208
26207
|
updatedAt: z.ZodString;
|
|
26208
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26209
26209
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26210
26210
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26211
26211
|
executionMode: z.ZodString;
|
|
26212
26212
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26213
26213
|
id: z.ZodString;
|
|
26214
26214
|
name: z.ZodString;
|
|
26215
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26216
26215
|
createdAt: z.ZodString;
|
|
26217
26216
|
updatedAt: z.ZodString;
|
|
26217
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26218
26218
|
models: z.ZodNullable<z.ZodType<{
|
|
26219
26219
|
base?: {
|
|
26220
26220
|
model?: string | undefined;
|
|
@@ -26329,9 +26329,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26329
26329
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26330
26330
|
id: z.ZodString;
|
|
26331
26331
|
name: z.ZodString;
|
|
26332
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26333
26332
|
createdAt: z.ZodString;
|
|
26334
26333
|
updatedAt: z.ZodString;
|
|
26334
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26335
26335
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26336
26336
|
config: z.ZodType<{
|
|
26337
26337
|
type: "mcp";
|
|
@@ -26356,9 +26356,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26356
26356
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26357
26357
|
id: z.ZodString;
|
|
26358
26358
|
name: z.ZodString;
|
|
26359
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26360
26359
|
createdAt: z.ZodString;
|
|
26361
26360
|
updatedAt: z.ZodString;
|
|
26361
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26362
26362
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26363
26363
|
baseUrl: z.ZodString;
|
|
26364
26364
|
}, z.core.$strip>>>;
|
|
@@ -26370,10 +26370,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26370
26370
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26371
26371
|
id: z.ZodString;
|
|
26372
26372
|
name: z.ZodString;
|
|
26373
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26374
|
-
agentId: z.ZodString;
|
|
26375
26373
|
createdAt: z.ZodString;
|
|
26376
26374
|
updatedAt: z.ZodString;
|
|
26375
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26376
|
+
agentId: z.ZodString;
|
|
26377
26377
|
functionId: z.ZodString;
|
|
26378
26378
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26379
26379
|
}, z.core.$strip>>>;
|
|
@@ -26382,8 +26382,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26382
26382
|
createdAt: z.ZodString;
|
|
26383
26383
|
updatedAt: z.ZodString;
|
|
26384
26384
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26385
|
-
executeCode: z.ZodString;
|
|
26386
26385
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26386
|
+
executeCode: z.ZodString;
|
|
26387
26387
|
}, z.core.$strip>>>;
|
|
26388
26388
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26389
26389
|
id: z.ZodString;
|
|
@@ -26435,18 +26435,18 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26435
26435
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26436
26436
|
id: z.ZodString;
|
|
26437
26437
|
name: z.ZodString;
|
|
26438
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26439
26438
|
createdAt: z.ZodString;
|
|
26440
26439
|
updatedAt: z.ZodString;
|
|
26440
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26441
26441
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26442
26442
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26443
26443
|
executionMode: z.ZodString;
|
|
26444
26444
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26445
26445
|
id: z.ZodString;
|
|
26446
26446
|
name: z.ZodString;
|
|
26447
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26448
26447
|
createdAt: z.ZodString;
|
|
26449
26448
|
updatedAt: z.ZodString;
|
|
26449
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26450
26450
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26451
26451
|
config: z.ZodType<{
|
|
26452
26452
|
type: "mcp";
|
|
@@ -26471,9 +26471,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26471
26471
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26472
26472
|
id: z.ZodString;
|
|
26473
26473
|
name: z.ZodString;
|
|
26474
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26475
26474
|
createdAt: z.ZodString;
|
|
26476
26475
|
updatedAt: z.ZodString;
|
|
26476
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26477
26477
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26478
26478
|
baseUrl: z.ZodString;
|
|
26479
26479
|
}, z.core.$strip>>>;
|
|
@@ -26485,10 +26485,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26485
26485
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26486
26486
|
id: z.ZodString;
|
|
26487
26487
|
name: z.ZodString;
|
|
26488
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26489
|
-
agentId: z.ZodString;
|
|
26490
26488
|
createdAt: z.ZodString;
|
|
26491
26489
|
updatedAt: z.ZodString;
|
|
26490
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26491
|
+
agentId: z.ZodString;
|
|
26492
26492
|
functionId: z.ZodString;
|
|
26493
26493
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26494
26494
|
}, z.core.$strip>>>;
|
|
@@ -26497,8 +26497,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26497
26497
|
createdAt: z.ZodString;
|
|
26498
26498
|
updatedAt: z.ZodString;
|
|
26499
26499
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26500
|
-
executeCode: z.ZodString;
|
|
26501
26500
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26501
|
+
executeCode: z.ZodString;
|
|
26502
26502
|
}, z.core.$strip>>>;
|
|
26503
26503
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26504
26504
|
id: z.ZodString;
|
|
@@ -26549,9 +26549,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26549
26549
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26550
26550
|
id: z.ZodString;
|
|
26551
26551
|
name: z.ZodString;
|
|
26552
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26553
26552
|
createdAt: z.ZodString;
|
|
26554
26553
|
updatedAt: z.ZodString;
|
|
26554
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26555
26555
|
models: z.ZodNullable<z.ZodType<{
|
|
26556
26556
|
base?: {
|
|
26557
26557
|
model?: string | undefined;
|
|
@@ -26673,9 +26673,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26673
26673
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26674
26674
|
id: z.ZodString;
|
|
26675
26675
|
name: z.ZodString;
|
|
26676
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26677
26676
|
createdAt: z.ZodString;
|
|
26678
26677
|
updatedAt: z.ZodString;
|
|
26678
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26679
26679
|
models: z.ZodNullable<z.ZodObject<{
|
|
26680
26680
|
base: z.ZodObject<{
|
|
26681
26681
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26703,18 +26703,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26703
26703
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26704
26704
|
id: z.ZodString;
|
|
26705
26705
|
name: z.ZodString;
|
|
26706
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26707
26706
|
createdAt: z.ZodString;
|
|
26708
26707
|
updatedAt: z.ZodString;
|
|
26708
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26709
26709
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26710
26710
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26711
26711
|
executionMode: z.ZodString;
|
|
26712
26712
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26713
26713
|
id: z.ZodString;
|
|
26714
26714
|
name: z.ZodString;
|
|
26715
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26716
26715
|
createdAt: z.ZodString;
|
|
26717
26716
|
updatedAt: z.ZodString;
|
|
26717
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26718
26718
|
models: z.ZodNullable<z.ZodType<{
|
|
26719
26719
|
base?: {
|
|
26720
26720
|
model?: string | undefined;
|
|
@@ -26829,9 +26829,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26829
26829
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26830
26830
|
id: z.ZodString;
|
|
26831
26831
|
name: z.ZodString;
|
|
26832
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26833
26832
|
createdAt: z.ZodString;
|
|
26834
26833
|
updatedAt: z.ZodString;
|
|
26834
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26835
26835
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26836
26836
|
config: z.ZodType<{
|
|
26837
26837
|
type: "mcp";
|
|
@@ -26856,9 +26856,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26856
26856
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26857
26857
|
id: z.ZodString;
|
|
26858
26858
|
name: z.ZodString;
|
|
26859
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26860
26859
|
createdAt: z.ZodString;
|
|
26861
26860
|
updatedAt: z.ZodString;
|
|
26861
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26862
26862
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26863
26863
|
baseUrl: z.ZodString;
|
|
26864
26864
|
}, z.core.$strip>>>;
|
|
@@ -26870,10 +26870,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26870
26870
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26871
26871
|
id: z.ZodString;
|
|
26872
26872
|
name: z.ZodString;
|
|
26873
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26874
|
-
agentId: z.ZodString;
|
|
26875
26873
|
createdAt: z.ZodString;
|
|
26876
26874
|
updatedAt: z.ZodString;
|
|
26875
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26876
|
+
agentId: z.ZodString;
|
|
26877
26877
|
functionId: z.ZodString;
|
|
26878
26878
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26879
26879
|
}, z.core.$strip>>>;
|
|
@@ -26882,8 +26882,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26882
26882
|
createdAt: z.ZodString;
|
|
26883
26883
|
updatedAt: z.ZodString;
|
|
26884
26884
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26885
|
-
executeCode: z.ZodString;
|
|
26886
26885
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26886
|
+
executeCode: z.ZodString;
|
|
26887
26887
|
}, z.core.$strip>>>;
|
|
26888
26888
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26889
26889
|
id: z.ZodString;
|
|
@@ -26935,9 +26935,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26935
26935
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26936
26936
|
id: z.ZodString;
|
|
26937
26937
|
name: z.ZodString;
|
|
26938
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26939
26938
|
createdAt: z.ZodString;
|
|
26940
26939
|
updatedAt: z.ZodString;
|
|
26940
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26941
26941
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26942
26942
|
config: z.ZodType<{
|
|
26943
26943
|
type: "mcp";
|
|
@@ -26962,10 +26962,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26962
26962
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26963
26963
|
id: z.ZodString;
|
|
26964
26964
|
name: z.ZodString;
|
|
26965
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26966
|
-
agentId: z.ZodString;
|
|
26967
26965
|
createdAt: z.ZodString;
|
|
26968
26966
|
updatedAt: z.ZodString;
|
|
26967
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26968
|
+
agentId: z.ZodString;
|
|
26969
26969
|
functionId: z.ZodString;
|
|
26970
26970
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26971
26971
|
}, z.core.$strip>>>;
|
|
@@ -26974,15 +26974,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26974
26974
|
createdAt: z.ZodString;
|
|
26975
26975
|
updatedAt: z.ZodString;
|
|
26976
26976
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26977
|
-
executeCode: z.ZodString;
|
|
26978
26977
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26978
|
+
executeCode: z.ZodString;
|
|
26979
26979
|
}, z.core.$strip>>>;
|
|
26980
26980
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26981
26981
|
id: z.ZodString;
|
|
26982
26982
|
name: z.ZodString;
|
|
26983
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26984
26983
|
createdAt: z.ZodString;
|
|
26985
26984
|
updatedAt: z.ZodString;
|
|
26985
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26986
26986
|
props: z.ZodType<{
|
|
26987
26987
|
[x: string]: unknown;
|
|
26988
26988
|
type: "object";
|
|
@@ -27029,9 +27029,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27029
27029
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27030
27030
|
id: z.ZodString;
|
|
27031
27031
|
name: z.ZodString;
|
|
27032
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27033
27032
|
createdAt: z.ZodString;
|
|
27034
27033
|
updatedAt: z.ZodString;
|
|
27034
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27035
27035
|
props: z.ZodNullable<z.ZodType<{
|
|
27036
27036
|
[x: string]: unknown;
|
|
27037
27037
|
type: "object";
|
|
@@ -27078,9 +27078,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27078
27078
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27079
27079
|
id: z.ZodString;
|
|
27080
27080
|
name: z.ZodString;
|
|
27081
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27082
27081
|
createdAt: z.ZodString;
|
|
27083
27082
|
updatedAt: z.ZodString;
|
|
27083
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27084
27084
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27085
27085
|
baseUrl: z.ZodString;
|
|
27086
27086
|
}, z.core.$strip>>>;
|
|
@@ -27102,13 +27102,13 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27102
27102
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27103
27103
|
id: z.ZodString;
|
|
27104
27104
|
name: z.ZodString;
|
|
27105
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27106
27105
|
createdAt: z.ZodString;
|
|
27107
27106
|
updatedAt: z.ZodString;
|
|
27108
27107
|
userId: z.ZodNullable<z.ZodString>;
|
|
27108
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27109
27109
|
credentialStoreId: z.ZodString;
|
|
27110
27110
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27111
|
-
|
|
27111
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27112
27112
|
type: z.ZodEnum<{
|
|
27113
27113
|
readonly memory: "memory";
|
|
27114
27114
|
readonly keychain: "keychain";
|
|
@@ -27698,9 +27698,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27698
27698
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27699
27699
|
id: z.ZodString;
|
|
27700
27700
|
name: z.ZodString;
|
|
27701
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27702
27701
|
createdAt: z.ZodString;
|
|
27703
27702
|
updatedAt: z.ZodString;
|
|
27703
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27704
27704
|
models: z.ZodNullable<z.ZodObject<{
|
|
27705
27705
|
base: z.ZodObject<{
|
|
27706
27706
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27728,9 +27728,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27728
27728
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27729
27729
|
id: z.ZodString;
|
|
27730
27730
|
name: z.ZodString;
|
|
27731
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27732
27731
|
createdAt: z.ZodString;
|
|
27733
27732
|
updatedAt: z.ZodString;
|
|
27733
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27734
27734
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27735
27735
|
config: z.ZodType<{
|
|
27736
27736
|
type: "mcp";
|
|
@@ -27755,10 +27755,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27755
27755
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27756
27756
|
id: z.ZodString;
|
|
27757
27757
|
name: z.ZodString;
|
|
27758
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27759
|
-
agentId: z.ZodString;
|
|
27760
27758
|
createdAt: z.ZodString;
|
|
27761
27759
|
updatedAt: z.ZodString;
|
|
27760
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27761
|
+
agentId: z.ZodString;
|
|
27762
27762
|
functionId: z.ZodString;
|
|
27763
27763
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27764
27764
|
}, z.core.$strip>>>;
|
|
@@ -27767,15 +27767,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27767
27767
|
createdAt: z.ZodString;
|
|
27768
27768
|
updatedAt: z.ZodString;
|
|
27769
27769
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27770
|
-
executeCode: z.ZodString;
|
|
27771
27770
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27771
|
+
executeCode: z.ZodString;
|
|
27772
27772
|
}, z.core.$strip>>>;
|
|
27773
27773
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27774
27774
|
id: z.ZodString;
|
|
27775
27775
|
name: z.ZodString;
|
|
27776
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27777
27776
|
createdAt: z.ZodString;
|
|
27778
27777
|
updatedAt: z.ZodString;
|
|
27778
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27779
27779
|
props: z.ZodType<{
|
|
27780
27780
|
[x: string]: unknown;
|
|
27781
27781
|
type: "object";
|
|
@@ -27822,9 +27822,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27822
27822
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27823
27823
|
id: z.ZodString;
|
|
27824
27824
|
name: z.ZodString;
|
|
27825
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27826
27825
|
createdAt: z.ZodString;
|
|
27827
27826
|
updatedAt: z.ZodString;
|
|
27827
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27828
27828
|
props: z.ZodNullable<z.ZodType<{
|
|
27829
27829
|
[x: string]: unknown;
|
|
27830
27830
|
type: "object";
|
|
@@ -27871,9 +27871,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27871
27871
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27872
27872
|
id: z.ZodString;
|
|
27873
27873
|
name: z.ZodString;
|
|
27874
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27875
27874
|
createdAt: z.ZodString;
|
|
27876
27875
|
updatedAt: z.ZodString;
|
|
27876
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27877
27877
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27878
27878
|
baseUrl: z.ZodString;
|
|
27879
27879
|
}, z.core.$strip>>>;
|
|
@@ -27895,13 +27895,13 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27895
27895
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27896
27896
|
id: z.ZodString;
|
|
27897
27897
|
name: z.ZodString;
|
|
27898
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27899
27898
|
createdAt: z.ZodString;
|
|
27900
27899
|
updatedAt: z.ZodString;
|
|
27901
27900
|
userId: z.ZodNullable<z.ZodString>;
|
|
27901
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27902
27902
|
credentialStoreId: z.ZodString;
|
|
27903
27903
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27904
|
-
|
|
27904
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27905
27905
|
type: z.ZodEnum<{
|
|
27906
27906
|
readonly memory: "memory";
|
|
27907
27907
|
readonly keychain: "keychain";
|
|
@@ -28487,18 +28487,18 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28487
28487
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28488
28488
|
id: z.ZodString;
|
|
28489
28489
|
name: z.ZodString;
|
|
28490
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28491
28490
|
createdAt: z.ZodString;
|
|
28492
28491
|
updatedAt: z.ZodString;
|
|
28492
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28493
28493
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28494
28494
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28495
28495
|
executionMode: z.ZodString;
|
|
28496
28496
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28497
28497
|
id: z.ZodString;
|
|
28498
28498
|
name: z.ZodString;
|
|
28499
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28500
28499
|
createdAt: z.ZodString;
|
|
28501
28500
|
updatedAt: z.ZodString;
|
|
28501
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28502
28502
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28503
28503
|
config: z.ZodType<{
|
|
28504
28504
|
type: "mcp";
|
|
@@ -28523,9 +28523,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28523
28523
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28524
28524
|
id: z.ZodString;
|
|
28525
28525
|
name: z.ZodString;
|
|
28526
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28527
28526
|
createdAt: z.ZodString;
|
|
28528
28527
|
updatedAt: z.ZodString;
|
|
28528
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28529
28529
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28530
28530
|
baseUrl: z.ZodString;
|
|
28531
28531
|
}, z.core.$strip>>>;
|
|
@@ -28537,10 +28537,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28537
28537
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28538
28538
|
id: z.ZodString;
|
|
28539
28539
|
name: z.ZodString;
|
|
28540
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28541
|
-
agentId: z.ZodString;
|
|
28542
28540
|
createdAt: z.ZodString;
|
|
28543
28541
|
updatedAt: z.ZodString;
|
|
28542
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28543
|
+
agentId: z.ZodString;
|
|
28544
28544
|
functionId: z.ZodString;
|
|
28545
28545
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28546
28546
|
}, z.core.$strip>>>;
|
|
@@ -28549,8 +28549,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28549
28549
|
createdAt: z.ZodString;
|
|
28550
28550
|
updatedAt: z.ZodString;
|
|
28551
28551
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28552
|
-
executeCode: z.ZodString;
|
|
28553
28552
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28553
|
+
executeCode: z.ZodString;
|
|
28554
28554
|
}, z.core.$strip>>>;
|
|
28555
28555
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28556
28556
|
id: z.ZodString;
|
|
@@ -28601,9 +28601,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28601
28601
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28602
28602
|
id: z.ZodString;
|
|
28603
28603
|
name: z.ZodString;
|
|
28604
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28605
28604
|
createdAt: z.ZodString;
|
|
28606
28605
|
updatedAt: z.ZodString;
|
|
28606
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28607
28607
|
models: z.ZodNullable<z.ZodType<{
|
|
28608
28608
|
base?: {
|
|
28609
28609
|
model?: string | undefined;
|
|
@@ -28730,9 +28730,9 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28730
28730
|
data: z.ZodObject<{
|
|
28731
28731
|
id: z.ZodString;
|
|
28732
28732
|
name: z.ZodString;
|
|
28733
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28734
28733
|
createdAt: z.ZodString;
|
|
28735
28734
|
updatedAt: z.ZodString;
|
|
28735
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28736
28736
|
models: z.ZodNullable<z.ZodObject<{
|
|
28737
28737
|
base: z.ZodObject<{
|
|
28738
28738
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28766,10 +28766,9 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28766
28766
|
data: z.ZodObject<{
|
|
28767
28767
|
id: z.ZodString;
|
|
28768
28768
|
name: z.ZodString;
|
|
28769
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28770
28769
|
createdAt: z.ZodString;
|
|
28771
28770
|
updatedAt: z.ZodString;
|
|
28772
|
-
|
|
28771
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28773
28772
|
models: z.ZodNullable<z.ZodType<{
|
|
28774
28773
|
base?: {
|
|
28775
28774
|
model?: string | undefined;
|
|
@@ -28847,6 +28846,7 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28847
28846
|
allowedProviders?: string[] | undefined;
|
|
28848
28847
|
} | undefined;
|
|
28849
28848
|
}>>>;
|
|
28849
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28850
28850
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
28851
28851
|
stepCountIs?: number | undefined;
|
|
28852
28852
|
}, {
|
|
@@ -28863,10 +28863,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28863
28863
|
data: z.ZodObject<{
|
|
28864
28864
|
id: z.ZodString;
|
|
28865
28865
|
name: z.ZodString;
|
|
28866
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28867
28866
|
createdAt: z.ZodString;
|
|
28868
28867
|
updatedAt: z.ZodString;
|
|
28869
|
-
|
|
28868
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28870
28869
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28871
28870
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28872
28871
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -28946,6 +28945,7 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28946
28945
|
allowedProviders?: string[] | undefined;
|
|
28947
28946
|
} | undefined;
|
|
28948
28947
|
}>>>;
|
|
28948
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28949
28949
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
28950
28950
|
enabled?: boolean | undefined;
|
|
28951
28951
|
numEvents?: number | undefined;
|
|
@@ -29019,9 +29019,9 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
29019
29019
|
data: z.ZodObject<{
|
|
29020
29020
|
id: z.ZodString;
|
|
29021
29021
|
name: z.ZodString;
|
|
29022
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29023
29022
|
createdAt: z.ZodString;
|
|
29024
29023
|
updatedAt: z.ZodString;
|
|
29024
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29025
29025
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29026
29026
|
baseUrl: z.ZodString;
|
|
29027
29027
|
}, z.core.$strip>;
|
|
@@ -29039,10 +29039,10 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
29039
29039
|
data: z.ZodObject<{
|
|
29040
29040
|
id: z.ZodString;
|
|
29041
29041
|
name: z.ZodNullable<z.ZodString>;
|
|
29042
|
-
agentId: z.ZodString;
|
|
29043
29042
|
createdAt: z.ZodString;
|
|
29044
29043
|
updatedAt: z.ZodString;
|
|
29045
29044
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29045
|
+
agentId: z.ZodString;
|
|
29046
29046
|
publicId: z.ZodString;
|
|
29047
29047
|
keyPrefix: z.ZodString;
|
|
29048
29048
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29055,13 +29055,13 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
29055
29055
|
data: z.ZodObject<{
|
|
29056
29056
|
id: z.ZodString;
|
|
29057
29057
|
name: z.ZodString;
|
|
29058
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29059
29058
|
createdAt: z.ZodString;
|
|
29060
29059
|
updatedAt: z.ZodString;
|
|
29061
29060
|
userId: z.ZodNullable<z.ZodString>;
|
|
29061
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29062
29062
|
credentialStoreId: z.ZodString;
|
|
29063
29063
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29064
|
-
|
|
29064
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29065
29065
|
type: z.ZodEnum<{
|
|
29066
29066
|
readonly memory: "memory";
|
|
29067
29067
|
readonly keychain: "keychain";
|
|
@@ -29651,18 +29651,18 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29651
29651
|
createdAt: z.ZodString;
|
|
29652
29652
|
updatedAt: z.ZodString;
|
|
29653
29653
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29654
|
-
executeCode: z.ZodString;
|
|
29655
29654
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29655
|
+
executeCode: z.ZodString;
|
|
29656
29656
|
}, z.core.$strip>;
|
|
29657
29657
|
}, z.core.$strip>;
|
|
29658
29658
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29659
29659
|
data: z.ZodObject<{
|
|
29660
29660
|
id: z.ZodString;
|
|
29661
29661
|
name: z.ZodString;
|
|
29662
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29663
|
-
agentId: z.ZodString;
|
|
29664
29662
|
createdAt: z.ZodString;
|
|
29665
29663
|
updatedAt: z.ZodString;
|
|
29664
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29665
|
+
agentId: z.ZodString;
|
|
29666
29666
|
functionId: z.ZodString;
|
|
29667
29667
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29668
29668
|
}, z.core.$strip>;
|
|
@@ -29670,20 +29670,20 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
29670
29670
|
declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
29671
29671
|
data: z.ZodObject<{
|
|
29672
29672
|
id: z.ZodString;
|
|
29673
|
-
subAgentId: z.ZodString;
|
|
29674
29673
|
createdAt: z.ZodString;
|
|
29675
29674
|
updatedAt: z.ZodString;
|
|
29676
|
-
|
|
29675
|
+
subAgentId: z.ZodString;
|
|
29677
29676
|
functionToolId: z.ZodString;
|
|
29677
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29678
29678
|
}, z.core.$strip>;
|
|
29679
29679
|
}, z.core.$strip>;
|
|
29680
29680
|
declare const DataComponentResponse: z.ZodObject<{
|
|
29681
29681
|
data: z.ZodObject<{
|
|
29682
29682
|
id: z.ZodString;
|
|
29683
29683
|
name: z.ZodString;
|
|
29684
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29685
29684
|
createdAt: z.ZodString;
|
|
29686
29685
|
updatedAt: z.ZodString;
|
|
29686
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29687
29687
|
props: z.ZodType<{
|
|
29688
29688
|
[x: string]: unknown;
|
|
29689
29689
|
type: "object";
|
|
@@ -29732,9 +29732,9 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
29732
29732
|
data: z.ZodObject<{
|
|
29733
29733
|
id: z.ZodString;
|
|
29734
29734
|
name: z.ZodString;
|
|
29735
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29736
29735
|
createdAt: z.ZodString;
|
|
29737
29736
|
updatedAt: z.ZodString;
|
|
29737
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29738
29738
|
props: z.ZodNullable<z.ZodType<{
|
|
29739
29739
|
[x: string]: unknown;
|
|
29740
29740
|
type: "object";
|
|
@@ -29792,24 +29792,23 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
29792
29792
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
29793
29793
|
data: z.ZodObject<{
|
|
29794
29794
|
id: z.ZodString;
|
|
29795
|
-
subAgentId: z.ZodString;
|
|
29796
|
-
toolId: z.ZodString;
|
|
29797
29795
|
createdAt: z.ZodString;
|
|
29798
29796
|
updatedAt: z.ZodString;
|
|
29799
29797
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29800
|
-
|
|
29798
|
+
toolId: z.ZodString;
|
|
29799
|
+
subAgentId: z.ZodString;
|
|
29801
29800
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29801
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29802
29802
|
}, z.core.$strip>;
|
|
29803
29803
|
}, z.core.$strip>;
|
|
29804
29804
|
declare const TriggerResponse: z.ZodObject<{
|
|
29805
29805
|
data: z.ZodObject<{
|
|
29806
29806
|
id: z.ZodString;
|
|
29807
29807
|
name: z.ZodString;
|
|
29808
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29809
29808
|
createdAt: z.ZodString;
|
|
29810
29809
|
updatedAt: z.ZodString;
|
|
29810
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29811
29811
|
enabled: z.ZodBoolean;
|
|
29812
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29813
29812
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29814
29813
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29815
29814
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29817,15 +29816,15 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29817
29816
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29818
29817
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29819
29818
|
algorithm: z.ZodEnum<{
|
|
29820
|
-
md5: "md5";
|
|
29821
29819
|
sha256: "sha256";
|
|
29822
29820
|
sha512: "sha512";
|
|
29823
29821
|
sha384: "sha384";
|
|
29824
29822
|
sha1: "sha1";
|
|
29823
|
+
md5: "md5";
|
|
29825
29824
|
}>;
|
|
29826
29825
|
encoding: z.ZodEnum<{
|
|
29827
|
-
base64: "base64";
|
|
29828
29826
|
hex: "hex";
|
|
29827
|
+
base64: "base64";
|
|
29829
29828
|
}>;
|
|
29830
29829
|
signature: z.ZodObject<{
|
|
29831
29830
|
source: z.ZodEnum<{
|
|
@@ -29862,12 +29861,12 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29862
29861
|
}, z.core.$strip>>>;
|
|
29863
29862
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29864
29863
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
29864
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29865
29865
|
}, z.core.$strip>;
|
|
29866
29866
|
}, z.core.$strip>;
|
|
29867
29867
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
29868
29868
|
data: z.ZodObject<{
|
|
29869
29869
|
id: z.ZodString;
|
|
29870
|
-
status: z.ZodString;
|
|
29871
29870
|
createdAt: z.ZodString;
|
|
29872
29871
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29873
29872
|
type: z.ZodEnum<{
|
|
@@ -29878,6 +29877,7 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29878
29877
|
name: z.ZodString;
|
|
29879
29878
|
hash: z.ZodString;
|
|
29880
29879
|
}, z.core.$strip>>>;
|
|
29880
|
+
status: z.ZodString;
|
|
29881
29881
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29882
29882
|
triggerId: z.ZodString;
|
|
29883
29883
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -29890,9 +29890,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29890
29890
|
declare const FeedbackResponse: z.ZodObject<{
|
|
29891
29891
|
data: z.ZodObject<{
|
|
29892
29892
|
id: z.ZodString;
|
|
29893
|
-
type: z.ZodString;
|
|
29894
29893
|
createdAt: z.ZodString;
|
|
29895
29894
|
updatedAt: z.ZodString;
|
|
29895
|
+
type: z.ZodString;
|
|
29896
29896
|
conversationId: z.ZodString;
|
|
29897
29897
|
messageId: z.ZodNullable<z.ZodString>;
|
|
29898
29898
|
details: z.ZodNullable<z.ZodString>;
|
|
@@ -29901,12 +29901,12 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
29901
29901
|
declare const EventResponse: z.ZodObject<{
|
|
29902
29902
|
data: z.ZodObject<{
|
|
29903
29903
|
id: z.ZodString;
|
|
29904
|
-
|
|
29904
|
+
createdAt: z.ZodString;
|
|
29905
|
+
updatedAt: z.ZodString;
|
|
29905
29906
|
type: z.ZodString;
|
|
29907
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29906
29908
|
properties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29907
29909
|
agentId: z.ZodNullable<z.ZodString>;
|
|
29908
|
-
createdAt: z.ZodString;
|
|
29909
|
-
updatedAt: z.ZodString;
|
|
29910
29910
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29911
29911
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29912
29912
|
messageId: z.ZodNullable<z.ZodString>;
|
|
@@ -29916,9 +29916,9 @@ declare const EventResponse: z.ZodObject<{
|
|
|
29916
29916
|
declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
29917
29917
|
data: z.ZodArray<z.ZodObject<{
|
|
29918
29918
|
id: z.ZodString;
|
|
29919
|
-
type: z.ZodString;
|
|
29920
29919
|
createdAt: z.ZodString;
|
|
29921
29920
|
updatedAt: z.ZodString;
|
|
29921
|
+
type: z.ZodString;
|
|
29922
29922
|
conversationId: z.ZodString;
|
|
29923
29923
|
messageId: z.ZodNullable<z.ZodString>;
|
|
29924
29924
|
details: z.ZodNullable<z.ZodString>;
|
|
@@ -29933,9 +29933,9 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29933
29933
|
data: z.ZodArray<z.ZodObject<{
|
|
29934
29934
|
id: z.ZodString;
|
|
29935
29935
|
name: z.ZodString;
|
|
29936
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29937
29936
|
createdAt: z.ZodString;
|
|
29938
29937
|
updatedAt: z.ZodString;
|
|
29938
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29939
29939
|
models: z.ZodNullable<z.ZodObject<{
|
|
29940
29940
|
base: z.ZodObject<{
|
|
29941
29941
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29975,10 +29975,9 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29975
29975
|
data: z.ZodArray<z.ZodObject<{
|
|
29976
29976
|
id: z.ZodString;
|
|
29977
29977
|
name: z.ZodString;
|
|
29978
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29979
29978
|
createdAt: z.ZodString;
|
|
29980
29979
|
updatedAt: z.ZodString;
|
|
29981
|
-
|
|
29980
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29982
29981
|
models: z.ZodNullable<z.ZodType<{
|
|
29983
29982
|
base?: {
|
|
29984
29983
|
model?: string | undefined;
|
|
@@ -30056,6 +30055,7 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
30056
30055
|
allowedProviders?: string[] | undefined;
|
|
30057
30056
|
} | undefined;
|
|
30058
30057
|
}>>>;
|
|
30058
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30059
30059
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
30060
30060
|
stepCountIs?: number | undefined;
|
|
30061
30061
|
}, {
|
|
@@ -30078,10 +30078,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30078
30078
|
data: z.ZodArray<z.ZodObject<{
|
|
30079
30079
|
id: z.ZodString;
|
|
30080
30080
|
name: z.ZodString;
|
|
30081
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30082
30081
|
createdAt: z.ZodString;
|
|
30083
30082
|
updatedAt: z.ZodString;
|
|
30084
|
-
|
|
30083
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30085
30084
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30086
30085
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30087
30086
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -30161,6 +30160,7 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30161
30160
|
allowedProviders?: string[] | undefined;
|
|
30162
30161
|
} | undefined;
|
|
30163
30162
|
}>>>;
|
|
30163
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30164
30164
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
30165
30165
|
enabled?: boolean | undefined;
|
|
30166
30166
|
numEvents?: number | undefined;
|
|
@@ -30240,9 +30240,9 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
30240
30240
|
data: z.ZodArray<z.ZodObject<{
|
|
30241
30241
|
id: z.ZodString;
|
|
30242
30242
|
name: z.ZodString;
|
|
30243
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30244
30243
|
createdAt: z.ZodString;
|
|
30245
30244
|
updatedAt: z.ZodString;
|
|
30245
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30246
30246
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30247
30247
|
baseUrl: z.ZodString;
|
|
30248
30248
|
}, z.core.$strip>>;
|
|
@@ -30272,10 +30272,10 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
30272
30272
|
data: z.ZodArray<z.ZodObject<{
|
|
30273
30273
|
id: z.ZodString;
|
|
30274
30274
|
name: z.ZodNullable<z.ZodString>;
|
|
30275
|
-
agentId: z.ZodString;
|
|
30276
30275
|
createdAt: z.ZodString;
|
|
30277
30276
|
updatedAt: z.ZodString;
|
|
30278
30277
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
30278
|
+
agentId: z.ZodString;
|
|
30279
30279
|
publicId: z.ZodString;
|
|
30280
30280
|
keyPrefix: z.ZodString;
|
|
30281
30281
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30292,14 +30292,14 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
30292
30292
|
}, z.core.$strip>;
|
|
30293
30293
|
declare const AppResponse: z.ZodObject<{
|
|
30294
30294
|
data: z.ZodObject<{
|
|
30295
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
30296
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
30297
30295
|
id: z.ZodString;
|
|
30298
30296
|
name: z.ZodString;
|
|
30299
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30300
|
-
type: z.ZodString;
|
|
30301
30297
|
createdAt: z.ZodString;
|
|
30302
30298
|
updatedAt: z.ZodString;
|
|
30299
|
+
type: z.ZodString;
|
|
30300
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30301
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
30302
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
30303
30303
|
enabled: z.ZodBoolean;
|
|
30304
30304
|
prompt: z.ZodNullable<z.ZodString>;
|
|
30305
30305
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30352,14 +30352,14 @@ declare const AppResponse: z.ZodObject<{
|
|
|
30352
30352
|
}, z.core.$strip>;
|
|
30353
30353
|
declare const AppListResponse: z.ZodObject<{
|
|
30354
30354
|
data: z.ZodArray<z.ZodObject<{
|
|
30355
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
30356
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
30357
30355
|
id: z.ZodString;
|
|
30358
30356
|
name: z.ZodString;
|
|
30359
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30360
|
-
type: z.ZodString;
|
|
30361
30357
|
createdAt: z.ZodString;
|
|
30362
30358
|
updatedAt: z.ZodString;
|
|
30359
|
+
type: z.ZodString;
|
|
30360
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30361
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
30362
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
30363
30363
|
enabled: z.ZodBoolean;
|
|
30364
30364
|
prompt: z.ZodNullable<z.ZodString>;
|
|
30365
30365
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30426,13 +30426,13 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
30426
30426
|
data: z.ZodArray<z.ZodObject<{
|
|
30427
30427
|
id: z.ZodString;
|
|
30428
30428
|
name: z.ZodString;
|
|
30429
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
30430
30429
|
createdAt: z.ZodString;
|
|
30431
30430
|
updatedAt: z.ZodString;
|
|
30432
30431
|
userId: z.ZodNullable<z.ZodString>;
|
|
30432
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30433
30433
|
credentialStoreId: z.ZodString;
|
|
30434
30434
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30435
|
-
|
|
30435
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
30436
30436
|
type: z.ZodEnum<{
|
|
30437
30437
|
readonly memory: "memory";
|
|
30438
30438
|
readonly keychain: "keychain";
|
|
@@ -31028,8 +31028,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
31028
31028
|
createdAt: z.ZodString;
|
|
31029
31029
|
updatedAt: z.ZodString;
|
|
31030
31030
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31031
|
-
executeCode: z.ZodString;
|
|
31032
31031
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31032
|
+
executeCode: z.ZodString;
|
|
31033
31033
|
}, z.core.$strip>>;
|
|
31034
31034
|
pagination: z.ZodObject<{
|
|
31035
31035
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31042,10 +31042,10 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
31042
31042
|
data: z.ZodArray<z.ZodObject<{
|
|
31043
31043
|
id: z.ZodString;
|
|
31044
31044
|
name: z.ZodString;
|
|
31045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31046
|
-
agentId: z.ZodString;
|
|
31047
31045
|
createdAt: z.ZodString;
|
|
31048
31046
|
updatedAt: z.ZodString;
|
|
31047
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31048
|
+
agentId: z.ZodString;
|
|
31049
31049
|
functionId: z.ZodString;
|
|
31050
31050
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31051
31051
|
}, z.core.$strip>>;
|
|
@@ -31059,11 +31059,11 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
31059
31059
|
declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
31060
31060
|
data: z.ZodArray<z.ZodObject<{
|
|
31061
31061
|
id: z.ZodString;
|
|
31062
|
-
subAgentId: z.ZodString;
|
|
31063
31062
|
createdAt: z.ZodString;
|
|
31064
31063
|
updatedAt: z.ZodString;
|
|
31065
|
-
|
|
31064
|
+
subAgentId: z.ZodString;
|
|
31066
31065
|
functionToolId: z.ZodString;
|
|
31066
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31067
31067
|
}, z.core.$strip>>;
|
|
31068
31068
|
pagination: z.ZodObject<{
|
|
31069
31069
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31075,9 +31075,9 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31075
31075
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
31076
31076
|
data: z.ZodArray<z.ZodObject<{
|
|
31077
31077
|
id: z.ZodString;
|
|
31078
|
-
type: z.ZodString;
|
|
31079
31078
|
createdAt: z.ZodString;
|
|
31080
31079
|
updatedAt: z.ZodString;
|
|
31080
|
+
type: z.ZodString;
|
|
31081
31081
|
conversationId: z.ZodString;
|
|
31082
31082
|
messageId: z.ZodNullable<z.ZodString>;
|
|
31083
31083
|
details: z.ZodNullable<z.ZodString>;
|
|
@@ -31094,9 +31094,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
31094
31094
|
data: z.ZodArray<z.ZodObject<{
|
|
31095
31095
|
id: z.ZodString;
|
|
31096
31096
|
name: z.ZodString;
|
|
31097
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31098
31097
|
createdAt: z.ZodString;
|
|
31099
31098
|
updatedAt: z.ZodString;
|
|
31099
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31100
31100
|
props: z.ZodType<{
|
|
31101
31101
|
[x: string]: unknown;
|
|
31102
31102
|
type: "object";
|
|
@@ -31151,9 +31151,9 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
31151
31151
|
data: z.ZodArray<z.ZodObject<{
|
|
31152
31152
|
id: z.ZodString;
|
|
31153
31153
|
name: z.ZodString;
|
|
31154
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31155
31154
|
createdAt: z.ZodString;
|
|
31156
31155
|
updatedAt: z.ZodString;
|
|
31156
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31157
31157
|
props: z.ZodNullable<z.ZodType<{
|
|
31158
31158
|
[x: string]: unknown;
|
|
31159
31159
|
type: "object";
|
|
@@ -31223,13 +31223,13 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
31223
31223
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
31224
31224
|
data: z.ZodArray<z.ZodObject<{
|
|
31225
31225
|
id: z.ZodString;
|
|
31226
|
-
subAgentId: z.ZodString;
|
|
31227
|
-
toolId: z.ZodString;
|
|
31228
31226
|
createdAt: z.ZodString;
|
|
31229
31227
|
updatedAt: z.ZodString;
|
|
31230
31228
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31231
|
-
|
|
31229
|
+
toolId: z.ZodString;
|
|
31230
|
+
subAgentId: z.ZodString;
|
|
31232
31231
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31232
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31233
31233
|
}, z.core.$strip>>;
|
|
31234
31234
|
pagination: z.ZodObject<{
|
|
31235
31235
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31242,11 +31242,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31242
31242
|
data: z.ZodArray<z.ZodObject<{
|
|
31243
31243
|
id: z.ZodString;
|
|
31244
31244
|
name: z.ZodString;
|
|
31245
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31246
31245
|
createdAt: z.ZodString;
|
|
31247
31246
|
updatedAt: z.ZodString;
|
|
31247
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31248
31248
|
enabled: z.ZodBoolean;
|
|
31249
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31250
31249
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31251
31250
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31252
31251
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31254,15 +31253,15 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31254
31253
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31255
31254
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31256
31255
|
algorithm: z.ZodEnum<{
|
|
31257
|
-
md5: "md5";
|
|
31258
31256
|
sha256: "sha256";
|
|
31259
31257
|
sha512: "sha512";
|
|
31260
31258
|
sha384: "sha384";
|
|
31261
31259
|
sha1: "sha1";
|
|
31260
|
+
md5: "md5";
|
|
31262
31261
|
}>;
|
|
31263
31262
|
encoding: z.ZodEnum<{
|
|
31264
|
-
base64: "base64";
|
|
31265
31263
|
hex: "hex";
|
|
31264
|
+
base64: "base64";
|
|
31266
31265
|
}>;
|
|
31267
31266
|
signature: z.ZodObject<{
|
|
31268
31267
|
source: z.ZodEnum<{
|
|
@@ -31299,6 +31298,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31299
31298
|
}, z.core.$strip>>>;
|
|
31300
31299
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31301
31300
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31301
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31302
31302
|
}, z.core.$strip>>;
|
|
31303
31303
|
pagination: z.ZodObject<{
|
|
31304
31304
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31310,7 +31310,6 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31310
31310
|
declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
31311
31311
|
data: z.ZodArray<z.ZodObject<{
|
|
31312
31312
|
id: z.ZodString;
|
|
31313
|
-
status: z.ZodString;
|
|
31314
31313
|
createdAt: z.ZodString;
|
|
31315
31314
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31316
31315
|
type: z.ZodEnum<{
|
|
@@ -31321,6 +31320,7 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
31321
31320
|
name: z.ZodString;
|
|
31322
31321
|
hash: z.ZodString;
|
|
31323
31322
|
}, z.core.$strip>>>;
|
|
31323
|
+
status: z.ZodString;
|
|
31324
31324
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31325
31325
|
triggerId: z.ZodString;
|
|
31326
31326
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -31340,11 +31340,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31340
31340
|
data: z.ZodObject<{
|
|
31341
31341
|
id: z.ZodString;
|
|
31342
31342
|
name: z.ZodString;
|
|
31343
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31344
31343
|
createdAt: z.ZodString;
|
|
31345
31344
|
updatedAt: z.ZodString;
|
|
31345
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31346
31346
|
enabled: z.ZodBoolean;
|
|
31347
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31348
31347
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31349
31348
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31350
31349
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31352,15 +31351,15 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31352
31351
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31353
31352
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31354
31353
|
algorithm: z.ZodEnum<{
|
|
31355
|
-
md5: "md5";
|
|
31356
31354
|
sha256: "sha256";
|
|
31357
31355
|
sha512: "sha512";
|
|
31358
31356
|
sha384: "sha384";
|
|
31359
31357
|
sha1: "sha1";
|
|
31358
|
+
md5: "md5";
|
|
31360
31359
|
}>;
|
|
31361
31360
|
encoding: z.ZodEnum<{
|
|
31362
|
-
base64: "base64";
|
|
31363
31361
|
hex: "hex";
|
|
31362
|
+
base64: "base64";
|
|
31364
31363
|
}>;
|
|
31365
31364
|
signature: z.ZodObject<{
|
|
31366
31365
|
source: z.ZodEnum<{
|
|
@@ -31397,6 +31396,7 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31397
31396
|
}, z.core.$strip>>>;
|
|
31398
31397
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31399
31398
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31399
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31400
31400
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31401
31401
|
userCount: z.ZodNumber;
|
|
31402
31402
|
webhookUrl: z.ZodString;
|
|
@@ -31406,11 +31406,10 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31406
31406
|
data: z.ZodObject<{
|
|
31407
31407
|
id: z.ZodString;
|
|
31408
31408
|
name: z.ZodString;
|
|
31409
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31410
31409
|
createdAt: z.ZodString;
|
|
31411
31410
|
updatedAt: z.ZodString;
|
|
31411
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31412
31412
|
enabled: z.ZodBoolean;
|
|
31413
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31414
31413
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31415
31414
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31416
31415
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31418,15 +31417,15 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31418
31417
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31419
31418
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31420
31419
|
algorithm: z.ZodEnum<{
|
|
31421
|
-
md5: "md5";
|
|
31422
31420
|
sha256: "sha256";
|
|
31423
31421
|
sha512: "sha512";
|
|
31424
31422
|
sha384: "sha384";
|
|
31425
31423
|
sha1: "sha1";
|
|
31424
|
+
md5: "md5";
|
|
31426
31425
|
}>;
|
|
31427
31426
|
encoding: z.ZodEnum<{
|
|
31428
|
-
base64: "base64";
|
|
31429
31427
|
hex: "hex";
|
|
31428
|
+
base64: "base64";
|
|
31430
31429
|
}>;
|
|
31431
31430
|
signature: z.ZodObject<{
|
|
31432
31431
|
source: z.ZodEnum<{
|
|
@@ -31463,6 +31462,7 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31463
31462
|
}, z.core.$strip>>>;
|
|
31464
31463
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31465
31464
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31465
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31466
31466
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31467
31467
|
userCount: z.ZodNumber;
|
|
31468
31468
|
webhookUrl: z.ZodString;
|
|
@@ -31473,11 +31473,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31473
31473
|
data: z.ZodArray<z.ZodObject<{
|
|
31474
31474
|
id: z.ZodString;
|
|
31475
31475
|
name: z.ZodString;
|
|
31476
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31477
31476
|
createdAt: z.ZodString;
|
|
31478
31477
|
updatedAt: z.ZodString;
|
|
31478
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31479
31479
|
enabled: z.ZodBoolean;
|
|
31480
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31481
31480
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31482
31481
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31483
31482
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31485,15 +31484,15 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31485
31484
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31486
31485
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31487
31486
|
algorithm: z.ZodEnum<{
|
|
31488
|
-
md5: "md5";
|
|
31489
31487
|
sha256: "sha256";
|
|
31490
31488
|
sha512: "sha512";
|
|
31491
31489
|
sha384: "sha384";
|
|
31492
31490
|
sha1: "sha1";
|
|
31491
|
+
md5: "md5";
|
|
31493
31492
|
}>;
|
|
31494
31493
|
encoding: z.ZodEnum<{
|
|
31495
|
-
base64: "base64";
|
|
31496
31494
|
hex: "hex";
|
|
31495
|
+
base64: "base64";
|
|
31497
31496
|
}>;
|
|
31498
31497
|
signature: z.ZodObject<{
|
|
31499
31498
|
source: z.ZodEnum<{
|
|
@@ -31530,6 +31529,7 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31530
31529
|
}, z.core.$strip>>>;
|
|
31531
31530
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31532
31531
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31532
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31533
31533
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31534
31534
|
userCount: z.ZodNumber;
|
|
31535
31535
|
webhookUrl: z.ZodString;
|
|
@@ -31551,16 +31551,16 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
31551
31551
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
31552
31552
|
id: z.ZodString;
|
|
31553
31553
|
name: z.ZodString;
|
|
31554
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31555
31554
|
createdAt: z.ZodString;
|
|
31556
31555
|
updatedAt: z.ZodString;
|
|
31557
31556
|
ref: z.ZodString;
|
|
31557
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31558
31558
|
enabled: z.ZodBoolean;
|
|
31559
31559
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31560
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31561
31560
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31562
31561
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31563
31562
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31563
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31564
31564
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31565
31565
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31566
31566
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31589,16 +31589,16 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
31589
31589
|
data: z.ZodObject<{
|
|
31590
31590
|
id: z.ZodString;
|
|
31591
31591
|
name: z.ZodString;
|
|
31592
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31593
31592
|
createdAt: z.ZodString;
|
|
31594
31593
|
updatedAt: z.ZodString;
|
|
31595
31594
|
ref: z.ZodString;
|
|
31595
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31596
31596
|
enabled: z.ZodBoolean;
|
|
31597
31597
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31598
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31599
31598
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31600
31599
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31601
31600
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31601
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31602
31602
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31603
31603
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31604
31604
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31612,16 +31612,16 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
31612
31612
|
data: z.ZodArray<z.ZodObject<{
|
|
31613
31613
|
id: z.ZodString;
|
|
31614
31614
|
name: z.ZodString;
|
|
31615
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31616
31615
|
createdAt: z.ZodString;
|
|
31617
31616
|
updatedAt: z.ZodString;
|
|
31618
31617
|
ref: z.ZodString;
|
|
31618
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31619
31619
|
enabled: z.ZodBoolean;
|
|
31620
31620
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31621
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31622
31621
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31623
31622
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31624
31623
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31624
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31625
31625
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31626
31626
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31627
31627
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31641,16 +31641,16 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
31641
31641
|
data: z.ZodArray<z.ZodObject<{
|
|
31642
31642
|
id: z.ZodString;
|
|
31643
31643
|
name: z.ZodString;
|
|
31644
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31645
31644
|
createdAt: z.ZodString;
|
|
31646
31645
|
updatedAt: z.ZodString;
|
|
31647
31646
|
ref: z.ZodString;
|
|
31647
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31648
31648
|
enabled: z.ZodBoolean;
|
|
31649
31649
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31650
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31651
31650
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31652
31651
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31653
31652
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31653
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31654
31654
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31655
31655
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31656
31656
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31684,13 +31684,6 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
31684
31684
|
declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
31685
31685
|
data: z.ZodObject<{
|
|
31686
31686
|
id: z.ZodString;
|
|
31687
|
-
status: z.ZodEnum<{
|
|
31688
|
-
pending: "pending";
|
|
31689
|
-
failed: "failed";
|
|
31690
|
-
running: "running";
|
|
31691
|
-
completed: "completed";
|
|
31692
|
-
cancelled: "cancelled";
|
|
31693
|
-
}>;
|
|
31694
31687
|
createdAt: z.ZodString;
|
|
31695
31688
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31696
31689
|
type: z.ZodEnum<{
|
|
@@ -31701,13 +31694,20 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31701
31694
|
name: z.ZodString;
|
|
31702
31695
|
hash: z.ZodString;
|
|
31703
31696
|
}, z.core.$strip>>>;
|
|
31697
|
+
status: z.ZodEnum<{
|
|
31698
|
+
pending: "pending";
|
|
31699
|
+
failed: "failed";
|
|
31700
|
+
running: "running";
|
|
31701
|
+
completed: "completed";
|
|
31702
|
+
cancelled: "cancelled";
|
|
31703
|
+
}>;
|
|
31704
31704
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31705
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31706
31705
|
scheduledTriggerId: z.ZodString;
|
|
31707
31706
|
scheduledFor: z.ZodString;
|
|
31708
31707
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
31709
31708
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
31710
31709
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31710
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31711
31711
|
attemptNumber: z.ZodInt;
|
|
31712
31712
|
idempotencyKey: z.ZodString;
|
|
31713
31713
|
}, z.core.$strip>;
|
|
@@ -31715,13 +31715,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31715
31715
|
declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
31716
31716
|
data: z.ZodArray<z.ZodObject<{
|
|
31717
31717
|
id: z.ZodString;
|
|
31718
|
-
status: z.ZodEnum<{
|
|
31719
|
-
pending: "pending";
|
|
31720
|
-
failed: "failed";
|
|
31721
|
-
running: "running";
|
|
31722
|
-
completed: "completed";
|
|
31723
|
-
cancelled: "cancelled";
|
|
31724
|
-
}>;
|
|
31725
31718
|
createdAt: z.ZodString;
|
|
31726
31719
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31727
31720
|
type: z.ZodEnum<{
|
|
@@ -31732,13 +31725,20 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31732
31725
|
name: z.ZodString;
|
|
31733
31726
|
hash: z.ZodString;
|
|
31734
31727
|
}, z.core.$strip>>>;
|
|
31728
|
+
status: z.ZodEnum<{
|
|
31729
|
+
pending: "pending";
|
|
31730
|
+
failed: "failed";
|
|
31731
|
+
running: "running";
|
|
31732
|
+
completed: "completed";
|
|
31733
|
+
cancelled: "cancelled";
|
|
31734
|
+
}>;
|
|
31735
31735
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31736
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31737
31736
|
scheduledTriggerId: z.ZodString;
|
|
31738
31737
|
scheduledFor: z.ZodString;
|
|
31739
31738
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
31740
31739
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
31741
31740
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31741
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31742
31742
|
attemptNumber: z.ZodInt;
|
|
31743
31743
|
idempotencyKey: z.ZodString;
|
|
31744
31744
|
}, z.core.$strip>>;
|
|
@@ -31752,16 +31752,16 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31752
31752
|
declare const SubAgentDataComponentResponse: z.ZodObject<{
|
|
31753
31753
|
data: z.ZodObject<{
|
|
31754
31754
|
id: z.ZodString;
|
|
31755
|
-
subAgentId: z.ZodString;
|
|
31756
31755
|
createdAt: z.ZodString;
|
|
31756
|
+
subAgentId: z.ZodString;
|
|
31757
31757
|
dataComponentId: z.ZodString;
|
|
31758
31758
|
}, z.core.$strip>;
|
|
31759
31759
|
}, z.core.$strip>;
|
|
31760
31760
|
declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
31761
31761
|
data: z.ZodObject<{
|
|
31762
31762
|
id: z.ZodString;
|
|
31763
|
-
subAgentId: z.ZodString;
|
|
31764
31763
|
createdAt: z.ZodString;
|
|
31764
|
+
subAgentId: z.ZodString;
|
|
31765
31765
|
artifactComponentId: z.ZodString;
|
|
31766
31766
|
}, z.core.$strip>;
|
|
31767
31767
|
}, z.core.$strip>;
|
|
@@ -31804,9 +31804,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31804
31804
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31805
31805
|
id: z.ZodString;
|
|
31806
31806
|
name: z.ZodString;
|
|
31807
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31808
31807
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31809
31808
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31809
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31810
31810
|
models: z.ZodOptional<z.ZodObject<{
|
|
31811
31811
|
base: z.ZodOptional<z.ZodObject<{
|
|
31812
31812
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31919,15 +31919,14 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31919
31919
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31920
31920
|
id: z.ZodString;
|
|
31921
31921
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31922
|
-
executeCode: z.ZodString;
|
|
31923
31922
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31923
|
+
executeCode: z.ZodString;
|
|
31924
31924
|
}, z.core.$strip>>>;
|
|
31925
31925
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31926
31926
|
id: z.ZodOptional<z.ZodString>;
|
|
31927
31927
|
name: z.ZodString;
|
|
31928
31928
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31929
31929
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31930
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31931
31930
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31932
31931
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31933
31932
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31936,6 +31935,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31936
31935
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31937
31936
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31938
31937
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31938
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31939
31939
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31940
31940
|
}, z.core.$strip>>>;
|
|
31941
31941
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -32030,8 +32030,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32030
32030
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32031
32031
|
id: z.ZodString;
|
|
32032
32032
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32033
|
-
executeCode: z.ZodString;
|
|
32034
32033
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32034
|
+
executeCode: z.ZodString;
|
|
32035
32035
|
}, z.core.$strip>>>;
|
|
32036
32036
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
32037
32037
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -32140,11 +32140,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32140
32140
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32141
32141
|
id: z.ZodString;
|
|
32142
32142
|
name: z.ZodString;
|
|
32143
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32144
32143
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32144
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32145
32145
|
credentialStoreId: z.ZodString;
|
|
32146
32146
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32147
|
-
|
|
32147
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32148
32148
|
type: z.ZodEnum<{
|
|
32149
32149
|
readonly memory: "memory";
|
|
32150
32150
|
readonly keychain: "keychain";
|
|
@@ -32163,9 +32163,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32163
32163
|
data: z.ZodObject<{
|
|
32164
32164
|
id: z.ZodString;
|
|
32165
32165
|
name: z.ZodString;
|
|
32166
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32167
32166
|
createdAt: z.ZodString;
|
|
32168
32167
|
updatedAt: z.ZodString;
|
|
32168
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32169
32169
|
models: z.ZodNullable<z.ZodObject<{
|
|
32170
32170
|
base: z.ZodObject<{
|
|
32171
32171
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -32193,18 +32193,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32193
32193
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32194
32194
|
id: z.ZodString;
|
|
32195
32195
|
name: z.ZodString;
|
|
32196
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32197
32196
|
createdAt: z.ZodString;
|
|
32198
32197
|
updatedAt: z.ZodString;
|
|
32198
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32199
32199
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32200
32200
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32201
32201
|
executionMode: z.ZodString;
|
|
32202
32202
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32203
32203
|
id: z.ZodString;
|
|
32204
32204
|
name: z.ZodString;
|
|
32205
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32206
32205
|
createdAt: z.ZodString;
|
|
32207
32206
|
updatedAt: z.ZodString;
|
|
32207
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32208
32208
|
models: z.ZodNullable<z.ZodType<{
|
|
32209
32209
|
base?: {
|
|
32210
32210
|
model?: string | undefined;
|
|
@@ -32319,9 +32319,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32319
32319
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32320
32320
|
id: z.ZodString;
|
|
32321
32321
|
name: z.ZodString;
|
|
32322
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32323
32322
|
createdAt: z.ZodString;
|
|
32324
32323
|
updatedAt: z.ZodString;
|
|
32324
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32325
32325
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32326
32326
|
config: z.ZodType<{
|
|
32327
32327
|
type: "mcp";
|
|
@@ -32346,9 +32346,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32346
32346
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32347
32347
|
id: z.ZodString;
|
|
32348
32348
|
name: z.ZodString;
|
|
32349
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32350
32349
|
createdAt: z.ZodString;
|
|
32351
32350
|
updatedAt: z.ZodString;
|
|
32351
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32352
32352
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32353
32353
|
baseUrl: z.ZodString;
|
|
32354
32354
|
}, z.core.$strip>>>;
|
|
@@ -32360,10 +32360,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32360
32360
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32361
32361
|
id: z.ZodString;
|
|
32362
32362
|
name: z.ZodString;
|
|
32363
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32364
|
-
agentId: z.ZodString;
|
|
32365
32363
|
createdAt: z.ZodString;
|
|
32366
32364
|
updatedAt: z.ZodString;
|
|
32365
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32366
|
+
agentId: z.ZodString;
|
|
32367
32367
|
functionId: z.ZodString;
|
|
32368
32368
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32369
32369
|
}, z.core.$strip>>>;
|
|
@@ -32372,8 +32372,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32372
32372
|
createdAt: z.ZodString;
|
|
32373
32373
|
updatedAt: z.ZodString;
|
|
32374
32374
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32375
|
-
executeCode: z.ZodString;
|
|
32376
32375
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32376
|
+
executeCode: z.ZodString;
|
|
32377
32377
|
}, z.core.$strip>>>;
|
|
32378
32378
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
32379
32379
|
id: z.ZodString;
|
|
@@ -32425,9 +32425,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32425
32425
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32426
32426
|
id: z.ZodString;
|
|
32427
32427
|
name: z.ZodString;
|
|
32428
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32429
32428
|
createdAt: z.ZodString;
|
|
32430
32429
|
updatedAt: z.ZodString;
|
|
32430
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32431
32431
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32432
32432
|
config: z.ZodType<{
|
|
32433
32433
|
type: "mcp";
|
|
@@ -32452,10 +32452,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32452
32452
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32453
32453
|
id: z.ZodString;
|
|
32454
32454
|
name: z.ZodString;
|
|
32455
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32456
|
-
agentId: z.ZodString;
|
|
32457
32455
|
createdAt: z.ZodString;
|
|
32458
32456
|
updatedAt: z.ZodString;
|
|
32457
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32458
|
+
agentId: z.ZodString;
|
|
32459
32459
|
functionId: z.ZodString;
|
|
32460
32460
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32461
32461
|
}, z.core.$strip>>>;
|
|
@@ -32464,15 +32464,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32464
32464
|
createdAt: z.ZodString;
|
|
32465
32465
|
updatedAt: z.ZodString;
|
|
32466
32466
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32467
|
-
executeCode: z.ZodString;
|
|
32468
32467
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32468
|
+
executeCode: z.ZodString;
|
|
32469
32469
|
}, z.core.$strip>>>;
|
|
32470
32470
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32471
32471
|
id: z.ZodString;
|
|
32472
32472
|
name: z.ZodString;
|
|
32473
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32474
32473
|
createdAt: z.ZodString;
|
|
32475
32474
|
updatedAt: z.ZodString;
|
|
32475
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32476
32476
|
props: z.ZodType<{
|
|
32477
32477
|
[x: string]: unknown;
|
|
32478
32478
|
type: "object";
|
|
@@ -32519,9 +32519,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32519
32519
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32520
32520
|
id: z.ZodString;
|
|
32521
32521
|
name: z.ZodString;
|
|
32522
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32523
32522
|
createdAt: z.ZodString;
|
|
32524
32523
|
updatedAt: z.ZodString;
|
|
32524
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32525
32525
|
props: z.ZodNullable<z.ZodType<{
|
|
32526
32526
|
[x: string]: unknown;
|
|
32527
32527
|
type: "object";
|
|
@@ -32568,9 +32568,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32568
32568
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32569
32569
|
id: z.ZodString;
|
|
32570
32570
|
name: z.ZodString;
|
|
32571
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32572
32571
|
createdAt: z.ZodString;
|
|
32573
32572
|
updatedAt: z.ZodString;
|
|
32573
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32574
32574
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32575
32575
|
baseUrl: z.ZodString;
|
|
32576
32576
|
}, z.core.$strip>>>;
|
|
@@ -32592,13 +32592,13 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32592
32592
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32593
32593
|
id: z.ZodString;
|
|
32594
32594
|
name: z.ZodString;
|
|
32595
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32596
32595
|
createdAt: z.ZodString;
|
|
32597
32596
|
updatedAt: z.ZodString;
|
|
32598
32597
|
userId: z.ZodNullable<z.ZodString>;
|
|
32598
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32599
32599
|
credentialStoreId: z.ZodString;
|
|
32600
32600
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32601
|
-
|
|
32601
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32602
32602
|
type: z.ZodEnum<{
|
|
32603
32603
|
readonly memory: "memory";
|
|
32604
32604
|
readonly keychain: "keychain";
|
|
@@ -33190,9 +33190,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33190
33190
|
data: z.ZodObject<{
|
|
33191
33191
|
id: z.ZodString;
|
|
33192
33192
|
name: z.ZodString;
|
|
33193
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33194
33193
|
createdAt: z.ZodString;
|
|
33195
33194
|
updatedAt: z.ZodString;
|
|
33195
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33196
33196
|
models: z.ZodNullable<z.ZodObject<{
|
|
33197
33197
|
base: z.ZodObject<{
|
|
33198
33198
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33220,9 +33220,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33220
33220
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33221
33221
|
id: z.ZodString;
|
|
33222
33222
|
name: z.ZodString;
|
|
33223
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33224
33223
|
createdAt: z.ZodString;
|
|
33225
33224
|
updatedAt: z.ZodString;
|
|
33225
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33226
33226
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33227
33227
|
config: z.ZodType<{
|
|
33228
33228
|
type: "mcp";
|
|
@@ -33247,10 +33247,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33247
33247
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33248
33248
|
id: z.ZodString;
|
|
33249
33249
|
name: z.ZodString;
|
|
33250
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33251
|
-
agentId: z.ZodString;
|
|
33252
33250
|
createdAt: z.ZodString;
|
|
33253
33251
|
updatedAt: z.ZodString;
|
|
33252
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33253
|
+
agentId: z.ZodString;
|
|
33254
33254
|
functionId: z.ZodString;
|
|
33255
33255
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33256
33256
|
}, z.core.$strip>>>;
|
|
@@ -33259,15 +33259,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33259
33259
|
createdAt: z.ZodString;
|
|
33260
33260
|
updatedAt: z.ZodString;
|
|
33261
33261
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33262
|
-
executeCode: z.ZodString;
|
|
33263
33262
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33263
|
+
executeCode: z.ZodString;
|
|
33264
33264
|
}, z.core.$strip>>>;
|
|
33265
33265
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33266
33266
|
id: z.ZodString;
|
|
33267
33267
|
name: z.ZodString;
|
|
33268
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33269
33268
|
createdAt: z.ZodString;
|
|
33270
33269
|
updatedAt: z.ZodString;
|
|
33270
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33271
33271
|
props: z.ZodType<{
|
|
33272
33272
|
[x: string]: unknown;
|
|
33273
33273
|
type: "object";
|
|
@@ -33314,9 +33314,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33314
33314
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33315
33315
|
id: z.ZodString;
|
|
33316
33316
|
name: z.ZodString;
|
|
33317
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33318
33317
|
createdAt: z.ZodString;
|
|
33319
33318
|
updatedAt: z.ZodString;
|
|
33319
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33320
33320
|
props: z.ZodNullable<z.ZodType<{
|
|
33321
33321
|
[x: string]: unknown;
|
|
33322
33322
|
type: "object";
|
|
@@ -33363,9 +33363,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33363
33363
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33364
33364
|
id: z.ZodString;
|
|
33365
33365
|
name: z.ZodString;
|
|
33366
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33367
33366
|
createdAt: z.ZodString;
|
|
33368
33367
|
updatedAt: z.ZodString;
|
|
33368
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33369
33369
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33370
33370
|
baseUrl: z.ZodString;
|
|
33371
33371
|
}, z.core.$strip>>>;
|
|
@@ -33387,13 +33387,13 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33387
33387
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33388
33388
|
id: z.ZodString;
|
|
33389
33389
|
name: z.ZodString;
|
|
33390
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
33391
33390
|
createdAt: z.ZodString;
|
|
33392
33391
|
updatedAt: z.ZodString;
|
|
33393
33392
|
userId: z.ZodNullable<z.ZodString>;
|
|
33393
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
33394
33394
|
credentialStoreId: z.ZodString;
|
|
33395
33395
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33396
|
-
|
|
33396
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
33397
33397
|
type: z.ZodEnum<{
|
|
33398
33398
|
readonly memory: "memory";
|
|
33399
33399
|
readonly keychain: "keychain";
|
|
@@ -33979,18 +33979,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33979
33979
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33980
33980
|
id: z.ZodString;
|
|
33981
33981
|
name: z.ZodString;
|
|
33982
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33983
33982
|
createdAt: z.ZodString;
|
|
33984
33983
|
updatedAt: z.ZodString;
|
|
33984
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33985
33985
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33986
33986
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33987
33987
|
executionMode: z.ZodString;
|
|
33988
33988
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33989
33989
|
id: z.ZodString;
|
|
33990
33990
|
name: z.ZodString;
|
|
33991
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33992
33991
|
createdAt: z.ZodString;
|
|
33993
33992
|
updatedAt: z.ZodString;
|
|
33993
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33994
33994
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33995
33995
|
config: z.ZodType<{
|
|
33996
33996
|
type: "mcp";
|
|
@@ -34015,9 +34015,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34015
34015
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34016
34016
|
id: z.ZodString;
|
|
34017
34017
|
name: z.ZodString;
|
|
34018
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34019
34018
|
createdAt: z.ZodString;
|
|
34020
34019
|
updatedAt: z.ZodString;
|
|
34020
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34021
34021
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34022
34022
|
baseUrl: z.ZodString;
|
|
34023
34023
|
}, z.core.$strip>>>;
|
|
@@ -34029,10 +34029,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34029
34029
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34030
34030
|
id: z.ZodString;
|
|
34031
34031
|
name: z.ZodString;
|
|
34032
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34033
|
-
agentId: z.ZodString;
|
|
34034
34032
|
createdAt: z.ZodString;
|
|
34035
34033
|
updatedAt: z.ZodString;
|
|
34034
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34035
|
+
agentId: z.ZodString;
|
|
34036
34036
|
functionId: z.ZodString;
|
|
34037
34037
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34038
34038
|
}, z.core.$strip>>>;
|
|
@@ -34041,8 +34041,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34041
34041
|
createdAt: z.ZodString;
|
|
34042
34042
|
updatedAt: z.ZodString;
|
|
34043
34043
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34044
|
-
executeCode: z.ZodString;
|
|
34045
34044
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34045
|
+
executeCode: z.ZodString;
|
|
34046
34046
|
}, z.core.$strip>>>;
|
|
34047
34047
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34048
34048
|
id: z.ZodString;
|
|
@@ -34093,9 +34093,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34093
34093
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34094
34094
|
id: z.ZodString;
|
|
34095
34095
|
name: z.ZodString;
|
|
34096
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34097
34096
|
createdAt: z.ZodString;
|
|
34098
34097
|
updatedAt: z.ZodString;
|
|
34098
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34099
34099
|
models: z.ZodNullable<z.ZodType<{
|
|
34100
34100
|
base?: {
|
|
34101
34101
|
model?: string | undefined;
|
|
@@ -34230,9 +34230,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34230
34230
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34231
34231
|
id: z.ZodString;
|
|
34232
34232
|
name: z.ZodString;
|
|
34233
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34234
34233
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
34235
34234
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
34235
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34236
34236
|
models: z.ZodOptional<z.ZodObject<{
|
|
34237
34237
|
base: z.ZodOptional<z.ZodObject<{
|
|
34238
34238
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -34345,15 +34345,14 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34345
34345
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34346
34346
|
id: z.ZodString;
|
|
34347
34347
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
34348
|
-
executeCode: z.ZodString;
|
|
34349
34348
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34349
|
+
executeCode: z.ZodString;
|
|
34350
34350
|
}, z.core.$strip>>>;
|
|
34351
34351
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34352
34352
|
id: z.ZodOptional<z.ZodString>;
|
|
34353
34353
|
name: z.ZodString;
|
|
34354
34354
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34355
34355
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
34356
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34357
34356
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
34358
34357
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
34359
34358
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34362,6 +34361,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34362
34361
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
34363
34362
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34364
34363
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
34364
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34365
34365
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
34366
34366
|
}, z.core.$strip>>>;
|
|
34367
34367
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -34414,18 +34414,18 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34414
34414
|
data: z.ZodObject<{
|
|
34415
34415
|
id: z.ZodString;
|
|
34416
34416
|
name: z.ZodString;
|
|
34417
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34418
34417
|
createdAt: z.ZodString;
|
|
34419
34418
|
updatedAt: z.ZodString;
|
|
34419
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34420
34420
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34421
34421
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34422
34422
|
executionMode: z.ZodString;
|
|
34423
34423
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34424
34424
|
id: z.ZodString;
|
|
34425
34425
|
name: z.ZodString;
|
|
34426
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34427
34426
|
createdAt: z.ZodString;
|
|
34428
34427
|
updatedAt: z.ZodString;
|
|
34428
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34429
34429
|
models: z.ZodNullable<z.ZodType<{
|
|
34430
34430
|
base?: {
|
|
34431
34431
|
model?: string | undefined;
|
|
@@ -34540,9 +34540,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34540
34540
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34541
34541
|
id: z.ZodString;
|
|
34542
34542
|
name: z.ZodString;
|
|
34543
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34544
34543
|
createdAt: z.ZodString;
|
|
34545
34544
|
updatedAt: z.ZodString;
|
|
34545
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34546
34546
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34547
34547
|
config: z.ZodType<{
|
|
34548
34548
|
type: "mcp";
|
|
@@ -34567,9 +34567,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34567
34567
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34568
34568
|
id: z.ZodString;
|
|
34569
34569
|
name: z.ZodString;
|
|
34570
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34571
34570
|
createdAt: z.ZodString;
|
|
34572
34571
|
updatedAt: z.ZodString;
|
|
34572
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34573
34573
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34574
34574
|
baseUrl: z.ZodString;
|
|
34575
34575
|
}, z.core.$strip>>>;
|
|
@@ -34581,10 +34581,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34581
34581
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34582
34582
|
id: z.ZodString;
|
|
34583
34583
|
name: z.ZodString;
|
|
34584
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34585
|
-
agentId: z.ZodString;
|
|
34586
34584
|
createdAt: z.ZodString;
|
|
34587
34585
|
updatedAt: z.ZodString;
|
|
34586
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34587
|
+
agentId: z.ZodString;
|
|
34588
34588
|
functionId: z.ZodString;
|
|
34589
34589
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34590
34590
|
}, z.core.$strip>>>;
|
|
@@ -34593,8 +34593,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34593
34593
|
createdAt: z.ZodString;
|
|
34594
34594
|
updatedAt: z.ZodString;
|
|
34595
34595
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34596
|
-
executeCode: z.ZodString;
|
|
34597
34596
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34597
|
+
executeCode: z.ZodString;
|
|
34598
34598
|
}, z.core.$strip>>>;
|
|
34599
34599
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34600
34600
|
id: z.ZodString;
|
|
@@ -34665,11 +34665,11 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
34665
34665
|
}, z.core.$strip>;
|
|
34666
34666
|
declare const McpToolResponse: z.ZodObject<{
|
|
34667
34667
|
data: z.ZodObject<{
|
|
34668
|
-
tenantId: z.ZodString;
|
|
34669
|
-
projectId: z.ZodString;
|
|
34670
34668
|
id: z.ZodString;
|
|
34671
34669
|
name: z.ZodString;
|
|
34672
34670
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34671
|
+
projectId: z.ZodString;
|
|
34672
|
+
tenantId: z.ZodString;
|
|
34673
34673
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34674
34674
|
config: z.ZodObject<{
|
|
34675
34675
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -34726,11 +34726,11 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34726
34726
|
}, z.core.$strip>;
|
|
34727
34727
|
declare const McpToolListResponse: z.ZodObject<{
|
|
34728
34728
|
data: z.ZodArray<z.ZodObject<{
|
|
34729
|
-
tenantId: z.ZodString;
|
|
34730
|
-
projectId: z.ZodString;
|
|
34731
34729
|
id: z.ZodString;
|
|
34732
34730
|
name: z.ZodString;
|
|
34733
34731
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34732
|
+
projectId: z.ZodString;
|
|
34733
|
+
tenantId: z.ZodString;
|
|
34734
34734
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34735
34735
|
config: z.ZodObject<{
|
|
34736
34736
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -34794,20 +34794,20 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
34794
34794
|
declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
34795
34795
|
data: z.ZodObject<{
|
|
34796
34796
|
id: z.ZodString;
|
|
34797
|
-
subAgentId: z.ZodString;
|
|
34798
34797
|
createdAt: z.ZodString;
|
|
34799
34798
|
updatedAt: z.ZodString;
|
|
34800
34799
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34800
|
+
subAgentId: z.ZodString;
|
|
34801
34801
|
targetAgentId: z.ZodString;
|
|
34802
34802
|
}, z.core.$strip>;
|
|
34803
34803
|
}, z.core.$strip>;
|
|
34804
34804
|
declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
34805
34805
|
data: z.ZodArray<z.ZodObject<{
|
|
34806
34806
|
id: z.ZodString;
|
|
34807
|
-
subAgentId: z.ZodString;
|
|
34808
34807
|
createdAt: z.ZodString;
|
|
34809
34808
|
updatedAt: z.ZodString;
|
|
34810
34809
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34810
|
+
subAgentId: z.ZodString;
|
|
34811
34811
|
targetAgentId: z.ZodString;
|
|
34812
34812
|
}, z.core.$strip>>;
|
|
34813
34813
|
pagination: z.ZodObject<{
|
|
@@ -34820,20 +34820,20 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
34820
34820
|
declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
34821
34821
|
data: z.ZodObject<{
|
|
34822
34822
|
id: z.ZodString;
|
|
34823
|
-
subAgentId: z.ZodString;
|
|
34824
34823
|
createdAt: z.ZodString;
|
|
34825
34824
|
updatedAt: z.ZodString;
|
|
34826
34825
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34826
|
+
subAgentId: z.ZodString;
|
|
34827
34827
|
externalAgentId: z.ZodString;
|
|
34828
34828
|
}, z.core.$strip>;
|
|
34829
34829
|
}, z.core.$strip>;
|
|
34830
34830
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
34831
34831
|
data: z.ZodArray<z.ZodObject<{
|
|
34832
34832
|
id: z.ZodString;
|
|
34833
|
-
subAgentId: z.ZodString;
|
|
34834
34833
|
createdAt: z.ZodString;
|
|
34835
34834
|
updatedAt: z.ZodString;
|
|
34836
34835
|
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34836
|
+
subAgentId: z.ZodString;
|
|
34837
34837
|
externalAgentId: z.ZodString;
|
|
34838
34838
|
}, z.core.$strip>>;
|
|
34839
34839
|
pagination: z.ZodObject<{
|
|
@@ -34847,9 +34847,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
34847
34847
|
data: z.ZodArray<z.ZodObject<{
|
|
34848
34848
|
id: z.ZodString;
|
|
34849
34849
|
name: z.ZodString;
|
|
34850
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34851
34850
|
createdAt: z.ZodString;
|
|
34852
34851
|
updatedAt: z.ZodString;
|
|
34852
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34853
34853
|
props: z.ZodType<{
|
|
34854
34854
|
[x: string]: unknown;
|
|
34855
34855
|
type: "object";
|
|
@@ -34898,9 +34898,9 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
34898
34898
|
data: z.ZodArray<z.ZodObject<{
|
|
34899
34899
|
id: z.ZodString;
|
|
34900
34900
|
name: z.ZodString;
|
|
34901
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34902
34901
|
createdAt: z.ZodString;
|
|
34903
34902
|
updatedAt: z.ZodString;
|
|
34903
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34904
34904
|
props: z.ZodNullable<z.ZodType<{
|
|
34905
34905
|
[x: string]: unknown;
|
|
34906
34906
|
type: "object";
|
|
@@ -35252,8 +35252,8 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
35252
35252
|
}>;
|
|
35253
35253
|
}, undefined>, undefined>;
|
|
35254
35254
|
declare const ProjectMetadataInsertSchema: z.ZodObject<{
|
|
35255
|
-
tenantId: z.ZodString;
|
|
35256
35255
|
id: z.ZodString;
|
|
35256
|
+
tenantId: z.ZodString;
|
|
35257
35257
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35258
35258
|
mainBranchName: z.ZodString;
|
|
35259
35259
|
}, {
|
|
@@ -35267,8 +35267,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
35267
35267
|
disconnected: "disconnected";
|
|
35268
35268
|
}>;
|
|
35269
35269
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
35270
|
-
User: "User";
|
|
35271
35270
|
Organization: "Organization";
|
|
35271
|
+
User: "User";
|
|
35272
35272
|
}>;
|
|
35273
35273
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
35274
35274
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
@@ -35363,7 +35363,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35363
35363
|
tableName: "work_app_github_installations";
|
|
35364
35364
|
dataType: "string";
|
|
35365
35365
|
columnType: "PgVarchar";
|
|
35366
|
-
data: "
|
|
35366
|
+
data: "Organization" | "User";
|
|
35367
35367
|
driverParam: string;
|
|
35368
35368
|
notNull: true;
|
|
35369
35369
|
hasDefault: false;
|
|
@@ -35376,7 +35376,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35376
35376
|
generated: undefined;
|
|
35377
35377
|
}, {}, {
|
|
35378
35378
|
length: 20;
|
|
35379
|
-
$type: "
|
|
35379
|
+
$type: "Organization" | "User";
|
|
35380
35380
|
}>;
|
|
35381
35381
|
status: drizzle_orm_pg_core297.PgColumn<{
|
|
35382
35382
|
name: "status";
|
|
@@ -35529,7 +35529,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35529
35529
|
tableName: "work_app_github_installations";
|
|
35530
35530
|
dataType: "string";
|
|
35531
35531
|
columnType: "PgVarchar";
|
|
35532
|
-
data: "
|
|
35532
|
+
data: "Organization" | "User";
|
|
35533
35533
|
driverParam: string;
|
|
35534
35534
|
notNull: true;
|
|
35535
35535
|
hasDefault: false;
|
|
@@ -35542,7 +35542,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35542
35542
|
generated: undefined;
|
|
35543
35543
|
}, {}, {
|
|
35544
35544
|
length: 20;
|
|
35545
|
-
$type: "
|
|
35545
|
+
$type: "Organization" | "User";
|
|
35546
35546
|
}>;
|
|
35547
35547
|
status: drizzle_orm_pg_core297.PgColumn<{
|
|
35548
35548
|
name: "status";
|
|
@@ -35604,14 +35604,14 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35604
35604
|
}>;
|
|
35605
35605
|
}, undefined>, undefined>;
|
|
35606
35606
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
35607
|
-
tenantId: z.ZodString;
|
|
35608
35607
|
id: z.ZodString;
|
|
35609
35608
|
accountId: z.ZodString;
|
|
35609
|
+
tenantId: z.ZodString;
|
|
35610
35610
|
installationId: z.ZodString;
|
|
35611
35611
|
accountLogin: z.ZodString;
|
|
35612
35612
|
accountType: z.ZodEnum<{
|
|
35613
|
-
User: "User";
|
|
35614
35613
|
Organization: "Organization";
|
|
35614
|
+
User: "User";
|
|
35615
35615
|
}>;
|
|
35616
35616
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35617
35617
|
pending: "pending";
|
|
@@ -35625,28 +35625,28 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
35625
35625
|
}>;
|
|
35626
35626
|
declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
35627
35627
|
id: z.ZodString;
|
|
35628
|
-
status: z.ZodString;
|
|
35629
35628
|
createdAt: z.ZodString;
|
|
35630
35629
|
updatedAt: z.ZodString;
|
|
35631
35630
|
accountId: z.ZodString;
|
|
35631
|
+
status: z.ZodString;
|
|
35632
35632
|
installationId: z.ZodString;
|
|
35633
35633
|
accountLogin: z.ZodString;
|
|
35634
35634
|
accountType: z.ZodString;
|
|
35635
35635
|
}, z.core.$strip>;
|
|
35636
35636
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
35637
|
-
|
|
35637
|
+
accountId: z.ZodString;
|
|
35638
35638
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35639
35639
|
pending: "pending";
|
|
35640
35640
|
active: "active";
|
|
35641
35641
|
suspended: "suspended";
|
|
35642
35642
|
disconnected: "disconnected";
|
|
35643
35643
|
}>>>;
|
|
35644
|
-
|
|
35644
|
+
tenantId: z.ZodString;
|
|
35645
35645
|
installationId: z.ZodString;
|
|
35646
35646
|
accountLogin: z.ZodString;
|
|
35647
35647
|
accountType: z.ZodEnum<{
|
|
35648
|
-
User: "User";
|
|
35649
35648
|
Organization: "Organization";
|
|
35649
|
+
User: "User";
|
|
35650
35650
|
}>;
|
|
35651
35651
|
}, z.core.$strip>;
|
|
35652
35652
|
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -37823,16 +37823,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
37823
37823
|
}, {}, {}>;
|
|
37824
37824
|
}, undefined>, undefined>;
|
|
37825
37825
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
37826
|
-
projectId: z.ZodString;
|
|
37827
37826
|
agentId: z.ZodString;
|
|
37827
|
+
projectId: z.ZodString;
|
|
37828
37828
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37829
37829
|
}, {
|
|
37830
37830
|
out: {};
|
|
37831
37831
|
in: {};
|
|
37832
37832
|
}>;
|
|
37833
37833
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
37834
|
-
projectId: z.ZodString;
|
|
37835
37834
|
agentId: z.ZodString;
|
|
37835
|
+
projectId: z.ZodString;
|
|
37836
37836
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37837
37837
|
agentName: z.ZodString;
|
|
37838
37838
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -37848,8 +37848,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
37848
37848
|
all: "all";
|
|
37849
37849
|
}>;
|
|
37850
37850
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
37851
|
-
tenantId: z.ZodString;
|
|
37852
37851
|
projectId: z.ZodString;
|
|
37852
|
+
tenantId: z.ZodString;
|
|
37853
37853
|
toolId: z.ZodString;
|
|
37854
37854
|
channelAccessMode: z.ZodEnum<{
|
|
37855
37855
|
selected: "selected";
|
|
@@ -38138,13 +38138,13 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
38138
38138
|
in: {};
|
|
38139
38139
|
}>;
|
|
38140
38140
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
38141
|
-
tenantId: z.ZodString;
|
|
38142
|
-
projectId: z.ZodString;
|
|
38143
38141
|
id: z.ZodString;
|
|
38144
38142
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
38145
38143
|
agentId: z.ZodString;
|
|
38146
|
-
|
|
38144
|
+
projectId: z.ZodString;
|
|
38145
|
+
tenantId: z.ZodString;
|
|
38147
38146
|
conversationId: z.ZodString;
|
|
38147
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38148
38148
|
status: z.ZodDefault<z.ZodEnum<{
|
|
38149
38149
|
failed: "failed";
|
|
38150
38150
|
running: "running";
|
|
@@ -38156,13 +38156,13 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
38156
38156
|
in: {};
|
|
38157
38157
|
}>;
|
|
38158
38158
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
38159
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
38160
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
38161
38159
|
id: z.ZodOptional<z.ZodString>;
|
|
38162
38160
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
38163
38161
|
agentId: z.ZodOptional<z.ZodString>;
|
|
38164
|
-
|
|
38162
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
38163
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
38165
38164
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
38165
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
38166
38166
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
38167
38167
|
failed: "failed";
|
|
38168
38168
|
running: "running";
|