@inkeep/agents-core 0.0.0-dev-20260409021932 → 0.0.0-dev-20260409191739
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +108 -108
- package/dist/auth/auth-validation-schemas.d.ts +137 -137
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +2 -2
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +9 -9
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +12 -12
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +449 -449
- package/dist/db/runtime/runtime-schema.d.ts +403 -403
- package/dist/utils/signature-validation.d.ts +2 -2
- package/dist/utils/signature-validation.js +2 -2
- package/dist/validation/schemas/skills.d.ts +30 -30
- package/dist/validation/schemas.d.ts +374 -374
- package/package.json +1 -1
|
@@ -739,8 +739,8 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
739
739
|
in: {};
|
|
740
740
|
}>;
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
|
-
name: z.ZodString;
|
|
743
742
|
id: z.ZodString;
|
|
743
|
+
name: z.ZodString;
|
|
744
744
|
createdAt: z.ZodString;
|
|
745
745
|
updatedAt: z.ZodString;
|
|
746
746
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -834,8 +834,8 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
834
834
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
835
835
|
}, z.core.$strip>;
|
|
836
836
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
837
|
-
name: z.ZodString;
|
|
838
837
|
id: z.ZodString;
|
|
838
|
+
name: z.ZodString;
|
|
839
839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
840
840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
841
841
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -872,8 +872,8 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
872
872
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
873
873
|
}, z.core.$strip>;
|
|
874
874
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
875
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
875
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
877
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
878
878
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
879
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "models" | "stopWhen" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "executionMode" | "projectId">, undefined>, undefined>;
|
|
2668
2668
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2669
2669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2670
2670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2825,8 +2825,8 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2825
2825
|
in: {};
|
|
2826
2826
|
}>;
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
|
-
name: z.ZodString;
|
|
2829
2828
|
id: z.ZodString;
|
|
2829
|
+
name: z.ZodString;
|
|
2830
2830
|
createdAt: z.ZodString;
|
|
2831
2831
|
updatedAt: z.ZodString;
|
|
2832
2832
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -2979,8 +2979,8 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2979
2979
|
executionMode: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
|
-
name: z.ZodString;
|
|
2983
2982
|
id: z.ZodString;
|
|
2983
|
+
name: z.ZodString;
|
|
2984
2984
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2985
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2986
2986
|
base?: {
|
|
@@ -3345,9 +3345,9 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3345
3345
|
*/
|
|
3346
3346
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3347
3347
|
source: z.ZodEnum<{
|
|
3348
|
-
body: "body";
|
|
3349
3348
|
query: "query";
|
|
3350
3349
|
header: "header";
|
|
3350
|
+
body: "body";
|
|
3351
3351
|
}>;
|
|
3352
3352
|
key: z.ZodString;
|
|
3353
3353
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3375,9 +3375,9 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3375
3375
|
*/
|
|
3376
3376
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3377
3377
|
source: z.ZodEnum<{
|
|
3378
|
-
body: "body";
|
|
3379
|
-
header: "header";
|
|
3380
3378
|
literal: "literal";
|
|
3379
|
+
header: "header";
|
|
3380
|
+
body: "body";
|
|
3381
3381
|
}>;
|
|
3382
3382
|
key: z.ZodOptional<z.ZodString>;
|
|
3383
3383
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3485,9 +3485,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3485
3485
|
}>;
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
3488
|
-
body: "body";
|
|
3489
3488
|
query: "query";
|
|
3490
3489
|
header: "header";
|
|
3490
|
+
body: "body";
|
|
3491
3491
|
}>;
|
|
3492
3492
|
key: z.ZodString;
|
|
3493
3493
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3495,9 +3495,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3495
3495
|
}, z.core.$strip>;
|
|
3496
3496
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3497
3497
|
source: z.ZodEnum<{
|
|
3498
|
-
body: "body";
|
|
3499
|
-
header: "header";
|
|
3500
3498
|
literal: "literal";
|
|
3499
|
+
header: "header";
|
|
3500
|
+
body: "body";
|
|
3501
3501
|
}>;
|
|
3502
3502
|
key: z.ZodOptional<z.ZodString>;
|
|
3503
3503
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3581,9 +3581,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3581
3581
|
}>;
|
|
3582
3582
|
signature: z.ZodObject<{
|
|
3583
3583
|
source: z.ZodEnum<{
|
|
3584
|
-
body: "body";
|
|
3585
3584
|
query: "query";
|
|
3586
3585
|
header: "header";
|
|
3586
|
+
body: "body";
|
|
3587
3587
|
}>;
|
|
3588
3588
|
key: z.ZodString;
|
|
3589
3589
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3591,9 +3591,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3591
3591
|
}, z.core.$strip>;
|
|
3592
3592
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3593
3593
|
source: z.ZodEnum<{
|
|
3594
|
-
body: "body";
|
|
3595
|
-
header: "header";
|
|
3596
3594
|
literal: "literal";
|
|
3595
|
+
header: "header";
|
|
3596
|
+
body: "body";
|
|
3597
3597
|
}>;
|
|
3598
3598
|
key: z.ZodOptional<z.ZodString>;
|
|
3599
3599
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3778,13 +3778,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
3778
3778
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3779
3779
|
encoding: "hex" | "base64";
|
|
3780
3780
|
signature: {
|
|
3781
|
-
source: "
|
|
3781
|
+
source: "query" | "header" | "body";
|
|
3782
3782
|
key: string;
|
|
3783
3783
|
prefix?: string | undefined;
|
|
3784
3784
|
regex?: string | undefined;
|
|
3785
3785
|
};
|
|
3786
3786
|
signedComponents: {
|
|
3787
|
-
source: "
|
|
3787
|
+
source: "literal" | "header" | "body";
|
|
3788
3788
|
required: boolean;
|
|
3789
3789
|
key?: string | undefined;
|
|
3790
3790
|
value?: string | undefined;
|
|
@@ -3815,13 +3815,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
3815
3815
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3816
3816
|
encoding: "hex" | "base64";
|
|
3817
3817
|
signature: {
|
|
3818
|
-
source: "
|
|
3818
|
+
source: "query" | "header" | "body";
|
|
3819
3819
|
key: string;
|
|
3820
3820
|
prefix?: string | undefined;
|
|
3821
3821
|
regex?: string | undefined;
|
|
3822
3822
|
};
|
|
3823
3823
|
signedComponents: {
|
|
3824
|
-
source: "
|
|
3824
|
+
source: "literal" | "header" | "body";
|
|
3825
3825
|
required: boolean;
|
|
3826
3826
|
key?: string | undefined;
|
|
3827
3827
|
value?: string | undefined;
|
|
@@ -4148,13 +4148,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4148
4148
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4149
4149
|
encoding: "hex" | "base64";
|
|
4150
4150
|
signature: {
|
|
4151
|
-
source: "
|
|
4151
|
+
source: "query" | "header" | "body";
|
|
4152
4152
|
key: string;
|
|
4153
4153
|
prefix?: string | undefined;
|
|
4154
4154
|
regex?: string | undefined;
|
|
4155
4155
|
};
|
|
4156
4156
|
signedComponents: {
|
|
4157
|
-
source: "
|
|
4157
|
+
source: "literal" | "header" | "body";
|
|
4158
4158
|
required: boolean;
|
|
4159
4159
|
key?: string | undefined;
|
|
4160
4160
|
value?: string | undefined;
|
|
@@ -4185,13 +4185,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4185
4185
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4186
4186
|
encoding: "hex" | "base64";
|
|
4187
4187
|
signature: {
|
|
4188
|
-
source: "
|
|
4188
|
+
source: "query" | "header" | "body";
|
|
4189
4189
|
key: string;
|
|
4190
4190
|
prefix?: string | undefined;
|
|
4191
4191
|
regex?: string | undefined;
|
|
4192
4192
|
};
|
|
4193
4193
|
signedComponents: {
|
|
4194
|
-
source: "
|
|
4194
|
+
source: "literal" | "header" | "body";
|
|
4195
4195
|
required: boolean;
|
|
4196
4196
|
key?: string | undefined;
|
|
4197
4197
|
value?: string | undefined;
|
|
@@ -4358,7 +4358,7 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4358
4358
|
}, {}, {
|
|
4359
4359
|
length: 256;
|
|
4360
4360
|
}>;
|
|
4361
|
-
}, "
|
|
4361
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "enabled" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "createdBy">, undefined>, undefined>;
|
|
4362
4362
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4363
4363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4364
4364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4382,8 +4382,8 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4382
4382
|
in: {};
|
|
4383
4383
|
}>;
|
|
4384
4384
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4385
|
-
name: z.ZodString;
|
|
4386
4385
|
id: z.ZodString;
|
|
4386
|
+
name: z.ZodString;
|
|
4387
4387
|
createdAt: z.ZodString;
|
|
4388
4388
|
updatedAt: z.ZodString;
|
|
4389
4389
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -4407,9 +4407,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4407
4407
|
}>;
|
|
4408
4408
|
signature: z.ZodObject<{
|
|
4409
4409
|
source: z.ZodEnum<{
|
|
4410
|
-
body: "body";
|
|
4411
4410
|
query: "query";
|
|
4412
4411
|
header: "header";
|
|
4412
|
+
body: "body";
|
|
4413
4413
|
}>;
|
|
4414
4414
|
key: z.ZodString;
|
|
4415
4415
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4417,9 +4417,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4417
4417
|
}, z.core.$strip>;
|
|
4418
4418
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4419
4419
|
source: z.ZodEnum<{
|
|
4420
|
-
body: "body";
|
|
4421
|
-
header: "header";
|
|
4422
4420
|
literal: "literal";
|
|
4421
|
+
header: "header";
|
|
4422
|
+
body: "body";
|
|
4423
4423
|
}>;
|
|
4424
4424
|
key: z.ZodOptional<z.ZodString>;
|
|
4425
4425
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4442,8 +4442,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4442
4442
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4443
4443
|
}, z.core.$strip>;
|
|
4444
4444
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4445
|
-
name: z.ZodString;
|
|
4446
4445
|
id: z.ZodOptional<z.ZodString>;
|
|
4446
|
+
name: z.ZodString;
|
|
4447
4447
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4448
4448
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4449
4449
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -4456,8 +4456,8 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4456
4456
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
4457
|
}, z.core.$strip>;
|
|
4458
4458
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4459
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4460
4459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4460
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4461
4461
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4462
4462
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4463
4463
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4472,8 +4472,8 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4472
4472
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4473
4473
|
}, z.core.$strip>;
|
|
4474
4474
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4475
|
-
name: z.ZodString;
|
|
4476
4475
|
id: z.ZodString;
|
|
4476
|
+
name: z.ZodString;
|
|
4477
4477
|
createdAt: z.ZodString;
|
|
4478
4478
|
updatedAt: z.ZodString;
|
|
4479
4479
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -4497,9 +4497,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4497
4497
|
}>;
|
|
4498
4498
|
signature: z.ZodObject<{
|
|
4499
4499
|
source: z.ZodEnum<{
|
|
4500
|
-
body: "body";
|
|
4501
4500
|
query: "query";
|
|
4502
4501
|
header: "header";
|
|
4502
|
+
body: "body";
|
|
4503
4503
|
}>;
|
|
4504
4504
|
key: z.ZodString;
|
|
4505
4505
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4507,9 +4507,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4507
4507
|
}, z.core.$strip>;
|
|
4508
4508
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4509
4509
|
source: z.ZodEnum<{
|
|
4510
|
-
body: "body";
|
|
4511
|
-
header: "header";
|
|
4512
4510
|
literal: "literal";
|
|
4511
|
+
header: "header";
|
|
4512
|
+
body: "body";
|
|
4513
4513
|
}>;
|
|
4514
4514
|
key: z.ZodOptional<z.ZodString>;
|
|
4515
4515
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5015,7 +5015,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<"insert",
|
|
|
5015
5015
|
}, {}, {
|
|
5016
5016
|
length: 256;
|
|
5017
5017
|
}>;
|
|
5018
|
-
}, "id" | "createdAt" | "
|
|
5018
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5019
5019
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5020
5020
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
5021
5021
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5052,7 +5052,6 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5052
5052
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5053
5053
|
id: z.ZodString;
|
|
5054
5054
|
createdAt: z.ZodString;
|
|
5055
|
-
status: z.ZodString;
|
|
5056
5055
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5057
5056
|
type: z.ZodEnum<{
|
|
5058
5057
|
commit: "commit";
|
|
@@ -5062,6 +5061,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5062
5061
|
name: z.ZodString;
|
|
5063
5062
|
hash: z.ZodString;
|
|
5064
5063
|
}, z.core.$strip>>>;
|
|
5064
|
+
status: z.ZodString;
|
|
5065
5065
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5066
5066
|
triggerId: z.ZodString;
|
|
5067
5067
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -5070,7 +5070,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5070
5070
|
}, z.core.$strip>;
|
|
5071
5071
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5072
5072
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5073
|
-
status: z.ZodOptional<z.ZodString>;
|
|
5074
5073
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5075
5074
|
type: "commit" | "tag" | "branch";
|
|
5076
5075
|
name: string;
|
|
@@ -5088,6 +5087,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5088
5087
|
name: string;
|
|
5089
5088
|
hash: string;
|
|
5090
5089
|
}>>>>;
|
|
5090
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5091
5091
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5092
5092
|
triggerId: z.ZodString;
|
|
5093
5093
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -5098,7 +5098,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5098
5098
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5099
5099
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5100
5100
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5101
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5102
5101
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5103
5102
|
type: "commit" | "tag" | "branch";
|
|
5104
5103
|
name: string;
|
|
@@ -5116,6 +5115,7 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5116
5115
|
name: string;
|
|
5117
5116
|
hash: string;
|
|
5118
5117
|
}>>>>>>;
|
|
5118
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5119
5119
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5120
5120
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5121
5121
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -5152,10 +5152,10 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5152
5152
|
in: {};
|
|
5153
5153
|
}>;
|
|
5154
5154
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5155
|
-
name: z.ZodString;
|
|
5156
5155
|
id: z.ZodString;
|
|
5157
|
-
|
|
5156
|
+
name: z.ZodString;
|
|
5158
5157
|
ref: z.ZodOptional<z.ZodString>;
|
|
5158
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5159
5159
|
tenantId: z.ZodString;
|
|
5160
5160
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5161
5161
|
projectId: z.ZodString;
|
|
@@ -5176,8 +5176,8 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5176
5176
|
in: {};
|
|
5177
5177
|
}>;
|
|
5178
5178
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5179
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5180
5179
|
id: z.ZodOptional<z.ZodString>;
|
|
5180
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5181
5181
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5182
5182
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5183
5183
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -5200,12 +5200,12 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5200
5200
|
in: {};
|
|
5201
5201
|
}>;
|
|
5202
5202
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5203
|
-
name: z.ZodString;
|
|
5204
5203
|
id: z.ZodString;
|
|
5204
|
+
name: z.ZodString;
|
|
5205
5205
|
createdAt: z.ZodString;
|
|
5206
5206
|
updatedAt: z.ZodString;
|
|
5207
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5208
5207
|
ref: z.ZodString;
|
|
5208
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5209
5209
|
enabled: z.ZodBoolean;
|
|
5210
5210
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5211
5211
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -5222,8 +5222,8 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5222
5222
|
}, z.core.$strip>;
|
|
5223
5223
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5224
5224
|
name: z.ZodString;
|
|
5225
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5226
5225
|
ref: z.ZodOptional<z.ZodString>;
|
|
5226
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5227
5227
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5228
5228
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
5229
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5241,8 +5241,8 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5241
5241
|
}, z.core.$strip>;
|
|
5242
5242
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5243
5243
|
name: z.ZodString;
|
|
5244
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5245
5244
|
ref: z.ZodOptional<z.ZodString>;
|
|
5245
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5246
5246
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5247
5247
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5248
5248
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5259,10 +5259,10 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5259
5259
|
dispatchDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
5260
5260
|
}, z.core.$strip>;
|
|
5261
5261
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5262
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5263
5262
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5264
|
-
|
|
5263
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5265
5264
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5265
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5266
5266
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5267
5267
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5268
5268
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5936,7 +5936,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
5936
5936
|
}, {}, {
|
|
5937
5937
|
length: 256;
|
|
5938
5938
|
}>;
|
|
5939
|
-
}, "id" | "createdAt" | "
|
|
5939
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "conversationIds" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
5940
5940
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5941
5941
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
5942
5942
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5977,13 +5977,6 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5977
5977
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5978
5978
|
id: z.ZodString;
|
|
5979
5979
|
createdAt: z.ZodString;
|
|
5980
|
-
status: z.ZodEnum<{
|
|
5981
|
-
pending: "pending";
|
|
5982
|
-
running: "running";
|
|
5983
|
-
completed: "completed";
|
|
5984
|
-
failed: "failed";
|
|
5985
|
-
cancelled: "cancelled";
|
|
5986
|
-
}>;
|
|
5987
5980
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5988
5981
|
type: z.ZodEnum<{
|
|
5989
5982
|
commit: "commit";
|
|
@@ -5993,6 +5986,13 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5993
5986
|
name: z.ZodString;
|
|
5994
5987
|
hash: z.ZodString;
|
|
5995
5988
|
}, z.core.$strip>>>;
|
|
5989
|
+
status: z.ZodEnum<{
|
|
5990
|
+
pending: "pending";
|
|
5991
|
+
running: "running";
|
|
5992
|
+
completed: "completed";
|
|
5993
|
+
failed: "failed";
|
|
5994
|
+
cancelled: "cancelled";
|
|
5995
|
+
}>;
|
|
5996
5996
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5997
5997
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5998
5998
|
scheduledTriggerId: z.ZodString;
|
|
@@ -6005,7 +6005,6 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6005
6005
|
}, z.core.$strip>;
|
|
6006
6006
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6007
6007
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6008
|
-
status: z.ZodString;
|
|
6009
6008
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6010
6009
|
type: "commit" | "tag" | "branch";
|
|
6011
6010
|
name: string;
|
|
@@ -6023,6 +6022,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6023
6022
|
name: string;
|
|
6024
6023
|
hash: string;
|
|
6025
6024
|
}>>>>;
|
|
6025
|
+
status: z.ZodString;
|
|
6026
6026
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6027
6027
|
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6028
6028
|
scheduledTriggerId: z.ZodString;
|
|
@@ -6037,7 +6037,6 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6037
6037
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6038
6038
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
6039
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6040
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6041
6040
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6042
6041
|
type: "commit" | "tag" | "branch";
|
|
6043
6042
|
name: string;
|
|
@@ -6055,6 +6054,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6055
6054
|
name: string;
|
|
6056
6055
|
hash: string;
|
|
6057
6056
|
}>>>>>>;
|
|
6057
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6058
6058
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6059
6059
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6060
6060
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6288,10 +6288,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6288
6288
|
in: {};
|
|
6289
6289
|
}>;
|
|
6290
6290
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6291
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6292
6291
|
id: z.ZodString;
|
|
6293
6292
|
createdAt: z.ZodString;
|
|
6294
|
-
status: z.ZodString;
|
|
6295
6293
|
updatedAt: z.ZodString;
|
|
6296
6294
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6297
6295
|
type: z.ZodEnum<{
|
|
@@ -6302,15 +6300,15 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6302
6300
|
name: z.ZodString;
|
|
6303
6301
|
hash: z.ZodString;
|
|
6304
6302
|
}, z.core.$strip>>>;
|
|
6303
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6304
|
+
status: z.ZodString;
|
|
6305
6305
|
agentId: z.ZodString;
|
|
6306
6306
|
subAgentId: z.ZodString;
|
|
6307
6307
|
contextId: z.ZodString;
|
|
6308
6308
|
}, z.core.$strip>;
|
|
6309
6309
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
6310
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6311
6310
|
id: z.ZodString;
|
|
6312
6311
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6313
|
-
status: z.ZodString;
|
|
6314
6312
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6315
6313
|
ref: z.ZodObject<{
|
|
6316
6314
|
type: z.ZodEnum<{
|
|
@@ -6321,16 +6319,16 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6321
6319
|
name: z.ZodString;
|
|
6322
6320
|
hash: z.ZodString;
|
|
6323
6321
|
}, z.core.$strip>;
|
|
6322
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6323
|
+
status: z.ZodString;
|
|
6324
6324
|
agentId: z.ZodString;
|
|
6325
6325
|
subAgentId: z.ZodString;
|
|
6326
|
-
contextId: z.ZodString;
|
|
6327
6326
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
6327
|
+
contextId: z.ZodString;
|
|
6328
6328
|
}, z.core.$strip>;
|
|
6329
6329
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6330
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6331
6330
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6332
6331
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6333
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6334
6332
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6335
6333
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6336
6334
|
type: z.ZodEnum<{
|
|
@@ -6341,10 +6339,12 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6341
6339
|
name: z.ZodString;
|
|
6342
6340
|
hash: z.ZodString;
|
|
6343
6341
|
}, z.core.$strip>>>;
|
|
6342
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6343
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6344
6344
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6345
6345
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6346
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6347
6346
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6347
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6348
6348
|
}, z.core.$strip>;
|
|
6349
6349
|
declare const TaskRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
6350
6350
|
createdAt: drizzle_orm_pg_core954.PgColumn<{
|
|
@@ -7279,9 +7279,8 @@ declare const ToolSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
7279
7279
|
}>;
|
|
7280
7280
|
}, undefined>, undefined>;
|
|
7281
7281
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7282
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7283
|
-
name: z.ZodString;
|
|
7284
7282
|
id: z.ZodString;
|
|
7283
|
+
name: z.ZodString;
|
|
7285
7284
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7286
7285
|
tenantId: z.ZodString;
|
|
7287
7286
|
projectId: z.ZodString;
|
|
@@ -7313,6 +7312,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7313
7312
|
}, z.core.$strip>;
|
|
7314
7313
|
}, z.core.$strip>;
|
|
7315
7314
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
7315
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7316
7316
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7317
7317
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7318
7318
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7399,12 +7399,9 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7399
7399
|
in: {};
|
|
7400
7400
|
}>;
|
|
7401
7401
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7402
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7403
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
7404
7402
|
id: z.ZodString;
|
|
7405
7403
|
createdAt: z.ZodString;
|
|
7406
7404
|
updatedAt: z.ZodString;
|
|
7407
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7408
7405
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7409
7406
|
type: z.ZodEnum<{
|
|
7410
7407
|
commit: "commit";
|
|
@@ -7414,17 +7411,17 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7414
7411
|
name: z.ZodString;
|
|
7415
7412
|
hash: z.ZodString;
|
|
7416
7413
|
}, z.core.$strip>>>;
|
|
7414
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
7415
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7416
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7417
7417
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7418
7418
|
activeSubAgentId: z.ZodString;
|
|
7419
7419
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7420
7420
|
}, z.core.$strip>;
|
|
7421
7421
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
7422
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7423
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7424
7422
|
id: z.ZodString;
|
|
7425
7423
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7426
7424
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7427
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7428
7425
|
ref: z.ZodObject<{
|
|
7429
7426
|
type: z.ZodEnum<{
|
|
7430
7427
|
commit: "commit";
|
|
@@ -7434,18 +7431,18 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7434
7431
|
name: z.ZodString;
|
|
7435
7432
|
hash: z.ZodString;
|
|
7436
7433
|
}, z.core.$strip>;
|
|
7434
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7435
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7436
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7437
7437
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7438
7438
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7439
7439
|
activeSubAgentId: z.ZodString;
|
|
7440
7440
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7441
7441
|
}, z.core.$strip>;
|
|
7442
7442
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7443
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7444
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7445
7443
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7446
7444
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7447
7445
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7448
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7449
7446
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7450
7447
|
type: z.ZodEnum<{
|
|
7451
7448
|
commit: "commit";
|
|
@@ -7455,6 +7452,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7455
7452
|
name: z.ZodString;
|
|
7456
7453
|
hash: z.ZodString;
|
|
7457
7454
|
}, z.core.$strip>>>;
|
|
7455
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7456
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7457
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7458
7458
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7459
7459
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7460
7460
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8306,11 +8306,11 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8306
8306
|
in: {};
|
|
8307
8307
|
}>;
|
|
8308
8308
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8309
|
-
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8310
|
-
role: z.ZodString;
|
|
8311
8309
|
id: z.ZodString;
|
|
8312
8310
|
createdAt: z.ZodString;
|
|
8313
8311
|
updatedAt: z.ZodString;
|
|
8312
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8313
|
+
role: z.ZodString;
|
|
8314
8314
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8315
8315
|
conversationId: z.ZodString;
|
|
8316
8316
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -8327,11 +8327,11 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8327
8327
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8328
8328
|
}, z.core.$strip>;
|
|
8329
8329
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8330
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8331
|
-
role: z.ZodString;
|
|
8332
8330
|
id: z.ZodString;
|
|
8333
8331
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8334
8332
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8333
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8334
|
+
role: z.ZodString;
|
|
8335
8335
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8336
8336
|
conversationId: z.ZodString;
|
|
8337
8337
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8348,11 +8348,11 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8348
8348
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8349
8349
|
}, z.core.$strip>;
|
|
8350
8350
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8351
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8352
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8353
8351
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8354
8352
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8355
8353
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8354
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8355
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8356
8356
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8357
8357
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8358
8358
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8849,7 +8849,6 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8849
8849
|
id: z.ZodString;
|
|
8850
8850
|
createdAt: z.ZodString;
|
|
8851
8851
|
updatedAt: z.ZodString;
|
|
8852
|
-
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
8853
8852
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8854
8853
|
type: z.ZodEnum<{
|
|
8855
8854
|
commit: "commit";
|
|
@@ -8859,6 +8858,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8859
8858
|
name: z.ZodString;
|
|
8860
8859
|
hash: z.ZodString;
|
|
8861
8860
|
}, z.core.$strip>>>;
|
|
8861
|
+
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
8862
8862
|
contextConfigId: z.ZodString;
|
|
8863
8863
|
conversationId: z.ZodString;
|
|
8864
8864
|
contextVariableKey: z.ZodString;
|
|
@@ -8870,7 +8870,6 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8870
8870
|
id: z.ZodString;
|
|
8871
8871
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8872
8872
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8873
|
-
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
8874
8873
|
ref: z.ZodObject<{
|
|
8875
8874
|
type: z.ZodEnum<{
|
|
8876
8875
|
commit: "commit";
|
|
@@ -8880,6 +8879,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8880
8879
|
name: z.ZodString;
|
|
8881
8880
|
hash: z.ZodString;
|
|
8882
8881
|
}, z.core.$strip>;
|
|
8882
|
+
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
8883
8883
|
contextConfigId: z.ZodString;
|
|
8884
8884
|
conversationId: z.ZodString;
|
|
8885
8885
|
contextVariableKey: z.ZodString;
|
|
@@ -8891,7 +8891,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8891
8891
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8892
8892
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8893
8893
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8894
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
8895
8894
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8896
8895
|
type: z.ZodEnum<{
|
|
8897
8896
|
commit: "commit";
|
|
@@ -8901,6 +8900,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8901
8900
|
name: z.ZodString;
|
|
8902
8901
|
hash: z.ZodString;
|
|
8903
8902
|
}, z.core.$strip>>>;
|
|
8903
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
8904
8904
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8905
8905
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8906
8906
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10227,8 +10227,8 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10227
10227
|
in: {};
|
|
10228
10228
|
}>;
|
|
10229
10229
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10230
|
-
name: z.ZodString;
|
|
10231
10230
|
id: z.ZodString;
|
|
10231
|
+
name: z.ZodString;
|
|
10232
10232
|
createdAt: z.ZodString;
|
|
10233
10233
|
updatedAt: z.ZodString;
|
|
10234
10234
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -10251,8 +10251,8 @@ declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10251
10251
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10252
10252
|
}, z.core.$strip>;
|
|
10253
10253
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10254
|
-
name: z.ZodString;
|
|
10255
10254
|
id: z.ZodString;
|
|
10255
|
+
name: z.ZodString;
|
|
10256
10256
|
createdAt: z.ZodString;
|
|
10257
10257
|
updatedAt: z.ZodString;
|
|
10258
10258
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -12401,11 +12401,11 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
12401
12401
|
in: {};
|
|
12402
12402
|
}>;
|
|
12403
12403
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
12404
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12405
|
-
name: z.ZodString;
|
|
12406
12404
|
id: z.ZodString;
|
|
12405
|
+
name: z.ZodString;
|
|
12407
12406
|
createdAt: z.ZodString;
|
|
12408
12407
|
updatedAt: z.ZodString;
|
|
12408
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12409
12409
|
description: z.ZodNullable<z.ZodString>;
|
|
12410
12410
|
model: z.ZodType<{
|
|
12411
12411
|
model?: string | undefined;
|
|
@@ -12432,10 +12432,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
12432
12432
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
12433
12433
|
}, z.core.$strip>;
|
|
12434
12434
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12435
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12436
12435
|
name: z.ZodString;
|
|
12437
12436
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12438
12437
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12438
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12439
12439
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12440
12440
|
model: z.ZodType<{
|
|
12441
12441
|
model?: string | undefined;
|
|
@@ -12462,10 +12462,10 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12462
12462
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12463
12463
|
}, z.core.$strip>;
|
|
12464
12464
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12465
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12466
12465
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12467
12466
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12468
12467
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12468
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12469
12469
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12470
12470
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12471
12471
|
model?: string | undefined;
|
|
@@ -12737,8 +12737,8 @@ declare const DatasetUpdateSchema: z.ZodObject<{
|
|
|
12737
12737
|
in: {};
|
|
12738
12738
|
}>;
|
|
12739
12739
|
declare const DatasetApiSelectSchema: z.ZodObject<{
|
|
12740
|
-
name: z.ZodString;
|
|
12741
12740
|
id: z.ZodString;
|
|
12741
|
+
name: z.ZodString;
|
|
12742
12742
|
createdAt: z.ZodString;
|
|
12743
12743
|
updatedAt: z.ZodString;
|
|
12744
12744
|
}, z.core.$strip>;
|
|
@@ -13455,8 +13455,8 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
13455
13455
|
in: {};
|
|
13456
13456
|
}>;
|
|
13457
13457
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
13458
|
-
name: z.ZodString;
|
|
13459
13458
|
id: z.ZodString;
|
|
13459
|
+
name: z.ZodString;
|
|
13460
13460
|
createdAt: z.ZodString;
|
|
13461
13461
|
updatedAt: z.ZodString;
|
|
13462
13462
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -14731,8 +14731,8 @@ declare const DataComponentSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
14731
14731
|
}>;
|
|
14732
14732
|
}, undefined>, undefined>;
|
|
14733
14733
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
14734
|
-
name: z.ZodString;
|
|
14735
14734
|
id: z.ZodString;
|
|
14735
|
+
name: z.ZodString;
|
|
14736
14736
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14737
14737
|
tenantId: z.ZodString;
|
|
14738
14738
|
projectId: z.ZodString;
|
|
@@ -14783,8 +14783,8 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14783
14783
|
in: {};
|
|
14784
14784
|
}>;
|
|
14785
14785
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
14786
|
-
name: z.ZodOptional<z.ZodString>;
|
|
14787
14786
|
id: z.ZodOptional<z.ZodString>;
|
|
14787
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14788
14788
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14789
14789
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14790
14790
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -14835,8 +14835,8 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
14835
14835
|
in: {};
|
|
14836
14836
|
}>;
|
|
14837
14837
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
14838
|
-
name: z.ZodString;
|
|
14839
14838
|
id: z.ZodString;
|
|
14839
|
+
name: z.ZodString;
|
|
14840
14840
|
createdAt: z.ZodString;
|
|
14841
14841
|
updatedAt: z.ZodString;
|
|
14842
14842
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -15977,8 +15977,8 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15977
15977
|
in: {};
|
|
15978
15978
|
}>;
|
|
15979
15979
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15980
|
-
name: z.ZodString;
|
|
15981
15980
|
id: z.ZodString;
|
|
15981
|
+
name: z.ZodString;
|
|
15982
15982
|
createdAt: z.ZodString;
|
|
15983
15983
|
updatedAt: z.ZodString;
|
|
15984
15984
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -16054,8 +16054,8 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16054
16054
|
in: {};
|
|
16055
16055
|
}>;
|
|
16056
16056
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16057
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16058
16057
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16058
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16059
16059
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16060
16060
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16061
16061
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -16426,8 +16426,8 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
16426
16426
|
in: {};
|
|
16427
16427
|
}>;
|
|
16428
16428
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
16429
|
-
name: z.ZodString;
|
|
16430
16429
|
id: z.ZodString;
|
|
16430
|
+
name: z.ZodString;
|
|
16431
16431
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16432
16432
|
tenantId: z.ZodString;
|
|
16433
16433
|
projectId: z.ZodString;
|
|
@@ -16438,8 +16438,8 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16438
16438
|
in: {};
|
|
16439
16439
|
}>;
|
|
16440
16440
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
16441
|
-
name: z.ZodOptional<z.ZodString>;
|
|
16442
16441
|
id: z.ZodOptional<z.ZodString>;
|
|
16442
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16443
16443
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16444
16444
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16445
16445
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -16450,8 +16450,8 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16450
16450
|
in: {};
|
|
16451
16451
|
}>;
|
|
16452
16452
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
16453
|
-
name: z.ZodString;
|
|
16454
16453
|
id: z.ZodString;
|
|
16454
|
+
name: z.ZodString;
|
|
16455
16455
|
createdAt: z.ZodString;
|
|
16456
16456
|
updatedAt: z.ZodString;
|
|
16457
16457
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -16459,22 +16459,22 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
|
16459
16459
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16460
16460
|
}, z.core.$strip>;
|
|
16461
16461
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
16462
|
-
name: z.ZodString;
|
|
16463
16462
|
id: z.ZodString;
|
|
16463
|
+
name: z.ZodString;
|
|
16464
16464
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16465
16465
|
baseUrl: z.ZodURL;
|
|
16466
16466
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16467
16467
|
}, z.core.$strip>;
|
|
16468
16468
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16469
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16470
16469
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16470
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16471
16471
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16472
16472
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16473
16473
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16474
16474
|
}, z.core.$strip>;
|
|
16475
16475
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16476
|
-
name: z.ZodString;
|
|
16477
16476
|
id: z.ZodString;
|
|
16477
|
+
name: z.ZodString;
|
|
16478
16478
|
createdAt: z.ZodString;
|
|
16479
16479
|
updatedAt: z.ZodString;
|
|
16480
16480
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -16568,8 +16568,8 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16568
16568
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16569
16569
|
type: z.ZodLiteral<"internal">;
|
|
16570
16570
|
}, z.core.$strip>, z.ZodObject<{
|
|
16571
|
-
name: z.ZodString;
|
|
16572
16571
|
id: z.ZodString;
|
|
16572
|
+
name: z.ZodString;
|
|
16573
16573
|
createdAt: z.ZodString;
|
|
16574
16574
|
updatedAt: z.ZodString;
|
|
16575
16575
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -17039,19 +17039,19 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
17039
17039
|
}>;
|
|
17040
17040
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
17041
17041
|
name: z.ZodOptional<z.ZodString>;
|
|
17042
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17043
17042
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17043
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17044
17044
|
agentId: z.ZodOptional<z.ZodString>;
|
|
17045
17045
|
}, {
|
|
17046
17046
|
out: {};
|
|
17047
17047
|
in: {};
|
|
17048
17048
|
}>;
|
|
17049
17049
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
17050
|
-
name: z.ZodNullable<z.ZodString>;
|
|
17051
17050
|
id: z.ZodString;
|
|
17051
|
+
name: z.ZodNullable<z.ZodString>;
|
|
17052
17052
|
createdAt: z.ZodString;
|
|
17053
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17054
17053
|
updatedAt: z.ZodString;
|
|
17054
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17055
17055
|
agentId: z.ZodString;
|
|
17056
17056
|
publicId: z.ZodString;
|
|
17057
17057
|
keyPrefix: z.ZodString;
|
|
@@ -17063,11 +17063,11 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
17063
17063
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
17064
17064
|
data: z.ZodObject<{
|
|
17065
17065
|
apiKey: z.ZodObject<{
|
|
17066
|
-
name: z.ZodNullable<z.ZodString>;
|
|
17067
17066
|
id: z.ZodString;
|
|
17067
|
+
name: z.ZodNullable<z.ZodString>;
|
|
17068
17068
|
createdAt: z.ZodString;
|
|
17069
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17070
17069
|
updatedAt: z.ZodString;
|
|
17070
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17071
17071
|
agentId: z.ZodString;
|
|
17072
17072
|
publicId: z.ZodString;
|
|
17073
17073
|
keyPrefix: z.ZodString;
|
|
@@ -17082,8 +17082,8 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17082
17082
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
17083
17083
|
name: z.ZodString;
|
|
17084
17084
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17085
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17086
17085
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17086
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17087
17087
|
agentId: z.ZodString;
|
|
17088
17088
|
}, {
|
|
17089
17089
|
out: {};
|
|
@@ -17091,8 +17091,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
17091
17091
|
}>;
|
|
17092
17092
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17093
17093
|
name: z.ZodOptional<z.ZodString>;
|
|
17094
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17095
17094
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17095
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17096
17096
|
agentId: z.ZodOptional<z.ZodString>;
|
|
17097
17097
|
}, {
|
|
17098
17098
|
out: {};
|
|
@@ -18507,8 +18507,8 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18507
18507
|
}, undefined>, undefined>;
|
|
18508
18508
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18509
18509
|
type: z.ZodString;
|
|
18510
|
-
name: z.ZodString;
|
|
18511
18510
|
id: z.ZodString;
|
|
18511
|
+
name: z.ZodString;
|
|
18512
18512
|
createdAt: z.ZodString;
|
|
18513
18513
|
updatedAt: z.ZodString;
|
|
18514
18514
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -18636,8 +18636,8 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
18636
18636
|
data: z.ZodObject<{
|
|
18637
18637
|
app: z.ZodObject<{
|
|
18638
18638
|
type: z.ZodString;
|
|
18639
|
-
name: z.ZodString;
|
|
18640
18639
|
id: z.ZodString;
|
|
18640
|
+
name: z.ZodString;
|
|
18641
18641
|
createdAt: z.ZodString;
|
|
18642
18642
|
updatedAt: z.ZodString;
|
|
18643
18643
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -19132,9 +19132,9 @@ declare const CredentialReferenceSelectSchema: drizzle_zod17.BuildSchema<"select
|
|
|
19132
19132
|
}, undefined>, undefined>;
|
|
19133
19133
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19134
19134
|
type: z.ZodString;
|
|
19135
|
+
id: z.ZodString;
|
|
19135
19136
|
name: z.ZodString;
|
|
19136
19137
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19137
|
-
id: z.ZodString;
|
|
19138
19138
|
tenantId: z.ZodString;
|
|
19139
19139
|
projectId: z.ZodString;
|
|
19140
19140
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19147,9 +19147,9 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
|
19147
19147
|
}>;
|
|
19148
19148
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
19149
19149
|
type: z.ZodOptional<z.ZodString>;
|
|
19150
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19150
19151
|
name: z.ZodOptional<z.ZodString>;
|
|
19151
19152
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19152
|
-
id: z.ZodOptional<z.ZodString>;
|
|
19153
19153
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19154
19154
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19155
19155
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -19161,11 +19161,11 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
19161
19161
|
in: {};
|
|
19162
19162
|
}>;
|
|
19163
19163
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
19164
|
-
name: z.ZodString;
|
|
19165
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
19166
19164
|
id: z.ZodString;
|
|
19165
|
+
name: z.ZodString;
|
|
19167
19166
|
createdAt: z.ZodString;
|
|
19168
19167
|
updatedAt: z.ZodString;
|
|
19168
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
19169
19169
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
19170
19170
|
credentialStoreId: z.ZodString;
|
|
19171
19171
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -19753,9 +19753,9 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19753
19753
|
}>>>;
|
|
19754
19754
|
}, z.core.$strip>;
|
|
19755
19755
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
19756
|
+
id: z.ZodString;
|
|
19756
19757
|
name: z.ZodString;
|
|
19757
19758
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19758
|
-
id: z.ZodString;
|
|
19759
19759
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19760
19760
|
credentialStoreId: z.ZodString;
|
|
19761
19761
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -19768,9 +19768,9 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19768
19768
|
}>;
|
|
19769
19769
|
}, z.core.$strip>;
|
|
19770
19770
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
19771
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19771
19772
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19772
19773
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19773
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19774
19774
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19775
19775
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19776
19776
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
@@ -19839,9 +19839,8 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
19839
19839
|
error_description: z.ZodOptional<z.ZodString>;
|
|
19840
19840
|
}, z.core.$strip>;
|
|
19841
19841
|
declare const McpToolSchema: z.ZodObject<{
|
|
19842
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19843
|
-
name: z.ZodString;
|
|
19844
19842
|
id: z.ZodString;
|
|
19843
|
+
name: z.ZodString;
|
|
19845
19844
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19846
19845
|
tenantId: z.ZodString;
|
|
19847
19846
|
projectId: z.ZodString;
|
|
@@ -19873,6 +19872,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19873
19872
|
}, z.core.$strip>;
|
|
19874
19873
|
}, z.core.$strip>;
|
|
19875
19874
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19875
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19876
19876
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19877
19877
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19878
19878
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19898,22 +19898,22 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19898
19898
|
in: {};
|
|
19899
19899
|
}>;
|
|
19900
19900
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
19901
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19902
|
-
name: z.ZodString;
|
|
19903
19901
|
id: z.ZodString;
|
|
19902
|
+
name: z.ZodString;
|
|
19904
19903
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19905
19904
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
19906
19905
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19906
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19907
19907
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19908
19908
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19909
19909
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19910
19910
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19911
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19911
19912
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19912
19913
|
name: z.ZodString;
|
|
19913
19914
|
description: z.ZodOptional<z.ZodString>;
|
|
19914
19915
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19915
19916
|
}, z.core.$strip>>>;
|
|
19916
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19917
19917
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19918
19918
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19919
19919
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19934,9 +19934,9 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19934
19934
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
19935
19935
|
}, z.core.$strip>>;
|
|
19936
19936
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19937
|
+
id: z.ZodString;
|
|
19937
19938
|
name: z.ZodString;
|
|
19938
19939
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19939
|
-
id: z.ZodString;
|
|
19940
19940
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19941
19941
|
credentialStoreId: z.ZodString;
|
|
19942
19942
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -19960,9 +19960,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19960
19960
|
in: {};
|
|
19961
19961
|
}>;
|
|
19962
19962
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
19963
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19964
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19965
19963
|
id: z.ZodOptional<z.ZodString>;
|
|
19964
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19966
19965
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19967
19966
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19968
19967
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -19994,6 +19993,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19994
19993
|
}, z.core.$strip>;
|
|
19995
19994
|
}, z.core.$strip>>;
|
|
19996
19995
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19996
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19997
19997
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19998
19998
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
19999
19999
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -20003,9 +20003,8 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20003
20003
|
in: {};
|
|
20004
20004
|
}>;
|
|
20005
20005
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20006
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20007
|
-
name: z.ZodString;
|
|
20008
20006
|
id: z.ZodString;
|
|
20007
|
+
name: z.ZodString;
|
|
20009
20008
|
createdAt: z.ZodString;
|
|
20010
20009
|
updatedAt: z.ZodString;
|
|
20011
20010
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -20024,15 +20023,15 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20024
20023
|
mcp: ToolMcpConfig;
|
|
20025
20024
|
}>>;
|
|
20026
20025
|
credentialScope: z.ZodString;
|
|
20026
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20027
20027
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
20028
20028
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
20029
20029
|
lastError: z.ZodNullable<z.ZodString>;
|
|
20030
20030
|
isWorkApp: z.ZodBoolean;
|
|
20031
20031
|
}, z.core.$strip>;
|
|
20032
20032
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
20033
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20034
|
-
name: z.ZodString;
|
|
20035
20033
|
id: z.ZodString;
|
|
20034
|
+
name: z.ZodString;
|
|
20036
20035
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20037
20036
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20038
20037
|
config: z.ZodObject<{
|
|
@@ -20062,15 +20061,15 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20062
20061
|
}, z.core.$strip>;
|
|
20063
20062
|
}, z.core.$strip>;
|
|
20064
20063
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20064
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20065
20065
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20066
20066
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20067
20067
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20068
20068
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20069
20069
|
}, z.core.$strip>;
|
|
20070
20070
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20071
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20072
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20073
20071
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20072
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20074
20073
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20075
20074
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20076
20075
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -20100,6 +20099,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20100
20099
|
}, z.core.$strip>;
|
|
20101
20100
|
}, z.core.$strip>>>;
|
|
20102
20101
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20102
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20103
20103
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20104
20104
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
20105
20105
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -20439,8 +20439,8 @@ declare const FunctionToolSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
20439
20439
|
}>;
|
|
20440
20440
|
}, undefined>, undefined>;
|
|
20441
20441
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
20442
|
-
name: z.ZodString;
|
|
20443
20442
|
id: z.ZodString;
|
|
20443
|
+
name: z.ZodString;
|
|
20444
20444
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20445
20445
|
tenantId: z.ZodString;
|
|
20446
20446
|
projectId: z.ZodString;
|
|
@@ -20451,8 +20451,8 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
20451
20451
|
in: {};
|
|
20452
20452
|
}>;
|
|
20453
20453
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
20454
|
-
name: z.ZodOptional<z.ZodString>;
|
|
20455
20454
|
id: z.ZodOptional<z.ZodString>;
|
|
20455
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20456
20456
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20457
20457
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20458
20458
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -20463,8 +20463,8 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
20463
20463
|
in: {};
|
|
20464
20464
|
}>;
|
|
20465
20465
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20466
|
-
name: z.ZodString;
|
|
20467
20466
|
id: z.ZodString;
|
|
20467
|
+
name: z.ZodString;
|
|
20468
20468
|
createdAt: z.ZodString;
|
|
20469
20469
|
updatedAt: z.ZodString;
|
|
20470
20470
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -20473,14 +20473,14 @@ declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
|
20473
20473
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20474
20474
|
}, z.core.$strip>;
|
|
20475
20475
|
declare const FunctionToolApiInsertSchema: z.ZodObject<{
|
|
20476
|
-
name: z.ZodString;
|
|
20477
20476
|
id: z.ZodString;
|
|
20477
|
+
name: z.ZodString;
|
|
20478
20478
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20479
20479
|
functionId: z.ZodString;
|
|
20480
20480
|
}, z.core.$strip>;
|
|
20481
20481
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
20482
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20483
20482
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20483
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20484
20484
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20485
20485
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20486
20486
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21243,9 +21243,9 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21243
21243
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
21244
21244
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
21245
21245
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21246
|
+
id: z.ZodString;
|
|
21246
21247
|
name: z.ZodString;
|
|
21247
21248
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21248
|
-
id: z.ZodString;
|
|
21249
21249
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21250
21250
|
credentialStoreId: z.ZodString;
|
|
21251
21251
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -21768,34 +21768,34 @@ declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
|
21768
21768
|
in: {};
|
|
21769
21769
|
}>;
|
|
21770
21770
|
declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
21771
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21772
21771
|
id: z.ZodString;
|
|
21773
21772
|
createdAt: z.ZodString;
|
|
21774
21773
|
updatedAt: z.ZodString;
|
|
21775
21774
|
toolId: z.ZodString;
|
|
21776
21775
|
subAgentId: z.ZodString;
|
|
21776
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21777
21777
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21778
21778
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21779
21779
|
}, z.core.$strip>;
|
|
21780
21780
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
21781
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21782
21781
|
id: z.ZodString;
|
|
21783
21782
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21784
21783
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21785
21784
|
toolId: z.ZodString;
|
|
21786
21785
|
subAgentId: z.ZodString;
|
|
21786
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21787
21787
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
21788
21788
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21789
21789
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21790
21790
|
}, z.core.$strip>>>>;
|
|
21791
21791
|
}, z.core.$strip>;
|
|
21792
21792
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21793
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21794
21793
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21795
21794
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21796
21795
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21797
21796
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21798
21797
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21798
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21799
21799
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21800
21800
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21801
21801
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22167,25 +22167,25 @@ declare const SubAgentExternalAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
22167
22167
|
in: {};
|
|
22168
22168
|
}>;
|
|
22169
22169
|
declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
22170
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22171
22170
|
id: z.ZodString;
|
|
22172
22171
|
createdAt: z.ZodString;
|
|
22173
22172
|
updatedAt: z.ZodString;
|
|
22174
22173
|
subAgentId: z.ZodString;
|
|
22174
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22175
22175
|
externalAgentId: z.ZodString;
|
|
22176
22176
|
}, z.core.$strip>;
|
|
22177
22177
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
22178
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22179
22178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22180
22179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22180
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22181
22181
|
externalAgentId: z.ZodString;
|
|
22182
22182
|
}, z.core.$strip>;
|
|
22183
22183
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22184
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22185
22184
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22186
22185
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22187
22186
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22188
22187
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22188
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22189
22189
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22190
22190
|
}, z.core.$strip>;
|
|
22191
22191
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -22554,25 +22554,25 @@ declare const SubAgentTeamAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
22554
22554
|
in: {};
|
|
22555
22555
|
}>;
|
|
22556
22556
|
declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
22557
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22558
22557
|
id: z.ZodString;
|
|
22559
22558
|
createdAt: z.ZodString;
|
|
22560
22559
|
updatedAt: z.ZodString;
|
|
22561
22560
|
subAgentId: z.ZodString;
|
|
22561
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22562
22562
|
targetAgentId: z.ZodString;
|
|
22563
22563
|
}, z.core.$strip>;
|
|
22564
22564
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
22565
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22566
22565
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22567
22566
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22567
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22568
22568
|
targetAgentId: z.ZodString;
|
|
22569
22569
|
}, z.core.$strip>;
|
|
22570
22570
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22571
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22572
22571
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22573
22572
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22574
22573
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22575
22574
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22575
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22576
22576
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22577
22577
|
}, z.core.$strip>;
|
|
22578
22578
|
declare const LedgerArtifactSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -23916,7 +23916,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
23916
23916
|
}, {}, {
|
|
23917
23917
|
length: 256;
|
|
23918
23918
|
}>;
|
|
23919
|
-
}, "type" | "
|
|
23919
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23920
23920
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23921
23921
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23922
23922
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23942,11 +23942,11 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23942
23942
|
}>;
|
|
23943
23943
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23944
23944
|
type: z.ZodString;
|
|
23945
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
23946
|
-
name: z.ZodNullable<z.ZodString>;
|
|
23947
23945
|
id: z.ZodString;
|
|
23946
|
+
name: z.ZodNullable<z.ZodString>;
|
|
23948
23947
|
createdAt: z.ZodString;
|
|
23949
23948
|
updatedAt: z.ZodString;
|
|
23949
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
23950
23950
|
description: z.ZodNullable<z.ZodString>;
|
|
23951
23951
|
contextId: z.ZodString;
|
|
23952
23952
|
visibility: z.ZodNullable<z.ZodString>;
|
|
@@ -23960,11 +23960,11 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
23960
23960
|
}, z.core.$strip>;
|
|
23961
23961
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23962
23962
|
type: z.ZodOptional<z.ZodString>;
|
|
23963
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
23964
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23965
23963
|
id: z.ZodString;
|
|
23964
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23966
23965
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23967
23966
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23967
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
23968
23968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23969
23969
|
contextId: z.ZodString;
|
|
23970
23970
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23978,11 +23978,11 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
23978
23978
|
}, z.core.$strip>;
|
|
23979
23979
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23980
23980
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23981
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
23982
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23983
23981
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23982
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23984
23983
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23985
23984
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23985
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
23986
23986
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23987
23987
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23988
23988
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -24057,8 +24057,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24057
24057
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24058
24058
|
}, z.core.$strip>;
|
|
24059
24059
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24060
|
-
name: z.ZodString;
|
|
24061
24060
|
id: z.ZodString;
|
|
24061
|
+
name: z.ZodString;
|
|
24062
24062
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24063
24063
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24064
24064
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24116,15 +24116,15 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24116
24116
|
}, z.core.$strip>>;
|
|
24117
24117
|
}, z.core.$strip>;
|
|
24118
24118
|
declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
24119
|
-
name: z.ZodString;
|
|
24120
24119
|
id: z.ZodString;
|
|
24120
|
+
name: z.ZodString;
|
|
24121
24121
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24122
24122
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24123
24123
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24124
24124
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24125
24125
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24126
|
-
name: z.ZodString;
|
|
24127
24126
|
id: z.ZodString;
|
|
24127
|
+
name: z.ZodString;
|
|
24128
24128
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24129
24129
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24130
24130
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24182,9 +24182,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24182
24182
|
}, z.core.$strip>>;
|
|
24183
24183
|
}, z.core.$strip>>;
|
|
24184
24184
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24185
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24186
|
-
name: z.ZodString;
|
|
24187
24185
|
id: z.ZodString;
|
|
24186
|
+
name: z.ZodString;
|
|
24188
24187
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24189
24188
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24190
24189
|
config: z.ZodObject<{
|
|
@@ -24214,14 +24213,15 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24214
24213
|
}, z.core.$strip>;
|
|
24215
24214
|
}, z.core.$strip>;
|
|
24216
24215
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24216
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24217
24217
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24218
24218
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24219
24219
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24220
24220
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24221
24221
|
}, z.core.$strip>>>;
|
|
24222
24222
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24223
|
-
name: z.ZodString;
|
|
24224
24223
|
id: z.ZodString;
|
|
24224
|
+
name: z.ZodString;
|
|
24225
24225
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24226
24226
|
baseUrl: z.ZodURL;
|
|
24227
24227
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24232,8 +24232,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24232
24232
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24233
24233
|
}, z.core.$strip>>>;
|
|
24234
24234
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24235
|
-
name: z.ZodString;
|
|
24236
24235
|
id: z.ZodString;
|
|
24236
|
+
name: z.ZodString;
|
|
24237
24237
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24238
24238
|
functionId: z.ZodString;
|
|
24239
24239
|
}, z.core.$strip>>>;
|
|
@@ -24244,8 +24244,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24244
24244
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24245
24245
|
}, z.core.$strip>>>;
|
|
24246
24246
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24247
|
-
name: z.ZodString;
|
|
24248
24247
|
id: z.ZodOptional<z.ZodString>;
|
|
24248
|
+
name: z.ZodString;
|
|
24249
24249
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24250
24250
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24251
24251
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -24303,15 +24303,15 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24303
24303
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24304
24304
|
}, z.core.$strip>;
|
|
24305
24305
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24306
|
-
name: z.ZodString;
|
|
24307
24306
|
id: z.ZodString;
|
|
24307
|
+
name: z.ZodString;
|
|
24308
24308
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24309
24309
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24310
24310
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24311
24311
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24312
24312
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24313
|
-
name: z.ZodString;
|
|
24314
24313
|
id: z.ZodString;
|
|
24314
|
+
name: z.ZodString;
|
|
24315
24315
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24316
24316
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24317
24317
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24369,9 +24369,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24369
24369
|
}, z.core.$strip>>;
|
|
24370
24370
|
}, z.core.$strip>>;
|
|
24371
24371
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24372
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24373
|
-
name: z.ZodString;
|
|
24374
24372
|
id: z.ZodString;
|
|
24373
|
+
name: z.ZodString;
|
|
24375
24374
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24376
24375
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24377
24376
|
config: z.ZodObject<{
|
|
@@ -24401,14 +24400,15 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24401
24400
|
}, z.core.$strip>;
|
|
24402
24401
|
}, z.core.$strip>;
|
|
24403
24402
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24403
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24404
24404
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24405
24405
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24406
24406
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24407
24407
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24408
24408
|
}, z.core.$strip>>>;
|
|
24409
24409
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24410
|
-
name: z.ZodString;
|
|
24411
24410
|
id: z.ZodString;
|
|
24411
|
+
name: z.ZodString;
|
|
24412
24412
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24413
24413
|
baseUrl: z.ZodURL;
|
|
24414
24414
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24419,8 +24419,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24419
24419
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24420
24420
|
}, z.core.$strip>>>;
|
|
24421
24421
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24422
|
-
name: z.ZodString;
|
|
24423
24422
|
id: z.ZodString;
|
|
24423
|
+
name: z.ZodString;
|
|
24424
24424
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24425
24425
|
functionId: z.ZodString;
|
|
24426
24426
|
}, z.core.$strip>>>;
|
|
@@ -24431,8 +24431,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24431
24431
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24432
24432
|
}, z.core.$strip>>>;
|
|
24433
24433
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24434
|
-
name: z.ZodString;
|
|
24435
24434
|
id: z.ZodOptional<z.ZodString>;
|
|
24435
|
+
name: z.ZodString;
|
|
24436
24436
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24437
24437
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24438
24438
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -24549,8 +24549,8 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
24549
24549
|
in: {};
|
|
24550
24550
|
}>;
|
|
24551
24551
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
24552
|
-
name: z.ZodString;
|
|
24553
24552
|
id: z.ZodString;
|
|
24553
|
+
name: z.ZodString;
|
|
24554
24554
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24555
24555
|
models: z.ZodObject<{
|
|
24556
24556
|
base: z.ZodObject<{
|
|
@@ -24613,8 +24613,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
24613
24613
|
in: {};
|
|
24614
24614
|
}>;
|
|
24615
24615
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24616
|
-
name: z.ZodString;
|
|
24617
24616
|
id: z.ZodString;
|
|
24617
|
+
name: z.ZodString;
|
|
24618
24618
|
createdAt: z.ZodString;
|
|
24619
24619
|
updatedAt: z.ZodString;
|
|
24620
24620
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -24647,8 +24647,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24647
24647
|
in: {};
|
|
24648
24648
|
}>;
|
|
24649
24649
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
24650
|
-
name: z.ZodString;
|
|
24651
24650
|
id: z.ZodString;
|
|
24651
|
+
name: z.ZodString;
|
|
24652
24652
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24653
24653
|
models: z.ZodObject<{
|
|
24654
24654
|
base: z.ZodObject<{
|
|
@@ -24710,8 +24710,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
24710
24710
|
in: {};
|
|
24711
24711
|
}>;
|
|
24712
24712
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
24713
|
-
name: z.ZodString;
|
|
24714
24713
|
id: z.ZodString;
|
|
24714
|
+
name: z.ZodString;
|
|
24715
24715
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24716
24716
|
models: z.ZodObject<{
|
|
24717
24717
|
base: z.ZodObject<{
|
|
@@ -24738,15 +24738,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24738
24738
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
24739
24739
|
}, z.core.$strip>>;
|
|
24740
24740
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24741
|
-
name: z.ZodString;
|
|
24742
24741
|
id: z.ZodString;
|
|
24742
|
+
name: z.ZodString;
|
|
24743
24743
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24744
24744
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24745
24745
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24746
24746
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
24747
24747
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24748
|
-
name: z.ZodString;
|
|
24749
24748
|
id: z.ZodString;
|
|
24749
|
+
name: z.ZodString;
|
|
24750
24750
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24751
24751
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24752
24752
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24804,9 +24804,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24804
24804
|
}, z.core.$strip>>;
|
|
24805
24805
|
}, z.core.$strip>>;
|
|
24806
24806
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24807
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24808
|
-
name: z.ZodString;
|
|
24809
24807
|
id: z.ZodString;
|
|
24808
|
+
name: z.ZodString;
|
|
24810
24809
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24811
24810
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24812
24811
|
config: z.ZodObject<{
|
|
@@ -24836,14 +24835,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24836
24835
|
}, z.core.$strip>;
|
|
24837
24836
|
}, z.core.$strip>;
|
|
24838
24837
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24838
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24839
24839
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24840
24840
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24841
24841
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24842
24842
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24843
24843
|
}, z.core.$strip>>>;
|
|
24844
24844
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24845
|
-
name: z.ZodString;
|
|
24846
24845
|
id: z.ZodString;
|
|
24846
|
+
name: z.ZodString;
|
|
24847
24847
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24848
24848
|
baseUrl: z.ZodURL;
|
|
24849
24849
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24854,8 +24854,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24854
24854
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24855
24855
|
}, z.core.$strip>>>;
|
|
24856
24856
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24857
|
-
name: z.ZodString;
|
|
24858
24857
|
id: z.ZodString;
|
|
24858
|
+
name: z.ZodString;
|
|
24859
24859
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24860
24860
|
functionId: z.ZodString;
|
|
24861
24861
|
}, z.core.$strip>>>;
|
|
@@ -24866,8 +24866,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24866
24866
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24867
24867
|
}, z.core.$strip>>>;
|
|
24868
24868
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24869
|
-
name: z.ZodString;
|
|
24870
24869
|
id: z.ZodOptional<z.ZodString>;
|
|
24870
|
+
name: z.ZodString;
|
|
24871
24871
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24872
24872
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24873
24873
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -24925,9 +24925,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24925
24925
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24926
24926
|
}, z.core.$strip>>;
|
|
24927
24927
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24928
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24929
|
-
name: z.ZodString;
|
|
24930
24928
|
id: z.ZodString;
|
|
24929
|
+
name: z.ZodString;
|
|
24931
24930
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24932
24931
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24933
24932
|
config: z.ZodObject<{
|
|
@@ -24957,14 +24956,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24957
24956
|
}, z.core.$strip>;
|
|
24958
24957
|
}, z.core.$strip>;
|
|
24959
24958
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24959
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24960
24960
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24961
24961
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24962
24962
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24963
24963
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24964
24964
|
}, z.core.$strip>>;
|
|
24965
24965
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24966
|
-
name: z.ZodString;
|
|
24967
24966
|
id: z.ZodString;
|
|
24967
|
+
name: z.ZodString;
|
|
24968
24968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24969
24969
|
functionId: z.ZodString;
|
|
24970
24970
|
}, z.core.$strip>>>;
|
|
@@ -25057,8 +25057,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25057
25057
|
in: {};
|
|
25058
25058
|
}>>>;
|
|
25059
25059
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25060
|
-
name: z.ZodString;
|
|
25061
25060
|
id: z.ZodString;
|
|
25061
|
+
name: z.ZodString;
|
|
25062
25062
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25063
25063
|
baseUrl: z.ZodURL;
|
|
25064
25064
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25079,9 +25079,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25079
25079
|
}, z.core.$strip>>>;
|
|
25080
25080
|
}, z.core.$strict>>;
|
|
25081
25081
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25082
|
+
id: z.ZodString;
|
|
25082
25083
|
name: z.ZodString;
|
|
25083
25084
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25084
|
-
id: z.ZodString;
|
|
25085
25085
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25086
25086
|
credentialStoreId: z.ZodString;
|
|
25087
25087
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -25100,8 +25100,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25100
25100
|
in: {};
|
|
25101
25101
|
}>;
|
|
25102
25102
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25103
|
-
name: z.ZodString;
|
|
25104
25103
|
id: z.ZodString;
|
|
25104
|
+
name: z.ZodString;
|
|
25105
25105
|
createdAt: z.ZodString;
|
|
25106
25106
|
updatedAt: z.ZodString;
|
|
25107
25107
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25217,8 +25217,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25217
25217
|
}, z.core.$strip>]>>>;
|
|
25218
25218
|
}, z.core.$strip>;
|
|
25219
25219
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25220
|
-
name: z.ZodString;
|
|
25221
25220
|
id: z.ZodString;
|
|
25221
|
+
name: z.ZodString;
|
|
25222
25222
|
createdAt: z.ZodString;
|
|
25223
25223
|
updatedAt: z.ZodString;
|
|
25224
25224
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25340,8 +25340,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25340
25340
|
}, z.core.$strip>]>>>;
|
|
25341
25341
|
}, z.core.$strip>;
|
|
25342
25342
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25343
|
-
name: z.ZodString;
|
|
25344
25343
|
id: z.ZodString;
|
|
25344
|
+
name: z.ZodString;
|
|
25345
25345
|
createdAt: z.ZodString;
|
|
25346
25346
|
updatedAt: z.ZodString;
|
|
25347
25347
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25349,8 +25349,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25349
25349
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25350
25350
|
executionMode: z.ZodString;
|
|
25351
25351
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25352
|
-
name: z.ZodString;
|
|
25353
25352
|
id: z.ZodString;
|
|
25353
|
+
name: z.ZodString;
|
|
25354
25354
|
createdAt: z.ZodString;
|
|
25355
25355
|
updatedAt: z.ZodString;
|
|
25356
25356
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25466,9 +25466,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25466
25466
|
}, z.core.$strip>]>>>;
|
|
25467
25467
|
}, z.core.$strip>>;
|
|
25468
25468
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25469
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25470
|
-
name: z.ZodString;
|
|
25471
25469
|
id: z.ZodString;
|
|
25470
|
+
name: z.ZodString;
|
|
25472
25471
|
createdAt: z.ZodString;
|
|
25473
25472
|
updatedAt: z.ZodString;
|
|
25474
25473
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25487,14 +25486,15 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25487
25486
|
mcp: ToolMcpConfig;
|
|
25488
25487
|
}>>;
|
|
25489
25488
|
credentialScope: z.ZodString;
|
|
25489
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25490
25490
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25491
25491
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25492
25492
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25493
25493
|
isWorkApp: z.ZodBoolean;
|
|
25494
25494
|
}, z.core.$strip>>>;
|
|
25495
25495
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25496
|
-
name: z.ZodString;
|
|
25497
25496
|
id: z.ZodString;
|
|
25497
|
+
name: z.ZodString;
|
|
25498
25498
|
createdAt: z.ZodString;
|
|
25499
25499
|
updatedAt: z.ZodString;
|
|
25500
25500
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25507,8 +25507,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25507
25507
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25508
25508
|
}, z.core.$strip>>>;
|
|
25509
25509
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25510
|
-
name: z.ZodString;
|
|
25511
25510
|
id: z.ZodString;
|
|
25511
|
+
name: z.ZodString;
|
|
25512
25512
|
createdAt: z.ZodString;
|
|
25513
25513
|
updatedAt: z.ZodString;
|
|
25514
25514
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25572,8 +25572,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25572
25572
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25573
25573
|
}, z.core.$strip>;
|
|
25574
25574
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25575
|
-
name: z.ZodString;
|
|
25576
25575
|
id: z.ZodString;
|
|
25576
|
+
name: z.ZodString;
|
|
25577
25577
|
createdAt: z.ZodString;
|
|
25578
25578
|
updatedAt: z.ZodString;
|
|
25579
25579
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25581,9 +25581,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25581
25581
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25582
25582
|
executionMode: z.ZodString;
|
|
25583
25583
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25584
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25585
|
-
name: z.ZodString;
|
|
25586
25584
|
id: z.ZodString;
|
|
25585
|
+
name: z.ZodString;
|
|
25587
25586
|
createdAt: z.ZodString;
|
|
25588
25587
|
updatedAt: z.ZodString;
|
|
25589
25588
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25602,14 +25601,15 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25602
25601
|
mcp: ToolMcpConfig;
|
|
25603
25602
|
}>>;
|
|
25604
25603
|
credentialScope: z.ZodString;
|
|
25604
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25605
25605
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25606
25606
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25607
25607
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25608
25608
|
isWorkApp: z.ZodBoolean;
|
|
25609
25609
|
}, z.core.$strip>>>;
|
|
25610
25610
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25611
|
-
name: z.ZodString;
|
|
25612
25611
|
id: z.ZodString;
|
|
25612
|
+
name: z.ZodString;
|
|
25613
25613
|
createdAt: z.ZodString;
|
|
25614
25614
|
updatedAt: z.ZodString;
|
|
25615
25615
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25622,8 +25622,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25622
25622
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25623
25623
|
}, z.core.$strip>>>;
|
|
25624
25624
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25625
|
-
name: z.ZodString;
|
|
25626
25625
|
id: z.ZodString;
|
|
25626
|
+
name: z.ZodString;
|
|
25627
25627
|
createdAt: z.ZodString;
|
|
25628
25628
|
updatedAt: z.ZodString;
|
|
25629
25629
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25686,8 +25686,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25686
25686
|
}, z.core.$strip>>;
|
|
25687
25687
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25688
25688
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25689
|
-
name: z.ZodString;
|
|
25690
25689
|
id: z.ZodString;
|
|
25690
|
+
name: z.ZodString;
|
|
25691
25691
|
createdAt: z.ZodString;
|
|
25692
25692
|
updatedAt: z.ZodString;
|
|
25693
25693
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25810,8 +25810,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25810
25810
|
}, z.core.$strip>>;
|
|
25811
25811
|
}, z.core.$strip>;
|
|
25812
25812
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25813
|
-
name: z.ZodString;
|
|
25814
25813
|
id: z.ZodString;
|
|
25814
|
+
name: z.ZodString;
|
|
25815
25815
|
createdAt: z.ZodString;
|
|
25816
25816
|
updatedAt: z.ZodString;
|
|
25817
25817
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25840,8 +25840,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25840
25840
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
25841
25841
|
}, z.core.$strip>>;
|
|
25842
25842
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25843
|
-
name: z.ZodString;
|
|
25844
25843
|
id: z.ZodString;
|
|
25844
|
+
name: z.ZodString;
|
|
25845
25845
|
createdAt: z.ZodString;
|
|
25846
25846
|
updatedAt: z.ZodString;
|
|
25847
25847
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25849,8 +25849,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25849
25849
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25850
25850
|
executionMode: z.ZodString;
|
|
25851
25851
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25852
|
-
name: z.ZodString;
|
|
25853
25852
|
id: z.ZodString;
|
|
25853
|
+
name: z.ZodString;
|
|
25854
25854
|
createdAt: z.ZodString;
|
|
25855
25855
|
updatedAt: z.ZodString;
|
|
25856
25856
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25966,9 +25966,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25966
25966
|
}, z.core.$strip>]>>>;
|
|
25967
25967
|
}, z.core.$strip>>;
|
|
25968
25968
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25969
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25970
|
-
name: z.ZodString;
|
|
25971
25969
|
id: z.ZodString;
|
|
25970
|
+
name: z.ZodString;
|
|
25972
25971
|
createdAt: z.ZodString;
|
|
25973
25972
|
updatedAt: z.ZodString;
|
|
25974
25973
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -25987,14 +25986,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25987
25986
|
mcp: ToolMcpConfig;
|
|
25988
25987
|
}>>;
|
|
25989
25988
|
credentialScope: z.ZodString;
|
|
25989
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25990
25990
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25991
25991
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25992
25992
|
lastError: z.ZodNullable<z.ZodString>;
|
|
25993
25993
|
isWorkApp: z.ZodBoolean;
|
|
25994
25994
|
}, z.core.$strip>>>;
|
|
25995
25995
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25996
|
-
name: z.ZodString;
|
|
25997
25996
|
id: z.ZodString;
|
|
25997
|
+
name: z.ZodString;
|
|
25998
25998
|
createdAt: z.ZodString;
|
|
25999
25999
|
updatedAt: z.ZodString;
|
|
26000
26000
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26007,8 +26007,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26007
26007
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26008
26008
|
}, z.core.$strip>>>;
|
|
26009
26009
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26010
|
-
name: z.ZodString;
|
|
26011
26010
|
id: z.ZodString;
|
|
26011
|
+
name: z.ZodString;
|
|
26012
26012
|
createdAt: z.ZodString;
|
|
26013
26013
|
updatedAt: z.ZodString;
|
|
26014
26014
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26072,9 +26072,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26072
26072
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26073
26073
|
}, z.core.$strip>>;
|
|
26074
26074
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26075
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26076
|
-
name: z.ZodString;
|
|
26077
26075
|
id: z.ZodString;
|
|
26076
|
+
name: z.ZodString;
|
|
26078
26077
|
createdAt: z.ZodString;
|
|
26079
26078
|
updatedAt: z.ZodString;
|
|
26080
26079
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26093,14 +26092,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26093
26092
|
mcp: ToolMcpConfig;
|
|
26094
26093
|
}>>;
|
|
26095
26094
|
credentialScope: z.ZodString;
|
|
26095
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26096
26096
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26097
26097
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
26098
26098
|
lastError: z.ZodNullable<z.ZodString>;
|
|
26099
26099
|
isWorkApp: z.ZodBoolean;
|
|
26100
26100
|
}, z.core.$strip>>;
|
|
26101
26101
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26102
|
-
name: z.ZodString;
|
|
26103
26102
|
id: z.ZodString;
|
|
26103
|
+
name: z.ZodString;
|
|
26104
26104
|
createdAt: z.ZodString;
|
|
26105
26105
|
updatedAt: z.ZodString;
|
|
26106
26106
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26117,8 +26117,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26117
26117
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26118
26118
|
}, z.core.$strip>>>;
|
|
26119
26119
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26120
|
-
name: z.ZodString;
|
|
26121
26120
|
id: z.ZodString;
|
|
26121
|
+
name: z.ZodString;
|
|
26122
26122
|
createdAt: z.ZodString;
|
|
26123
26123
|
updatedAt: z.ZodString;
|
|
26124
26124
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26166,8 +26166,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26166
26166
|
}>>>;
|
|
26167
26167
|
}, z.core.$strip>>>;
|
|
26168
26168
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26169
|
-
name: z.ZodString;
|
|
26170
26169
|
id: z.ZodString;
|
|
26170
|
+
name: z.ZodString;
|
|
26171
26171
|
createdAt: z.ZodString;
|
|
26172
26172
|
updatedAt: z.ZodString;
|
|
26173
26173
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26215,8 +26215,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26215
26215
|
}>>>;
|
|
26216
26216
|
}, z.core.$strip>>>;
|
|
26217
26217
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26218
|
-
name: z.ZodString;
|
|
26219
26218
|
id: z.ZodString;
|
|
26219
|
+
name: z.ZodString;
|
|
26220
26220
|
createdAt: z.ZodString;
|
|
26221
26221
|
updatedAt: z.ZodString;
|
|
26222
26222
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26239,11 +26239,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26239
26239
|
}, z.core.$strip>>>;
|
|
26240
26240
|
}, z.core.$strict>>;
|
|
26241
26241
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26242
|
-
name: z.ZodString;
|
|
26243
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26244
26242
|
id: z.ZodString;
|
|
26243
|
+
name: z.ZodString;
|
|
26245
26244
|
createdAt: z.ZodString;
|
|
26246
26245
|
updatedAt: z.ZodString;
|
|
26246
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26247
26247
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26248
26248
|
credentialStoreId: z.ZodString;
|
|
26249
26249
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -26835,8 +26835,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26835
26835
|
in: {};
|
|
26836
26836
|
}>;
|
|
26837
26837
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26838
|
-
name: z.ZodString;
|
|
26839
26838
|
id: z.ZodString;
|
|
26839
|
+
name: z.ZodString;
|
|
26840
26840
|
createdAt: z.ZodString;
|
|
26841
26841
|
updatedAt: z.ZodString;
|
|
26842
26842
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26865,9 +26865,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26865
26865
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26866
26866
|
}, z.core.$strip>>;
|
|
26867
26867
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26868
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26869
|
-
name: z.ZodString;
|
|
26870
26868
|
id: z.ZodString;
|
|
26869
|
+
name: z.ZodString;
|
|
26871
26870
|
createdAt: z.ZodString;
|
|
26872
26871
|
updatedAt: z.ZodString;
|
|
26873
26872
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26886,14 +26885,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26886
26885
|
mcp: ToolMcpConfig;
|
|
26887
26886
|
}>>;
|
|
26888
26887
|
credentialScope: z.ZodString;
|
|
26888
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26889
26889
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26890
26890
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
26891
26891
|
lastError: z.ZodNullable<z.ZodString>;
|
|
26892
26892
|
isWorkApp: z.ZodBoolean;
|
|
26893
26893
|
}, z.core.$strip>>;
|
|
26894
26894
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26895
|
-
name: z.ZodString;
|
|
26896
26895
|
id: z.ZodString;
|
|
26896
|
+
name: z.ZodString;
|
|
26897
26897
|
createdAt: z.ZodString;
|
|
26898
26898
|
updatedAt: z.ZodString;
|
|
26899
26899
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26910,8 +26910,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26910
26910
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26911
26911
|
}, z.core.$strip>>>;
|
|
26912
26912
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26913
|
-
name: z.ZodString;
|
|
26914
26913
|
id: z.ZodString;
|
|
26914
|
+
name: z.ZodString;
|
|
26915
26915
|
createdAt: z.ZodString;
|
|
26916
26916
|
updatedAt: z.ZodString;
|
|
26917
26917
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -26959,8 +26959,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26959
26959
|
}>>>;
|
|
26960
26960
|
}, z.core.$strip>>>;
|
|
26961
26961
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26962
|
-
name: z.ZodString;
|
|
26963
26962
|
id: z.ZodString;
|
|
26963
|
+
name: z.ZodString;
|
|
26964
26964
|
createdAt: z.ZodString;
|
|
26965
26965
|
updatedAt: z.ZodString;
|
|
26966
26966
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27008,8 +27008,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27008
27008
|
}>>>;
|
|
27009
27009
|
}, z.core.$strip>>>;
|
|
27010
27010
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27011
|
-
name: z.ZodString;
|
|
27012
27011
|
id: z.ZodString;
|
|
27012
|
+
name: z.ZodString;
|
|
27013
27013
|
createdAt: z.ZodString;
|
|
27014
27014
|
updatedAt: z.ZodString;
|
|
27015
27015
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27032,11 +27032,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27032
27032
|
}, z.core.$strip>>>;
|
|
27033
27033
|
}, z.core.$strict>>;
|
|
27034
27034
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27035
|
-
name: z.ZodString;
|
|
27036
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27037
27035
|
id: z.ZodString;
|
|
27036
|
+
name: z.ZodString;
|
|
27038
27037
|
createdAt: z.ZodString;
|
|
27039
27038
|
updatedAt: z.ZodString;
|
|
27039
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27040
27040
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27041
27041
|
credentialStoreId: z.ZodString;
|
|
27042
27042
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -27624,8 +27624,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27624
27624
|
}>>>;
|
|
27625
27625
|
}, z.core.$strip>>>;
|
|
27626
27626
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27627
|
-
name: z.ZodString;
|
|
27628
27627
|
id: z.ZodString;
|
|
27628
|
+
name: z.ZodString;
|
|
27629
27629
|
createdAt: z.ZodString;
|
|
27630
27630
|
updatedAt: z.ZodString;
|
|
27631
27631
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27633,9 +27633,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27633
27633
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27634
27634
|
executionMode: z.ZodString;
|
|
27635
27635
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27636
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27637
|
-
name: z.ZodString;
|
|
27638
27636
|
id: z.ZodString;
|
|
27637
|
+
name: z.ZodString;
|
|
27639
27638
|
createdAt: z.ZodString;
|
|
27640
27639
|
updatedAt: z.ZodString;
|
|
27641
27640
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27654,14 +27653,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27654
27653
|
mcp: ToolMcpConfig;
|
|
27655
27654
|
}>>;
|
|
27656
27655
|
credentialScope: z.ZodString;
|
|
27656
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27657
27657
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27658
27658
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
27659
27659
|
lastError: z.ZodNullable<z.ZodString>;
|
|
27660
27660
|
isWorkApp: z.ZodBoolean;
|
|
27661
27661
|
}, z.core.$strip>>>;
|
|
27662
27662
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27663
|
-
name: z.ZodString;
|
|
27664
27663
|
id: z.ZodString;
|
|
27664
|
+
name: z.ZodString;
|
|
27665
27665
|
createdAt: z.ZodString;
|
|
27666
27666
|
updatedAt: z.ZodString;
|
|
27667
27667
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27674,8 +27674,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27674
27674
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27675
27675
|
}, z.core.$strip>>>;
|
|
27676
27676
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27677
|
-
name: z.ZodString;
|
|
27678
27677
|
id: z.ZodString;
|
|
27678
|
+
name: z.ZodString;
|
|
27679
27679
|
createdAt: z.ZodString;
|
|
27680
27680
|
updatedAt: z.ZodString;
|
|
27681
27681
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27738,8 +27738,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27738
27738
|
}, z.core.$strip>>;
|
|
27739
27739
|
prompt: z.ZodNullable<z.ZodString>;
|
|
27740
27740
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27741
|
-
name: z.ZodString;
|
|
27742
27741
|
id: z.ZodString;
|
|
27742
|
+
name: z.ZodString;
|
|
27743
27743
|
createdAt: z.ZodString;
|
|
27744
27744
|
updatedAt: z.ZodString;
|
|
27745
27745
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27867,8 +27867,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27867
27867
|
}>;
|
|
27868
27868
|
declare const ProjectResponse: z.ZodObject<{
|
|
27869
27869
|
data: z.ZodObject<{
|
|
27870
|
-
name: z.ZodString;
|
|
27871
27870
|
id: z.ZodString;
|
|
27871
|
+
name: z.ZodString;
|
|
27872
27872
|
createdAt: z.ZodString;
|
|
27873
27873
|
updatedAt: z.ZodString;
|
|
27874
27874
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -27903,8 +27903,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
27903
27903
|
}, z.core.$strip>;
|
|
27904
27904
|
declare const SubAgentResponse: z.ZodObject<{
|
|
27905
27905
|
data: z.ZodObject<{
|
|
27906
|
-
name: z.ZodString;
|
|
27907
27906
|
id: z.ZodString;
|
|
27907
|
+
name: z.ZodString;
|
|
27908
27908
|
createdAt: z.ZodString;
|
|
27909
27909
|
updatedAt: z.ZodString;
|
|
27910
27910
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28000,8 +28000,8 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28000
28000
|
}, z.core.$strip>;
|
|
28001
28001
|
declare const AgentResponse: z.ZodObject<{
|
|
28002
28002
|
data: z.ZodObject<{
|
|
28003
|
-
name: z.ZodString;
|
|
28004
28003
|
id: z.ZodString;
|
|
28004
|
+
name: z.ZodString;
|
|
28005
28005
|
createdAt: z.ZodString;
|
|
28006
28006
|
updatedAt: z.ZodString;
|
|
28007
28007
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28156,8 +28156,8 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28156
28156
|
}, z.core.$strip>;
|
|
28157
28157
|
declare const ExternalAgentResponse: z.ZodObject<{
|
|
28158
28158
|
data: z.ZodObject<{
|
|
28159
|
-
name: z.ZodString;
|
|
28160
28159
|
id: z.ZodString;
|
|
28160
|
+
name: z.ZodString;
|
|
28161
28161
|
createdAt: z.ZodString;
|
|
28162
28162
|
updatedAt: z.ZodString;
|
|
28163
28163
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28176,11 +28176,11 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
28176
28176
|
}, z.core.$strip>;
|
|
28177
28177
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28178
28178
|
data: z.ZodObject<{
|
|
28179
|
-
name: z.ZodNullable<z.ZodString>;
|
|
28180
28179
|
id: z.ZodString;
|
|
28180
|
+
name: z.ZodNullable<z.ZodString>;
|
|
28181
28181
|
createdAt: z.ZodString;
|
|
28182
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28183
28182
|
updatedAt: z.ZodString;
|
|
28183
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28184
28184
|
agentId: z.ZodString;
|
|
28185
28185
|
publicId: z.ZodString;
|
|
28186
28186
|
keyPrefix: z.ZodString;
|
|
@@ -28192,11 +28192,11 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28192
28192
|
}, z.core.$strip>;
|
|
28193
28193
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28194
28194
|
data: z.ZodObject<{
|
|
28195
|
-
name: z.ZodString;
|
|
28196
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28197
28195
|
id: z.ZodString;
|
|
28196
|
+
name: z.ZodString;
|
|
28198
28197
|
createdAt: z.ZodString;
|
|
28199
28198
|
updatedAt: z.ZodString;
|
|
28199
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28200
28200
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28201
28201
|
credentialStoreId: z.ZodString;
|
|
28202
28202
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -28796,8 +28796,8 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28796
28796
|
}, z.core.$strip>;
|
|
28797
28797
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28798
28798
|
data: z.ZodObject<{
|
|
28799
|
-
name: z.ZodString;
|
|
28800
28799
|
id: z.ZodString;
|
|
28800
|
+
name: z.ZodString;
|
|
28801
28801
|
createdAt: z.ZodString;
|
|
28802
28802
|
updatedAt: z.ZodString;
|
|
28803
28803
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28818,8 +28818,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
28818
28818
|
}, z.core.$strip>;
|
|
28819
28819
|
declare const DataComponentResponse: z.ZodObject<{
|
|
28820
28820
|
data: z.ZodObject<{
|
|
28821
|
-
name: z.ZodString;
|
|
28822
28821
|
id: z.ZodString;
|
|
28822
|
+
name: z.ZodString;
|
|
28823
28823
|
createdAt: z.ZodString;
|
|
28824
28824
|
updatedAt: z.ZodString;
|
|
28825
28825
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28869,8 +28869,8 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
28869
28869
|
}, z.core.$strip>;
|
|
28870
28870
|
declare const ArtifactComponentResponse: z.ZodObject<{
|
|
28871
28871
|
data: z.ZodObject<{
|
|
28872
|
-
name: z.ZodString;
|
|
28873
28872
|
id: z.ZodString;
|
|
28873
|
+
name: z.ZodString;
|
|
28874
28874
|
createdAt: z.ZodString;
|
|
28875
28875
|
updatedAt: z.ZodString;
|
|
28876
28876
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28930,20 +28930,20 @@ declare const SubAgentRelationResponse: z.ZodObject<{
|
|
|
28930
28930
|
}, z.core.$strip>;
|
|
28931
28931
|
declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
28932
28932
|
data: z.ZodObject<{
|
|
28933
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
28934
28933
|
id: z.ZodString;
|
|
28935
28934
|
createdAt: z.ZodString;
|
|
28936
28935
|
updatedAt: z.ZodString;
|
|
28937
28936
|
toolId: z.ZodString;
|
|
28938
28937
|
subAgentId: z.ZodString;
|
|
28938
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
28939
28939
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
28940
28940
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
28941
28941
|
}, z.core.$strip>;
|
|
28942
28942
|
}, z.core.$strip>;
|
|
28943
28943
|
declare const TriggerResponse: z.ZodObject<{
|
|
28944
28944
|
data: z.ZodObject<{
|
|
28945
|
-
name: z.ZodString;
|
|
28946
28945
|
id: z.ZodString;
|
|
28946
|
+
name: z.ZodString;
|
|
28947
28947
|
createdAt: z.ZodString;
|
|
28948
28948
|
updatedAt: z.ZodString;
|
|
28949
28949
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -28967,9 +28967,9 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28967
28967
|
}>;
|
|
28968
28968
|
signature: z.ZodObject<{
|
|
28969
28969
|
source: z.ZodEnum<{
|
|
28970
|
-
body: "body";
|
|
28971
28970
|
query: "query";
|
|
28972
28971
|
header: "header";
|
|
28972
|
+
body: "body";
|
|
28973
28973
|
}>;
|
|
28974
28974
|
key: z.ZodString;
|
|
28975
28975
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28977,9 +28977,9 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28977
28977
|
}, z.core.$strip>;
|
|
28978
28978
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28979
28979
|
source: z.ZodEnum<{
|
|
28980
|
-
body: "body";
|
|
28981
|
-
header: "header";
|
|
28982
28980
|
literal: "literal";
|
|
28981
|
+
header: "header";
|
|
28982
|
+
body: "body";
|
|
28983
28983
|
}>;
|
|
28984
28984
|
key: z.ZodOptional<z.ZodString>;
|
|
28985
28985
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29006,7 +29006,6 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29006
29006
|
data: z.ZodObject<{
|
|
29007
29007
|
id: z.ZodString;
|
|
29008
29008
|
createdAt: z.ZodString;
|
|
29009
|
-
status: z.ZodString;
|
|
29010
29009
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29011
29010
|
type: z.ZodEnum<{
|
|
29012
29011
|
commit: "commit";
|
|
@@ -29016,6 +29015,7 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29016
29015
|
name: z.ZodString;
|
|
29017
29016
|
hash: z.ZodString;
|
|
29018
29017
|
}, z.core.$strip>>>;
|
|
29018
|
+
status: z.ZodString;
|
|
29019
29019
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29020
29020
|
triggerId: z.ZodString;
|
|
29021
29021
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -29036,8 +29036,8 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
29036
29036
|
}, z.core.$strip>;
|
|
29037
29037
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29038
29038
|
data: z.ZodArray<z.ZodObject<{
|
|
29039
|
-
name: z.ZodString;
|
|
29040
29039
|
id: z.ZodString;
|
|
29040
|
+
name: z.ZodString;
|
|
29041
29041
|
createdAt: z.ZodString;
|
|
29042
29042
|
updatedAt: z.ZodString;
|
|
29043
29043
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29078,8 +29078,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29078
29078
|
}, z.core.$strip>;
|
|
29079
29079
|
declare const SubAgentListResponse: z.ZodObject<{
|
|
29080
29080
|
data: z.ZodArray<z.ZodObject<{
|
|
29081
|
-
name: z.ZodString;
|
|
29082
29081
|
id: z.ZodString;
|
|
29082
|
+
name: z.ZodString;
|
|
29083
29083
|
createdAt: z.ZodString;
|
|
29084
29084
|
updatedAt: z.ZodString;
|
|
29085
29085
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29181,8 +29181,8 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29181
29181
|
}, z.core.$strip>;
|
|
29182
29182
|
declare const AgentListResponse: z.ZodObject<{
|
|
29183
29183
|
data: z.ZodArray<z.ZodObject<{
|
|
29184
|
-
name: z.ZodString;
|
|
29185
29184
|
id: z.ZodString;
|
|
29185
|
+
name: z.ZodString;
|
|
29186
29186
|
createdAt: z.ZodString;
|
|
29187
29187
|
updatedAt: z.ZodString;
|
|
29188
29188
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29343,8 +29343,8 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29343
29343
|
}, z.core.$strip>;
|
|
29344
29344
|
declare const ExternalAgentListResponse: z.ZodObject<{
|
|
29345
29345
|
data: z.ZodArray<z.ZodObject<{
|
|
29346
|
-
name: z.ZodString;
|
|
29347
29346
|
id: z.ZodString;
|
|
29347
|
+
name: z.ZodString;
|
|
29348
29348
|
createdAt: z.ZodString;
|
|
29349
29349
|
updatedAt: z.ZodString;
|
|
29350
29350
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29375,11 +29375,11 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29375
29375
|
}, z.core.$strip>;
|
|
29376
29376
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29377
29377
|
data: z.ZodArray<z.ZodObject<{
|
|
29378
|
-
name: z.ZodNullable<z.ZodString>;
|
|
29379
29378
|
id: z.ZodString;
|
|
29379
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29380
29380
|
createdAt: z.ZodString;
|
|
29381
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29382
29381
|
updatedAt: z.ZodString;
|
|
29382
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29383
29383
|
agentId: z.ZodString;
|
|
29384
29384
|
publicId: z.ZodString;
|
|
29385
29385
|
keyPrefix: z.ZodString;
|
|
@@ -29398,8 +29398,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29398
29398
|
declare const AppResponse: z.ZodObject<{
|
|
29399
29399
|
data: z.ZodObject<{
|
|
29400
29400
|
type: z.ZodString;
|
|
29401
|
-
name: z.ZodString;
|
|
29402
29401
|
id: z.ZodString;
|
|
29402
|
+
name: z.ZodString;
|
|
29403
29403
|
createdAt: z.ZodString;
|
|
29404
29404
|
updatedAt: z.ZodString;
|
|
29405
29405
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29443,8 +29443,8 @@ declare const AppResponse: z.ZodObject<{
|
|
|
29443
29443
|
declare const AppListResponse: z.ZodObject<{
|
|
29444
29444
|
data: z.ZodArray<z.ZodObject<{
|
|
29445
29445
|
type: z.ZodString;
|
|
29446
|
-
name: z.ZodString;
|
|
29447
29446
|
id: z.ZodString;
|
|
29447
|
+
name: z.ZodString;
|
|
29448
29448
|
createdAt: z.ZodString;
|
|
29449
29449
|
updatedAt: z.ZodString;
|
|
29450
29450
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -29493,11 +29493,11 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
29493
29493
|
}, z.core.$strip>;
|
|
29494
29494
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29495
29495
|
data: z.ZodArray<z.ZodObject<{
|
|
29496
|
-
name: z.ZodString;
|
|
29497
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29498
29496
|
id: z.ZodString;
|
|
29497
|
+
name: z.ZodString;
|
|
29499
29498
|
createdAt: z.ZodString;
|
|
29500
29499
|
updatedAt: z.ZodString;
|
|
29500
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29501
29501
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29502
29502
|
credentialStoreId: z.ZodString;
|
|
29503
29503
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -30109,8 +30109,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30109
30109
|
}, z.core.$strip>;
|
|
30110
30110
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30111
30111
|
data: z.ZodArray<z.ZodObject<{
|
|
30112
|
-
name: z.ZodString;
|
|
30113
30112
|
id: z.ZodString;
|
|
30113
|
+
name: z.ZodString;
|
|
30114
30114
|
createdAt: z.ZodString;
|
|
30115
30115
|
updatedAt: z.ZodString;
|
|
30116
30116
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30161,8 +30161,8 @@ declare const FeedbackListResponse: z.ZodObject<{
|
|
|
30161
30161
|
}, z.core.$strip>;
|
|
30162
30162
|
declare const DataComponentListResponse: z.ZodObject<{
|
|
30163
30163
|
data: z.ZodArray<z.ZodObject<{
|
|
30164
|
-
name: z.ZodString;
|
|
30165
30164
|
id: z.ZodString;
|
|
30165
|
+
name: z.ZodString;
|
|
30166
30166
|
createdAt: z.ZodString;
|
|
30167
30167
|
updatedAt: z.ZodString;
|
|
30168
30168
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30218,8 +30218,8 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
30218
30218
|
}, z.core.$strip>;
|
|
30219
30219
|
declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
30220
30220
|
data: z.ZodArray<z.ZodObject<{
|
|
30221
|
-
name: z.ZodString;
|
|
30222
30221
|
id: z.ZodString;
|
|
30222
|
+
name: z.ZodString;
|
|
30223
30223
|
createdAt: z.ZodString;
|
|
30224
30224
|
updatedAt: z.ZodString;
|
|
30225
30225
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30291,12 +30291,12 @@ declare const SubAgentRelationListResponse: z.ZodObject<{
|
|
|
30291
30291
|
}, z.core.$strip>;
|
|
30292
30292
|
declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
30293
30293
|
data: z.ZodArray<z.ZodObject<{
|
|
30294
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
30295
30294
|
id: z.ZodString;
|
|
30296
30295
|
createdAt: z.ZodString;
|
|
30297
30296
|
updatedAt: z.ZodString;
|
|
30298
30297
|
toolId: z.ZodString;
|
|
30299
30298
|
subAgentId: z.ZodString;
|
|
30299
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
30300
30300
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
30301
30301
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
30302
30302
|
}, z.core.$strip>>;
|
|
@@ -30309,8 +30309,8 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30309
30309
|
}, z.core.$strip>;
|
|
30310
30310
|
declare const TriggerListResponse: z.ZodObject<{
|
|
30311
30311
|
data: z.ZodArray<z.ZodObject<{
|
|
30312
|
-
name: z.ZodString;
|
|
30313
30312
|
id: z.ZodString;
|
|
30313
|
+
name: z.ZodString;
|
|
30314
30314
|
createdAt: z.ZodString;
|
|
30315
30315
|
updatedAt: z.ZodString;
|
|
30316
30316
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30334,9 +30334,9 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30334
30334
|
}>;
|
|
30335
30335
|
signature: z.ZodObject<{
|
|
30336
30336
|
source: z.ZodEnum<{
|
|
30337
|
-
body: "body";
|
|
30338
30337
|
query: "query";
|
|
30339
30338
|
header: "header";
|
|
30339
|
+
body: "body";
|
|
30340
30340
|
}>;
|
|
30341
30341
|
key: z.ZodString;
|
|
30342
30342
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30344,9 +30344,9 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30344
30344
|
}, z.core.$strip>;
|
|
30345
30345
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30346
30346
|
source: z.ZodEnum<{
|
|
30347
|
-
body: "body";
|
|
30348
|
-
header: "header";
|
|
30349
30347
|
literal: "literal";
|
|
30348
|
+
header: "header";
|
|
30349
|
+
body: "body";
|
|
30350
30350
|
}>;
|
|
30351
30351
|
key: z.ZodOptional<z.ZodString>;
|
|
30352
30352
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30379,7 +30379,6 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30379
30379
|
data: z.ZodArray<z.ZodObject<{
|
|
30380
30380
|
id: z.ZodString;
|
|
30381
30381
|
createdAt: z.ZodString;
|
|
30382
|
-
status: z.ZodString;
|
|
30383
30382
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30384
30383
|
type: z.ZodEnum<{
|
|
30385
30384
|
commit: "commit";
|
|
@@ -30389,6 +30388,7 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30389
30388
|
name: z.ZodString;
|
|
30390
30389
|
hash: z.ZodString;
|
|
30391
30390
|
}, z.core.$strip>>>;
|
|
30391
|
+
status: z.ZodString;
|
|
30392
30392
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30393
30393
|
triggerId: z.ZodString;
|
|
30394
30394
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -30404,8 +30404,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30404
30404
|
}, z.core.$strip>;
|
|
30405
30405
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30406
30406
|
data: z.ZodObject<{
|
|
30407
|
-
name: z.ZodString;
|
|
30408
30407
|
id: z.ZodString;
|
|
30408
|
+
name: z.ZodString;
|
|
30409
30409
|
createdAt: z.ZodString;
|
|
30410
30410
|
updatedAt: z.ZodString;
|
|
30411
30411
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30429,9 +30429,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30429
30429
|
}>;
|
|
30430
30430
|
signature: z.ZodObject<{
|
|
30431
30431
|
source: z.ZodEnum<{
|
|
30432
|
-
body: "body";
|
|
30433
30432
|
query: "query";
|
|
30434
30433
|
header: "header";
|
|
30434
|
+
body: "body";
|
|
30435
30435
|
}>;
|
|
30436
30436
|
key: z.ZodString;
|
|
30437
30437
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30439,9 +30439,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30439
30439
|
}, z.core.$strip>;
|
|
30440
30440
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30441
30441
|
source: z.ZodEnum<{
|
|
30442
|
-
body: "body";
|
|
30443
|
-
header: "header";
|
|
30444
30442
|
literal: "literal";
|
|
30443
|
+
header: "header";
|
|
30444
|
+
body: "body";
|
|
30445
30445
|
}>;
|
|
30446
30446
|
key: z.ZodOptional<z.ZodString>;
|
|
30447
30447
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30467,8 +30467,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30467
30467
|
}, z.core.$strip>;
|
|
30468
30468
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
30469
30469
|
data: z.ZodObject<{
|
|
30470
|
-
name: z.ZodString;
|
|
30471
30470
|
id: z.ZodString;
|
|
30471
|
+
name: z.ZodString;
|
|
30472
30472
|
createdAt: z.ZodString;
|
|
30473
30473
|
updatedAt: z.ZodString;
|
|
30474
30474
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30492,9 +30492,9 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30492
30492
|
}>;
|
|
30493
30493
|
signature: z.ZodObject<{
|
|
30494
30494
|
source: z.ZodEnum<{
|
|
30495
|
-
body: "body";
|
|
30496
30495
|
query: "query";
|
|
30497
30496
|
header: "header";
|
|
30497
|
+
body: "body";
|
|
30498
30498
|
}>;
|
|
30499
30499
|
key: z.ZodString;
|
|
30500
30500
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30502,9 +30502,9 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30502
30502
|
}, z.core.$strip>;
|
|
30503
30503
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30504
30504
|
source: z.ZodEnum<{
|
|
30505
|
-
body: "body";
|
|
30506
|
-
header: "header";
|
|
30507
30505
|
literal: "literal";
|
|
30506
|
+
header: "header";
|
|
30507
|
+
body: "body";
|
|
30508
30508
|
}>;
|
|
30509
30509
|
key: z.ZodOptional<z.ZodString>;
|
|
30510
30510
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30531,8 +30531,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30531
30531
|
}, z.core.$strip>;
|
|
30532
30532
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30533
30533
|
data: z.ZodArray<z.ZodObject<{
|
|
30534
|
-
name: z.ZodString;
|
|
30535
30534
|
id: z.ZodString;
|
|
30535
|
+
name: z.ZodString;
|
|
30536
30536
|
createdAt: z.ZodString;
|
|
30537
30537
|
updatedAt: z.ZodString;
|
|
30538
30538
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -30556,9 +30556,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30556
30556
|
}>;
|
|
30557
30557
|
signature: z.ZodObject<{
|
|
30558
30558
|
source: z.ZodEnum<{
|
|
30559
|
-
body: "body";
|
|
30560
30559
|
query: "query";
|
|
30561
30560
|
header: "header";
|
|
30561
|
+
body: "body";
|
|
30562
30562
|
}>;
|
|
30563
30563
|
key: z.ZodString;
|
|
30564
30564
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30566,9 +30566,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30566
30566
|
}, z.core.$strip>;
|
|
30567
30567
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30568
30568
|
source: z.ZodEnum<{
|
|
30569
|
-
body: "body";
|
|
30570
|
-
header: "header";
|
|
30571
30569
|
literal: "literal";
|
|
30570
|
+
header: "header";
|
|
30571
|
+
body: "body";
|
|
30572
30572
|
}>;
|
|
30573
30573
|
key: z.ZodOptional<z.ZodString>;
|
|
30574
30574
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30606,12 +30606,12 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
30606
30606
|
pending: z.ZodNumber;
|
|
30607
30607
|
}, z.core.$strip>;
|
|
30608
30608
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30609
|
-
name: z.ZodString;
|
|
30610
30609
|
id: z.ZodString;
|
|
30610
|
+
name: z.ZodString;
|
|
30611
30611
|
createdAt: z.ZodString;
|
|
30612
30612
|
updatedAt: z.ZodString;
|
|
30613
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30614
30613
|
ref: z.ZodString;
|
|
30614
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30615
30615
|
enabled: z.ZodBoolean;
|
|
30616
30616
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30617
30617
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -30644,12 +30644,12 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30644
30644
|
type ScheduledTriggerWithRunInfo = z.infer<typeof ScheduledTriggerWithRunInfoSchema>;
|
|
30645
30645
|
declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
30646
30646
|
data: z.ZodObject<{
|
|
30647
|
-
name: z.ZodString;
|
|
30648
30647
|
id: z.ZodString;
|
|
30648
|
+
name: z.ZodString;
|
|
30649
30649
|
createdAt: z.ZodString;
|
|
30650
30650
|
updatedAt: z.ZodString;
|
|
30651
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30652
30651
|
ref: z.ZodString;
|
|
30652
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30653
30653
|
enabled: z.ZodBoolean;
|
|
30654
30654
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30655
30655
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -30667,12 +30667,12 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30667
30667
|
}, z.core.$strip>;
|
|
30668
30668
|
declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
30669
30669
|
data: z.ZodArray<z.ZodObject<{
|
|
30670
|
-
name: z.ZodString;
|
|
30671
30670
|
id: z.ZodString;
|
|
30671
|
+
name: z.ZodString;
|
|
30672
30672
|
createdAt: z.ZodString;
|
|
30673
30673
|
updatedAt: z.ZodString;
|
|
30674
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30675
30674
|
ref: z.ZodString;
|
|
30675
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30676
30676
|
enabled: z.ZodBoolean;
|
|
30677
30677
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30678
30678
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -30696,12 +30696,12 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30696
30696
|
}, z.core.$strip>;
|
|
30697
30697
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30698
30698
|
data: z.ZodArray<z.ZodObject<{
|
|
30699
|
-
name: z.ZodString;
|
|
30700
30699
|
id: z.ZodString;
|
|
30700
|
+
name: z.ZodString;
|
|
30701
30701
|
createdAt: z.ZodString;
|
|
30702
30702
|
updatedAt: z.ZodString;
|
|
30703
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30704
30703
|
ref: z.ZodString;
|
|
30704
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30705
30705
|
enabled: z.ZodBoolean;
|
|
30706
30706
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30707
30707
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -30742,13 +30742,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30742
30742
|
data: z.ZodObject<{
|
|
30743
30743
|
id: z.ZodString;
|
|
30744
30744
|
createdAt: z.ZodString;
|
|
30745
|
-
status: z.ZodEnum<{
|
|
30746
|
-
pending: "pending";
|
|
30747
|
-
running: "running";
|
|
30748
|
-
completed: "completed";
|
|
30749
|
-
failed: "failed";
|
|
30750
|
-
cancelled: "cancelled";
|
|
30751
|
-
}>;
|
|
30752
30745
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30753
30746
|
type: z.ZodEnum<{
|
|
30754
30747
|
commit: "commit";
|
|
@@ -30758,6 +30751,13 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30758
30751
|
name: z.ZodString;
|
|
30759
30752
|
hash: z.ZodString;
|
|
30760
30753
|
}, z.core.$strip>>>;
|
|
30754
|
+
status: z.ZodEnum<{
|
|
30755
|
+
pending: "pending";
|
|
30756
|
+
running: "running";
|
|
30757
|
+
completed: "completed";
|
|
30758
|
+
failed: "failed";
|
|
30759
|
+
cancelled: "cancelled";
|
|
30760
|
+
}>;
|
|
30761
30761
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30762
30762
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30763
30763
|
scheduledTriggerId: z.ZodString;
|
|
@@ -30773,13 +30773,6 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30773
30773
|
data: z.ZodArray<z.ZodObject<{
|
|
30774
30774
|
id: z.ZodString;
|
|
30775
30775
|
createdAt: z.ZodString;
|
|
30776
|
-
status: z.ZodEnum<{
|
|
30777
|
-
pending: "pending";
|
|
30778
|
-
running: "running";
|
|
30779
|
-
completed: "completed";
|
|
30780
|
-
failed: "failed";
|
|
30781
|
-
cancelled: "cancelled";
|
|
30782
|
-
}>;
|
|
30783
30776
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30784
30777
|
type: z.ZodEnum<{
|
|
30785
30778
|
commit: "commit";
|
|
@@ -30789,6 +30782,13 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30789
30782
|
name: z.ZodString;
|
|
30790
30783
|
hash: z.ZodString;
|
|
30791
30784
|
}, z.core.$strip>>>;
|
|
30785
|
+
status: z.ZodEnum<{
|
|
30786
|
+
pending: "pending";
|
|
30787
|
+
running: "running";
|
|
30788
|
+
completed: "completed";
|
|
30789
|
+
failed: "failed";
|
|
30790
|
+
cancelled: "cancelled";
|
|
30791
|
+
}>;
|
|
30792
30792
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30793
30793
|
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30794
30794
|
scheduledTriggerId: z.ZodString;
|
|
@@ -30824,8 +30824,8 @@ declare const SubAgentArtifactComponentResponse: z.ZodObject<{
|
|
|
30824
30824
|
}, z.core.$strip>;
|
|
30825
30825
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
30826
30826
|
data: z.ZodObject<{
|
|
30827
|
-
name: z.ZodString;
|
|
30828
30827
|
id: z.ZodString;
|
|
30828
|
+
name: z.ZodString;
|
|
30829
30829
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30830
30830
|
models: z.ZodObject<{
|
|
30831
30831
|
base: z.ZodObject<{
|
|
@@ -30852,15 +30852,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30852
30852
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
30853
30853
|
}, z.core.$strip>>;
|
|
30854
30854
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30855
|
-
name: z.ZodString;
|
|
30856
30855
|
id: z.ZodString;
|
|
30856
|
+
name: z.ZodString;
|
|
30857
30857
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30858
30858
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30859
30859
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30860
30860
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
30861
30861
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30862
|
-
name: z.ZodString;
|
|
30863
30862
|
id: z.ZodString;
|
|
30863
|
+
name: z.ZodString;
|
|
30864
30864
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30865
30865
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30866
30866
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30918,9 +30918,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30918
30918
|
}, z.core.$strip>>;
|
|
30919
30919
|
}, z.core.$strip>>;
|
|
30920
30920
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30921
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30922
|
-
name: z.ZodString;
|
|
30923
30921
|
id: z.ZodString;
|
|
30922
|
+
name: z.ZodString;
|
|
30924
30923
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30925
30924
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30926
30925
|
config: z.ZodObject<{
|
|
@@ -30950,14 +30949,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30950
30949
|
}, z.core.$strip>;
|
|
30951
30950
|
}, z.core.$strip>;
|
|
30952
30951
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
30952
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30953
30953
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
30954
30954
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
30955
30955
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30956
30956
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30957
30957
|
}, z.core.$strip>>>;
|
|
30958
30958
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30959
|
-
name: z.ZodString;
|
|
30960
30959
|
id: z.ZodString;
|
|
30960
|
+
name: z.ZodString;
|
|
30961
30961
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30962
30962
|
baseUrl: z.ZodURL;
|
|
30963
30963
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30968,8 +30968,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30968
30968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30969
30969
|
}, z.core.$strip>>>;
|
|
30970
30970
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30971
|
-
name: z.ZodString;
|
|
30972
30971
|
id: z.ZodString;
|
|
30972
|
+
name: z.ZodString;
|
|
30973
30973
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30974
30974
|
functionId: z.ZodString;
|
|
30975
30975
|
}, z.core.$strip>>>;
|
|
@@ -30980,8 +30980,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30980
30980
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30981
30981
|
}, z.core.$strip>>>;
|
|
30982
30982
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30983
|
-
name: z.ZodString;
|
|
30984
30983
|
id: z.ZodOptional<z.ZodString>;
|
|
30984
|
+
name: z.ZodString;
|
|
30985
30985
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30986
30986
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30987
30987
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -31039,9 +31039,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31039
31039
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31040
31040
|
}, z.core.$strip>>;
|
|
31041
31041
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31042
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31043
|
-
name: z.ZodString;
|
|
31044
31042
|
id: z.ZodString;
|
|
31043
|
+
name: z.ZodString;
|
|
31045
31044
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31046
31045
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31047
31046
|
config: z.ZodObject<{
|
|
@@ -31071,14 +31070,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31071
31070
|
}, z.core.$strip>;
|
|
31072
31071
|
}, z.core.$strip>;
|
|
31073
31072
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31073
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31074
31074
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31075
31075
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
31076
31076
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31077
31077
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
31078
31078
|
}, z.core.$strip>>;
|
|
31079
31079
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31080
|
-
name: z.ZodString;
|
|
31081
31080
|
id: z.ZodString;
|
|
31081
|
+
name: z.ZodString;
|
|
31082
31082
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31083
31083
|
functionId: z.ZodString;
|
|
31084
31084
|
}, z.core.$strip>>>;
|
|
@@ -31171,8 +31171,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31171
31171
|
in: {};
|
|
31172
31172
|
}>>>;
|
|
31173
31173
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31174
|
-
name: z.ZodString;
|
|
31175
31174
|
id: z.ZodString;
|
|
31175
|
+
name: z.ZodString;
|
|
31176
31176
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31177
31177
|
baseUrl: z.ZodURL;
|
|
31178
31178
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31193,9 +31193,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31193
31193
|
}, z.core.$strip>>>;
|
|
31194
31194
|
}, z.core.$strict>>;
|
|
31195
31195
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31196
|
+
id: z.ZodString;
|
|
31196
31197
|
name: z.ZodString;
|
|
31197
31198
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31198
|
-
id: z.ZodString;
|
|
31199
31199
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31200
31200
|
credentialStoreId: z.ZodString;
|
|
31201
31201
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -31216,8 +31216,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31216
31216
|
}, z.core.$strip>;
|
|
31217
31217
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31218
31218
|
data: z.ZodObject<{
|
|
31219
|
-
name: z.ZodString;
|
|
31220
31219
|
id: z.ZodString;
|
|
31220
|
+
name: z.ZodString;
|
|
31221
31221
|
createdAt: z.ZodString;
|
|
31222
31222
|
updatedAt: z.ZodString;
|
|
31223
31223
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31246,8 +31246,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31246
31246
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
31247
31247
|
}, z.core.$strip>>;
|
|
31248
31248
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31249
|
-
name: z.ZodString;
|
|
31250
31249
|
id: z.ZodString;
|
|
31250
|
+
name: z.ZodString;
|
|
31251
31251
|
createdAt: z.ZodString;
|
|
31252
31252
|
updatedAt: z.ZodString;
|
|
31253
31253
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31255,8 +31255,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31255
31255
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31256
31256
|
executionMode: z.ZodString;
|
|
31257
31257
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31258
|
-
name: z.ZodString;
|
|
31259
31258
|
id: z.ZodString;
|
|
31259
|
+
name: z.ZodString;
|
|
31260
31260
|
createdAt: z.ZodString;
|
|
31261
31261
|
updatedAt: z.ZodString;
|
|
31262
31262
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31372,9 +31372,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31372
31372
|
}, z.core.$strip>]>>>;
|
|
31373
31373
|
}, z.core.$strip>>;
|
|
31374
31374
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31375
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31376
|
-
name: z.ZodString;
|
|
31377
31375
|
id: z.ZodString;
|
|
31376
|
+
name: z.ZodString;
|
|
31378
31377
|
createdAt: z.ZodString;
|
|
31379
31378
|
updatedAt: z.ZodString;
|
|
31380
31379
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31393,14 +31392,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31393
31392
|
mcp: ToolMcpConfig;
|
|
31394
31393
|
}>>;
|
|
31395
31394
|
credentialScope: z.ZodString;
|
|
31395
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31396
31396
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31397
31397
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
31398
31398
|
lastError: z.ZodNullable<z.ZodString>;
|
|
31399
31399
|
isWorkApp: z.ZodBoolean;
|
|
31400
31400
|
}, z.core.$strip>>>;
|
|
31401
31401
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31402
|
-
name: z.ZodString;
|
|
31403
31402
|
id: z.ZodString;
|
|
31403
|
+
name: z.ZodString;
|
|
31404
31404
|
createdAt: z.ZodString;
|
|
31405
31405
|
updatedAt: z.ZodString;
|
|
31406
31406
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31413,8 +31413,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31413
31413
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31414
31414
|
}, z.core.$strip>>>;
|
|
31415
31415
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31416
|
-
name: z.ZodString;
|
|
31417
31416
|
id: z.ZodString;
|
|
31417
|
+
name: z.ZodString;
|
|
31418
31418
|
createdAt: z.ZodString;
|
|
31419
31419
|
updatedAt: z.ZodString;
|
|
31420
31420
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31478,9 +31478,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31478
31478
|
prompt: z.ZodNullable<z.ZodString>;
|
|
31479
31479
|
}, z.core.$strip>>;
|
|
31480
31480
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31481
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31482
|
-
name: z.ZodString;
|
|
31483
31481
|
id: z.ZodString;
|
|
31482
|
+
name: z.ZodString;
|
|
31484
31483
|
createdAt: z.ZodString;
|
|
31485
31484
|
updatedAt: z.ZodString;
|
|
31486
31485
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31499,14 +31498,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31499
31498
|
mcp: ToolMcpConfig;
|
|
31500
31499
|
}>>;
|
|
31501
31500
|
credentialScope: z.ZodString;
|
|
31501
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31502
31502
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31503
31503
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
31504
31504
|
lastError: z.ZodNullable<z.ZodString>;
|
|
31505
31505
|
isWorkApp: z.ZodBoolean;
|
|
31506
31506
|
}, z.core.$strip>>;
|
|
31507
31507
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31508
|
-
name: z.ZodString;
|
|
31509
31508
|
id: z.ZodString;
|
|
31509
|
+
name: z.ZodString;
|
|
31510
31510
|
createdAt: z.ZodString;
|
|
31511
31511
|
updatedAt: z.ZodString;
|
|
31512
31512
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31523,8 +31523,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31523
31523
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31524
31524
|
}, z.core.$strip>>>;
|
|
31525
31525
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31526
|
-
name: z.ZodString;
|
|
31527
31526
|
id: z.ZodString;
|
|
31527
|
+
name: z.ZodString;
|
|
31528
31528
|
createdAt: z.ZodString;
|
|
31529
31529
|
updatedAt: z.ZodString;
|
|
31530
31530
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31572,8 +31572,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31572
31572
|
}>>>;
|
|
31573
31573
|
}, z.core.$strip>>>;
|
|
31574
31574
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31575
|
-
name: z.ZodString;
|
|
31576
31575
|
id: z.ZodString;
|
|
31576
|
+
name: z.ZodString;
|
|
31577
31577
|
createdAt: z.ZodString;
|
|
31578
31578
|
updatedAt: z.ZodString;
|
|
31579
31579
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31621,8 +31621,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31621
31621
|
}>>>;
|
|
31622
31622
|
}, z.core.$strip>>>;
|
|
31623
31623
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31624
|
-
name: z.ZodString;
|
|
31625
31624
|
id: z.ZodString;
|
|
31625
|
+
name: z.ZodString;
|
|
31626
31626
|
createdAt: z.ZodString;
|
|
31627
31627
|
updatedAt: z.ZodString;
|
|
31628
31628
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -31645,11 +31645,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31645
31645
|
}, z.core.$strip>>>;
|
|
31646
31646
|
}, z.core.$strict>>;
|
|
31647
31647
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31648
|
-
name: z.ZodString;
|
|
31649
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
31650
31648
|
id: z.ZodString;
|
|
31649
|
+
name: z.ZodString;
|
|
31651
31650
|
createdAt: z.ZodString;
|
|
31652
31651
|
updatedAt: z.ZodString;
|
|
31652
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
31653
31653
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31654
31654
|
credentialStoreId: z.ZodString;
|
|
31655
31655
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -32243,8 +32243,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32243
32243
|
}, z.core.$strip>;
|
|
32244
32244
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32245
32245
|
data: z.ZodObject<{
|
|
32246
|
-
name: z.ZodString;
|
|
32247
32246
|
id: z.ZodString;
|
|
32247
|
+
name: z.ZodString;
|
|
32248
32248
|
createdAt: z.ZodString;
|
|
32249
32249
|
updatedAt: z.ZodString;
|
|
32250
32250
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32273,9 +32273,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32273
32273
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
32274
32274
|
}, z.core.$strip>>;
|
|
32275
32275
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32276
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32277
|
-
name: z.ZodString;
|
|
32278
32276
|
id: z.ZodString;
|
|
32277
|
+
name: z.ZodString;
|
|
32279
32278
|
createdAt: z.ZodString;
|
|
32280
32279
|
updatedAt: z.ZodString;
|
|
32281
32280
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32294,14 +32293,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32294
32293
|
mcp: ToolMcpConfig;
|
|
32295
32294
|
}>>;
|
|
32296
32295
|
credentialScope: z.ZodString;
|
|
32296
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32297
32297
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32298
32298
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
32299
32299
|
lastError: z.ZodNullable<z.ZodString>;
|
|
32300
32300
|
isWorkApp: z.ZodBoolean;
|
|
32301
32301
|
}, z.core.$strip>>;
|
|
32302
32302
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32303
|
-
name: z.ZodString;
|
|
32304
32303
|
id: z.ZodString;
|
|
32304
|
+
name: z.ZodString;
|
|
32305
32305
|
createdAt: z.ZodString;
|
|
32306
32306
|
updatedAt: z.ZodString;
|
|
32307
32307
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32318,8 +32318,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32318
32318
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32319
32319
|
}, z.core.$strip>>>;
|
|
32320
32320
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32321
|
-
name: z.ZodString;
|
|
32322
32321
|
id: z.ZodString;
|
|
32322
|
+
name: z.ZodString;
|
|
32323
32323
|
createdAt: z.ZodString;
|
|
32324
32324
|
updatedAt: z.ZodString;
|
|
32325
32325
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32367,8 +32367,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32367
32367
|
}>>>;
|
|
32368
32368
|
}, z.core.$strip>>>;
|
|
32369
32369
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32370
|
-
name: z.ZodString;
|
|
32371
32370
|
id: z.ZodString;
|
|
32371
|
+
name: z.ZodString;
|
|
32372
32372
|
createdAt: z.ZodString;
|
|
32373
32373
|
updatedAt: z.ZodString;
|
|
32374
32374
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32416,8 +32416,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32416
32416
|
}>>>;
|
|
32417
32417
|
}, z.core.$strip>>>;
|
|
32418
32418
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32419
|
-
name: z.ZodString;
|
|
32420
32419
|
id: z.ZodString;
|
|
32420
|
+
name: z.ZodString;
|
|
32421
32421
|
createdAt: z.ZodString;
|
|
32422
32422
|
updatedAt: z.ZodString;
|
|
32423
32423
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -32440,11 +32440,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32440
32440
|
}, z.core.$strip>>>;
|
|
32441
32441
|
}, z.core.$strict>>;
|
|
32442
32442
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32443
|
-
name: z.ZodString;
|
|
32444
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32445
32443
|
id: z.ZodString;
|
|
32444
|
+
name: z.ZodString;
|
|
32446
32445
|
createdAt: z.ZodString;
|
|
32447
32446
|
updatedAt: z.ZodString;
|
|
32447
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32448
32448
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32449
32449
|
credentialStoreId: z.ZodString;
|
|
32450
32450
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
@@ -33032,8 +33032,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33032
33032
|
}>>>;
|
|
33033
33033
|
}, z.core.$strip>>>;
|
|
33034
33034
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33035
|
-
name: z.ZodString;
|
|
33036
33035
|
id: z.ZodString;
|
|
33036
|
+
name: z.ZodString;
|
|
33037
33037
|
createdAt: z.ZodString;
|
|
33038
33038
|
updatedAt: z.ZodString;
|
|
33039
33039
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33041,9 +33041,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33041
33041
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33042
33042
|
executionMode: z.ZodString;
|
|
33043
33043
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33044
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33045
|
-
name: z.ZodString;
|
|
33046
33044
|
id: z.ZodString;
|
|
33045
|
+
name: z.ZodString;
|
|
33047
33046
|
createdAt: z.ZodString;
|
|
33048
33047
|
updatedAt: z.ZodString;
|
|
33049
33048
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33062,14 +33061,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33062
33061
|
mcp: ToolMcpConfig;
|
|
33063
33062
|
}>>;
|
|
33064
33063
|
credentialScope: z.ZodString;
|
|
33064
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33065
33065
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33066
33066
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
33067
33067
|
lastError: z.ZodNullable<z.ZodString>;
|
|
33068
33068
|
isWorkApp: z.ZodBoolean;
|
|
33069
33069
|
}, z.core.$strip>>>;
|
|
33070
33070
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33071
|
-
name: z.ZodString;
|
|
33072
33071
|
id: z.ZodString;
|
|
33072
|
+
name: z.ZodString;
|
|
33073
33073
|
createdAt: z.ZodString;
|
|
33074
33074
|
updatedAt: z.ZodString;
|
|
33075
33075
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33082,8 +33082,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33082
33082
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33083
33083
|
}, z.core.$strip>>>;
|
|
33084
33084
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33085
|
-
name: z.ZodString;
|
|
33086
33085
|
id: z.ZodString;
|
|
33086
|
+
name: z.ZodString;
|
|
33087
33087
|
createdAt: z.ZodString;
|
|
33088
33088
|
updatedAt: z.ZodString;
|
|
33089
33089
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33146,8 +33146,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33146
33146
|
}, z.core.$strip>>;
|
|
33147
33147
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33148
33148
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33149
|
-
name: z.ZodString;
|
|
33150
33149
|
id: z.ZodString;
|
|
33150
|
+
name: z.ZodString;
|
|
33151
33151
|
createdAt: z.ZodString;
|
|
33152
33152
|
updatedAt: z.ZodString;
|
|
33153
33153
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33276,15 +33276,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33276
33276
|
}, z.core.$strip>;
|
|
33277
33277
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33278
33278
|
data: z.ZodObject<{
|
|
33279
|
-
name: z.ZodString;
|
|
33280
33279
|
id: z.ZodString;
|
|
33280
|
+
name: z.ZodString;
|
|
33281
33281
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33282
33282
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33283
33283
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33284
33284
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
33285
33285
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33286
|
-
name: z.ZodString;
|
|
33287
33286
|
id: z.ZodString;
|
|
33287
|
+
name: z.ZodString;
|
|
33288
33288
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33289
33289
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33290
33290
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33342,9 +33342,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33342
33342
|
}, z.core.$strip>>;
|
|
33343
33343
|
}, z.core.$strip>>;
|
|
33344
33344
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33345
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33346
|
-
name: z.ZodString;
|
|
33347
33345
|
id: z.ZodString;
|
|
33346
|
+
name: z.ZodString;
|
|
33348
33347
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33349
33348
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33350
33349
|
config: z.ZodObject<{
|
|
@@ -33374,14 +33373,15 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33374
33373
|
}, z.core.$strip>;
|
|
33375
33374
|
}, z.core.$strip>;
|
|
33376
33375
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33376
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33377
33377
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
33378
33378
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33379
33379
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33380
33380
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
33381
33381
|
}, z.core.$strip>>>;
|
|
33382
33382
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33383
|
-
name: z.ZodString;
|
|
33384
33383
|
id: z.ZodString;
|
|
33384
|
+
name: z.ZodString;
|
|
33385
33385
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33386
33386
|
baseUrl: z.ZodURL;
|
|
33387
33387
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33392,8 +33392,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33392
33392
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33393
33393
|
}, z.core.$strip>>>;
|
|
33394
33394
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33395
|
-
name: z.ZodString;
|
|
33396
33395
|
id: z.ZodString;
|
|
33396
|
+
name: z.ZodString;
|
|
33397
33397
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33398
33398
|
functionId: z.ZodString;
|
|
33399
33399
|
}, z.core.$strip>>>;
|
|
@@ -33404,8 +33404,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33404
33404
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33405
33405
|
}, z.core.$strip>>>;
|
|
33406
33406
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33407
|
-
name: z.ZodString;
|
|
33408
33407
|
id: z.ZodOptional<z.ZodString>;
|
|
33408
|
+
name: z.ZodString;
|
|
33409
33409
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33410
33410
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33411
33411
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -33465,8 +33465,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33465
33465
|
}, z.core.$strip>;
|
|
33466
33466
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33467
33467
|
data: z.ZodObject<{
|
|
33468
|
-
name: z.ZodString;
|
|
33469
33468
|
id: z.ZodString;
|
|
33469
|
+
name: z.ZodString;
|
|
33470
33470
|
createdAt: z.ZodString;
|
|
33471
33471
|
updatedAt: z.ZodString;
|
|
33472
33472
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33474,8 +33474,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33474
33474
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33475
33475
|
executionMode: z.ZodString;
|
|
33476
33476
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33477
|
-
name: z.ZodString;
|
|
33478
33477
|
id: z.ZodString;
|
|
33478
|
+
name: z.ZodString;
|
|
33479
33479
|
createdAt: z.ZodString;
|
|
33480
33480
|
updatedAt: z.ZodString;
|
|
33481
33481
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33591,9 +33591,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33591
33591
|
}, z.core.$strip>]>>>;
|
|
33592
33592
|
}, z.core.$strip>>;
|
|
33593
33593
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33594
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33595
|
-
name: z.ZodString;
|
|
33596
33594
|
id: z.ZodString;
|
|
33595
|
+
name: z.ZodString;
|
|
33597
33596
|
createdAt: z.ZodString;
|
|
33598
33597
|
updatedAt: z.ZodString;
|
|
33599
33598
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33612,14 +33611,15 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33612
33611
|
mcp: ToolMcpConfig;
|
|
33613
33612
|
}>>;
|
|
33614
33613
|
credentialScope: z.ZodString;
|
|
33614
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33615
33615
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33616
33616
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
33617
33617
|
lastError: z.ZodNullable<z.ZodString>;
|
|
33618
33618
|
isWorkApp: z.ZodBoolean;
|
|
33619
33619
|
}, z.core.$strip>>>;
|
|
33620
33620
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33621
|
-
name: z.ZodString;
|
|
33622
33621
|
id: z.ZodString;
|
|
33622
|
+
name: z.ZodString;
|
|
33623
33623
|
createdAt: z.ZodString;
|
|
33624
33624
|
updatedAt: z.ZodString;
|
|
33625
33625
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33632,8 +33632,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33632
33632
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33633
33633
|
}, z.core.$strip>>>;
|
|
33634
33634
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33635
|
-
name: z.ZodString;
|
|
33636
33635
|
id: z.ZodString;
|
|
33636
|
+
name: z.ZodString;
|
|
33637
33637
|
createdAt: z.ZodString;
|
|
33638
33638
|
updatedAt: z.ZodString;
|
|
33639
33639
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33718,9 +33718,8 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
33718
33718
|
}, z.core.$strip>;
|
|
33719
33719
|
declare const McpToolResponse: z.ZodObject<{
|
|
33720
33720
|
data: z.ZodObject<{
|
|
33721
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33722
|
-
name: z.ZodString;
|
|
33723
33721
|
id: z.ZodString;
|
|
33722
|
+
name: z.ZodString;
|
|
33724
33723
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33725
33724
|
tenantId: z.ZodString;
|
|
33726
33725
|
projectId: z.ZodString;
|
|
@@ -33752,6 +33751,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33752
33751
|
}, z.core.$strip>;
|
|
33753
33752
|
}, z.core.$strip>;
|
|
33754
33753
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33754
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33755
33755
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33756
33756
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33757
33757
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33779,9 +33779,8 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33779
33779
|
}, z.core.$strip>;
|
|
33780
33780
|
declare const McpToolListResponse: z.ZodObject<{
|
|
33781
33781
|
data: z.ZodArray<z.ZodObject<{
|
|
33782
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33783
|
-
name: z.ZodString;
|
|
33784
33782
|
id: z.ZodString;
|
|
33783
|
+
name: z.ZodString;
|
|
33785
33784
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33786
33785
|
tenantId: z.ZodString;
|
|
33787
33786
|
projectId: z.ZodString;
|
|
@@ -33813,6 +33812,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33813
33812
|
}, z.core.$strip>;
|
|
33814
33813
|
}, z.core.$strip>;
|
|
33815
33814
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33815
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33816
33816
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33817
33817
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33818
33818
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33846,21 +33846,21 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33846
33846
|
}, z.core.$strip>;
|
|
33847
33847
|
declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
33848
33848
|
data: z.ZodObject<{
|
|
33849
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33850
33849
|
id: z.ZodString;
|
|
33851
33850
|
createdAt: z.ZodString;
|
|
33852
33851
|
updatedAt: z.ZodString;
|
|
33853
33852
|
subAgentId: z.ZodString;
|
|
33853
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33854
33854
|
targetAgentId: z.ZodString;
|
|
33855
33855
|
}, z.core.$strip>;
|
|
33856
33856
|
}, z.core.$strip>;
|
|
33857
33857
|
declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
33858
33858
|
data: z.ZodArray<z.ZodObject<{
|
|
33859
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33860
33859
|
id: z.ZodString;
|
|
33861
33860
|
createdAt: z.ZodString;
|
|
33862
33861
|
updatedAt: z.ZodString;
|
|
33863
33862
|
subAgentId: z.ZodString;
|
|
33863
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33864
33864
|
targetAgentId: z.ZodString;
|
|
33865
33865
|
}, z.core.$strip>>;
|
|
33866
33866
|
pagination: z.ZodObject<{
|
|
@@ -33872,21 +33872,21 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
33872
33872
|
}, z.core.$strip>;
|
|
33873
33873
|
declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
33874
33874
|
data: z.ZodObject<{
|
|
33875
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33876
33875
|
id: z.ZodString;
|
|
33877
33876
|
createdAt: z.ZodString;
|
|
33878
33877
|
updatedAt: z.ZodString;
|
|
33879
33878
|
subAgentId: z.ZodString;
|
|
33879
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33880
33880
|
externalAgentId: z.ZodString;
|
|
33881
33881
|
}, z.core.$strip>;
|
|
33882
33882
|
}, z.core.$strip>;
|
|
33883
33883
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
33884
33884
|
data: z.ZodArray<z.ZodObject<{
|
|
33885
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33886
33885
|
id: z.ZodString;
|
|
33887
33886
|
createdAt: z.ZodString;
|
|
33888
33887
|
updatedAt: z.ZodString;
|
|
33889
33888
|
subAgentId: z.ZodString;
|
|
33889
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
33890
33890
|
externalAgentId: z.ZodString;
|
|
33891
33891
|
}, z.core.$strip>>;
|
|
33892
33892
|
pagination: z.ZodObject<{
|
|
@@ -33898,8 +33898,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33898
33898
|
}, z.core.$strip>;
|
|
33899
33899
|
declare const DataComponentArrayResponse: z.ZodObject<{
|
|
33900
33900
|
data: z.ZodArray<z.ZodObject<{
|
|
33901
|
-
name: z.ZodString;
|
|
33902
33901
|
id: z.ZodString;
|
|
33902
|
+
name: z.ZodString;
|
|
33903
33903
|
createdAt: z.ZodString;
|
|
33904
33904
|
updatedAt: z.ZodString;
|
|
33905
33905
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -33949,8 +33949,8 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
33949
33949
|
}, z.core.$strip>;
|
|
33950
33950
|
declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
33951
33951
|
data: z.ZodArray<z.ZodObject<{
|
|
33952
|
-
name: z.ZodString;
|
|
33953
33952
|
id: z.ZodString;
|
|
33953
|
+
name: z.ZodString;
|
|
33954
33954
|
createdAt: z.ZodString;
|
|
33955
33955
|
updatedAt: z.ZodString;
|
|
33956
33956
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -34658,8 +34658,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod17.BuildSchema<"
|
|
|
34658
34658
|
}, undefined>, undefined>;
|
|
34659
34659
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
34660
34660
|
id: z.ZodString;
|
|
34661
|
-
tenantId: z.ZodString;
|
|
34662
34661
|
accountId: z.ZodString;
|
|
34662
|
+
tenantId: z.ZodString;
|
|
34663
34663
|
installationId: z.ZodString;
|
|
34664
34664
|
accountLogin: z.ZodString;
|
|
34665
34665
|
accountType: z.ZodEnum<{
|
|
@@ -34679,14 +34679,15 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
34679
34679
|
declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
34680
34680
|
id: z.ZodString;
|
|
34681
34681
|
createdAt: z.ZodString;
|
|
34682
|
-
status: z.ZodString;
|
|
34683
34682
|
updatedAt: z.ZodString;
|
|
34684
34683
|
accountId: z.ZodString;
|
|
34684
|
+
status: z.ZodString;
|
|
34685
34685
|
installationId: z.ZodString;
|
|
34686
34686
|
accountLogin: z.ZodString;
|
|
34687
34687
|
accountType: z.ZodString;
|
|
34688
34688
|
}, z.core.$strip>;
|
|
34689
34689
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
34690
|
+
accountId: z.ZodString;
|
|
34690
34691
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
34691
34692
|
pending: "pending";
|
|
34692
34693
|
active: "active";
|
|
@@ -34694,7 +34695,6 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
34694
34695
|
disconnected: "disconnected";
|
|
34695
34696
|
}>>>;
|
|
34696
34697
|
tenantId: z.ZodString;
|
|
34697
|
-
accountId: z.ZodString;
|
|
34698
34698
|
installationId: z.ZodString;
|
|
34699
34699
|
accountLogin: z.ZodString;
|
|
34700
34700
|
accountType: z.ZodEnum<{
|
|
@@ -37131,8 +37131,8 @@ declare const UserProfileSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
37131
37131
|
}>;
|
|
37132
37132
|
}, undefined>, undefined>;
|
|
37133
37133
|
declare const UserProfileInsertSchema: z.ZodObject<{
|
|
37134
|
-
userId: z.ZodString;
|
|
37135
37134
|
id: z.ZodString;
|
|
37135
|
+
userId: z.ZodString;
|
|
37136
37136
|
attributes: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37137
37137
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37138
37138
|
}, {
|
|
@@ -37140,8 +37140,8 @@ declare const UserProfileInsertSchema: z.ZodObject<{
|
|
|
37140
37140
|
in: {};
|
|
37141
37141
|
}>;
|
|
37142
37142
|
declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
37143
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
37144
37143
|
id: z.ZodOptional<z.ZodString>;
|
|
37144
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
37145
37145
|
attributes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37146
37146
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37147
37147
|
}, {
|
|
@@ -37191,8 +37191,8 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
37191
37191
|
in: {};
|
|
37192
37192
|
}>;
|
|
37193
37193
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
37194
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37195
37194
|
id: z.ZodString;
|
|
37195
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
37196
37196
|
tenantId: z.ZodString;
|
|
37197
37197
|
projectId: z.ZodString;
|
|
37198
37198
|
agentId: z.ZodString;
|
|
@@ -37209,8 +37209,8 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
37209
37209
|
in: {};
|
|
37210
37210
|
}>;
|
|
37211
37211
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
37212
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37213
37212
|
id: z.ZodOptional<z.ZodString>;
|
|
37213
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
37214
37214
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
37215
37215
|
projectId: z.ZodOptional<z.ZodString>;
|
|
37216
37216
|
agentId: z.ZodOptional<z.ZodString>;
|