@inkeep/agents-core 0.73.0 → 0.73.1
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 +235 -235
- package/dist/auth/auth-schema.js +8 -8
- package/dist/auth/auth-types.d.ts +6 -1
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.d.ts +65 -42
- package/dist/auth/auth.js +18 -4
- package/dist/auth/password-policy.d.ts +7 -3
- package/dist/auth/password-policy.js +6 -4
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +15 -15
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +4 -4
- package/dist/data-access/manage/skills.d.ts +7 -7
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +9 -9
- package/dist/data-access/manage/tools.d.ts +18 -18
- package/dist/data-access/manage/triggers.d.ts +3 -3
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +11 -11
- package/dist/data-access/runtime/conversations.d.ts +32 -32
- package/dist/data-access/runtime/events.d.ts +3 -3
- package/dist/data-access/runtime/feedback.d.ts +2 -2
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/db/manage/manage-schema.d.ts +483 -483
- package/dist/db/runtime/runtime-schema.d.ts +449 -449
- package/dist/validation/schemas/skills.d.ts +35 -35
- package/dist/validation/schemas.d.ts +617 -617
- package/drizzle/runtime/0042_long_magdalene.sql +8 -0
- package/drizzle/runtime/meta/0042_snapshot.json +6298 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +5 -5
|
@@ -741,9 +741,6 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
741
741
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
742
742
|
id: z.ZodString;
|
|
743
743
|
name: z.ZodString;
|
|
744
|
-
createdAt: z.ZodString;
|
|
745
|
-
updatedAt: z.ZodString;
|
|
746
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
747
744
|
description: z.ZodNullable<z.ZodString>;
|
|
748
745
|
models: z.ZodNullable<z.ZodType<{
|
|
749
746
|
base?: {
|
|
@@ -831,14 +828,14 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
831
828
|
}, {
|
|
832
829
|
stepCountIs?: number | undefined;
|
|
833
830
|
}>>>;
|
|
831
|
+
createdAt: z.ZodString;
|
|
832
|
+
updatedAt: z.ZodString;
|
|
833
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
834
834
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
835
835
|
}, z.core.$strip>;
|
|
836
836
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
837
837
|
id: z.ZodString;
|
|
838
838
|
name: z.ZodString;
|
|
839
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
840
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
841
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
842
839
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
843
840
|
models: z.ZodOptional<z.ZodObject<{
|
|
844
841
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -869,14 +866,14 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
869
866
|
}, {
|
|
870
867
|
stepCountIs?: number | undefined;
|
|
871
868
|
}>>>>;
|
|
869
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
870
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
871
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
872
872
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
873
873
|
}, z.core.$strip>;
|
|
874
874
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
875
875
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
876
876
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
877
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
878
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
879
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
880
877
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
881
878
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
882
879
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -907,6 +904,9 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
907
904
|
}, {
|
|
908
905
|
stepCountIs?: number | undefined;
|
|
909
906
|
}>>>>>>;
|
|
907
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
908
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
909
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
910
910
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
911
911
|
}, z.core.$strip>;
|
|
912
912
|
declare const SubAgentRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "id" | "name" | "
|
|
2667
|
+
}, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "executionMode">, undefined>, undefined>;
|
|
2668
2668
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2669
2669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2670
2670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2827,9 +2827,6 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2827
2827
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2828
2828
|
id: z.ZodString;
|
|
2829
2829
|
name: z.ZodString;
|
|
2830
|
-
createdAt: z.ZodString;
|
|
2831
|
-
updatedAt: z.ZodString;
|
|
2832
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
2833
2830
|
description: z.ZodNullable<z.ZodString>;
|
|
2834
2831
|
models: z.ZodNullable<z.ZodType<{
|
|
2835
2832
|
base?: {
|
|
@@ -2917,8 +2914,11 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2917
2914
|
}, {
|
|
2918
2915
|
transferCountIs?: number | undefined;
|
|
2919
2916
|
}>>>;
|
|
2917
|
+
createdAt: z.ZodString;
|
|
2918
|
+
updatedAt: z.ZodString;
|
|
2920
2919
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2921
2920
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2921
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2922
2922
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2923
2923
|
enabled?: boolean | undefined;
|
|
2924
2924
|
numEvents?: number | undefined;
|
|
@@ -2981,7 +2981,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2982
2982
|
id: z.ZodString;
|
|
2983
2983
|
name: z.ZodString;
|
|
2984
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2984
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2986
2985
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2987
2986
|
base?: {
|
|
@@ -3071,6 +3070,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3071
3070
|
}>>>>;
|
|
3072
3071
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
3072
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3074
3074
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3075
3075
|
enabled?: boolean | undefined;
|
|
3076
3076
|
numEvents?: number | undefined;
|
|
@@ -3132,7 +3132,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3132
3132
|
}, z.core.$strip>;
|
|
3133
3133
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3134
3134
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3135
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3136
3135
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3137
3136
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3138
3137
|
base?: {
|
|
@@ -3222,6 +3221,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3222
3221
|
}>>>>>>;
|
|
3223
3222
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
3223
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3225
3225
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3226
3226
|
enabled?: boolean | undefined;
|
|
3227
3227
|
numEvents?: number | undefined;
|
|
@@ -3346,8 +3346,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3346
3346
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3347
3347
|
source: z.ZodEnum<{
|
|
3348
3348
|
query: "query";
|
|
3349
|
-
body: "body";
|
|
3350
3349
|
header: "header";
|
|
3350
|
+
body: "body";
|
|
3351
3351
|
}>;
|
|
3352
3352
|
key: z.ZodString;
|
|
3353
3353
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3376,8 +3376,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3376
3376
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3377
3377
|
source: z.ZodEnum<{
|
|
3378
3378
|
literal: "literal";
|
|
3379
|
-
body: "body";
|
|
3380
3379
|
header: "header";
|
|
3380
|
+
body: "body";
|
|
3381
3381
|
}>;
|
|
3382
3382
|
key: z.ZodOptional<z.ZodString>;
|
|
3383
3383
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3486,8 +3486,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
3488
3488
|
query: "query";
|
|
3489
|
-
body: "body";
|
|
3490
3489
|
header: "header";
|
|
3490
|
+
body: "body";
|
|
3491
3491
|
}>;
|
|
3492
3492
|
key: z.ZodString;
|
|
3493
3493
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3496,8 +3496,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3496
3496
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3497
3497
|
source: z.ZodEnum<{
|
|
3498
3498
|
literal: "literal";
|
|
3499
|
-
body: "body";
|
|
3500
3499
|
header: "header";
|
|
3500
|
+
body: "body";
|
|
3501
3501
|
}>;
|
|
3502
3502
|
key: z.ZodOptional<z.ZodString>;
|
|
3503
3503
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3548,8 +3548,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3548
3548
|
*/
|
|
3549
3549
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3550
3550
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3551
|
-
pending: "pending";
|
|
3552
3551
|
success: "success";
|
|
3552
|
+
pending: "pending";
|
|
3553
3553
|
failed: "failed";
|
|
3554
3554
|
}>;
|
|
3555
3555
|
declare const maxWebhookDispatchDelayMs = 600000;
|
|
@@ -3583,8 +3583,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3583
3583
|
signature: z.ZodObject<{
|
|
3584
3584
|
source: z.ZodEnum<{
|
|
3585
3585
|
query: "query";
|
|
3586
|
-
body: "body";
|
|
3587
3586
|
header: "header";
|
|
3587
|
+
body: "body";
|
|
3588
3588
|
}>;
|
|
3589
3589
|
key: z.ZodString;
|
|
3590
3590
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3593,8 +3593,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3593
3593
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3594
3594
|
source: z.ZodEnum<{
|
|
3595
3595
|
literal: "literal";
|
|
3596
|
-
body: "body";
|
|
3597
3596
|
header: "header";
|
|
3597
|
+
body: "body";
|
|
3598
3598
|
}>;
|
|
3599
3599
|
key: z.ZodOptional<z.ZodString>;
|
|
3600
3600
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3780,13 +3780,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
3780
3780
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3781
3781
|
encoding: "hex" | "base64";
|
|
3782
3782
|
signature: {
|
|
3783
|
-
source: "query" | "
|
|
3783
|
+
source: "query" | "header" | "body";
|
|
3784
3784
|
key: string;
|
|
3785
3785
|
prefix?: string | undefined;
|
|
3786
3786
|
regex?: string | undefined;
|
|
3787
3787
|
};
|
|
3788
3788
|
signedComponents: {
|
|
3789
|
-
source: "literal" | "
|
|
3789
|
+
source: "literal" | "header" | "body";
|
|
3790
3790
|
required: boolean;
|
|
3791
3791
|
key?: string | undefined;
|
|
3792
3792
|
value?: string | undefined;
|
|
@@ -3817,13 +3817,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
3817
3817
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3818
3818
|
encoding: "hex" | "base64";
|
|
3819
3819
|
signature: {
|
|
3820
|
-
source: "query" | "
|
|
3820
|
+
source: "query" | "header" | "body";
|
|
3821
3821
|
key: string;
|
|
3822
3822
|
prefix?: string | undefined;
|
|
3823
3823
|
regex?: string | undefined;
|
|
3824
3824
|
};
|
|
3825
3825
|
signedComponents: {
|
|
3826
|
-
source: "literal" | "
|
|
3826
|
+
source: "literal" | "header" | "body";
|
|
3827
3827
|
required: boolean;
|
|
3828
3828
|
key?: string | undefined;
|
|
3829
3829
|
value?: string | undefined;
|
|
@@ -4167,13 +4167,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4167
4167
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4168
4168
|
encoding: "hex" | "base64";
|
|
4169
4169
|
signature: {
|
|
4170
|
-
source: "query" | "
|
|
4170
|
+
source: "query" | "header" | "body";
|
|
4171
4171
|
key: string;
|
|
4172
4172
|
prefix?: string | undefined;
|
|
4173
4173
|
regex?: string | undefined;
|
|
4174
4174
|
};
|
|
4175
4175
|
signedComponents: {
|
|
4176
|
-
source: "literal" | "
|
|
4176
|
+
source: "literal" | "header" | "body";
|
|
4177
4177
|
required: boolean;
|
|
4178
4178
|
key?: string | undefined;
|
|
4179
4179
|
value?: string | undefined;
|
|
@@ -4204,13 +4204,13 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4204
4204
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
4205
4205
|
encoding: "hex" | "base64";
|
|
4206
4206
|
signature: {
|
|
4207
|
-
source: "query" | "
|
|
4207
|
+
source: "query" | "header" | "body";
|
|
4208
4208
|
key: string;
|
|
4209
4209
|
prefix?: string | undefined;
|
|
4210
4210
|
regex?: string | undefined;
|
|
4211
4211
|
};
|
|
4212
4212
|
signedComponents: {
|
|
4213
|
-
source: "literal" | "
|
|
4213
|
+
source: "literal" | "header" | "body";
|
|
4214
4214
|
required: boolean;
|
|
4215
4215
|
key?: string | undefined;
|
|
4216
4216
|
value?: string | undefined;
|
|
@@ -4394,7 +4394,7 @@ declare const TriggerInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
4394
4394
|
}, {}, {
|
|
4395
4395
|
length: 256;
|
|
4396
4396
|
}>;
|
|
4397
|
-
}, "id" | "name" | "
|
|
4397
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "dispatchDelayMs" | "createdBy">, undefined>, undefined>;
|
|
4398
4398
|
declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4399
4399
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4400
4400
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4428,11 +4428,10 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4428
4428
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4429
4429
|
id: z.ZodString;
|
|
4430
4430
|
name: z.ZodString;
|
|
4431
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4431
4432
|
createdAt: z.ZodString;
|
|
4432
4433
|
updatedAt: z.ZodString;
|
|
4433
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4434
4434
|
enabled: z.ZodBoolean;
|
|
4435
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4436
4435
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
4437
4436
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
4438
4437
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4453,8 +4452,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4453
4452
|
signature: z.ZodObject<{
|
|
4454
4453
|
source: z.ZodEnum<{
|
|
4455
4454
|
query: "query";
|
|
4456
|
-
body: "body";
|
|
4457
4455
|
header: "header";
|
|
4456
|
+
body: "body";
|
|
4458
4457
|
}>;
|
|
4459
4458
|
key: z.ZodString;
|
|
4460
4459
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4463,8 +4462,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4463
4462
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4464
4463
|
source: z.ZodEnum<{
|
|
4465
4464
|
literal: "literal";
|
|
4466
|
-
body: "body";
|
|
4467
4465
|
header: "header";
|
|
4466
|
+
body: "body";
|
|
4468
4467
|
}>;
|
|
4469
4468
|
key: z.ZodOptional<z.ZodString>;
|
|
4470
4469
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4485,13 +4484,13 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4485
4484
|
}, z.core.$strip>>>;
|
|
4486
4485
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4487
4486
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4487
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4488
4488
|
}, z.core.$strip>;
|
|
4489
4489
|
declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4490
4490
|
id: z.ZodOptional<z.ZodString>;
|
|
4491
4491
|
name: z.ZodString;
|
|
4492
4492
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4493
4493
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4494
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4495
4494
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4496
4495
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4497
4496
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4500,6 +4499,7 @@ declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
4500
4499
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4501
4500
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4502
4501
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4502
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4503
4503
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4504
4504
|
}, z.core.$strip>;
|
|
4505
4505
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
@@ -4507,7 +4507,6 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4507
4507
|
name: z.ZodString;
|
|
4508
4508
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4509
4509
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4510
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4511
4510
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4512
4511
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4513
4512
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4516,16 +4515,16 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4516
4515
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
4517
4516
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4518
4517
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4518
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4519
4519
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4520
4520
|
}, z.core.$strip>;
|
|
4521
4521
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4522
4522
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4523
4523
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4524
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4524
4525
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4525
4526
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4526
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4527
4527
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4528
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4529
4528
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
4530
4529
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
4531
4530
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4540,16 +4539,16 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4540
4539
|
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
4541
4540
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4542
4541
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
4542
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4543
4543
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4544
4544
|
}, z.core.$strip>;
|
|
4545
4545
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4546
4546
|
id: z.ZodString;
|
|
4547
4547
|
name: z.ZodString;
|
|
4548
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4548
4549
|
createdAt: z.ZodString;
|
|
4549
4550
|
updatedAt: z.ZodString;
|
|
4550
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4551
4551
|
enabled: z.ZodBoolean;
|
|
4552
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4553
4552
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
4554
4553
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
4555
4554
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4570,8 +4569,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4570
4569
|
signature: z.ZodObject<{
|
|
4571
4570
|
source: z.ZodEnum<{
|
|
4572
4571
|
query: "query";
|
|
4573
|
-
body: "body";
|
|
4574
4572
|
header: "header";
|
|
4573
|
+
body: "body";
|
|
4575
4574
|
}>;
|
|
4576
4575
|
key: z.ZodString;
|
|
4577
4576
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4580,8 +4579,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4580
4579
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4581
4580
|
source: z.ZodEnum<{
|
|
4582
4581
|
literal: "literal";
|
|
4583
|
-
body: "body";
|
|
4584
4582
|
header: "header";
|
|
4583
|
+
body: "body";
|
|
4585
4584
|
}>;
|
|
4586
4585
|
key: z.ZodOptional<z.ZodString>;
|
|
4587
4586
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4602,6 +4601,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4602
4601
|
}, z.core.$strip>>>;
|
|
4603
4602
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4604
4603
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4604
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4605
4605
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
4606
4606
|
userCount: z.ZodNumber;
|
|
4607
4607
|
webhookUrl: z.ZodString;
|
|
@@ -5167,7 +5167,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<"insert",
|
|
|
5167
5167
|
}, {}, {
|
|
5168
5168
|
length: 256;
|
|
5169
5169
|
}>;
|
|
5170
|
-
}, "id" | "createdAt" | "
|
|
5170
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "triggerId" | "ref" | "status" | "conversationId" | "batchId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5171
5171
|
declare const SetTriggerUsersRequestSchema: z.ZodObject<{
|
|
5172
5172
|
userIds: z.ZodArray<z.ZodString>;
|
|
5173
5173
|
}, z.core.$strip>;
|
|
@@ -5215,6 +5215,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5215
5215
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5216
5216
|
id: z.ZodString;
|
|
5217
5217
|
createdAt: z.ZodString;
|
|
5218
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5219
|
+
triggerId: z.ZodString;
|
|
5218
5220
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5219
5221
|
type: z.ZodEnum<{
|
|
5220
5222
|
commit: "commit";
|
|
@@ -5225,8 +5227,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5225
5227
|
hash: z.ZodString;
|
|
5226
5228
|
}, z.core.$strip>>>;
|
|
5227
5229
|
status: z.ZodString;
|
|
5228
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5229
|
-
triggerId: z.ZodString;
|
|
5230
5230
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5231
5231
|
batchId: z.ZodNullable<z.ZodString>;
|
|
5232
5232
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -5235,6 +5235,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5235
5235
|
}, z.core.$strip>;
|
|
5236
5236
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5237
5237
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5238
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5239
|
+
triggerId: z.ZodString;
|
|
5238
5240
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5239
5241
|
type: "commit" | "tag" | "branch";
|
|
5240
5242
|
name: string;
|
|
@@ -5253,8 +5255,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5253
5255
|
hash: string;
|
|
5254
5256
|
}>>>>;
|
|
5255
5257
|
status: z.ZodOptional<z.ZodString>;
|
|
5256
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5257
|
-
triggerId: z.ZodString;
|
|
5258
5258
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5259
5259
|
batchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5260
5260
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -5265,6 +5265,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5265
5265
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5266
5266
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5267
5267
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5268
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5269
|
+
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5268
5270
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5269
5271
|
type: "commit" | "tag" | "branch";
|
|
5270
5272
|
name: string;
|
|
@@ -5283,8 +5285,6 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5283
5285
|
hash: string;
|
|
5284
5286
|
}>>>>>>;
|
|
5285
5287
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5286
|
-
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5287
|
-
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5288
5288
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5289
5289
|
batchId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5290
5290
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
@@ -5776,7 +5776,7 @@ declare const WebhookDestinationInsertSchema: drizzle_zod17.BuildSchema<"insert"
|
|
|
5776
5776
|
}, {}, {
|
|
5777
5777
|
length: 256;
|
|
5778
5778
|
}>;
|
|
5779
|
-
}, "id" | "name" | "
|
|
5779
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "url" | "eventTypes" | "headers">, undefined>, undefined>;
|
|
5780
5780
|
declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
5781
5781
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5782
5782
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5796,58 +5796,58 @@ declare const WebhookDestinationUpdateSchema: z.ZodObject<{
|
|
|
5796
5796
|
declare const WebhookDestinationApiSelectSchema: z.ZodObject<{
|
|
5797
5797
|
id: z.ZodString;
|
|
5798
5798
|
name: z.ZodString;
|
|
5799
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5799
5800
|
createdAt: z.ZodString;
|
|
5800
5801
|
updatedAt: z.ZodString;
|
|
5801
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5802
|
-
url: z.ZodString;
|
|
5803
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5804
5802
|
enabled: z.ZodBoolean;
|
|
5803
|
+
url: z.ZodString;
|
|
5805
5804
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
5806
5805
|
"conversation.created": "conversation.created";
|
|
5807
5806
|
"conversation.updated": "conversation.updated";
|
|
5808
5807
|
"feedback.created": "feedback.created";
|
|
5809
5808
|
"event.created": "event.created";
|
|
5810
5809
|
}>>;
|
|
5810
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5811
5811
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5812
5812
|
}, z.core.$strip>;
|
|
5813
5813
|
declare const WebhookDestinationApiInsertSchema: z.ZodObject<{
|
|
5814
5814
|
id: z.ZodOptional<z.ZodString>;
|
|
5815
5815
|
name: z.ZodString;
|
|
5816
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
5817
|
-
url: z.ZodString;
|
|
5818
5816
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5819
5817
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5818
|
+
url: z.ZodString;
|
|
5820
5819
|
eventTypes: z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>;
|
|
5820
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
5821
5821
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5822
5822
|
}, z.core.$strip>;
|
|
5823
5823
|
declare const WebhookDestinationApiUpdateSchema: z.ZodObject<{
|
|
5824
5824
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5825
5825
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5826
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5826
5827
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5827
5828
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5828
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
5829
|
-
url: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5830
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5831
5829
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5830
|
+
url: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5832
5831
|
eventTypes: z.ZodOptional<z.ZodOptional<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
5832
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
5833
5833
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5834
5834
|
}, z.core.$strip>;
|
|
5835
5835
|
declare const WebhookDestinationResponse: z.ZodObject<{
|
|
5836
5836
|
data: z.ZodObject<{
|
|
5837
5837
|
id: z.ZodString;
|
|
5838
5838
|
name: z.ZodString;
|
|
5839
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5839
5840
|
createdAt: z.ZodString;
|
|
5840
5841
|
updatedAt: z.ZodString;
|
|
5841
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5842
|
-
url: z.ZodString;
|
|
5843
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5844
5842
|
enabled: z.ZodBoolean;
|
|
5843
|
+
url: z.ZodString;
|
|
5845
5844
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
5846
5845
|
"conversation.created": "conversation.created";
|
|
5847
5846
|
"conversation.updated": "conversation.updated";
|
|
5848
5847
|
"feedback.created": "feedback.created";
|
|
5849
5848
|
"event.created": "event.created";
|
|
5850
5849
|
}>>;
|
|
5850
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5851
5851
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5852
5852
|
}, z.core.$strip>;
|
|
5853
5853
|
}, z.core.$strip>;
|
|
@@ -5855,18 +5855,18 @@ declare const WebhookDestinationListResponse: z.ZodObject<{
|
|
|
5855
5855
|
data: z.ZodArray<z.ZodObject<{
|
|
5856
5856
|
id: z.ZodString;
|
|
5857
5857
|
name: z.ZodString;
|
|
5858
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5858
5859
|
createdAt: z.ZodString;
|
|
5859
5860
|
updatedAt: z.ZodString;
|
|
5860
|
-
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5861
|
-
url: z.ZodString;
|
|
5862
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5863
5861
|
enabled: z.ZodBoolean;
|
|
5862
|
+
url: z.ZodString;
|
|
5864
5863
|
eventTypes: z.ZodArray<z.ZodEnum<{
|
|
5865
5864
|
"conversation.created": "conversation.created";
|
|
5866
5865
|
"conversation.updated": "conversation.updated";
|
|
5867
5866
|
"feedback.created": "feedback.created";
|
|
5868
5867
|
"event.created": "event.created";
|
|
5869
5868
|
}>>;
|
|
5869
|
+
headers: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5870
5870
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5871
5871
|
}, z.core.$strip>>;
|
|
5872
5872
|
pagination: z.ZodObject<{
|
|
@@ -5908,16 +5908,16 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5908
5908
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5909
5909
|
id: z.ZodString;
|
|
5910
5910
|
name: z.ZodString;
|
|
5911
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5912
5911
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5913
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5914
5912
|
tenantId: z.ZodString;
|
|
5915
5913
|
projectId: z.ZodString;
|
|
5916
5914
|
agentId: z.ZodString;
|
|
5917
|
-
|
|
5915
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5918
5916
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5919
5917
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
5918
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
5919
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5921
5921
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5922
5922
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5923
5923
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5936,10 +5936,10 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5936
5936
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5937
5937
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5938
5938
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5939
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5940
5939
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5941
5940
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5942
5941
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
5942
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5943
5943
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5944
5944
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5945
5945
|
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
@@ -5956,19 +5956,19 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5956
5956
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
5957
5957
|
id: z.ZodString;
|
|
5958
5958
|
name: z.ZodString;
|
|
5959
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5959
5960
|
createdAt: z.ZodString;
|
|
5960
5961
|
updatedAt: z.ZodString;
|
|
5961
|
-
ref: z.ZodString;
|
|
5962
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5963
|
-
description: z.ZodNullable<z.ZodString>;
|
|
5964
5962
|
enabled: z.ZodBoolean;
|
|
5965
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
5966
5963
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5967
5964
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5968
5965
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
5966
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
5967
|
+
ref: z.ZodString;
|
|
5969
5968
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
5970
5969
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
5971
5970
|
runAt: z.ZodNullable<z.ZodString>;
|
|
5971
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5972
5972
|
maxRetries: z.ZodInt;
|
|
5973
5973
|
retryDelaySeconds: z.ZodInt;
|
|
5974
5974
|
timeoutSeconds: z.ZodInt;
|
|
@@ -5976,16 +5976,16 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5976
5976
|
}, z.core.$strip>;
|
|
5977
5977
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5978
5978
|
name: z.ZodString;
|
|
5979
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5980
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5981
5979
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5982
5980
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5983
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5984
5981
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5985
5982
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5983
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5984
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5986
5985
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5987
5986
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5988
5987
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5988
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5989
5989
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
5990
5990
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
5991
5991
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
@@ -5995,16 +5995,16 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5995
5995
|
}, z.core.$strip>;
|
|
5996
5996
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5997
5997
|
name: z.ZodString;
|
|
5998
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5999
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6000
5998
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6001
5999
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6002
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6003
6000
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6004
6001
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6002
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6003
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6005
6004
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6006
6005
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6007
6006
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6007
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6008
6008
|
maxRetries: z.ZodOptional<z.ZodInt>;
|
|
6009
6009
|
retryDelaySeconds: z.ZodOptional<z.ZodInt>;
|
|
6010
6010
|
timeoutSeconds: z.ZodOptional<z.ZodInt>;
|
|
@@ -6015,16 +6015,16 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
6015
6015
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
6016
6016
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6017
6017
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6018
|
-
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6019
|
-
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6020
6018
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6021
6019
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
6022
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6023
6020
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6024
6021
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6022
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6023
|
+
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6025
6024
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6026
6025
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6027
6026
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6027
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
6028
6028
|
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6029
6029
|
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
6030
6030
|
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
@@ -6041,8 +6041,8 @@ declare const ScheduledTriggerUsersResponseSchema: z.ZodObject<{
|
|
|
6041
6041
|
data: z.ZodArray<z.ZodString>;
|
|
6042
6042
|
}, z.core.$strip>;
|
|
6043
6043
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
6044
|
-
pending: "pending";
|
|
6045
6044
|
running: "running";
|
|
6045
|
+
pending: "pending";
|
|
6046
6046
|
completed: "completed";
|
|
6047
6047
|
failed: "failed";
|
|
6048
6048
|
cancelled: "cancelled";
|
|
@@ -6072,8 +6072,8 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6072
6072
|
}, z.core.$strip>>>;
|
|
6073
6073
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6074
6074
|
status: z.ZodEnum<{
|
|
6075
|
-
pending: "pending";
|
|
6076
6075
|
running: "running";
|
|
6076
|
+
pending: "pending";
|
|
6077
6077
|
completed: "completed";
|
|
6078
6078
|
failed: "failed";
|
|
6079
6079
|
cancelled: "cancelled";
|
|
@@ -6134,7 +6134,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
6134
6134
|
tableName: "scheduled_trigger_invocations";
|
|
6135
6135
|
dataType: "string";
|
|
6136
6136
|
columnType: "PgVarchar";
|
|
6137
|
-
data: "
|
|
6137
|
+
data: "running" | "pending" | "completed" | "failed" | "cancelled";
|
|
6138
6138
|
driverParam: string;
|
|
6139
6139
|
notNull: true;
|
|
6140
6140
|
hasDefault: false;
|
|
@@ -6147,7 +6147,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
6147
6147
|
generated: undefined;
|
|
6148
6148
|
}, {}, {
|
|
6149
6149
|
length: 50;
|
|
6150
|
-
$type: "
|
|
6150
|
+
$type: "running" | "pending" | "completed" | "failed" | "cancelled";
|
|
6151
6151
|
}>;
|
|
6152
6152
|
scheduledFor: drizzle_orm_pg_core1094.PgColumn<{
|
|
6153
6153
|
name: "scheduled_for";
|
|
@@ -6438,7 +6438,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
6438
6438
|
tableName: "scheduled_trigger_invocations";
|
|
6439
6439
|
dataType: "string";
|
|
6440
6440
|
columnType: "PgVarchar";
|
|
6441
|
-
data: "
|
|
6441
|
+
data: "running" | "pending" | "completed" | "failed" | "cancelled";
|
|
6442
6442
|
driverParam: string;
|
|
6443
6443
|
notNull: true;
|
|
6444
6444
|
hasDefault: false;
|
|
@@ -6451,7 +6451,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
6451
6451
|
generated: undefined;
|
|
6452
6452
|
}, {}, {
|
|
6453
6453
|
length: 50;
|
|
6454
|
-
$type: "
|
|
6454
|
+
$type: "running" | "pending" | "completed" | "failed" | "cancelled";
|
|
6455
6455
|
}>;
|
|
6456
6456
|
scheduledFor: drizzle_orm_pg_core1094.PgColumn<{
|
|
6457
6457
|
name: "scheduled_for";
|
|
@@ -6690,7 +6690,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod17.BuildSchema<
|
|
|
6690
6690
|
}, {}, {
|
|
6691
6691
|
length: 256;
|
|
6692
6692
|
}>;
|
|
6693
|
-
}, "id" | "createdAt" | "
|
|
6693
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "conversationIds" | "ref" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6694
6694
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6695
6695
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6696
6696
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6731,6 +6731,8 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6731
6731
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
6732
6732
|
id: z.ZodString;
|
|
6733
6733
|
createdAt: z.ZodString;
|
|
6734
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6735
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6734
6736
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6735
6737
|
type: z.ZodEnum<{
|
|
6736
6738
|
commit: "commit";
|
|
@@ -6741,14 +6743,12 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6741
6743
|
hash: z.ZodString;
|
|
6742
6744
|
}, z.core.$strip>>>;
|
|
6743
6745
|
status: z.ZodEnum<{
|
|
6744
|
-
pending: "pending";
|
|
6745
6746
|
running: "running";
|
|
6747
|
+
pending: "pending";
|
|
6746
6748
|
completed: "completed";
|
|
6747
6749
|
failed: "failed";
|
|
6748
6750
|
cancelled: "cancelled";
|
|
6749
6751
|
}>;
|
|
6750
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6751
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6752
6752
|
scheduledTriggerId: z.ZodString;
|
|
6753
6753
|
scheduledFor: z.ZodString;
|
|
6754
6754
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -6759,6 +6759,8 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6759
6759
|
}, z.core.$strip>;
|
|
6760
6760
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6761
6761
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6762
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6763
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6762
6764
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6763
6765
|
type: "commit" | "tag" | "branch";
|
|
6764
6766
|
name: string;
|
|
@@ -6777,8 +6779,6 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6777
6779
|
hash: string;
|
|
6778
6780
|
}>>>>;
|
|
6779
6781
|
status: z.ZodString;
|
|
6780
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6781
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6782
6782
|
scheduledTriggerId: z.ZodString;
|
|
6783
6783
|
scheduledFor: z.ZodString;
|
|
6784
6784
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6791,6 +6791,8 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6791
6791
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6792
6792
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6793
6793
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6794
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6795
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6794
6796
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6795
6797
|
type: "commit" | "tag" | "branch";
|
|
6796
6798
|
name: string;
|
|
@@ -6809,8 +6811,6 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6809
6811
|
hash: string;
|
|
6810
6812
|
}>>>>>>;
|
|
6811
6813
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6812
|
-
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6813
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6814
6814
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6815
6815
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6816
6816
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7045,6 +7045,10 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7045
7045
|
id: z.ZodString;
|
|
7046
7046
|
createdAt: z.ZodString;
|
|
7047
7047
|
updatedAt: z.ZodString;
|
|
7048
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7049
|
+
agentId: z.ZodString;
|
|
7050
|
+
subAgentId: z.ZodString;
|
|
7051
|
+
contextId: z.ZodString;
|
|
7048
7052
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7049
7053
|
type: z.ZodEnum<{
|
|
7050
7054
|
commit: "commit";
|
|
@@ -7054,16 +7058,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
7054
7058
|
name: z.ZodString;
|
|
7055
7059
|
hash: z.ZodString;
|
|
7056
7060
|
}, z.core.$strip>>>;
|
|
7057
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
7058
7061
|
status: z.ZodString;
|
|
7059
|
-
agentId: z.ZodString;
|
|
7060
|
-
subAgentId: z.ZodString;
|
|
7061
|
-
contextId: z.ZodString;
|
|
7062
7062
|
}, z.core.$strip>;
|
|
7063
7063
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
7064
7064
|
id: z.ZodString;
|
|
7065
7065
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7066
7066
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7067
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7068
|
+
agentId: z.ZodString;
|
|
7069
|
+
subAgentId: z.ZodString;
|
|
7070
|
+
contextId: z.ZodString;
|
|
7067
7071
|
ref: z.ZodObject<{
|
|
7068
7072
|
type: z.ZodEnum<{
|
|
7069
7073
|
commit: "commit";
|
|
@@ -7073,17 +7077,17 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
7073
7077
|
name: z.ZodString;
|
|
7074
7078
|
hash: z.ZodString;
|
|
7075
7079
|
}, z.core.$strip>;
|
|
7076
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
7077
7080
|
status: z.ZodString;
|
|
7078
|
-
agentId: z.ZodString;
|
|
7079
|
-
subAgentId: z.ZodString;
|
|
7080
|
-
contextId: z.ZodString;
|
|
7081
7081
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7082
7082
|
}, z.core.$strip>;
|
|
7083
7083
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7084
7084
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7085
7085
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7086
7086
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7087
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7088
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7089
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7090
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7087
7091
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7088
7092
|
type: z.ZodEnum<{
|
|
7089
7093
|
commit: "commit";
|
|
@@ -7093,11 +7097,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7093
7097
|
name: z.ZodString;
|
|
7094
7098
|
hash: z.ZodString;
|
|
7095
7099
|
}, z.core.$strip>>>;
|
|
7096
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7097
7100
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7098
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7099
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7100
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7101
7101
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7102
7102
|
}, z.core.$strip>;
|
|
7103
7103
|
declare const TaskRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -8035,10 +8035,11 @@ declare const ToolSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
8035
8035
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
8036
8036
|
id: z.ZodString;
|
|
8037
8037
|
name: z.ZodString;
|
|
8038
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8039
8038
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8040
8039
|
tenantId: z.ZodString;
|
|
8041
8040
|
projectId: z.ZodString;
|
|
8041
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8042
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8042
8043
|
config: z.ZodObject<{
|
|
8043
8044
|
type: z.ZodLiteral<"mcp">;
|
|
8044
8045
|
mcp: z.ZodObject<{
|
|
@@ -8065,7 +8066,6 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
8065
8066
|
prompt: z.ZodOptional<z.ZodString>;
|
|
8066
8067
|
}, z.core.$strip>;
|
|
8067
8068
|
}, z.core.$strip>;
|
|
8068
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8069
8069
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
8070
8070
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8071
8071
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -8160,8 +8160,14 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
8160
8160
|
}>;
|
|
8161
8161
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
8162
8162
|
id: z.ZodString;
|
|
8163
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8164
|
+
title: z.ZodNullable<z.ZodString>;
|
|
8163
8165
|
createdAt: z.ZodString;
|
|
8164
8166
|
updatedAt: z.ZodString;
|
|
8167
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8168
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
8169
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
8170
|
+
activeSubAgentId: z.ZodString;
|
|
8165
8171
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8166
8172
|
type: z.ZodEnum<{
|
|
8167
8173
|
commit: "commit";
|
|
@@ -8171,19 +8177,20 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
8171
8177
|
name: z.ZodString;
|
|
8172
8178
|
hash: z.ZodString;
|
|
8173
8179
|
}, z.core.$strip>>>;
|
|
8174
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
8175
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
8176
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8177
|
-
title: z.ZodNullable<z.ZodString>;
|
|
8178
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
8179
|
-
activeSubAgentId: z.ZodString;
|
|
8180
8180
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
8181
8181
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8182
8182
|
}, z.core.$strip>;
|
|
8183
8183
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
8184
8184
|
id: z.ZodString;
|
|
8185
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8186
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8185
8187
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8186
8188
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8189
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8190
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8191
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8192
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8193
|
+
activeSubAgentId: z.ZodString;
|
|
8187
8194
|
ref: z.ZodObject<{
|
|
8188
8195
|
type: z.ZodEnum<{
|
|
8189
8196
|
commit: "commit";
|
|
@@ -8193,20 +8200,20 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
8193
8200
|
name: z.ZodString;
|
|
8194
8201
|
hash: z.ZodString;
|
|
8195
8202
|
}, z.core.$strip>;
|
|
8196
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8197
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
8198
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8199
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8200
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8201
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8202
|
-
activeSubAgentId: z.ZodString;
|
|
8203
8203
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8204
8204
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8205
8205
|
}, z.core.$strip>;
|
|
8206
8206
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
8207
8207
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8208
|
+
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8209
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8208
8210
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8209
8211
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8212
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8213
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8214
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8215
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8216
|
+
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8210
8217
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8211
8218
|
type: z.ZodEnum<{
|
|
8212
8219
|
commit: "commit";
|
|
@@ -8216,13 +8223,6 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
8216
8223
|
name: z.ZodString;
|
|
8217
8224
|
hash: z.ZodString;
|
|
8218
8225
|
}, z.core.$strip>>>;
|
|
8219
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8220
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8221
|
-
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8222
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8223
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8224
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8225
|
-
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8226
8226
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8227
8227
|
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8228
8228
|
}, z.core.$strip>;
|
|
@@ -8312,69 +8312,69 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8312
8312
|
}>;
|
|
8313
8313
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8314
8314
|
id: z.ZodString;
|
|
8315
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8315
8316
|
createdAt: z.ZodString;
|
|
8316
8317
|
updatedAt: z.ZodString;
|
|
8317
8318
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8318
|
-
role: z.ZodString;
|
|
8319
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8320
8319
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8320
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
8321
|
+
visibility: z.ZodString;
|
|
8321
8322
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8322
8323
|
conversationId: z.ZodString;
|
|
8324
|
+
role: z.ZodString;
|
|
8323
8325
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8324
8326
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8325
8327
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8326
8328
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8327
8329
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8328
8330
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8329
|
-
visibility: z.ZodString;
|
|
8330
8331
|
messageType: z.ZodString;
|
|
8331
|
-
taskId: z.ZodNullable<z.ZodString>;
|
|
8332
8332
|
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
8333
8333
|
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8334
8334
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8335
8335
|
}, z.core.$strip>;
|
|
8336
8336
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8337
8337
|
id: z.ZodString;
|
|
8338
|
+
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8338
8339
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8339
8340
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8340
8341
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8341
|
-
role: z.ZodString;
|
|
8342
|
-
properties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8343
8342
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8343
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
8344
|
+
visibility: z.ZodOptional<z.ZodString>;
|
|
8344
8345
|
userProperties: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
8345
8346
|
conversationId: z.ZodString;
|
|
8347
|
+
role: z.ZodString;
|
|
8346
8348
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8347
8349
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8348
8350
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8349
8351
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8350
8352
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8351
8353
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8352
|
-
visibility: z.ZodOptional<z.ZodString>;
|
|
8353
8354
|
messageType: z.ZodOptional<z.ZodString>;
|
|
8354
|
-
taskId: z.ZodOptional<z.ZodString>;
|
|
8355
8355
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8356
8356
|
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8357
8357
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8358
8358
|
}, z.core.$strip>;
|
|
8359
8359
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8360
8360
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8361
|
+
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8361
8362
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8362
8363
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8363
8364
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8364
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8365
|
-
properties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8366
8365
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8366
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8367
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8367
8368
|
userProperties: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
8368
8369
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8370
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8369
8371
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8370
8372
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8371
8373
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8372
8374
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8373
8375
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8374
8376
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8375
|
-
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8376
8377
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8377
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8378
8378
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8379
8379
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8380
8380
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8749,8 +8749,8 @@ declare const FeedbackUpdateSchema: z.ZodObject<{
|
|
|
8749
8749
|
in: {};
|
|
8750
8750
|
}>;
|
|
8751
8751
|
declare const FeedbackApiSelectSchema: z.ZodObject<{
|
|
8752
|
-
type: z.ZodString;
|
|
8753
8752
|
id: z.ZodString;
|
|
8753
|
+
type: z.ZodString;
|
|
8754
8754
|
createdAt: z.ZodString;
|
|
8755
8755
|
updatedAt: z.ZodString;
|
|
8756
8756
|
conversationId: z.ZodString;
|
|
@@ -8780,8 +8780,8 @@ declare const FeedbackApiUpdateSchema: z.ZodObject<{
|
|
|
8780
8780
|
}, z.core.$strip>;
|
|
8781
8781
|
declare const WebhookFeedbackDataSchema: z.ZodObject<{
|
|
8782
8782
|
feedback: z.ZodObject<{
|
|
8783
|
-
type: z.ZodString;
|
|
8784
8783
|
id: z.ZodString;
|
|
8784
|
+
type: z.ZodString;
|
|
8785
8785
|
createdAt: z.ZodString;
|
|
8786
8786
|
updatedAt: z.ZodString;
|
|
8787
8787
|
conversationId: z.ZodString;
|
|
@@ -9329,12 +9329,12 @@ declare const EventInsertSchema: z.ZodObject<{
|
|
|
9329
9329
|
in: {};
|
|
9330
9330
|
}>;
|
|
9331
9331
|
declare const EventApiSelectSchema: z.ZodObject<{
|
|
9332
|
-
type: z.ZodString;
|
|
9333
9332
|
id: z.ZodString;
|
|
9333
|
+
type: z.ZodString;
|
|
9334
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9334
9335
|
createdAt: z.ZodString;
|
|
9335
9336
|
updatedAt: z.ZodString;
|
|
9336
9337
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9337
|
-
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9338
9338
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9339
9339
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9340
9340
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -9353,12 +9353,12 @@ declare const EventApiInsertSchema: z.ZodObject<{
|
|
|
9353
9353
|
}, z.core.$strip>;
|
|
9354
9354
|
declare const WebhookEventCreatedDataSchema: z.ZodObject<{
|
|
9355
9355
|
event: z.ZodObject<{
|
|
9356
|
-
type: z.ZodString;
|
|
9357
9356
|
id: z.ZodString;
|
|
9357
|
+
type: z.ZodString;
|
|
9358
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9358
9359
|
createdAt: z.ZodString;
|
|
9359
9360
|
updatedAt: z.ZodString;
|
|
9360
9361
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9361
|
-
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9362
9362
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9363
9363
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
9364
9364
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -9446,8 +9446,10 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
9446
9446
|
}>;
|
|
9447
9447
|
declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
9448
9448
|
id: z.ZodString;
|
|
9449
|
+
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
9449
9450
|
createdAt: z.ZodString;
|
|
9450
9451
|
updatedAt: z.ZodString;
|
|
9452
|
+
contextConfigId: z.ZodString;
|
|
9451
9453
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9452
9454
|
type: z.ZodEnum<{
|
|
9453
9455
|
commit: "commit";
|
|
@@ -9457,8 +9459,6 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9457
9459
|
name: z.ZodString;
|
|
9458
9460
|
hash: z.ZodString;
|
|
9459
9461
|
}, z.core.$strip>>>;
|
|
9460
|
-
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
9461
|
-
contextConfigId: z.ZodString;
|
|
9462
9462
|
conversationId: z.ZodString;
|
|
9463
9463
|
contextVariableKey: z.ZodString;
|
|
9464
9464
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
@@ -9467,8 +9467,10 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9467
9467
|
}, z.core.$strip>;
|
|
9468
9468
|
declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
9469
9469
|
id: z.ZodString;
|
|
9470
|
+
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
9470
9471
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9471
9472
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9473
|
+
contextConfigId: z.ZodString;
|
|
9472
9474
|
ref: z.ZodObject<{
|
|
9473
9475
|
type: z.ZodEnum<{
|
|
9474
9476
|
commit: "commit";
|
|
@@ -9478,8 +9480,6 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9478
9480
|
name: z.ZodString;
|
|
9479
9481
|
hash: z.ZodString;
|
|
9480
9482
|
}, z.core.$strip>;
|
|
9481
|
-
value: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
9482
|
-
contextConfigId: z.ZodString;
|
|
9483
9483
|
conversationId: z.ZodString;
|
|
9484
9484
|
contextVariableKey: z.ZodString;
|
|
9485
9485
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9488,8 +9488,10 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9488
9488
|
}, z.core.$strip>;
|
|
9489
9489
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
9490
9490
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9491
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
9491
9492
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9492
9493
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9494
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9493
9495
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9494
9496
|
type: z.ZodEnum<{
|
|
9495
9497
|
commit: "commit";
|
|
@@ -9499,8 +9501,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
9499
9501
|
name: z.ZodString;
|
|
9500
9502
|
hash: z.ZodString;
|
|
9501
9503
|
}, z.core.$strip>>>;
|
|
9502
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
9503
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9504
9504
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9505
9505
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9506
9506
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9593,6 +9593,9 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9593
9593
|
id: z.ZodString;
|
|
9594
9594
|
createdAt: z.ZodString;
|
|
9595
9595
|
updatedAt: z.ZodString;
|
|
9596
|
+
datasetId: z.ZodString;
|
|
9597
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9598
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9596
9599
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9597
9600
|
type: z.ZodEnum<{
|
|
9598
9601
|
commit: "commit";
|
|
@@ -9602,13 +9605,13 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9602
9605
|
name: z.ZodString;
|
|
9603
9606
|
hash: z.ZodString;
|
|
9604
9607
|
}, z.core.$strip>>>;
|
|
9605
|
-
datasetId: z.ZodString;
|
|
9606
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9607
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9608
9608
|
}, z.core.$strip>;
|
|
9609
9609
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9610
9610
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9611
9611
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9612
|
+
datasetId: z.ZodString;
|
|
9613
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9614
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9612
9615
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9613
9616
|
type: "commit" | "tag" | "branch";
|
|
9614
9617
|
name: string;
|
|
@@ -9626,13 +9629,13 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9626
9629
|
name: string;
|
|
9627
9630
|
hash: string;
|
|
9628
9631
|
}>>>>;
|
|
9629
|
-
datasetId: z.ZodString;
|
|
9630
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9631
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9632
9632
|
}, z.core.$strip>;
|
|
9633
9633
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9634
9634
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9635
9635
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9636
|
+
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9637
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9638
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9636
9639
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9637
9640
|
type: "commit" | "tag" | "branch";
|
|
9638
9641
|
name: string;
|
|
@@ -9650,9 +9653,6 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9650
9653
|
name: string;
|
|
9651
9654
|
hash: string;
|
|
9652
9655
|
}>>>>>>;
|
|
9653
|
-
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9654
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9655
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9656
9656
|
}, z.core.$strip>;
|
|
9657
9657
|
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
9658
9658
|
createdAt: drizzle_orm_pg_core1094.PgColumn<{
|
|
@@ -10343,8 +10343,8 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
10343
10343
|
in: {};
|
|
10344
10344
|
}>;
|
|
10345
10345
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
10346
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10347
10346
|
id: z.ZodString;
|
|
10347
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
10348
10348
|
createdAt: z.ZodString;
|
|
10349
10349
|
updatedAt: z.ZodString;
|
|
10350
10350
|
evaluatorId: z.ZodString;
|
|
@@ -10450,6 +10450,8 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10450
10450
|
id: z.ZodString;
|
|
10451
10451
|
createdAt: z.ZodString;
|
|
10452
10452
|
updatedAt: z.ZodString;
|
|
10453
|
+
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10454
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10453
10455
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10454
10456
|
type: z.ZodEnum<{
|
|
10455
10457
|
commit: "commit";
|
|
@@ -10459,12 +10461,12 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10459
10461
|
name: z.ZodString;
|
|
10460
10462
|
hash: z.ZodString;
|
|
10461
10463
|
}, z.core.$strip>>>;
|
|
10462
|
-
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10463
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10464
10464
|
}, z.core.$strip>;
|
|
10465
10465
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10466
10466
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10467
10467
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10468
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10469
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10468
10470
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10469
10471
|
type: "commit" | "tag" | "branch";
|
|
10470
10472
|
name: string;
|
|
@@ -10482,12 +10484,12 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
10482
10484
|
name: string;
|
|
10483
10485
|
hash: string;
|
|
10484
10486
|
}>>>>;
|
|
10485
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10486
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10487
10487
|
}, z.core.$strip>;
|
|
10488
10488
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10489
10489
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10490
10490
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10491
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10492
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10491
10493
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10492
10494
|
type: "commit" | "tag" | "branch";
|
|
10493
10495
|
name: string;
|
|
@@ -10505,8 +10507,6 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10505
10507
|
name: string;
|
|
10506
10508
|
hash: string;
|
|
10507
10509
|
}>>>>>>;
|
|
10508
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10509
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10510
10510
|
}, z.core.$strip>;
|
|
10511
10511
|
declare const EvaluationRunConfigSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
10512
10512
|
createdAt: drizzle_orm_pg_core1094.PgColumn<{
|
|
@@ -10828,33 +10828,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
10828
10828
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
10829
10829
|
id: z.ZodString;
|
|
10830
10830
|
name: z.ZodString;
|
|
10831
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10831
10832
|
createdAt: z.ZodString;
|
|
10832
10833
|
updatedAt: z.ZodString;
|
|
10833
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10834
10834
|
isActive: z.ZodBoolean;
|
|
10835
10835
|
}, z.core.$strip>;
|
|
10836
10836
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10837
10837
|
name: z.ZodString;
|
|
10838
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10838
10839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10839
10840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10840
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10841
10841
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10842
10842
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10843
10843
|
}, z.core.$strip>;
|
|
10844
10844
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10845
10845
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10846
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10846
10847
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10847
10848
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10848
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10849
10849
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10850
10850
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10851
10851
|
}, z.core.$strip>;
|
|
10852
10852
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10853
10853
|
id: z.ZodString;
|
|
10854
10854
|
name: z.ZodString;
|
|
10855
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10855
10856
|
createdAt: z.ZodString;
|
|
10856
10857
|
updatedAt: z.ZodString;
|
|
10857
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10858
10858
|
isActive: z.ZodBoolean;
|
|
10859
10859
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10860
10860
|
}, z.core.$strip>;
|
|
@@ -13002,10 +13002,6 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
13002
13002
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
13003
13003
|
id: z.ZodString;
|
|
13004
13004
|
name: z.ZodString;
|
|
13005
|
-
createdAt: z.ZodString;
|
|
13006
|
-
updatedAt: z.ZodString;
|
|
13007
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13008
|
-
prompt: z.ZodString;
|
|
13009
13005
|
description: z.ZodNullable<z.ZodString>;
|
|
13010
13006
|
model: z.ZodType<{
|
|
13011
13007
|
model?: string | undefined;
|
|
@@ -13028,14 +13024,14 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
13028
13024
|
fallbackModels?: string[] | undefined;
|
|
13029
13025
|
allowedProviders?: string[] | undefined;
|
|
13030
13026
|
}>>;
|
|
13027
|
+
createdAt: z.ZodString;
|
|
13028
|
+
updatedAt: z.ZodString;
|
|
13029
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13030
|
+
prompt: z.ZodString;
|
|
13031
13031
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
13032
13032
|
}, z.core.$strip>;
|
|
13033
13033
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
13034
13034
|
name: z.ZodString;
|
|
13035
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13036
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13037
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13038
|
-
prompt: z.ZodString;
|
|
13039
13035
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13040
13036
|
model: z.ZodType<{
|
|
13041
13037
|
model?: string | undefined;
|
|
@@ -13058,14 +13054,14 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
13058
13054
|
fallbackModels?: string[] | undefined;
|
|
13059
13055
|
allowedProviders?: string[] | undefined;
|
|
13060
13056
|
}>>;
|
|
13057
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13058
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13059
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
13060
|
+
prompt: z.ZodString;
|
|
13061
13061
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
13062
13062
|
}, z.core.$strip>;
|
|
13063
13063
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
13064
13064
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13065
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13066
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13067
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13068
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13069
13065
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13070
13066
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
13071
13067
|
model?: string | undefined;
|
|
@@ -13088,6 +13084,10 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
13088
13084
|
fallbackModels?: string[] | undefined;
|
|
13089
13085
|
allowedProviders?: string[] | undefined;
|
|
13090
13086
|
}>>>>;
|
|
13087
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13088
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13089
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
13090
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13091
13091
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
13092
13092
|
}, z.core.$strip>;
|
|
13093
13093
|
declare const DatasetSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -13677,8 +13677,8 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
13677
13677
|
in: {};
|
|
13678
13678
|
}>;
|
|
13679
13679
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
13680
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13681
13680
|
id: z.ZodString;
|
|
13681
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13682
13682
|
createdAt: z.ZodString;
|
|
13683
13683
|
updatedAt: z.ZodString;
|
|
13684
13684
|
datasetId: z.ZodString;
|
|
@@ -13697,8 +13697,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13697
13697
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13698
13698
|
}, z.core.$strip>;
|
|
13699
13699
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13700
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13701
13700
|
id: z.ZodOptional<z.ZodString>;
|
|
13701
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13702
13702
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13703
13703
|
agentId: z.ZodString;
|
|
13704
13704
|
}, z.core.$strip>;
|
|
@@ -14056,23 +14056,23 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
14056
14056
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
14057
14057
|
id: z.ZodString;
|
|
14058
14058
|
name: z.ZodString;
|
|
14059
|
+
description: z.ZodNullable<z.ZodString>;
|
|
14059
14060
|
createdAt: z.ZodString;
|
|
14060
14061
|
updatedAt: z.ZodString;
|
|
14061
|
-
description: z.ZodNullable<z.ZodString>;
|
|
14062
14062
|
datasetId: z.ZodString;
|
|
14063
14063
|
}, z.core.$strip>;
|
|
14064
14064
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
14065
14065
|
name: z.ZodString;
|
|
14066
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14066
14067
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14067
14068
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14068
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14069
14069
|
datasetId: z.ZodString;
|
|
14070
14070
|
}, z.core.$strip>;
|
|
14071
14071
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
14072
14072
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14073
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14073
14074
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14074
14075
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14075
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14076
14076
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14077
14077
|
}, z.core.$strip>;
|
|
14078
14078
|
declare const AgentDatasetRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -15436,9 +15436,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
15436
15436
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
15437
15437
|
id: z.ZodString;
|
|
15438
15438
|
name: z.ZodString;
|
|
15439
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15439
15440
|
createdAt: z.ZodString;
|
|
15440
15441
|
updatedAt: z.ZodString;
|
|
15441
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15442
15442
|
props: z.ZodType<{
|
|
15443
15443
|
[x: string]: unknown;
|
|
15444
15444
|
type: "object";
|
|
@@ -16578,9 +16578,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
16578
16578
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
16579
16579
|
id: z.ZodString;
|
|
16580
16580
|
name: z.ZodString;
|
|
16581
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16581
16582
|
createdAt: z.ZodString;
|
|
16582
16583
|
updatedAt: z.ZodString;
|
|
16583
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16584
16584
|
props: z.ZodNullable<z.ZodType<{
|
|
16585
16585
|
[x: string]: unknown;
|
|
16586
16586
|
type: "object";
|
|
@@ -16655,9 +16655,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
16655
16655
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
16656
16656
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16657
16657
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16658
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16658
16659
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16659
16660
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16660
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16661
16661
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
16662
16662
|
[x: string]: unknown;
|
|
16663
16663
|
type: "object";
|
|
@@ -17030,8 +17030,8 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
17030
17030
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17031
17031
|
tenantId: z.ZodString;
|
|
17032
17032
|
projectId: z.ZodString;
|
|
17033
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17034
17033
|
baseUrl: z.ZodURL;
|
|
17034
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17035
17035
|
}, {
|
|
17036
17036
|
out: {};
|
|
17037
17037
|
in: {};
|
|
@@ -17042,8 +17042,8 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
17042
17042
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17043
17043
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17044
17044
|
projectId: z.ZodOptional<z.ZodString>;
|
|
17045
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17046
17045
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
17046
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17047
17047
|
}, {
|
|
17048
17048
|
out: {};
|
|
17049
17049
|
in: {};
|
|
@@ -17051,32 +17051,29 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
17051
17051
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
17052
17052
|
id: z.ZodString;
|
|
17053
17053
|
name: z.ZodString;
|
|
17054
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17054
17055
|
createdAt: z.ZodString;
|
|
17055
17056
|
updatedAt: z.ZodString;
|
|
17056
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17057
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17058
17057
|
baseUrl: z.ZodString;
|
|
17058
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17059
17059
|
}, z.core.$strip>;
|
|
17060
17060
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
17061
17061
|
id: z.ZodString;
|
|
17062
17062
|
name: z.ZodString;
|
|
17063
17063
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17064
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17065
17064
|
baseUrl: z.ZodURL;
|
|
17065
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17066
17066
|
}, z.core.$strip>;
|
|
17067
17067
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
17068
17068
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17069
17069
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17070
17070
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17071
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17072
17071
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
17072
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17073
17073
|
}, z.core.$strip>;
|
|
17074
17074
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17075
17075
|
id: z.ZodString;
|
|
17076
17076
|
name: z.ZodString;
|
|
17077
|
-
createdAt: z.ZodString;
|
|
17078
|
-
updatedAt: z.ZodString;
|
|
17079
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
17080
17077
|
description: z.ZodNullable<z.ZodString>;
|
|
17081
17078
|
models: z.ZodNullable<z.ZodType<{
|
|
17082
17079
|
base?: {
|
|
@@ -17164,16 +17161,19 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17164
17161
|
}, {
|
|
17165
17162
|
stepCountIs?: number | undefined;
|
|
17166
17163
|
}>>>;
|
|
17164
|
+
createdAt: z.ZodString;
|
|
17165
|
+
updatedAt: z.ZodString;
|
|
17166
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
17167
17167
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
17168
17168
|
type: z.ZodLiteral<"internal">;
|
|
17169
17169
|
}, z.core.$strip>, z.ZodObject<{
|
|
17170
17170
|
id: z.ZodString;
|
|
17171
17171
|
name: z.ZodString;
|
|
17172
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17172
17173
|
createdAt: z.ZodString;
|
|
17173
17174
|
updatedAt: z.ZodString;
|
|
17174
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17175
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17176
17175
|
baseUrl: z.ZodString;
|
|
17176
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17177
17177
|
type: z.ZodLiteral<"external">;
|
|
17178
17178
|
}, z.core.$strip>], "type">;
|
|
17179
17179
|
declare const ApiKeySelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -17639,8 +17639,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
17639
17639
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
17640
17640
|
name: z.ZodOptional<z.ZodString>;
|
|
17641
17641
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17642
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17643
17642
|
agentId: z.ZodOptional<z.ZodString>;
|
|
17643
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17644
17644
|
}, {
|
|
17645
17645
|
out: {};
|
|
17646
17646
|
in: {};
|
|
@@ -17650,8 +17650,8 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
17650
17650
|
name: z.ZodNullable<z.ZodString>;
|
|
17651
17651
|
createdAt: z.ZodString;
|
|
17652
17652
|
updatedAt: z.ZodString;
|
|
17653
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17654
17653
|
agentId: z.ZodString;
|
|
17654
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17655
17655
|
publicId: z.ZodString;
|
|
17656
17656
|
keyPrefix: z.ZodString;
|
|
17657
17657
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17666,8 +17666,8 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
17666
17666
|
name: z.ZodNullable<z.ZodString>;
|
|
17667
17667
|
createdAt: z.ZodString;
|
|
17668
17668
|
updatedAt: z.ZodString;
|
|
17669
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17670
17669
|
agentId: z.ZodString;
|
|
17670
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
17671
17671
|
publicId: z.ZodString;
|
|
17672
17672
|
keyPrefix: z.ZodString;
|
|
17673
17673
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -17682,8 +17682,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
17682
17682
|
name: z.ZodString;
|
|
17683
17683
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17684
17684
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17685
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17686
17685
|
agentId: z.ZodString;
|
|
17686
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17687
17687
|
}, {
|
|
17688
17688
|
out: {};
|
|
17689
17689
|
in: {};
|
|
@@ -17691,33 +17691,33 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
17691
17691
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17692
17692
|
name: z.ZodOptional<z.ZodString>;
|
|
17693
17693
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17694
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17695
17694
|
agentId: z.ZodOptional<z.ZodString>;
|
|
17695
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17696
17696
|
}, {
|
|
17697
17697
|
out: {};
|
|
17698
17698
|
in: {};
|
|
17699
17699
|
}>;
|
|
17700
17700
|
declare const ALLOWED_DOMAIN_PATTERN: RegExp;
|
|
17701
17701
|
declare const PublicKeyAlgorithmSchema: z.ZodEnum<{
|
|
17702
|
-
EdDSA: "EdDSA";
|
|
17703
|
-
ES256: "ES256";
|
|
17704
|
-
ES512: "ES512";
|
|
17705
17702
|
RS256: "RS256";
|
|
17706
17703
|
RS384: "RS384";
|
|
17707
17704
|
RS512: "RS512";
|
|
17705
|
+
ES256: "ES256";
|
|
17708
17706
|
ES384: "ES384";
|
|
17707
|
+
ES512: "ES512";
|
|
17708
|
+
EdDSA: "EdDSA";
|
|
17709
17709
|
}>;
|
|
17710
17710
|
declare const PublicKeyConfigSchema: z.ZodObject<{
|
|
17711
17711
|
kid: z.ZodString;
|
|
17712
17712
|
publicKey: z.ZodString;
|
|
17713
17713
|
algorithm: z.ZodEnum<{
|
|
17714
|
-
EdDSA: "EdDSA";
|
|
17715
|
-
ES256: "ES256";
|
|
17716
|
-
ES512: "ES512";
|
|
17717
17714
|
RS256: "RS256";
|
|
17718
17715
|
RS384: "RS384";
|
|
17719
17716
|
RS512: "RS512";
|
|
17717
|
+
ES256: "ES256";
|
|
17720
17718
|
ES384: "ES384";
|
|
17719
|
+
ES512: "ES512";
|
|
17720
|
+
EdDSA: "EdDSA";
|
|
17721
17721
|
}>;
|
|
17722
17722
|
addedAt: z.ZodString;
|
|
17723
17723
|
}, z.core.$strip>;
|
|
@@ -17729,13 +17729,13 @@ declare const WebClientConfigSchema: z.ZodObject<{
|
|
|
17729
17729
|
kid: z.ZodString;
|
|
17730
17730
|
publicKey: z.ZodString;
|
|
17731
17731
|
algorithm: z.ZodEnum<{
|
|
17732
|
-
EdDSA: "EdDSA";
|
|
17733
|
-
ES256: "ES256";
|
|
17734
|
-
ES512: "ES512";
|
|
17735
17732
|
RS256: "RS256";
|
|
17736
17733
|
RS384: "RS384";
|
|
17737
17734
|
RS512: "RS512";
|
|
17735
|
+
ES256: "ES256";
|
|
17738
17736
|
ES384: "ES384";
|
|
17737
|
+
ES512: "ES512";
|
|
17738
|
+
EdDSA: "EdDSA";
|
|
17739
17739
|
}>;
|
|
17740
17740
|
addedAt: z.ZodString;
|
|
17741
17741
|
}, z.core.$strip>>>;
|
|
@@ -17785,13 +17785,13 @@ declare const AppConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17785
17785
|
kid: z.ZodString;
|
|
17786
17786
|
publicKey: z.ZodString;
|
|
17787
17787
|
algorithm: z.ZodEnum<{
|
|
17788
|
-
EdDSA: "EdDSA";
|
|
17789
|
-
ES256: "ES256";
|
|
17790
|
-
ES512: "ES512";
|
|
17791
17788
|
RS256: "RS256";
|
|
17792
17789
|
RS384: "RS384";
|
|
17793
17790
|
RS512: "RS512";
|
|
17791
|
+
ES256: "ES256";
|
|
17794
17792
|
ES384: "ES384";
|
|
17793
|
+
ES512: "ES512";
|
|
17794
|
+
EdDSA: "EdDSA";
|
|
17795
17795
|
}>;
|
|
17796
17796
|
addedAt: z.ZodString;
|
|
17797
17797
|
}, z.core.$strip>>>;
|
|
@@ -17821,13 +17821,13 @@ declare const AddPublicKeyRequestSchema: z.ZodObject<{
|
|
|
17821
17821
|
kid: z.ZodString;
|
|
17822
17822
|
publicKey: z.ZodString;
|
|
17823
17823
|
algorithm: z.ZodEnum<{
|
|
17824
|
-
EdDSA: "EdDSA";
|
|
17825
|
-
ES256: "ES256";
|
|
17826
|
-
ES512: "ES512";
|
|
17827
17824
|
RS256: "RS256";
|
|
17828
17825
|
RS384: "RS384";
|
|
17829
17826
|
RS512: "RS512";
|
|
17827
|
+
ES256: "ES256";
|
|
17830
17828
|
ES384: "ES384";
|
|
17829
|
+
ES512: "ES512";
|
|
17830
|
+
EdDSA: "EdDSA";
|
|
17831
17831
|
}>;
|
|
17832
17832
|
}, z.core.$strip>;
|
|
17833
17833
|
declare const PublicKeyListResponseSchema: z.ZodObject<{
|
|
@@ -17835,13 +17835,13 @@ declare const PublicKeyListResponseSchema: z.ZodObject<{
|
|
|
17835
17835
|
kid: z.ZodString;
|
|
17836
17836
|
publicKey: z.ZodString;
|
|
17837
17837
|
algorithm: z.ZodEnum<{
|
|
17838
|
-
EdDSA: "EdDSA";
|
|
17839
|
-
ES256: "ES256";
|
|
17840
|
-
ES512: "ES512";
|
|
17841
17838
|
RS256: "RS256";
|
|
17842
17839
|
RS384: "RS384";
|
|
17843
17840
|
RS512: "RS512";
|
|
17841
|
+
ES256: "ES256";
|
|
17844
17842
|
ES384: "ES384";
|
|
17843
|
+
ES512: "ES512";
|
|
17844
|
+
EdDSA: "EdDSA";
|
|
17845
17845
|
}>;
|
|
17846
17846
|
addedAt: z.ZodString;
|
|
17847
17847
|
}, z.core.$strip>>;
|
|
@@ -17851,13 +17851,13 @@ declare const PublicKeyResponseSchema: z.ZodObject<{
|
|
|
17851
17851
|
kid: z.ZodString;
|
|
17852
17852
|
publicKey: z.ZodString;
|
|
17853
17853
|
algorithm: z.ZodEnum<{
|
|
17854
|
-
EdDSA: "EdDSA";
|
|
17855
|
-
ES256: "ES256";
|
|
17856
|
-
ES512: "ES512";
|
|
17857
17854
|
RS256: "RS256";
|
|
17858
17855
|
RS384: "RS384";
|
|
17859
17856
|
RS512: "RS512";
|
|
17857
|
+
ES256: "ES256";
|
|
17860
17858
|
ES384: "ES384";
|
|
17859
|
+
ES512: "ES512";
|
|
17860
|
+
EdDSA: "EdDSA";
|
|
17861
17861
|
}>;
|
|
17862
17862
|
addedAt: z.ZodString;
|
|
17863
17863
|
}, z.core.$strip>;
|
|
@@ -17870,13 +17870,13 @@ declare const WebClientConfigResponseSchema: z.ZodObject<{
|
|
|
17870
17870
|
kid: z.ZodString;
|
|
17871
17871
|
publicKey: z.ZodString;
|
|
17872
17872
|
algorithm: z.ZodEnum<{
|
|
17873
|
-
EdDSA: "EdDSA";
|
|
17874
|
-
ES256: "ES256";
|
|
17875
|
-
ES512: "ES512";
|
|
17876
17873
|
RS256: "RS256";
|
|
17877
17874
|
RS384: "RS384";
|
|
17878
17875
|
RS512: "RS512";
|
|
17876
|
+
ES256: "ES256";
|
|
17879
17877
|
ES384: "ES384";
|
|
17878
|
+
ES512: "ES512";
|
|
17879
|
+
EdDSA: "EdDSA";
|
|
17880
17880
|
}>;
|
|
17881
17881
|
addedAt: z.ZodString;
|
|
17882
17882
|
}, z.core.$strip>>>;
|
|
@@ -17892,13 +17892,13 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17892
17892
|
kid: z.ZodString;
|
|
17893
17893
|
publicKey: z.ZodString;
|
|
17894
17894
|
algorithm: z.ZodEnum<{
|
|
17895
|
-
EdDSA: "EdDSA";
|
|
17896
|
-
ES256: "ES256";
|
|
17897
|
-
ES512: "ES512";
|
|
17898
17895
|
RS256: "RS256";
|
|
17899
17896
|
RS384: "RS384";
|
|
17900
17897
|
RS512: "RS512";
|
|
17898
|
+
ES256: "ES256";
|
|
17901
17899
|
ES384: "ES384";
|
|
17900
|
+
ES512: "ES512";
|
|
17901
|
+
EdDSA: "EdDSA";
|
|
17902
17902
|
}>;
|
|
17903
17903
|
addedAt: z.ZodString;
|
|
17904
17904
|
}, z.core.$strip>>>;
|
|
@@ -18156,7 +18156,7 @@ declare const AppSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18156
18156
|
publicKeys: {
|
|
18157
18157
|
kid: string;
|
|
18158
18158
|
publicKey: string;
|
|
18159
|
-
algorithm: "
|
|
18159
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18160
18160
|
addedAt: string;
|
|
18161
18161
|
}[];
|
|
18162
18162
|
allowAnonymous: boolean;
|
|
@@ -18197,7 +18197,7 @@ declare const AppSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18197
18197
|
publicKeys: {
|
|
18198
18198
|
kid: string;
|
|
18199
18199
|
publicKey: string;
|
|
18200
|
-
algorithm: "
|
|
18200
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18201
18201
|
addedAt: string;
|
|
18202
18202
|
}[];
|
|
18203
18203
|
allowAnonymous: boolean;
|
|
@@ -18470,7 +18470,7 @@ declare const AppSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18470
18470
|
publicKeys: {
|
|
18471
18471
|
kid: string;
|
|
18472
18472
|
publicKey: string;
|
|
18473
|
-
algorithm: "
|
|
18473
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18474
18474
|
addedAt: string;
|
|
18475
18475
|
}[];
|
|
18476
18476
|
allowAnonymous: boolean;
|
|
@@ -18511,7 +18511,7 @@ declare const AppSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18511
18511
|
publicKeys: {
|
|
18512
18512
|
kid: string;
|
|
18513
18513
|
publicKey: string;
|
|
18514
|
-
algorithm: "
|
|
18514
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18515
18515
|
addedAt: string;
|
|
18516
18516
|
}[];
|
|
18517
18517
|
allowAnonymous: boolean;
|
|
@@ -18579,13 +18579,13 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
18579
18579
|
kid: z.ZodString;
|
|
18580
18580
|
publicKey: z.ZodString;
|
|
18581
18581
|
algorithm: z.ZodEnum<{
|
|
18582
|
-
EdDSA: "EdDSA";
|
|
18583
|
-
ES256: "ES256";
|
|
18584
|
-
ES512: "ES512";
|
|
18585
18582
|
RS256: "RS256";
|
|
18586
18583
|
RS384: "RS384";
|
|
18587
18584
|
RS512: "RS512";
|
|
18585
|
+
ES256: "ES256";
|
|
18588
18586
|
ES384: "ES384";
|
|
18587
|
+
ES512: "ES512";
|
|
18588
|
+
EdDSA: "EdDSA";
|
|
18589
18589
|
}>;
|
|
18590
18590
|
addedAt: z.ZodString;
|
|
18591
18591
|
}, z.core.$strip>>>;
|
|
@@ -18617,12 +18617,12 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
18617
18617
|
}>;
|
|
18618
18618
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
18619
18619
|
name: z.ZodOptional<z.ZodString>;
|
|
18620
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18621
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18622
18620
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18623
|
-
|
|
18621
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18624
18622
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18625
18623
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18624
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18625
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18626
18626
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18627
18627
|
type: z.ZodLiteral<"web_client">;
|
|
18628
18628
|
webClient: z.ZodObject<{
|
|
@@ -18631,13 +18631,13 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
18631
18631
|
kid: z.ZodString;
|
|
18632
18632
|
publicKey: z.ZodString;
|
|
18633
18633
|
algorithm: z.ZodEnum<{
|
|
18634
|
-
EdDSA: "EdDSA";
|
|
18635
|
-
ES256: "ES256";
|
|
18636
|
-
ES512: "ES512";
|
|
18637
18634
|
RS256: "RS256";
|
|
18638
18635
|
RS384: "RS384";
|
|
18639
18636
|
RS512: "RS512";
|
|
18637
|
+
ES256: "ES256";
|
|
18640
18638
|
ES384: "ES384";
|
|
18639
|
+
ES512: "ES512";
|
|
18640
|
+
EdDSA: "EdDSA";
|
|
18641
18641
|
}>;
|
|
18642
18642
|
addedAt: z.ZodString;
|
|
18643
18643
|
}, z.core.$strip>>>;
|
|
@@ -18902,7 +18902,7 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18902
18902
|
publicKeys: {
|
|
18903
18903
|
kid: string;
|
|
18904
18904
|
publicKey: string;
|
|
18905
|
-
algorithm: "
|
|
18905
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18906
18906
|
addedAt: string;
|
|
18907
18907
|
}[];
|
|
18908
18908
|
allowAnonymous: boolean;
|
|
@@ -18943,7 +18943,7 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
18943
18943
|
publicKeys: {
|
|
18944
18944
|
kid: string;
|
|
18945
18945
|
publicKey: string;
|
|
18946
|
-
algorithm: "
|
|
18946
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
18947
18947
|
addedAt: string;
|
|
18948
18948
|
}[];
|
|
18949
18949
|
allowAnonymous: boolean;
|
|
@@ -19216,7 +19216,7 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
19216
19216
|
publicKeys: {
|
|
19217
19217
|
kid: string;
|
|
19218
19218
|
publicKey: string;
|
|
19219
|
-
algorithm: "
|
|
19219
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
19220
19220
|
addedAt: string;
|
|
19221
19221
|
}[];
|
|
19222
19222
|
allowAnonymous: boolean;
|
|
@@ -19257,7 +19257,7 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
19257
19257
|
publicKeys: {
|
|
19258
19258
|
kid: string;
|
|
19259
19259
|
publicKey: string;
|
|
19260
|
-
algorithm: "
|
|
19260
|
+
algorithm: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "EdDSA";
|
|
19261
19261
|
addedAt: string;
|
|
19262
19262
|
}[];
|
|
19263
19263
|
allowAnonymous: boolean;
|
|
@@ -19300,16 +19300,16 @@ declare const AppApiSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
|
19300
19300
|
}, {}, {}>;
|
|
19301
19301
|
}, undefined>, undefined>;
|
|
19302
19302
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
19303
|
-
type: z.ZodString;
|
|
19304
19303
|
id: z.ZodString;
|
|
19305
19304
|
name: z.ZodString;
|
|
19305
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19306
|
+
type: z.ZodString;
|
|
19306
19307
|
createdAt: z.ZodString;
|
|
19307
19308
|
updatedAt: z.ZodString;
|
|
19308
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
19309
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19310
|
-
enabled: z.ZodBoolean;
|
|
19311
19309
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
19312
19310
|
projectId: z.ZodNullable<z.ZodString>;
|
|
19311
|
+
enabled: z.ZodBoolean;
|
|
19312
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
19313
19313
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19314
19314
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19315
19315
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19321,13 +19321,13 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19321
19321
|
kid: z.ZodString;
|
|
19322
19322
|
publicKey: z.ZodString;
|
|
19323
19323
|
algorithm: z.ZodEnum<{
|
|
19324
|
-
EdDSA: "EdDSA";
|
|
19325
|
-
ES256: "ES256";
|
|
19326
|
-
ES512: "ES512";
|
|
19327
19324
|
RS256: "RS256";
|
|
19328
19325
|
RS384: "RS384";
|
|
19329
19326
|
RS512: "RS512";
|
|
19327
|
+
ES256: "ES256";
|
|
19330
19328
|
ES384: "ES384";
|
|
19329
|
+
ES512: "ES512";
|
|
19330
|
+
EdDSA: "EdDSA";
|
|
19331
19331
|
}>;
|
|
19332
19332
|
addedAt: z.ZodString;
|
|
19333
19333
|
}, z.core.$strip>>>;
|
|
@@ -19358,19 +19358,19 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19358
19358
|
in: {};
|
|
19359
19359
|
}>;
|
|
19360
19360
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
19361
|
+
name: z.ZodString;
|
|
19362
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19361
19363
|
type: z.ZodEnum<{
|
|
19362
19364
|
web_client: "web_client";
|
|
19363
19365
|
api: "api";
|
|
19364
19366
|
support_copilot: "support_copilot";
|
|
19365
19367
|
}>;
|
|
19366
|
-
name: z.ZodString;
|
|
19367
19368
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19368
19369
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19369
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19370
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19371
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19372
19370
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19373
19371
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19372
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
19373
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19374
19374
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19375
19375
|
type: z.ZodLiteral<"web_client">;
|
|
19376
19376
|
webClient: z.ZodObject<{
|
|
@@ -19379,13 +19379,13 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19379
19379
|
kid: z.ZodString;
|
|
19380
19380
|
publicKey: z.ZodString;
|
|
19381
19381
|
algorithm: z.ZodEnum<{
|
|
19382
|
-
EdDSA: "EdDSA";
|
|
19383
|
-
ES256: "ES256";
|
|
19384
|
-
ES512: "ES512";
|
|
19385
19382
|
RS256: "RS256";
|
|
19386
19383
|
RS384: "RS384";
|
|
19387
19384
|
RS512: "RS512";
|
|
19385
|
+
ES256: "ES256";
|
|
19388
19386
|
ES384: "ES384";
|
|
19387
|
+
ES512: "ES512";
|
|
19388
|
+
EdDSA: "EdDSA";
|
|
19389
19389
|
}>;
|
|
19390
19390
|
addedAt: z.ZodString;
|
|
19391
19391
|
}, z.core.$strip>>>;
|
|
@@ -19419,12 +19419,12 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
19419
19419
|
}>;
|
|
19420
19420
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
19421
19421
|
name: z.ZodOptional<z.ZodString>;
|
|
19422
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19423
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19424
19422
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19425
|
-
|
|
19423
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19426
19424
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19427
19425
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19426
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19427
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19428
19428
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19429
19429
|
type: z.ZodLiteral<"web_client">;
|
|
19430
19430
|
webClient: z.ZodObject<{
|
|
@@ -19433,13 +19433,13 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
19433
19433
|
kid: z.ZodString;
|
|
19434
19434
|
publicKey: z.ZodString;
|
|
19435
19435
|
algorithm: z.ZodEnum<{
|
|
19436
|
-
EdDSA: "EdDSA";
|
|
19437
|
-
ES256: "ES256";
|
|
19438
|
-
ES512: "ES512";
|
|
19439
19436
|
RS256: "RS256";
|
|
19440
19437
|
RS384: "RS384";
|
|
19441
19438
|
RS512: "RS512";
|
|
19439
|
+
ES256: "ES256";
|
|
19442
19440
|
ES384: "ES384";
|
|
19441
|
+
ES512: "ES512";
|
|
19442
|
+
EdDSA: "EdDSA";
|
|
19443
19443
|
}>;
|
|
19444
19444
|
addedAt: z.ZodString;
|
|
19445
19445
|
}, z.core.$strip>>>;
|
|
@@ -19475,16 +19475,16 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
19475
19475
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
19476
19476
|
data: z.ZodObject<{
|
|
19477
19477
|
app: z.ZodObject<{
|
|
19478
|
-
type: z.ZodString;
|
|
19479
19478
|
id: z.ZodString;
|
|
19480
19479
|
name: z.ZodString;
|
|
19480
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19481
|
+
type: z.ZodString;
|
|
19481
19482
|
createdAt: z.ZodString;
|
|
19482
19483
|
updatedAt: z.ZodString;
|
|
19483
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
19484
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19485
|
-
enabled: z.ZodBoolean;
|
|
19486
19484
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
19487
19485
|
projectId: z.ZodNullable<z.ZodString>;
|
|
19486
|
+
enabled: z.ZodBoolean;
|
|
19487
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
19488
19488
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19489
19489
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19490
19490
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -19496,13 +19496,13 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
19496
19496
|
kid: z.ZodString;
|
|
19497
19497
|
publicKey: z.ZodString;
|
|
19498
19498
|
algorithm: z.ZodEnum<{
|
|
19499
|
-
EdDSA: "EdDSA";
|
|
19500
|
-
ES256: "ES256";
|
|
19501
|
-
ES512: "ES512";
|
|
19502
19499
|
RS256: "RS256";
|
|
19503
19500
|
RS384: "RS384";
|
|
19504
19501
|
RS512: "RS512";
|
|
19502
|
+
ES256: "ES256";
|
|
19505
19503
|
ES384: "ES384";
|
|
19504
|
+
ES512: "ES512";
|
|
19505
|
+
EdDSA: "EdDSA";
|
|
19506
19506
|
}>;
|
|
19507
19507
|
addedAt: z.ZodString;
|
|
19508
19508
|
}, z.core.$strip>>>;
|
|
@@ -19986,31 +19986,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod17.BuildSchema<"select
|
|
|
19986
19986
|
}>;
|
|
19987
19987
|
}, undefined>, undefined>;
|
|
19988
19988
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
19989
|
-
type: z.ZodString;
|
|
19990
19989
|
id: z.ZodString;
|
|
19991
19990
|
name: z.ZodString;
|
|
19992
|
-
|
|
19991
|
+
type: z.ZodString;
|
|
19993
19992
|
tenantId: z.ZodString;
|
|
19994
19993
|
projectId: z.ZodString;
|
|
19995
19994
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19995
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19996
19996
|
credentialStoreId: z.ZodString;
|
|
19997
19997
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19998
|
-
|
|
19998
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19999
19999
|
}, {
|
|
20000
20000
|
out: {};
|
|
20001
20001
|
in: {};
|
|
20002
20002
|
}>;
|
|
20003
20003
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
20004
|
-
type: z.ZodOptional<z.ZodString>;
|
|
20005
20004
|
id: z.ZodOptional<z.ZodString>;
|
|
20006
20005
|
name: z.ZodOptional<z.ZodString>;
|
|
20007
|
-
|
|
20006
|
+
type: z.ZodOptional<z.ZodString>;
|
|
20008
20007
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20009
20008
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20010
20009
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20010
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20011
20011
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
20012
20012
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20013
|
-
|
|
20013
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20014
20014
|
}, {
|
|
20015
20015
|
out: {};
|
|
20016
20016
|
in: {};
|
|
@@ -20020,11 +20020,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20020
20020
|
name: z.ZodString;
|
|
20021
20021
|
createdAt: z.ZodString;
|
|
20022
20022
|
updatedAt: z.ZodString;
|
|
20023
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
20024
20023
|
toolId: z.ZodNullable<z.ZodString>;
|
|
20024
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
20025
20025
|
credentialStoreId: z.ZodString;
|
|
20026
20026
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20027
|
-
|
|
20027
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
20028
20028
|
type: z.ZodEnum<{
|
|
20029
20029
|
readonly memory: "memory";
|
|
20030
20030
|
readonly keychain: "keychain";
|
|
@@ -20610,11 +20610,11 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20610
20610
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20611
20611
|
id: z.ZodString;
|
|
20612
20612
|
name: z.ZodString;
|
|
20613
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20614
20613
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20614
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20615
20615
|
credentialStoreId: z.ZodString;
|
|
20616
20616
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20617
|
-
|
|
20617
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20618
20618
|
type: z.ZodEnum<{
|
|
20619
20619
|
readonly memory: "memory";
|
|
20620
20620
|
readonly keychain: "keychain";
|
|
@@ -20625,11 +20625,11 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20625
20625
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20626
20626
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20627
20627
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20628
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20629
20628
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20629
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20630
20630
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20631
20631
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20632
|
-
|
|
20632
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20633
20633
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20634
20634
|
readonly memory: "memory";
|
|
20635
20635
|
readonly keychain: "keychain";
|
|
@@ -20696,10 +20696,11 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
20696
20696
|
declare const McpToolSchema: z.ZodObject<{
|
|
20697
20697
|
id: z.ZodString;
|
|
20698
20698
|
name: z.ZodString;
|
|
20699
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20700
20699
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20701
20700
|
tenantId: z.ZodString;
|
|
20702
20701
|
projectId: z.ZodString;
|
|
20702
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20703
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20703
20704
|
config: z.ZodObject<{
|
|
20704
20705
|
type: z.ZodLiteral<"mcp">;
|
|
20705
20706
|
mcp: z.ZodObject<{
|
|
@@ -20726,7 +20727,6 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20726
20727
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20727
20728
|
}, z.core.$strip>;
|
|
20728
20729
|
}, z.core.$strip>;
|
|
20729
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20730
20730
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20731
20731
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20732
20732
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20755,20 +20755,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20755
20755
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
20756
20756
|
id: z.ZodString;
|
|
20757
20757
|
name: z.ZodString;
|
|
20758
|
-
|
|
20758
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
20759
20759
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20760
20760
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20761
20761
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20762
20762
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20763
20763
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20764
20764
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20765
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
20766
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20767
20765
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20768
20766
|
name: z.ZodString;
|
|
20769
20767
|
description: z.ZodOptional<z.ZodString>;
|
|
20770
20768
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20771
20769
|
}, z.core.$strip>>>;
|
|
20770
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20771
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20772
20772
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20773
20773
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20774
20774
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20791,11 +20791,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20791
20791
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20792
20792
|
id: z.ZodString;
|
|
20793
20793
|
name: z.ZodString;
|
|
20794
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20795
20794
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20795
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20796
20796
|
credentialStoreId: z.ZodString;
|
|
20797
20797
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20798
|
-
|
|
20798
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20799
20799
|
type: z.ZodEnum<{
|
|
20800
20800
|
readonly memory: "memory";
|
|
20801
20801
|
readonly keychain: "keychain";
|
|
@@ -20817,10 +20817,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20817
20817
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
20818
20818
|
id: z.ZodOptional<z.ZodString>;
|
|
20819
20819
|
name: z.ZodOptional<z.ZodString>;
|
|
20820
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
20821
20820
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20822
20821
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20823
20822
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20823
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
20824
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20824
20825
|
config: z.ZodOptional<z.ZodObject<{
|
|
20825
20826
|
type: z.ZodLiteral<"mcp">;
|
|
20826
20827
|
mcp: z.ZodObject<{
|
|
@@ -20847,7 +20848,6 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20847
20848
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20848
20849
|
}, z.core.$strip>;
|
|
20849
20850
|
}, z.core.$strip>>;
|
|
20850
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20851
20851
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20852
20852
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20853
20853
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
@@ -20860,10 +20860,11 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20860
20860
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
20861
20861
|
id: z.ZodString;
|
|
20862
20862
|
name: z.ZodString;
|
|
20863
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20863
20864
|
createdAt: z.ZodString;
|
|
20864
20865
|
updatedAt: z.ZodString;
|
|
20865
20866
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20866
|
-
|
|
20867
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
20867
20868
|
config: z.ZodType<{
|
|
20868
20869
|
type: "mcp";
|
|
20869
20870
|
mcp: ToolMcpConfig;
|
|
@@ -20877,7 +20878,6 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20877
20878
|
type: "mcp";
|
|
20878
20879
|
mcp: ToolMcpConfig;
|
|
20879
20880
|
}>>;
|
|
20880
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
20881
20881
|
credentialScope: z.ZodString;
|
|
20882
20882
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
20883
20883
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -20887,8 +20887,9 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20887
20887
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
20888
20888
|
id: z.ZodString;
|
|
20889
20889
|
name: z.ZodString;
|
|
20890
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20891
20890
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20891
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20892
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20892
20893
|
config: z.ZodObject<{
|
|
20893
20894
|
type: z.ZodLiteral<"mcp">;
|
|
20894
20895
|
mcp: z.ZodObject<{
|
|
@@ -20915,7 +20916,6 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20915
20916
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20916
20917
|
}, z.core.$strip>;
|
|
20917
20918
|
}, z.core.$strip>;
|
|
20918
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20919
20919
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20920
20920
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20921
20921
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -20925,8 +20925,9 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20925
20925
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20926
20926
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20927
20927
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20928
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20929
20928
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20929
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20930
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20930
20931
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20931
20932
|
type: z.ZodLiteral<"mcp">;
|
|
20932
20933
|
mcp: z.ZodObject<{
|
|
@@ -20953,7 +20954,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20953
20954
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20954
20955
|
}, z.core.$strip>;
|
|
20955
20956
|
}, z.core.$strip>>>;
|
|
20956
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20957
20957
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20958
20958
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20959
20959
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
@@ -21320,9 +21320,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21320
21320
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21321
21321
|
id: z.ZodString;
|
|
21322
21322
|
name: z.ZodString;
|
|
21323
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21323
21324
|
createdAt: z.ZodString;
|
|
21324
21325
|
updatedAt: z.ZodString;
|
|
21325
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21326
21326
|
agentId: z.ZodString;
|
|
21327
21327
|
functionId: z.ZodString;
|
|
21328
21328
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -21703,13 +21703,13 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
21703
21703
|
id: z.ZodString;
|
|
21704
21704
|
createdAt: z.ZodString;
|
|
21705
21705
|
updatedAt: z.ZodString;
|
|
21706
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21707
21706
|
subAgentId: z.ZodString;
|
|
21707
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
21708
21708
|
functionToolId: z.ZodString;
|
|
21709
21709
|
}, z.core.$strip>;
|
|
21710
21710
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21711
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
21712
21711
|
subAgentId: z.ZodString;
|
|
21712
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
21713
21713
|
functionToolId: z.ZodString;
|
|
21714
21714
|
}, {
|
|
21715
21715
|
out: {};
|
|
@@ -22100,11 +22100,11 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22100
22100
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22101
22101
|
id: z.ZodString;
|
|
22102
22102
|
name: z.ZodString;
|
|
22103
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22104
22103
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22104
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22105
22105
|
credentialStoreId: z.ZodString;
|
|
22106
22106
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22107
|
-
|
|
22107
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22108
22108
|
type: z.ZodEnum<{
|
|
22109
22109
|
readonly memory: "memory";
|
|
22110
22110
|
readonly keychain: "keychain";
|
|
@@ -22626,35 +22626,35 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
22626
22626
|
id: z.ZodString;
|
|
22627
22627
|
createdAt: z.ZodString;
|
|
22628
22628
|
updatedAt: z.ZodString;
|
|
22629
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22630
|
-
toolId: z.ZodString;
|
|
22631
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22632
22629
|
subAgentId: z.ZodString;
|
|
22630
|
+
toolId: z.ZodString;
|
|
22631
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22633
22632
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22633
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
22634
22634
|
}, z.core.$strip>;
|
|
22635
22635
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
22636
22636
|
id: z.ZodString;
|
|
22637
22637
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22638
22638
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22639
|
-
|
|
22639
|
+
subAgentId: z.ZodString;
|
|
22640
22640
|
toolId: z.ZodString;
|
|
22641
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22642
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
22641
22643
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22642
22644
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22643
22645
|
}, z.core.$strip>>>>;
|
|
22644
|
-
subAgentId: z.ZodString;
|
|
22645
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
22646
22646
|
}, z.core.$strip>;
|
|
22647
22647
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
22648
22648
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22649
22649
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22650
22650
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22651
|
-
|
|
22651
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22652
22652
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22653
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22654
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22653
22655
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22654
22656
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22655
22657
|
}, z.core.$strip>>>>>>;
|
|
22656
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22657
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22658
22658
|
}, z.core.$strip>;
|
|
22659
22659
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
22660
22660
|
createdAt: drizzle_orm_pg_core1094.PgColumn<{
|
|
@@ -23025,9 +23025,9 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23025
23025
|
id: z.ZodString;
|
|
23026
23026
|
createdAt: z.ZodString;
|
|
23027
23027
|
updatedAt: z.ZodString;
|
|
23028
|
+
subAgentId: z.ZodString;
|
|
23028
23029
|
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
23029
23030
|
externalAgentId: z.ZodString;
|
|
23030
|
-
subAgentId: z.ZodString;
|
|
23031
23031
|
}, z.core.$strip>;
|
|
23032
23032
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
23033
23033
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -23039,9 +23039,9 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23039
23039
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23040
23040
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23041
23041
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23042
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23042
23043
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23043
23044
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23044
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23045
23045
|
}, z.core.$strip>;
|
|
23046
23046
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
23047
23047
|
createdAt: drizzle_orm_pg_core1094.PgColumn<{
|
|
@@ -23412,8 +23412,8 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
23412
23412
|
id: z.ZodString;
|
|
23413
23413
|
createdAt: z.ZodString;
|
|
23414
23414
|
updatedAt: z.ZodString;
|
|
23415
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
23416
23415
|
subAgentId: z.ZodString;
|
|
23416
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
23417
23417
|
targetAgentId: z.ZodString;
|
|
23418
23418
|
}, z.core.$strip>;
|
|
23419
23419
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -23426,8 +23426,8 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23426
23426
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23427
23427
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23428
23428
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23429
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23430
23429
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23430
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23431
23431
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23432
23432
|
}, z.core.$strip>;
|
|
23433
23433
|
declare const LedgerArtifactSelectSchema: drizzle_zod17.BuildSchema<"select", {
|
|
@@ -24771,7 +24771,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod17.BuildSchema<"insert", {
|
|
|
24771
24771
|
}, {}, {
|
|
24772
24772
|
length: 256;
|
|
24773
24773
|
}>;
|
|
24774
|
-
}, "
|
|
24774
|
+
}, "id" | "name" | "description" | "type" | "createdAt" | "updatedAt" | "tenantId" | "metadata" | "projectId" | "taskId" | "toolCallId" | "contextId" | "parts" | "summary" | "mime" | "visibility" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24775
24775
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24776
24776
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24777
24777
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24796,56 +24796,56 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24796
24796
|
in: {};
|
|
24797
24797
|
}>;
|
|
24798
24798
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
24799
|
-
type: z.ZodString;
|
|
24800
24799
|
id: z.ZodString;
|
|
24801
24800
|
name: z.ZodNullable<z.ZodString>;
|
|
24801
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24802
|
+
type: z.ZodString;
|
|
24802
24803
|
createdAt: z.ZodString;
|
|
24803
24804
|
updatedAt: z.ZodString;
|
|
24804
24805
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
24805
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24806
|
-
contextId: z.ZodString;
|
|
24807
|
-
visibility: z.ZodNullable<z.ZodString>;
|
|
24808
24806
|
taskId: z.ZodString;
|
|
24809
24807
|
toolCallId: z.ZodNullable<z.ZodString>;
|
|
24808
|
+
contextId: z.ZodString;
|
|
24810
24809
|
parts: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
24811
24810
|
summary: z.ZodNullable<z.ZodString>;
|
|
24812
24811
|
mime: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
24812
|
+
visibility: z.ZodNullable<z.ZodString>;
|
|
24813
24813
|
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
24814
24814
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
24815
24815
|
}, z.core.$strip>;
|
|
24816
24816
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
24817
|
-
type: z.ZodOptional<z.ZodString>;
|
|
24818
24817
|
id: z.ZodString;
|
|
24819
24818
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24819
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24820
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24820
24821
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24821
24822
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24822
24823
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
24823
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24824
|
-
contextId: z.ZodString;
|
|
24825
|
-
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24826
24824
|
taskId: z.ZodString;
|
|
24827
24825
|
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24826
|
+
contextId: z.ZodString;
|
|
24828
24827
|
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
24829
24828
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24830
24829
|
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
24830
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24831
24831
|
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
24832
24832
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24833
24833
|
}, z.core.$strip>;
|
|
24834
24834
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24835
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24836
24835
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24837
24836
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24837
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24838
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24838
24839
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24839
24840
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24840
24841
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
24841
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24842
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24843
|
-
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24844
24842
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24845
24843
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24844
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24846
24845
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
24847
24846
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24848
24847
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
24848
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24849
24849
|
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>>>;
|
|
24850
24850
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24851
24851
|
}, z.core.$strip>;
|
|
@@ -24914,8 +24914,6 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24914
24914
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24915
24915
|
id: z.ZodString;
|
|
24916
24916
|
name: z.ZodString;
|
|
24917
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24918
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24919
24917
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24920
24918
|
models: z.ZodOptional<z.ZodObject<{
|
|
24921
24919
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -24937,6 +24935,8 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24937
24935
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24938
24936
|
}, z.core.$strip>>;
|
|
24939
24937
|
}, z.core.$strip>>;
|
|
24938
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24939
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24940
24940
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24941
24941
|
type: z.ZodLiteral<"internal">;
|
|
24942
24942
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -24980,8 +24980,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24980
24980
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24981
24981
|
id: z.ZodString;
|
|
24982
24982
|
name: z.ZodString;
|
|
24983
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24984
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24985
24983
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24986
24984
|
models: z.ZodOptional<z.ZodObject<{
|
|
24987
24985
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -25003,6 +25001,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25003
25001
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25004
25002
|
}, z.core.$strip>>;
|
|
25005
25003
|
}, z.core.$strip>>;
|
|
25004
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25005
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25006
25006
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25007
25007
|
type: z.ZodLiteral<"internal">;
|
|
25008
25008
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25039,8 +25039,9 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25039
25039
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25040
25040
|
id: z.ZodString;
|
|
25041
25041
|
name: z.ZodString;
|
|
25042
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25043
25042
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25043
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25044
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25044
25045
|
config: z.ZodObject<{
|
|
25045
25046
|
type: z.ZodLiteral<"mcp">;
|
|
25046
25047
|
mcp: z.ZodObject<{
|
|
@@ -25067,7 +25068,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25067
25068
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25068
25069
|
}, z.core.$strip>;
|
|
25069
25070
|
}, z.core.$strip>;
|
|
25070
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25071
25071
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25072
25072
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25073
25073
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25078,8 +25078,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25078
25078
|
id: z.ZodString;
|
|
25079
25079
|
name: z.ZodString;
|
|
25080
25080
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25081
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25082
25081
|
baseUrl: z.ZodURL;
|
|
25082
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25083
25083
|
}, z.core.$strip>>>;
|
|
25084
25084
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25085
25085
|
id: z.ZodString;
|
|
@@ -25103,7 +25103,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25103
25103
|
name: z.ZodString;
|
|
25104
25104
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25105
25105
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25106
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25107
25106
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25108
25107
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25109
25108
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25112,6 +25111,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
25112
25111
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25113
25112
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25114
25113
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25114
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25115
25115
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25116
25116
|
}, z.core.$strip>>>;
|
|
25117
25117
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25169,8 +25169,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25169
25169
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25170
25170
|
id: z.ZodString;
|
|
25171
25171
|
name: z.ZodString;
|
|
25172
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
25173
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25174
25172
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25175
25173
|
models: z.ZodOptional<z.ZodObject<{
|
|
25176
25174
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -25192,6 +25190,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25192
25190
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25193
25191
|
}, z.core.$strip>>;
|
|
25194
25192
|
}, z.core.$strip>>;
|
|
25193
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25194
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25195
25195
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25196
25196
|
type: z.ZodLiteral<"internal">;
|
|
25197
25197
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25228,8 +25228,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25228
25228
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25229
25229
|
id: z.ZodString;
|
|
25230
25230
|
name: z.ZodString;
|
|
25231
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25232
25231
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25232
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25233
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25233
25234
|
config: z.ZodObject<{
|
|
25234
25235
|
type: z.ZodLiteral<"mcp">;
|
|
25235
25236
|
mcp: z.ZodObject<{
|
|
@@ -25256,7 +25257,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25256
25257
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25257
25258
|
}, z.core.$strip>;
|
|
25258
25259
|
}, z.core.$strip>;
|
|
25259
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25260
25260
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25261
25261
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25262
25262
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25267,8 +25267,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25267
25267
|
id: z.ZodString;
|
|
25268
25268
|
name: z.ZodString;
|
|
25269
25269
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25270
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25271
25270
|
baseUrl: z.ZodURL;
|
|
25271
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25272
25272
|
}, z.core.$strip>>>;
|
|
25273
25273
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25274
25274
|
id: z.ZodString;
|
|
@@ -25292,7 +25292,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25292
25292
|
name: z.ZodString;
|
|
25293
25293
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25294
25294
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25295
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25296
25295
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25297
25296
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25298
25297
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25301,6 +25300,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25301
25300
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25302
25301
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25303
25302
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25303
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25304
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25305
25305
|
}, z.core.$strip>>>;
|
|
25306
25306
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25474,8 +25474,6 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25474
25474
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25475
25475
|
id: z.ZodString;
|
|
25476
25476
|
name: z.ZodString;
|
|
25477
|
-
createdAt: z.ZodString;
|
|
25478
|
-
updatedAt: z.ZodString;
|
|
25479
25477
|
description: z.ZodNullable<z.ZodString>;
|
|
25480
25478
|
models: z.ZodNullable<z.ZodObject<{
|
|
25481
25479
|
base: z.ZodObject<{
|
|
@@ -25501,6 +25499,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25501
25499
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
25502
25500
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
25503
25501
|
}, z.core.$strip>>;
|
|
25502
|
+
createdAt: z.ZodString;
|
|
25503
|
+
updatedAt: z.ZodString;
|
|
25504
25504
|
}, {
|
|
25505
25505
|
out: {};
|
|
25506
25506
|
in: {};
|
|
@@ -25606,8 +25606,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25606
25606
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25607
25607
|
id: z.ZodString;
|
|
25608
25608
|
name: z.ZodString;
|
|
25609
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
25610
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25611
25609
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25612
25610
|
models: z.ZodOptional<z.ZodObject<{
|
|
25613
25611
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -25629,6 +25627,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25629
25627
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25630
25628
|
}, z.core.$strip>>;
|
|
25631
25629
|
}, z.core.$strip>>;
|
|
25630
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25631
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25632
25632
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25633
25633
|
type: z.ZodLiteral<"internal">;
|
|
25634
25634
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -25665,8 +25665,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25665
25665
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25666
25666
|
id: z.ZodString;
|
|
25667
25667
|
name: z.ZodString;
|
|
25668
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25669
25668
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25669
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25670
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25670
25671
|
config: z.ZodObject<{
|
|
25671
25672
|
type: z.ZodLiteral<"mcp">;
|
|
25672
25673
|
mcp: z.ZodObject<{
|
|
@@ -25693,7 +25694,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25693
25694
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25694
25695
|
}, z.core.$strip>;
|
|
25695
25696
|
}, z.core.$strip>;
|
|
25696
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25697
25697
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25698
25698
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25699
25699
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25704,8 +25704,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25704
25704
|
id: z.ZodString;
|
|
25705
25705
|
name: z.ZodString;
|
|
25706
25706
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25707
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25708
25707
|
baseUrl: z.ZodURL;
|
|
25708
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25709
25709
|
}, z.core.$strip>>>;
|
|
25710
25710
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25711
25711
|
id: z.ZodString;
|
|
@@ -25729,7 +25729,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25729
25729
|
name: z.ZodString;
|
|
25730
25730
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25731
25731
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25732
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25733
25732
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25734
25733
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25735
25734
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25738,6 +25737,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25738
25737
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
25739
25738
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25740
25739
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25740
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25741
25741
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25742
25742
|
}, z.core.$strip>>>;
|
|
25743
25743
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -25788,8 +25788,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25788
25788
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25789
25789
|
id: z.ZodString;
|
|
25790
25790
|
name: z.ZodString;
|
|
25791
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25792
25791
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25792
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25793
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25793
25794
|
config: z.ZodObject<{
|
|
25794
25795
|
type: z.ZodLiteral<"mcp">;
|
|
25795
25796
|
mcp: z.ZodObject<{
|
|
@@ -25816,7 +25817,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25816
25817
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25817
25818
|
}, z.core.$strip>;
|
|
25818
25819
|
}, z.core.$strip>;
|
|
25819
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25820
25820
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25821
25821
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25822
25822
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25921,8 +25921,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25921
25921
|
id: z.ZodString;
|
|
25922
25922
|
name: z.ZodString;
|
|
25923
25923
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25924
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25925
25924
|
baseUrl: z.ZodURL;
|
|
25925
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25926
25926
|
}, z.core.$strip>>>;
|
|
25927
25927
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
25928
25928
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25942,11 +25942,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25942
25942
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25943
25943
|
id: z.ZodString;
|
|
25944
25944
|
name: z.ZodString;
|
|
25945
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25946
25945
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25946
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25947
25947
|
credentialStoreId: z.ZodString;
|
|
25948
25948
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25949
|
-
|
|
25949
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25950
25950
|
type: z.ZodEnum<{
|
|
25951
25951
|
readonly memory: "memory";
|
|
25952
25952
|
readonly keychain: "keychain";
|
|
@@ -25963,8 +25963,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25963
25963
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25964
25964
|
id: z.ZodString;
|
|
25965
25965
|
name: z.ZodString;
|
|
25966
|
-
createdAt: z.ZodString;
|
|
25967
|
-
updatedAt: z.ZodString;
|
|
25968
25966
|
description: z.ZodNullable<z.ZodString>;
|
|
25969
25967
|
models: z.ZodNullable<z.ZodType<{
|
|
25970
25968
|
base?: {
|
|
@@ -26052,6 +26050,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26052
26050
|
}, {
|
|
26053
26051
|
stepCountIs?: number | undefined;
|
|
26054
26052
|
}>>>;
|
|
26053
|
+
createdAt: z.ZodString;
|
|
26054
|
+
updatedAt: z.ZodString;
|
|
26055
26055
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26056
26056
|
type: z.ZodLiteral<"internal">;
|
|
26057
26057
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -26080,8 +26080,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26080
26080
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26081
26081
|
id: z.ZodString;
|
|
26082
26082
|
name: z.ZodString;
|
|
26083
|
-
createdAt: z.ZodString;
|
|
26084
|
-
updatedAt: z.ZodString;
|
|
26085
26083
|
description: z.ZodNullable<z.ZodString>;
|
|
26086
26084
|
models: z.ZodNullable<z.ZodType<{
|
|
26087
26085
|
base?: {
|
|
@@ -26169,6 +26167,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26169
26167
|
}, {
|
|
26170
26168
|
stepCountIs?: number | undefined;
|
|
26171
26169
|
}>>>;
|
|
26170
|
+
createdAt: z.ZodString;
|
|
26171
|
+
updatedAt: z.ZodString;
|
|
26172
26172
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26173
26173
|
type: z.ZodLiteral<"internal">;
|
|
26174
26174
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -26203,17 +26203,15 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26203
26203
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
26204
26204
|
id: z.ZodString;
|
|
26205
26205
|
name: z.ZodString;
|
|
26206
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26206
26207
|
createdAt: z.ZodString;
|
|
26207
26208
|
updatedAt: z.ZodString;
|
|
26208
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26209
26209
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26210
26210
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26211
26211
|
executionMode: z.ZodString;
|
|
26212
26212
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26213
26213
|
id: z.ZodString;
|
|
26214
26214
|
name: z.ZodString;
|
|
26215
|
-
createdAt: z.ZodString;
|
|
26216
|
-
updatedAt: z.ZodString;
|
|
26217
26215
|
description: z.ZodNullable<z.ZodString>;
|
|
26218
26216
|
models: z.ZodNullable<z.ZodType<{
|
|
26219
26217
|
base?: {
|
|
@@ -26301,6 +26299,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26301
26299
|
}, {
|
|
26302
26300
|
stepCountIs?: number | undefined;
|
|
26303
26301
|
}>>>;
|
|
26302
|
+
createdAt: z.ZodString;
|
|
26303
|
+
updatedAt: z.ZodString;
|
|
26304
26304
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26305
26305
|
type: z.ZodLiteral<"internal">;
|
|
26306
26306
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -26329,10 +26329,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26329
26329
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26330
26330
|
id: z.ZodString;
|
|
26331
26331
|
name: z.ZodString;
|
|
26332
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26332
26333
|
createdAt: z.ZodString;
|
|
26333
26334
|
updatedAt: z.ZodString;
|
|
26334
26335
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26335
|
-
|
|
26336
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26336
26337
|
config: z.ZodType<{
|
|
26337
26338
|
type: "mcp";
|
|
26338
26339
|
mcp: ToolMcpConfig;
|
|
@@ -26346,7 +26347,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26346
26347
|
type: "mcp";
|
|
26347
26348
|
mcp: ToolMcpConfig;
|
|
26348
26349
|
}>>;
|
|
26349
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26350
26350
|
credentialScope: z.ZodString;
|
|
26351
26351
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26352
26352
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26356,11 +26356,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26356
26356
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26357
26357
|
id: z.ZodString;
|
|
26358
26358
|
name: z.ZodString;
|
|
26359
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26359
26360
|
createdAt: z.ZodString;
|
|
26360
26361
|
updatedAt: z.ZodString;
|
|
26361
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26362
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26363
26362
|
baseUrl: z.ZodString;
|
|
26363
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26364
26364
|
}, z.core.$strip>>>;
|
|
26365
26365
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26366
26366
|
id: z.ZodString;
|
|
@@ -26370,9 +26370,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26370
26370
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26371
26371
|
id: z.ZodString;
|
|
26372
26372
|
name: z.ZodString;
|
|
26373
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26373
26374
|
createdAt: z.ZodString;
|
|
26374
26375
|
updatedAt: z.ZodString;
|
|
26375
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26376
26376
|
agentId: z.ZodString;
|
|
26377
26377
|
functionId: z.ZodString;
|
|
26378
26378
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26435,19 +26435,20 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26435
26435
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26436
26436
|
id: z.ZodString;
|
|
26437
26437
|
name: z.ZodString;
|
|
26438
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26438
26439
|
createdAt: z.ZodString;
|
|
26439
26440
|
updatedAt: z.ZodString;
|
|
26440
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26441
26441
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26442
26442
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26443
26443
|
executionMode: z.ZodString;
|
|
26444
26444
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26445
26445
|
id: z.ZodString;
|
|
26446
26446
|
name: z.ZodString;
|
|
26447
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26447
26448
|
createdAt: z.ZodString;
|
|
26448
26449
|
updatedAt: z.ZodString;
|
|
26449
26450
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26450
|
-
|
|
26451
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26451
26452
|
config: z.ZodType<{
|
|
26452
26453
|
type: "mcp";
|
|
26453
26454
|
mcp: ToolMcpConfig;
|
|
@@ -26461,7 +26462,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26461
26462
|
type: "mcp";
|
|
26462
26463
|
mcp: ToolMcpConfig;
|
|
26463
26464
|
}>>;
|
|
26464
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26465
26465
|
credentialScope: z.ZodString;
|
|
26466
26466
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26467
26467
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26471,11 +26471,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26471
26471
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26472
26472
|
id: z.ZodString;
|
|
26473
26473
|
name: z.ZodString;
|
|
26474
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26474
26475
|
createdAt: z.ZodString;
|
|
26475
26476
|
updatedAt: z.ZodString;
|
|
26476
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26477
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26478
26477
|
baseUrl: z.ZodString;
|
|
26478
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26479
26479
|
}, z.core.$strip>>>;
|
|
26480
26480
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26481
26481
|
id: z.ZodString;
|
|
@@ -26485,9 +26485,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26485
26485
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26486
26486
|
id: z.ZodString;
|
|
26487
26487
|
name: z.ZodString;
|
|
26488
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26488
26489
|
createdAt: z.ZodString;
|
|
26489
26490
|
updatedAt: z.ZodString;
|
|
26490
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26491
26491
|
agentId: z.ZodString;
|
|
26492
26492
|
functionId: z.ZodString;
|
|
26493
26493
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26549,8 +26549,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26549
26549
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26550
26550
|
id: z.ZodString;
|
|
26551
26551
|
name: z.ZodString;
|
|
26552
|
-
createdAt: z.ZodString;
|
|
26553
|
-
updatedAt: z.ZodString;
|
|
26554
26552
|
description: z.ZodNullable<z.ZodString>;
|
|
26555
26553
|
models: z.ZodNullable<z.ZodType<{
|
|
26556
26554
|
base?: {
|
|
@@ -26638,6 +26636,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26638
26636
|
}, {
|
|
26639
26637
|
stepCountIs?: number | undefined;
|
|
26640
26638
|
}>>>;
|
|
26639
|
+
createdAt: z.ZodString;
|
|
26640
|
+
updatedAt: z.ZodString;
|
|
26641
26641
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26642
26642
|
type: z.ZodLiteral<"internal">;
|
|
26643
26643
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -26673,8 +26673,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26673
26673
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26674
26674
|
id: z.ZodString;
|
|
26675
26675
|
name: z.ZodString;
|
|
26676
|
-
createdAt: z.ZodString;
|
|
26677
|
-
updatedAt: z.ZodString;
|
|
26678
26676
|
description: z.ZodNullable<z.ZodString>;
|
|
26679
26677
|
models: z.ZodNullable<z.ZodObject<{
|
|
26680
26678
|
base: z.ZodObject<{
|
|
@@ -26700,20 +26698,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26700
26698
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
26701
26699
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
26702
26700
|
}, z.core.$strip>>;
|
|
26701
|
+
createdAt: z.ZodString;
|
|
26702
|
+
updatedAt: z.ZodString;
|
|
26703
26703
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26704
26704
|
id: z.ZodString;
|
|
26705
26705
|
name: z.ZodString;
|
|
26706
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26706
26707
|
createdAt: z.ZodString;
|
|
26707
26708
|
updatedAt: z.ZodString;
|
|
26708
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26709
26709
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26710
26710
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26711
26711
|
executionMode: z.ZodString;
|
|
26712
26712
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26713
26713
|
id: z.ZodString;
|
|
26714
26714
|
name: z.ZodString;
|
|
26715
|
-
createdAt: z.ZodString;
|
|
26716
|
-
updatedAt: z.ZodString;
|
|
26717
26715
|
description: z.ZodNullable<z.ZodString>;
|
|
26718
26716
|
models: z.ZodNullable<z.ZodType<{
|
|
26719
26717
|
base?: {
|
|
@@ -26801,6 +26799,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26801
26799
|
}, {
|
|
26802
26800
|
stepCountIs?: number | undefined;
|
|
26803
26801
|
}>>>;
|
|
26802
|
+
createdAt: z.ZodString;
|
|
26803
|
+
updatedAt: z.ZodString;
|
|
26804
26804
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26805
26805
|
type: z.ZodLiteral<"internal">;
|
|
26806
26806
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -26829,10 +26829,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26829
26829
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26830
26830
|
id: z.ZodString;
|
|
26831
26831
|
name: z.ZodString;
|
|
26832
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26832
26833
|
createdAt: z.ZodString;
|
|
26833
26834
|
updatedAt: z.ZodString;
|
|
26834
26835
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26835
|
-
|
|
26836
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26836
26837
|
config: z.ZodType<{
|
|
26837
26838
|
type: "mcp";
|
|
26838
26839
|
mcp: ToolMcpConfig;
|
|
@@ -26846,7 +26847,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26846
26847
|
type: "mcp";
|
|
26847
26848
|
mcp: ToolMcpConfig;
|
|
26848
26849
|
}>>;
|
|
26849
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26850
26850
|
credentialScope: z.ZodString;
|
|
26851
26851
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26852
26852
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26856,11 +26856,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26856
26856
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26857
26857
|
id: z.ZodString;
|
|
26858
26858
|
name: z.ZodString;
|
|
26859
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26859
26860
|
createdAt: z.ZodString;
|
|
26860
26861
|
updatedAt: z.ZodString;
|
|
26861
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26862
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26863
26862
|
baseUrl: z.ZodString;
|
|
26863
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26864
26864
|
}, z.core.$strip>>>;
|
|
26865
26865
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26866
26866
|
id: z.ZodString;
|
|
@@ -26870,9 +26870,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26870
26870
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26871
26871
|
id: z.ZodString;
|
|
26872
26872
|
name: z.ZodString;
|
|
26873
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26873
26874
|
createdAt: z.ZodString;
|
|
26874
26875
|
updatedAt: z.ZodString;
|
|
26875
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26876
26876
|
agentId: z.ZodString;
|
|
26877
26877
|
functionId: z.ZodString;
|
|
26878
26878
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26935,10 +26935,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26935
26935
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26936
26936
|
id: z.ZodString;
|
|
26937
26937
|
name: z.ZodString;
|
|
26938
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26938
26939
|
createdAt: z.ZodString;
|
|
26939
26940
|
updatedAt: z.ZodString;
|
|
26940
26941
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26941
|
-
|
|
26942
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26942
26943
|
config: z.ZodType<{
|
|
26943
26944
|
type: "mcp";
|
|
26944
26945
|
mcp: ToolMcpConfig;
|
|
@@ -26952,7 +26953,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26952
26953
|
type: "mcp";
|
|
26953
26954
|
mcp: ToolMcpConfig;
|
|
26954
26955
|
}>>;
|
|
26955
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26956
26956
|
credentialScope: z.ZodString;
|
|
26957
26957
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26958
26958
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26962,9 +26962,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26962
26962
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26963
26963
|
id: z.ZodString;
|
|
26964
26964
|
name: z.ZodString;
|
|
26965
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26965
26966
|
createdAt: z.ZodString;
|
|
26966
26967
|
updatedAt: z.ZodString;
|
|
26967
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26968
26968
|
agentId: z.ZodString;
|
|
26969
26969
|
functionId: z.ZodString;
|
|
26970
26970
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26980,9 +26980,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26980
26980
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26981
26981
|
id: z.ZodString;
|
|
26982
26982
|
name: z.ZodString;
|
|
26983
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26983
26984
|
createdAt: z.ZodString;
|
|
26984
26985
|
updatedAt: z.ZodString;
|
|
26985
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26986
26986
|
props: z.ZodType<{
|
|
26987
26987
|
[x: string]: unknown;
|
|
26988
26988
|
type: "object";
|
|
@@ -27029,9 +27029,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27029
27029
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27030
27030
|
id: z.ZodString;
|
|
27031
27031
|
name: z.ZodString;
|
|
27032
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27032
27033
|
createdAt: z.ZodString;
|
|
27033
27034
|
updatedAt: z.ZodString;
|
|
27034
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27035
27035
|
props: z.ZodNullable<z.ZodType<{
|
|
27036
27036
|
[x: string]: unknown;
|
|
27037
27037
|
type: "object";
|
|
@@ -27078,11 +27078,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27078
27078
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27079
27079
|
id: z.ZodString;
|
|
27080
27080
|
name: z.ZodString;
|
|
27081
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27081
27082
|
createdAt: z.ZodString;
|
|
27082
27083
|
updatedAt: z.ZodString;
|
|
27083
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27084
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27085
27084
|
baseUrl: z.ZodString;
|
|
27085
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27086
27086
|
}, z.core.$strip>>>;
|
|
27087
27087
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
27088
27088
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27104,11 +27104,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27104
27104
|
name: z.ZodString;
|
|
27105
27105
|
createdAt: z.ZodString;
|
|
27106
27106
|
updatedAt: z.ZodString;
|
|
27107
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27108
27107
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27108
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27109
27109
|
credentialStoreId: z.ZodString;
|
|
27110
27110
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27111
|
-
|
|
27111
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27112
27112
|
type: z.ZodEnum<{
|
|
27113
27113
|
readonly memory: "memory";
|
|
27114
27114
|
readonly keychain: "keychain";
|
|
@@ -27698,8 +27698,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27698
27698
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27699
27699
|
id: z.ZodString;
|
|
27700
27700
|
name: z.ZodString;
|
|
27701
|
-
createdAt: z.ZodString;
|
|
27702
|
-
updatedAt: z.ZodString;
|
|
27703
27701
|
description: z.ZodNullable<z.ZodString>;
|
|
27704
27702
|
models: z.ZodNullable<z.ZodObject<{
|
|
27705
27703
|
base: z.ZodObject<{
|
|
@@ -27725,13 +27723,16 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27725
27723
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
27726
27724
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
27727
27725
|
}, z.core.$strip>>;
|
|
27726
|
+
createdAt: z.ZodString;
|
|
27727
|
+
updatedAt: z.ZodString;
|
|
27728
27728
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27729
27729
|
id: z.ZodString;
|
|
27730
27730
|
name: z.ZodString;
|
|
27731
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27731
27732
|
createdAt: z.ZodString;
|
|
27732
27733
|
updatedAt: z.ZodString;
|
|
27733
27734
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27734
|
-
|
|
27735
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27735
27736
|
config: z.ZodType<{
|
|
27736
27737
|
type: "mcp";
|
|
27737
27738
|
mcp: ToolMcpConfig;
|
|
@@ -27745,7 +27746,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27745
27746
|
type: "mcp";
|
|
27746
27747
|
mcp: ToolMcpConfig;
|
|
27747
27748
|
}>>;
|
|
27748
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27749
27749
|
credentialScope: z.ZodString;
|
|
27750
27750
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27751
27751
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27755,9 +27755,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27755
27755
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27756
27756
|
id: z.ZodString;
|
|
27757
27757
|
name: z.ZodString;
|
|
27758
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27758
27759
|
createdAt: z.ZodString;
|
|
27759
27760
|
updatedAt: z.ZodString;
|
|
27760
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27761
27761
|
agentId: z.ZodString;
|
|
27762
27762
|
functionId: z.ZodString;
|
|
27763
27763
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27773,9 +27773,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27773
27773
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27774
27774
|
id: z.ZodString;
|
|
27775
27775
|
name: z.ZodString;
|
|
27776
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27776
27777
|
createdAt: z.ZodString;
|
|
27777
27778
|
updatedAt: z.ZodString;
|
|
27778
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27779
27779
|
props: z.ZodType<{
|
|
27780
27780
|
[x: string]: unknown;
|
|
27781
27781
|
type: "object";
|
|
@@ -27822,9 +27822,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27822
27822
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27823
27823
|
id: z.ZodString;
|
|
27824
27824
|
name: z.ZodString;
|
|
27825
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27825
27826
|
createdAt: z.ZodString;
|
|
27826
27827
|
updatedAt: z.ZodString;
|
|
27827
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27828
27828
|
props: z.ZodNullable<z.ZodType<{
|
|
27829
27829
|
[x: string]: unknown;
|
|
27830
27830
|
type: "object";
|
|
@@ -27871,11 +27871,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27871
27871
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27872
27872
|
id: z.ZodString;
|
|
27873
27873
|
name: z.ZodString;
|
|
27874
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27874
27875
|
createdAt: z.ZodString;
|
|
27875
27876
|
updatedAt: z.ZodString;
|
|
27876
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27877
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27878
27877
|
baseUrl: z.ZodString;
|
|
27878
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27879
27879
|
}, z.core.$strip>>>;
|
|
27880
27880
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
27881
27881
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27897,11 +27897,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27897
27897
|
name: z.ZodString;
|
|
27898
27898
|
createdAt: z.ZodString;
|
|
27899
27899
|
updatedAt: z.ZodString;
|
|
27900
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27901
27900
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27901
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27902
27902
|
credentialStoreId: z.ZodString;
|
|
27903
27903
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27904
|
-
|
|
27904
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27905
27905
|
type: z.ZodEnum<{
|
|
27906
27906
|
readonly memory: "memory";
|
|
27907
27907
|
readonly keychain: "keychain";
|
|
@@ -28487,19 +28487,20 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28487
28487
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28488
28488
|
id: z.ZodString;
|
|
28489
28489
|
name: z.ZodString;
|
|
28490
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28490
28491
|
createdAt: z.ZodString;
|
|
28491
28492
|
updatedAt: z.ZodString;
|
|
28492
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28493
28493
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28494
28494
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28495
28495
|
executionMode: z.ZodString;
|
|
28496
28496
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28497
28497
|
id: z.ZodString;
|
|
28498
28498
|
name: z.ZodString;
|
|
28499
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28499
28500
|
createdAt: z.ZodString;
|
|
28500
28501
|
updatedAt: z.ZodString;
|
|
28501
28502
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28502
|
-
|
|
28503
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28503
28504
|
config: z.ZodType<{
|
|
28504
28505
|
type: "mcp";
|
|
28505
28506
|
mcp: ToolMcpConfig;
|
|
@@ -28513,7 +28514,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28513
28514
|
type: "mcp";
|
|
28514
28515
|
mcp: ToolMcpConfig;
|
|
28515
28516
|
}>>;
|
|
28516
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28517
28517
|
credentialScope: z.ZodString;
|
|
28518
28518
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
28519
28519
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -28523,11 +28523,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28523
28523
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28524
28524
|
id: z.ZodString;
|
|
28525
28525
|
name: z.ZodString;
|
|
28526
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28526
28527
|
createdAt: z.ZodString;
|
|
28527
28528
|
updatedAt: z.ZodString;
|
|
28528
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28529
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28530
28529
|
baseUrl: z.ZodString;
|
|
28530
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28531
28531
|
}, z.core.$strip>>>;
|
|
28532
28532
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28533
28533
|
id: z.ZodString;
|
|
@@ -28537,9 +28537,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28537
28537
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28538
28538
|
id: z.ZodString;
|
|
28539
28539
|
name: z.ZodString;
|
|
28540
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28540
28541
|
createdAt: z.ZodString;
|
|
28541
28542
|
updatedAt: z.ZodString;
|
|
28542
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28543
28543
|
agentId: z.ZodString;
|
|
28544
28544
|
functionId: z.ZodString;
|
|
28545
28545
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -28601,8 +28601,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28601
28601
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28602
28602
|
id: z.ZodString;
|
|
28603
28603
|
name: z.ZodString;
|
|
28604
|
-
createdAt: z.ZodString;
|
|
28605
|
-
updatedAt: z.ZodString;
|
|
28606
28604
|
description: z.ZodNullable<z.ZodString>;
|
|
28607
28605
|
models: z.ZodNullable<z.ZodType<{
|
|
28608
28606
|
base?: {
|
|
@@ -28690,6 +28688,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28690
28688
|
}, {
|
|
28691
28689
|
stepCountIs?: number | undefined;
|
|
28692
28690
|
}>>>;
|
|
28691
|
+
createdAt: z.ZodString;
|
|
28692
|
+
updatedAt: z.ZodString;
|
|
28693
28693
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28694
28694
|
type: z.ZodLiteral<"internal">;
|
|
28695
28695
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -28730,8 +28730,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28730
28730
|
data: z.ZodObject<{
|
|
28731
28731
|
id: z.ZodString;
|
|
28732
28732
|
name: z.ZodString;
|
|
28733
|
-
createdAt: z.ZodString;
|
|
28734
|
-
updatedAt: z.ZodString;
|
|
28735
28733
|
description: z.ZodNullable<z.ZodString>;
|
|
28736
28734
|
models: z.ZodNullable<z.ZodObject<{
|
|
28737
28735
|
base: z.ZodObject<{
|
|
@@ -28757,6 +28755,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28757
28755
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
28758
28756
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
28759
28757
|
}, z.core.$strip>>;
|
|
28758
|
+
createdAt: z.ZodString;
|
|
28759
|
+
updatedAt: z.ZodString;
|
|
28760
28760
|
}, {
|
|
28761
28761
|
out: {};
|
|
28762
28762
|
in: {};
|
|
@@ -28766,9 +28766,6 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28766
28766
|
data: z.ZodObject<{
|
|
28767
28767
|
id: z.ZodString;
|
|
28768
28768
|
name: z.ZodString;
|
|
28769
|
-
createdAt: z.ZodString;
|
|
28770
|
-
updatedAt: z.ZodString;
|
|
28771
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28772
28769
|
description: z.ZodNullable<z.ZodString>;
|
|
28773
28770
|
models: z.ZodNullable<z.ZodType<{
|
|
28774
28771
|
base?: {
|
|
@@ -28856,6 +28853,9 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
28856
28853
|
}, {
|
|
28857
28854
|
stepCountIs?: number | undefined;
|
|
28858
28855
|
}>>>;
|
|
28856
|
+
createdAt: z.ZodString;
|
|
28857
|
+
updatedAt: z.ZodString;
|
|
28858
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28859
28859
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28860
28860
|
}, z.core.$strip>;
|
|
28861
28861
|
}, z.core.$strip>;
|
|
@@ -28863,9 +28863,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28863
28863
|
data: z.ZodObject<{
|
|
28864
28864
|
id: z.ZodString;
|
|
28865
28865
|
name: z.ZodString;
|
|
28866
|
-
createdAt: z.ZodString;
|
|
28867
|
-
updatedAt: z.ZodString;
|
|
28868
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28869
28866
|
description: z.ZodNullable<z.ZodString>;
|
|
28870
28867
|
models: z.ZodNullable<z.ZodType<{
|
|
28871
28868
|
base?: {
|
|
@@ -28953,8 +28950,11 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28953
28950
|
}, {
|
|
28954
28951
|
transferCountIs?: number | undefined;
|
|
28955
28952
|
}>>>;
|
|
28953
|
+
createdAt: z.ZodString;
|
|
28954
|
+
updatedAt: z.ZodString;
|
|
28956
28955
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28957
28956
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28957
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28958
28958
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
28959
28959
|
enabled?: boolean | undefined;
|
|
28960
28960
|
numEvents?: number | undefined;
|
|
@@ -29019,11 +29019,11 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
29019
29019
|
data: z.ZodObject<{
|
|
29020
29020
|
id: z.ZodString;
|
|
29021
29021
|
name: z.ZodString;
|
|
29022
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29022
29023
|
createdAt: z.ZodString;
|
|
29023
29024
|
updatedAt: z.ZodString;
|
|
29024
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29025
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29026
29025
|
baseUrl: z.ZodString;
|
|
29026
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29027
29027
|
}, z.core.$strip>;
|
|
29028
29028
|
}, z.core.$strip>;
|
|
29029
29029
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
@@ -29041,8 +29041,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
29041
29041
|
name: z.ZodNullable<z.ZodString>;
|
|
29042
29042
|
createdAt: z.ZodString;
|
|
29043
29043
|
updatedAt: z.ZodString;
|
|
29044
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29045
29044
|
agentId: z.ZodString;
|
|
29045
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29046
29046
|
publicId: z.ZodString;
|
|
29047
29047
|
keyPrefix: z.ZodString;
|
|
29048
29048
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29057,11 +29057,11 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
29057
29057
|
name: z.ZodString;
|
|
29058
29058
|
createdAt: z.ZodString;
|
|
29059
29059
|
updatedAt: z.ZodString;
|
|
29060
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29061
29060
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29061
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29062
29062
|
credentialStoreId: z.ZodString;
|
|
29063
29063
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29064
|
-
|
|
29064
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29065
29065
|
type: z.ZodEnum<{
|
|
29066
29066
|
readonly memory: "memory";
|
|
29067
29067
|
readonly keychain: "keychain";
|
|
@@ -29659,9 +29659,9 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
29659
29659
|
data: z.ZodObject<{
|
|
29660
29660
|
id: z.ZodString;
|
|
29661
29661
|
name: z.ZodString;
|
|
29662
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29662
29663
|
createdAt: z.ZodString;
|
|
29663
29664
|
updatedAt: z.ZodString;
|
|
29664
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29665
29665
|
agentId: z.ZodString;
|
|
29666
29666
|
functionId: z.ZodString;
|
|
29667
29667
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -29672,8 +29672,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
29672
29672
|
id: z.ZodString;
|
|
29673
29673
|
createdAt: z.ZodString;
|
|
29674
29674
|
updatedAt: z.ZodString;
|
|
29675
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29676
29675
|
subAgentId: z.ZodString;
|
|
29676
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29677
29677
|
functionToolId: z.ZodString;
|
|
29678
29678
|
}, z.core.$strip>;
|
|
29679
29679
|
}, z.core.$strip>;
|
|
@@ -29681,9 +29681,9 @@ declare const DataComponentResponse: z.ZodObject<{
|
|
|
29681
29681
|
data: z.ZodObject<{
|
|
29682
29682
|
id: z.ZodString;
|
|
29683
29683
|
name: z.ZodString;
|
|
29684
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29684
29685
|
createdAt: z.ZodString;
|
|
29685
29686
|
updatedAt: z.ZodString;
|
|
29686
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29687
29687
|
props: z.ZodType<{
|
|
29688
29688
|
[x: string]: unknown;
|
|
29689
29689
|
type: "object";
|
|
@@ -29732,9 +29732,9 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
29732
29732
|
data: z.ZodObject<{
|
|
29733
29733
|
id: z.ZodString;
|
|
29734
29734
|
name: z.ZodString;
|
|
29735
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29735
29736
|
createdAt: z.ZodString;
|
|
29736
29737
|
updatedAt: z.ZodString;
|
|
29737
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29738
29738
|
props: z.ZodNullable<z.ZodType<{
|
|
29739
29739
|
[x: string]: unknown;
|
|
29740
29740
|
type: "object";
|
|
@@ -29794,22 +29794,21 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
29794
29794
|
id: z.ZodString;
|
|
29795
29795
|
createdAt: z.ZodString;
|
|
29796
29796
|
updatedAt: z.ZodString;
|
|
29797
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29798
|
-
toolId: z.ZodString;
|
|
29799
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29800
29797
|
subAgentId: z.ZodString;
|
|
29798
|
+
toolId: z.ZodString;
|
|
29799
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29801
29800
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29801
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29802
29802
|
}, z.core.$strip>;
|
|
29803
29803
|
}, z.core.$strip>;
|
|
29804
29804
|
declare const TriggerResponse: z.ZodObject<{
|
|
29805
29805
|
data: z.ZodObject<{
|
|
29806
29806
|
id: z.ZodString;
|
|
29807
29807
|
name: z.ZodString;
|
|
29808
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29808
29809
|
createdAt: z.ZodString;
|
|
29809
29810
|
updatedAt: z.ZodString;
|
|
29810
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29811
29811
|
enabled: z.ZodBoolean;
|
|
29812
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29813
29812
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29814
29813
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29815
29814
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29830,8 +29829,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29830
29829
|
signature: z.ZodObject<{
|
|
29831
29830
|
source: z.ZodEnum<{
|
|
29832
29831
|
query: "query";
|
|
29833
|
-
body: "body";
|
|
29834
29832
|
header: "header";
|
|
29833
|
+
body: "body";
|
|
29835
29834
|
}>;
|
|
29836
29835
|
key: z.ZodString;
|
|
29837
29836
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29840,8 +29839,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29840
29839
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29841
29840
|
source: z.ZodEnum<{
|
|
29842
29841
|
literal: "literal";
|
|
29843
|
-
body: "body";
|
|
29844
29842
|
header: "header";
|
|
29843
|
+
body: "body";
|
|
29845
29844
|
}>;
|
|
29846
29845
|
key: z.ZodOptional<z.ZodString>;
|
|
29847
29846
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29862,12 +29861,15 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29862
29861
|
}, z.core.$strip>>>;
|
|
29863
29862
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29864
29863
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
29864
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29865
29865
|
}, z.core.$strip>;
|
|
29866
29866
|
}, z.core.$strip>;
|
|
29867
29867
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
29868
29868
|
data: z.ZodObject<{
|
|
29869
29869
|
id: z.ZodString;
|
|
29870
29870
|
createdAt: z.ZodString;
|
|
29871
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29872
|
+
triggerId: z.ZodString;
|
|
29871
29873
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29872
29874
|
type: z.ZodEnum<{
|
|
29873
29875
|
commit: "commit";
|
|
@@ -29878,8 +29880,6 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29878
29880
|
hash: z.ZodString;
|
|
29879
29881
|
}, z.core.$strip>>>;
|
|
29880
29882
|
status: z.ZodString;
|
|
29881
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29882
|
-
triggerId: z.ZodString;
|
|
29883
29883
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29884
29884
|
batchId: z.ZodNullable<z.ZodString>;
|
|
29885
29885
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -29889,8 +29889,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29889
29889
|
}, z.core.$strip>;
|
|
29890
29890
|
declare const FeedbackResponse: z.ZodObject<{
|
|
29891
29891
|
data: z.ZodObject<{
|
|
29892
|
-
type: z.ZodString;
|
|
29893
29892
|
id: z.ZodString;
|
|
29893
|
+
type: z.ZodString;
|
|
29894
29894
|
createdAt: z.ZodString;
|
|
29895
29895
|
updatedAt: z.ZodString;
|
|
29896
29896
|
conversationId: z.ZodString;
|
|
@@ -29900,12 +29900,12 @@ declare const FeedbackResponse: z.ZodObject<{
|
|
|
29900
29900
|
}, z.core.$strip>;
|
|
29901
29901
|
declare const EventResponse: z.ZodObject<{
|
|
29902
29902
|
data: z.ZodObject<{
|
|
29903
|
-
type: z.ZodString;
|
|
29904
29903
|
id: z.ZodString;
|
|
29904
|
+
type: z.ZodString;
|
|
29905
|
+
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29905
29906
|
createdAt: z.ZodString;
|
|
29906
29907
|
updatedAt: z.ZodString;
|
|
29907
29908
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29908
|
-
properties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29909
29909
|
agentId: z.ZodNullable<z.ZodString>;
|
|
29910
29910
|
userProperties: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
29911
29911
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -29915,8 +29915,8 @@ declare const EventResponse: z.ZodObject<{
|
|
|
29915
29915
|
}, z.core.$strip>;
|
|
29916
29916
|
declare const BulkFeedbackResponseSchema: z.ZodObject<{
|
|
29917
29917
|
data: z.ZodArray<z.ZodObject<{
|
|
29918
|
-
type: z.ZodString;
|
|
29919
29918
|
id: z.ZodString;
|
|
29919
|
+
type: z.ZodString;
|
|
29920
29920
|
createdAt: z.ZodString;
|
|
29921
29921
|
updatedAt: z.ZodString;
|
|
29922
29922
|
conversationId: z.ZodString;
|
|
@@ -29933,8 +29933,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29933
29933
|
data: z.ZodArray<z.ZodObject<{
|
|
29934
29934
|
id: z.ZodString;
|
|
29935
29935
|
name: z.ZodString;
|
|
29936
|
-
createdAt: z.ZodString;
|
|
29937
|
-
updatedAt: z.ZodString;
|
|
29938
29936
|
description: z.ZodNullable<z.ZodString>;
|
|
29939
29937
|
models: z.ZodNullable<z.ZodObject<{
|
|
29940
29938
|
base: z.ZodObject<{
|
|
@@ -29960,6 +29958,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29960
29958
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
29961
29959
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
29962
29960
|
}, z.core.$strip>>;
|
|
29961
|
+
createdAt: z.ZodString;
|
|
29962
|
+
updatedAt: z.ZodString;
|
|
29963
29963
|
}, {
|
|
29964
29964
|
out: {};
|
|
29965
29965
|
in: {};
|
|
@@ -29975,9 +29975,6 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
29975
29975
|
data: z.ZodArray<z.ZodObject<{
|
|
29976
29976
|
id: z.ZodString;
|
|
29977
29977
|
name: z.ZodString;
|
|
29978
|
-
createdAt: z.ZodString;
|
|
29979
|
-
updatedAt: z.ZodString;
|
|
29980
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
29981
29978
|
description: z.ZodNullable<z.ZodString>;
|
|
29982
29979
|
models: z.ZodNullable<z.ZodType<{
|
|
29983
29980
|
base?: {
|
|
@@ -30065,6 +30062,9 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
30065
30062
|
}, {
|
|
30066
30063
|
stepCountIs?: number | undefined;
|
|
30067
30064
|
}>>>;
|
|
30065
|
+
createdAt: z.ZodString;
|
|
30066
|
+
updatedAt: z.ZodString;
|
|
30067
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30068
30068
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30069
30069
|
}, z.core.$strip>>;
|
|
30070
30070
|
pagination: z.ZodObject<{
|
|
@@ -30078,9 +30078,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30078
30078
|
data: z.ZodArray<z.ZodObject<{
|
|
30079
30079
|
id: z.ZodString;
|
|
30080
30080
|
name: z.ZodString;
|
|
30081
|
-
createdAt: z.ZodString;
|
|
30082
|
-
updatedAt: z.ZodString;
|
|
30083
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
30084
30081
|
description: z.ZodNullable<z.ZodString>;
|
|
30085
30082
|
models: z.ZodNullable<z.ZodType<{
|
|
30086
30083
|
base?: {
|
|
@@ -30168,8 +30165,11 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
30168
30165
|
}, {
|
|
30169
30166
|
transferCountIs?: number | undefined;
|
|
30170
30167
|
}>>>;
|
|
30168
|
+
createdAt: z.ZodString;
|
|
30169
|
+
updatedAt: z.ZodString;
|
|
30171
30170
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30172
30171
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30172
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30173
30173
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
30174
30174
|
enabled?: boolean | undefined;
|
|
30175
30175
|
numEvents?: number | undefined;
|
|
@@ -30240,11 +30240,11 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
30240
30240
|
data: z.ZodArray<z.ZodObject<{
|
|
30241
30241
|
id: z.ZodString;
|
|
30242
30242
|
name: z.ZodString;
|
|
30243
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30243
30244
|
createdAt: z.ZodString;
|
|
30244
30245
|
updatedAt: z.ZodString;
|
|
30245
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30246
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30247
30246
|
baseUrl: z.ZodString;
|
|
30247
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30248
30248
|
}, z.core.$strip>>;
|
|
30249
30249
|
pagination: z.ZodObject<{
|
|
30250
30250
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30274,8 +30274,8 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
30274
30274
|
name: z.ZodNullable<z.ZodString>;
|
|
30275
30275
|
createdAt: z.ZodString;
|
|
30276
30276
|
updatedAt: z.ZodString;
|
|
30277
|
-
expiresAt: z.ZodNullable<z.ZodString>;
|
|
30278
30277
|
agentId: z.ZodString;
|
|
30278
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
30279
30279
|
publicId: z.ZodString;
|
|
30280
30280
|
keyPrefix: z.ZodString;
|
|
30281
30281
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30292,16 +30292,16 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
30292
30292
|
}, z.core.$strip>;
|
|
30293
30293
|
declare const AppResponse: z.ZodObject<{
|
|
30294
30294
|
data: z.ZodObject<{
|
|
30295
|
-
type: z.ZodString;
|
|
30296
30295
|
id: z.ZodString;
|
|
30297
30296
|
name: z.ZodString;
|
|
30297
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30298
|
+
type: z.ZodString;
|
|
30298
30299
|
createdAt: z.ZodString;
|
|
30299
30300
|
updatedAt: z.ZodString;
|
|
30300
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
30301
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30302
|
-
enabled: z.ZodBoolean;
|
|
30303
30301
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
30304
30302
|
projectId: z.ZodNullable<z.ZodString>;
|
|
30303
|
+
enabled: z.ZodBoolean;
|
|
30304
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30305
30305
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30306
30306
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30307
30307
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -30313,13 +30313,13 @@ declare const AppResponse: z.ZodObject<{
|
|
|
30313
30313
|
kid: z.ZodString;
|
|
30314
30314
|
publicKey: z.ZodString;
|
|
30315
30315
|
algorithm: z.ZodEnum<{
|
|
30316
|
-
EdDSA: "EdDSA";
|
|
30317
|
-
ES256: "ES256";
|
|
30318
|
-
ES512: "ES512";
|
|
30319
30316
|
RS256: "RS256";
|
|
30320
30317
|
RS384: "RS384";
|
|
30321
30318
|
RS512: "RS512";
|
|
30319
|
+
ES256: "ES256";
|
|
30322
30320
|
ES384: "ES384";
|
|
30321
|
+
ES512: "ES512";
|
|
30322
|
+
EdDSA: "EdDSA";
|
|
30323
30323
|
}>;
|
|
30324
30324
|
addedAt: z.ZodString;
|
|
30325
30325
|
}, z.core.$strip>>>;
|
|
@@ -30352,16 +30352,16 @@ declare const AppResponse: z.ZodObject<{
|
|
|
30352
30352
|
}, z.core.$strip>;
|
|
30353
30353
|
declare const AppListResponse: z.ZodObject<{
|
|
30354
30354
|
data: z.ZodArray<z.ZodObject<{
|
|
30355
|
-
type: z.ZodString;
|
|
30356
30355
|
id: z.ZodString;
|
|
30357
30356
|
name: z.ZodString;
|
|
30357
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30358
|
+
type: z.ZodString;
|
|
30358
30359
|
createdAt: z.ZodString;
|
|
30359
30360
|
updatedAt: z.ZodString;
|
|
30360
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
30361
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30362
|
-
enabled: z.ZodBoolean;
|
|
30363
30361
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
30364
30362
|
projectId: z.ZodNullable<z.ZodString>;
|
|
30363
|
+
enabled: z.ZodBoolean;
|
|
30364
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
30365
30365
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30366
30366
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30367
30367
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -30373,13 +30373,13 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
30373
30373
|
kid: z.ZodString;
|
|
30374
30374
|
publicKey: z.ZodString;
|
|
30375
30375
|
algorithm: z.ZodEnum<{
|
|
30376
|
-
EdDSA: "EdDSA";
|
|
30377
|
-
ES256: "ES256";
|
|
30378
|
-
ES512: "ES512";
|
|
30379
30376
|
RS256: "RS256";
|
|
30380
30377
|
RS384: "RS384";
|
|
30381
30378
|
RS512: "RS512";
|
|
30379
|
+
ES256: "ES256";
|
|
30382
30380
|
ES384: "ES384";
|
|
30381
|
+
ES512: "ES512";
|
|
30382
|
+
EdDSA: "EdDSA";
|
|
30383
30383
|
}>;
|
|
30384
30384
|
addedAt: z.ZodString;
|
|
30385
30385
|
}, z.core.$strip>>>;
|
|
@@ -30428,11 +30428,11 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
30428
30428
|
name: z.ZodString;
|
|
30429
30429
|
createdAt: z.ZodString;
|
|
30430
30430
|
updatedAt: z.ZodString;
|
|
30431
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
30432
30431
|
toolId: z.ZodNullable<z.ZodString>;
|
|
30432
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30433
30433
|
credentialStoreId: z.ZodString;
|
|
30434
30434
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30435
|
-
|
|
30435
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
30436
30436
|
type: z.ZodEnum<{
|
|
30437
30437
|
readonly memory: "memory";
|
|
30438
30438
|
readonly keychain: "keychain";
|
|
@@ -31042,9 +31042,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
31042
31042
|
data: z.ZodArray<z.ZodObject<{
|
|
31043
31043
|
id: z.ZodString;
|
|
31044
31044
|
name: z.ZodString;
|
|
31045
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31045
31046
|
createdAt: z.ZodString;
|
|
31046
31047
|
updatedAt: z.ZodString;
|
|
31047
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31048
31048
|
agentId: z.ZodString;
|
|
31049
31049
|
functionId: z.ZodString;
|
|
31050
31050
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -31061,8 +31061,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31061
31061
|
id: z.ZodString;
|
|
31062
31062
|
createdAt: z.ZodString;
|
|
31063
31063
|
updatedAt: z.ZodString;
|
|
31064
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31065
31064
|
subAgentId: z.ZodString;
|
|
31065
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31066
31066
|
functionToolId: z.ZodString;
|
|
31067
31067
|
}, z.core.$strip>>;
|
|
31068
31068
|
pagination: z.ZodObject<{
|
|
@@ -31074,8 +31074,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
31074
31074
|
}, z.core.$strip>;
|
|
31075
31075
|
declare const FeedbackListResponse: z.ZodObject<{
|
|
31076
31076
|
data: z.ZodArray<z.ZodObject<{
|
|
31077
|
-
type: z.ZodString;
|
|
31078
31077
|
id: z.ZodString;
|
|
31078
|
+
type: z.ZodString;
|
|
31079
31079
|
createdAt: z.ZodString;
|
|
31080
31080
|
updatedAt: z.ZodString;
|
|
31081
31081
|
conversationId: z.ZodString;
|
|
@@ -31094,9 +31094,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
31094
31094
|
data: z.ZodArray<z.ZodObject<{
|
|
31095
31095
|
id: z.ZodString;
|
|
31096
31096
|
name: z.ZodString;
|
|
31097
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31097
31098
|
createdAt: z.ZodString;
|
|
31098
31099
|
updatedAt: z.ZodString;
|
|
31099
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31100
31100
|
props: z.ZodType<{
|
|
31101
31101
|
[x: string]: unknown;
|
|
31102
31102
|
type: "object";
|
|
@@ -31151,9 +31151,9 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
31151
31151
|
data: z.ZodArray<z.ZodObject<{
|
|
31152
31152
|
id: z.ZodString;
|
|
31153
31153
|
name: z.ZodString;
|
|
31154
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31154
31155
|
createdAt: z.ZodString;
|
|
31155
31156
|
updatedAt: z.ZodString;
|
|
31156
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31157
31157
|
props: z.ZodNullable<z.ZodType<{
|
|
31158
31158
|
[x: string]: unknown;
|
|
31159
31159
|
type: "object";
|
|
@@ -31225,11 +31225,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
31225
31225
|
id: z.ZodString;
|
|
31226
31226
|
createdAt: z.ZodString;
|
|
31227
31227
|
updatedAt: z.ZodString;
|
|
31228
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31229
|
-
toolId: z.ZodString;
|
|
31230
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31231
31228
|
subAgentId: z.ZodString;
|
|
31229
|
+
toolId: z.ZodString;
|
|
31230
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31232
31231
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31232
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31233
31233
|
}, z.core.$strip>>;
|
|
31234
31234
|
pagination: z.ZodObject<{
|
|
31235
31235
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31242,11 +31242,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31242
31242
|
data: z.ZodArray<z.ZodObject<{
|
|
31243
31243
|
id: z.ZodString;
|
|
31244
31244
|
name: z.ZodString;
|
|
31245
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31245
31246
|
createdAt: z.ZodString;
|
|
31246
31247
|
updatedAt: z.ZodString;
|
|
31247
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31248
31248
|
enabled: z.ZodBoolean;
|
|
31249
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31250
31249
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31251
31250
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31252
31251
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31267,8 +31266,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31267
31266
|
signature: z.ZodObject<{
|
|
31268
31267
|
source: z.ZodEnum<{
|
|
31269
31268
|
query: "query";
|
|
31270
|
-
body: "body";
|
|
31271
31269
|
header: "header";
|
|
31270
|
+
body: "body";
|
|
31272
31271
|
}>;
|
|
31273
31272
|
key: z.ZodString;
|
|
31274
31273
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31277,8 +31276,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31277
31276
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31278
31277
|
source: z.ZodEnum<{
|
|
31279
31278
|
literal: "literal";
|
|
31280
|
-
body: "body";
|
|
31281
31279
|
header: "header";
|
|
31280
|
+
body: "body";
|
|
31282
31281
|
}>;
|
|
31283
31282
|
key: z.ZodOptional<z.ZodString>;
|
|
31284
31283
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31299,6 +31298,7 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31299
31298
|
}, z.core.$strip>>>;
|
|
31300
31299
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31301
31300
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31301
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31302
31302
|
}, z.core.$strip>>;
|
|
31303
31303
|
pagination: z.ZodObject<{
|
|
31304
31304
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -31311,6 +31311,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
31311
31311
|
data: z.ZodArray<z.ZodObject<{
|
|
31312
31312
|
id: z.ZodString;
|
|
31313
31313
|
createdAt: z.ZodString;
|
|
31314
|
+
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31315
|
+
triggerId: z.ZodString;
|
|
31314
31316
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31315
31317
|
type: z.ZodEnum<{
|
|
31316
31318
|
commit: "commit";
|
|
@@ -31321,8 +31323,6 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
31321
31323
|
hash: z.ZodString;
|
|
31322
31324
|
}, z.core.$strip>>>;
|
|
31323
31325
|
status: z.ZodString;
|
|
31324
|
-
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31325
|
-
triggerId: z.ZodString;
|
|
31326
31326
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
31327
31327
|
batchId: z.ZodNullable<z.ZodString>;
|
|
31328
31328
|
requestPayload: z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>;
|
|
@@ -31340,11 +31340,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31340
31340
|
data: z.ZodObject<{
|
|
31341
31341
|
id: z.ZodString;
|
|
31342
31342
|
name: z.ZodString;
|
|
31343
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31343
31344
|
createdAt: z.ZodString;
|
|
31344
31345
|
updatedAt: z.ZodString;
|
|
31345
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31346
31346
|
enabled: z.ZodBoolean;
|
|
31347
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31348
31347
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31349
31348
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31350
31349
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31365,8 +31364,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31365
31364
|
signature: z.ZodObject<{
|
|
31366
31365
|
source: z.ZodEnum<{
|
|
31367
31366
|
query: "query";
|
|
31368
|
-
body: "body";
|
|
31369
31367
|
header: "header";
|
|
31368
|
+
body: "body";
|
|
31370
31369
|
}>;
|
|
31371
31370
|
key: z.ZodString;
|
|
31372
31371
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31375,8 +31374,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31375
31374
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31376
31375
|
source: z.ZodEnum<{
|
|
31377
31376
|
literal: "literal";
|
|
31378
|
-
body: "body";
|
|
31379
31377
|
header: "header";
|
|
31378
|
+
body: "body";
|
|
31380
31379
|
}>;
|
|
31381
31380
|
key: z.ZodOptional<z.ZodString>;
|
|
31382
31381
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31397,6 +31396,7 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31397
31396
|
}, z.core.$strip>>>;
|
|
31398
31397
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31399
31398
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31399
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31400
31400
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31401
31401
|
userCount: z.ZodNumber;
|
|
31402
31402
|
webhookUrl: z.ZodString;
|
|
@@ -31406,11 +31406,10 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31406
31406
|
data: z.ZodObject<{
|
|
31407
31407
|
id: z.ZodString;
|
|
31408
31408
|
name: z.ZodString;
|
|
31409
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31409
31410
|
createdAt: z.ZodString;
|
|
31410
31411
|
updatedAt: z.ZodString;
|
|
31411
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31412
31412
|
enabled: z.ZodBoolean;
|
|
31413
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31414
31413
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31415
31414
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31416
31415
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31431,8 +31430,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31431
31430
|
signature: z.ZodObject<{
|
|
31432
31431
|
source: z.ZodEnum<{
|
|
31433
31432
|
query: "query";
|
|
31434
|
-
body: "body";
|
|
31435
31433
|
header: "header";
|
|
31434
|
+
body: "body";
|
|
31436
31435
|
}>;
|
|
31437
31436
|
key: z.ZodString;
|
|
31438
31437
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31441,8 +31440,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31441
31440
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31442
31441
|
source: z.ZodEnum<{
|
|
31443
31442
|
literal: "literal";
|
|
31444
|
-
body: "body";
|
|
31445
31443
|
header: "header";
|
|
31444
|
+
body: "body";
|
|
31446
31445
|
}>;
|
|
31447
31446
|
key: z.ZodOptional<z.ZodString>;
|
|
31448
31447
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31463,6 +31462,7 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31463
31462
|
}, z.core.$strip>>>;
|
|
31464
31463
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31465
31464
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31465
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31466
31466
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31467
31467
|
userCount: z.ZodNumber;
|
|
31468
31468
|
webhookUrl: z.ZodString;
|
|
@@ -31473,11 +31473,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31473
31473
|
data: z.ZodArray<z.ZodObject<{
|
|
31474
31474
|
id: z.ZodString;
|
|
31475
31475
|
name: z.ZodString;
|
|
31476
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31476
31477
|
createdAt: z.ZodString;
|
|
31477
31478
|
updatedAt: z.ZodString;
|
|
31478
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31479
31479
|
enabled: z.ZodBoolean;
|
|
31480
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31481
31480
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31482
31481
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
31483
31482
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31498,8 +31497,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31498
31497
|
signature: z.ZodObject<{
|
|
31499
31498
|
source: z.ZodEnum<{
|
|
31500
31499
|
query: "query";
|
|
31501
|
-
body: "body";
|
|
31502
31500
|
header: "header";
|
|
31501
|
+
body: "body";
|
|
31503
31502
|
}>;
|
|
31504
31503
|
key: z.ZodString;
|
|
31505
31504
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31508,8 +31507,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31508
31507
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31509
31508
|
source: z.ZodEnum<{
|
|
31510
31509
|
literal: "literal";
|
|
31511
|
-
body: "body";
|
|
31512
31510
|
header: "header";
|
|
31511
|
+
body: "body";
|
|
31513
31512
|
}>;
|
|
31514
31513
|
key: z.ZodOptional<z.ZodString>;
|
|
31515
31514
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31530,6 +31529,7 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31530
31529
|
}, z.core.$strip>>>;
|
|
31531
31530
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31532
31531
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31532
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31533
31533
|
runAsUserIds: z.ZodArray<z.ZodString>;
|
|
31534
31534
|
userCount: z.ZodNumber;
|
|
31535
31535
|
webhookUrl: z.ZodString;
|
|
@@ -31551,19 +31551,19 @@ declare const LastRunSummarySchema: z.ZodObject<{
|
|
|
31551
31551
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
31552
31552
|
id: z.ZodString;
|
|
31553
31553
|
name: z.ZodString;
|
|
31554
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31554
31555
|
createdAt: z.ZodString;
|
|
31555
31556
|
updatedAt: z.ZodString;
|
|
31556
|
-
ref: z.ZodString;
|
|
31557
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31558
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31559
31557
|
enabled: z.ZodBoolean;
|
|
31560
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31561
31558
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31562
31559
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31563
31560
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31561
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31562
|
+
ref: z.ZodString;
|
|
31564
31563
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31565
31564
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31566
31565
|
runAt: z.ZodNullable<z.ZodString>;
|
|
31566
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31567
31567
|
maxRetries: z.ZodInt;
|
|
31568
31568
|
retryDelaySeconds: z.ZodInt;
|
|
31569
31569
|
timeoutSeconds: z.ZodInt;
|
|
@@ -31589,19 +31589,19 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
31589
31589
|
data: z.ZodObject<{
|
|
31590
31590
|
id: z.ZodString;
|
|
31591
31591
|
name: z.ZodString;
|
|
31592
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31592
31593
|
createdAt: z.ZodString;
|
|
31593
31594
|
updatedAt: z.ZodString;
|
|
31594
|
-
ref: z.ZodString;
|
|
31595
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31596
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31597
31595
|
enabled: z.ZodBoolean;
|
|
31598
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31599
31596
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31600
31597
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31601
31598
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31599
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31600
|
+
ref: z.ZodString;
|
|
31602
31601
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31603
31602
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31604
31603
|
runAt: z.ZodNullable<z.ZodString>;
|
|
31604
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31605
31605
|
maxRetries: z.ZodInt;
|
|
31606
31606
|
retryDelaySeconds: z.ZodInt;
|
|
31607
31607
|
timeoutSeconds: z.ZodInt;
|
|
@@ -31612,19 +31612,19 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
31612
31612
|
data: z.ZodArray<z.ZodObject<{
|
|
31613
31613
|
id: z.ZodString;
|
|
31614
31614
|
name: z.ZodString;
|
|
31615
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31615
31616
|
createdAt: z.ZodString;
|
|
31616
31617
|
updatedAt: z.ZodString;
|
|
31617
|
-
ref: z.ZodString;
|
|
31618
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31619
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31620
31618
|
enabled: z.ZodBoolean;
|
|
31621
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31622
31619
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31623
31620
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31624
31621
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31622
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31623
|
+
ref: z.ZodString;
|
|
31625
31624
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31626
31625
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31627
31626
|
runAt: z.ZodNullable<z.ZodString>;
|
|
31627
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31628
31628
|
maxRetries: z.ZodInt;
|
|
31629
31629
|
retryDelaySeconds: z.ZodInt;
|
|
31630
31630
|
timeoutSeconds: z.ZodInt;
|
|
@@ -31641,19 +31641,19 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
31641
31641
|
data: z.ZodArray<z.ZodObject<{
|
|
31642
31642
|
id: z.ZodString;
|
|
31643
31643
|
name: z.ZodString;
|
|
31644
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31644
31645
|
createdAt: z.ZodString;
|
|
31645
31646
|
updatedAt: z.ZodString;
|
|
31646
|
-
ref: z.ZodString;
|
|
31647
|
-
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31648
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31649
31647
|
enabled: z.ZodBoolean;
|
|
31650
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31651
31648
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31652
31649
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31653
31650
|
dispatchDelayMs: z.ZodNullable<z.ZodInt>;
|
|
31651
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31652
|
+
ref: z.ZodString;
|
|
31654
31653
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
31655
31654
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
31656
31655
|
runAt: z.ZodNullable<z.ZodString>;
|
|
31656
|
+
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31657
31657
|
maxRetries: z.ZodInt;
|
|
31658
31658
|
retryDelaySeconds: z.ZodInt;
|
|
31659
31659
|
timeoutSeconds: z.ZodInt;
|
|
@@ -31685,6 +31685,8 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31685
31685
|
data: z.ZodObject<{
|
|
31686
31686
|
id: z.ZodString;
|
|
31687
31687
|
createdAt: z.ZodString;
|
|
31688
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31689
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31688
31690
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31689
31691
|
type: z.ZodEnum<{
|
|
31690
31692
|
commit: "commit";
|
|
@@ -31695,14 +31697,12 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31695
31697
|
hash: z.ZodString;
|
|
31696
31698
|
}, z.core.$strip>>>;
|
|
31697
31699
|
status: z.ZodEnum<{
|
|
31698
|
-
pending: "pending";
|
|
31699
31700
|
running: "running";
|
|
31701
|
+
pending: "pending";
|
|
31700
31702
|
completed: "completed";
|
|
31701
31703
|
failed: "failed";
|
|
31702
31704
|
cancelled: "cancelled";
|
|
31703
31705
|
}>;
|
|
31704
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31705
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31706
31706
|
scheduledTriggerId: z.ZodString;
|
|
31707
31707
|
scheduledFor: z.ZodString;
|
|
31708
31708
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31716,6 +31716,8 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31716
31716
|
data: z.ZodArray<z.ZodObject<{
|
|
31717
31717
|
id: z.ZodString;
|
|
31718
31718
|
createdAt: z.ZodString;
|
|
31719
|
+
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31720
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31719
31721
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31720
31722
|
type: z.ZodEnum<{
|
|
31721
31723
|
commit: "commit";
|
|
@@ -31726,14 +31728,12 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31726
31728
|
hash: z.ZodString;
|
|
31727
31729
|
}, z.core.$strip>>>;
|
|
31728
31730
|
status: z.ZodEnum<{
|
|
31729
|
-
pending: "pending";
|
|
31730
31731
|
running: "running";
|
|
31732
|
+
pending: "pending";
|
|
31731
31733
|
completed: "completed";
|
|
31732
31734
|
failed: "failed";
|
|
31733
31735
|
cancelled: "cancelled";
|
|
31734
31736
|
}>;
|
|
31735
|
-
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31736
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31737
31737
|
scheduledTriggerId: z.ZodString;
|
|
31738
31738
|
scheduledFor: z.ZodString;
|
|
31739
31739
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -31804,8 +31804,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31804
31804
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31805
31805
|
id: z.ZodString;
|
|
31806
31806
|
name: z.ZodString;
|
|
31807
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
31808
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31809
31807
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31810
31808
|
models: z.ZodOptional<z.ZodObject<{
|
|
31811
31809
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -31827,6 +31825,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31827
31825
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31828
31826
|
}, z.core.$strip>>;
|
|
31829
31827
|
}, z.core.$strip>>;
|
|
31828
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31829
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31830
31830
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31831
31831
|
type: z.ZodLiteral<"internal">;
|
|
31832
31832
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -31863,8 +31863,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31863
31863
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31864
31864
|
id: z.ZodString;
|
|
31865
31865
|
name: z.ZodString;
|
|
31866
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31867
31866
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31867
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31868
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31868
31869
|
config: z.ZodObject<{
|
|
31869
31870
|
type: z.ZodLiteral<"mcp">;
|
|
31870
31871
|
mcp: z.ZodObject<{
|
|
@@ -31891,7 +31892,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31891
31892
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31892
31893
|
}, z.core.$strip>;
|
|
31893
31894
|
}, z.core.$strip>;
|
|
31894
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31895
31895
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31896
31896
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31897
31897
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -31902,8 +31902,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31902
31902
|
id: z.ZodString;
|
|
31903
31903
|
name: z.ZodString;
|
|
31904
31904
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31905
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31906
31905
|
baseUrl: z.ZodURL;
|
|
31906
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31907
31907
|
}, z.core.$strip>>>;
|
|
31908
31908
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31909
31909
|
id: z.ZodString;
|
|
@@ -31927,7 +31927,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31927
31927
|
name: z.ZodString;
|
|
31928
31928
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31929
31929
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31930
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31931
31930
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
31932
31931
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
31933
31932
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31936,6 +31935,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31936
31935
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
31937
31936
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31938
31937
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31938
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31939
31939
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
31940
31940
|
}, z.core.$strip>>>;
|
|
31941
31941
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -31986,8 +31986,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31986
31986
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31987
31987
|
id: z.ZodString;
|
|
31988
31988
|
name: z.ZodString;
|
|
31989
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31990
31989
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31990
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31991
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31991
31992
|
config: z.ZodObject<{
|
|
31992
31993
|
type: z.ZodLiteral<"mcp">;
|
|
31993
31994
|
mcp: z.ZodObject<{
|
|
@@ -32014,7 +32015,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32014
32015
|
prompt: z.ZodOptional<z.ZodString>;
|
|
32015
32016
|
}, z.core.$strip>;
|
|
32016
32017
|
}, z.core.$strip>;
|
|
32017
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32018
32018
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32019
32019
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
32020
32020
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -32119,8 +32119,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32119
32119
|
id: z.ZodString;
|
|
32120
32120
|
name: z.ZodString;
|
|
32121
32121
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32122
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32123
32122
|
baseUrl: z.ZodURL;
|
|
32123
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32124
32124
|
}, z.core.$strip>>>;
|
|
32125
32125
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
32126
32126
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32140,11 +32140,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32140
32140
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32141
32141
|
id: z.ZodString;
|
|
32142
32142
|
name: z.ZodString;
|
|
32143
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32144
32143
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32144
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32145
32145
|
credentialStoreId: z.ZodString;
|
|
32146
32146
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32147
|
-
|
|
32147
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32148
32148
|
type: z.ZodEnum<{
|
|
32149
32149
|
readonly memory: "memory";
|
|
32150
32150
|
readonly keychain: "keychain";
|
|
@@ -32163,8 +32163,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32163
32163
|
data: z.ZodObject<{
|
|
32164
32164
|
id: z.ZodString;
|
|
32165
32165
|
name: z.ZodString;
|
|
32166
|
-
createdAt: z.ZodString;
|
|
32167
|
-
updatedAt: z.ZodString;
|
|
32168
32166
|
description: z.ZodNullable<z.ZodString>;
|
|
32169
32167
|
models: z.ZodNullable<z.ZodObject<{
|
|
32170
32168
|
base: z.ZodObject<{
|
|
@@ -32190,20 +32188,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32190
32188
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
32191
32189
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
32192
32190
|
}, z.core.$strip>>;
|
|
32191
|
+
createdAt: z.ZodString;
|
|
32192
|
+
updatedAt: z.ZodString;
|
|
32193
32193
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32194
32194
|
id: z.ZodString;
|
|
32195
32195
|
name: z.ZodString;
|
|
32196
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32196
32197
|
createdAt: z.ZodString;
|
|
32197
32198
|
updatedAt: z.ZodString;
|
|
32198
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32199
32199
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32200
32200
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32201
32201
|
executionMode: z.ZodString;
|
|
32202
32202
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32203
32203
|
id: z.ZodString;
|
|
32204
32204
|
name: z.ZodString;
|
|
32205
|
-
createdAt: z.ZodString;
|
|
32206
|
-
updatedAt: z.ZodString;
|
|
32207
32205
|
description: z.ZodNullable<z.ZodString>;
|
|
32208
32206
|
models: z.ZodNullable<z.ZodType<{
|
|
32209
32207
|
base?: {
|
|
@@ -32291,6 +32289,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32291
32289
|
}, {
|
|
32292
32290
|
stepCountIs?: number | undefined;
|
|
32293
32291
|
}>>>;
|
|
32292
|
+
createdAt: z.ZodString;
|
|
32293
|
+
updatedAt: z.ZodString;
|
|
32294
32294
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
32295
32295
|
type: z.ZodLiteral<"internal">;
|
|
32296
32296
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -32319,10 +32319,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32319
32319
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32320
32320
|
id: z.ZodString;
|
|
32321
32321
|
name: z.ZodString;
|
|
32322
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32322
32323
|
createdAt: z.ZodString;
|
|
32323
32324
|
updatedAt: z.ZodString;
|
|
32324
32325
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32325
|
-
|
|
32326
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32326
32327
|
config: z.ZodType<{
|
|
32327
32328
|
type: "mcp";
|
|
32328
32329
|
mcp: ToolMcpConfig;
|
|
@@ -32336,7 +32337,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32336
32337
|
type: "mcp";
|
|
32337
32338
|
mcp: ToolMcpConfig;
|
|
32338
32339
|
}>>;
|
|
32339
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32340
32340
|
credentialScope: z.ZodString;
|
|
32341
32341
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32342
32342
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -32346,11 +32346,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32346
32346
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32347
32347
|
id: z.ZodString;
|
|
32348
32348
|
name: z.ZodString;
|
|
32349
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32349
32350
|
createdAt: z.ZodString;
|
|
32350
32351
|
updatedAt: z.ZodString;
|
|
32351
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32352
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32353
32352
|
baseUrl: z.ZodString;
|
|
32353
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32354
32354
|
}, z.core.$strip>>>;
|
|
32355
32355
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32356
32356
|
id: z.ZodString;
|
|
@@ -32360,9 +32360,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32360
32360
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32361
32361
|
id: z.ZodString;
|
|
32362
32362
|
name: z.ZodString;
|
|
32363
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32363
32364
|
createdAt: z.ZodString;
|
|
32364
32365
|
updatedAt: z.ZodString;
|
|
32365
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32366
32366
|
agentId: z.ZodString;
|
|
32367
32367
|
functionId: z.ZodString;
|
|
32368
32368
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -32425,10 +32425,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32425
32425
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32426
32426
|
id: z.ZodString;
|
|
32427
32427
|
name: z.ZodString;
|
|
32428
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32428
32429
|
createdAt: z.ZodString;
|
|
32429
32430
|
updatedAt: z.ZodString;
|
|
32430
32431
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32431
|
-
|
|
32432
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32432
32433
|
config: z.ZodType<{
|
|
32433
32434
|
type: "mcp";
|
|
32434
32435
|
mcp: ToolMcpConfig;
|
|
@@ -32442,7 +32443,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32442
32443
|
type: "mcp";
|
|
32443
32444
|
mcp: ToolMcpConfig;
|
|
32444
32445
|
}>>;
|
|
32445
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32446
32446
|
credentialScope: z.ZodString;
|
|
32447
32447
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32448
32448
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -32452,9 +32452,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32452
32452
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32453
32453
|
id: z.ZodString;
|
|
32454
32454
|
name: z.ZodString;
|
|
32455
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32455
32456
|
createdAt: z.ZodString;
|
|
32456
32457
|
updatedAt: z.ZodString;
|
|
32457
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32458
32458
|
agentId: z.ZodString;
|
|
32459
32459
|
functionId: z.ZodString;
|
|
32460
32460
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -32470,9 +32470,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32470
32470
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32471
32471
|
id: z.ZodString;
|
|
32472
32472
|
name: z.ZodString;
|
|
32473
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32473
32474
|
createdAt: z.ZodString;
|
|
32474
32475
|
updatedAt: z.ZodString;
|
|
32475
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32476
32476
|
props: z.ZodType<{
|
|
32477
32477
|
[x: string]: unknown;
|
|
32478
32478
|
type: "object";
|
|
@@ -32519,9 +32519,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32519
32519
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32520
32520
|
id: z.ZodString;
|
|
32521
32521
|
name: z.ZodString;
|
|
32522
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32522
32523
|
createdAt: z.ZodString;
|
|
32523
32524
|
updatedAt: z.ZodString;
|
|
32524
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32525
32525
|
props: z.ZodNullable<z.ZodType<{
|
|
32526
32526
|
[x: string]: unknown;
|
|
32527
32527
|
type: "object";
|
|
@@ -32568,11 +32568,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32568
32568
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32569
32569
|
id: z.ZodString;
|
|
32570
32570
|
name: z.ZodString;
|
|
32571
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32571
32572
|
createdAt: z.ZodString;
|
|
32572
32573
|
updatedAt: z.ZodString;
|
|
32573
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32574
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32575
32574
|
baseUrl: z.ZodString;
|
|
32575
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32576
32576
|
}, z.core.$strip>>>;
|
|
32577
32577
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
32578
32578
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32594,11 +32594,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32594
32594
|
name: z.ZodString;
|
|
32595
32595
|
createdAt: z.ZodString;
|
|
32596
32596
|
updatedAt: z.ZodString;
|
|
32597
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32598
32597
|
toolId: z.ZodNullable<z.ZodString>;
|
|
32598
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32599
32599
|
credentialStoreId: z.ZodString;
|
|
32600
32600
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32601
|
-
|
|
32601
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32602
32602
|
type: z.ZodEnum<{
|
|
32603
32603
|
readonly memory: "memory";
|
|
32604
32604
|
readonly keychain: "keychain";
|
|
@@ -33190,8 +33190,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33190
33190
|
data: z.ZodObject<{
|
|
33191
33191
|
id: z.ZodString;
|
|
33192
33192
|
name: z.ZodString;
|
|
33193
|
-
createdAt: z.ZodString;
|
|
33194
|
-
updatedAt: z.ZodString;
|
|
33195
33193
|
description: z.ZodNullable<z.ZodString>;
|
|
33196
33194
|
models: z.ZodNullable<z.ZodObject<{
|
|
33197
33195
|
base: z.ZodObject<{
|
|
@@ -33217,13 +33215,16 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33217
33215
|
transferCountIs: z.ZodOptional<z.ZodInt>;
|
|
33218
33216
|
stepCountIs: z.ZodOptional<z.ZodInt>;
|
|
33219
33217
|
}, z.core.$strip>>;
|
|
33218
|
+
createdAt: z.ZodString;
|
|
33219
|
+
updatedAt: z.ZodString;
|
|
33220
33220
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33221
33221
|
id: z.ZodString;
|
|
33222
33222
|
name: z.ZodString;
|
|
33223
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33223
33224
|
createdAt: z.ZodString;
|
|
33224
33225
|
updatedAt: z.ZodString;
|
|
33225
33226
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33226
|
-
|
|
33227
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33227
33228
|
config: z.ZodType<{
|
|
33228
33229
|
type: "mcp";
|
|
33229
33230
|
mcp: ToolMcpConfig;
|
|
@@ -33237,7 +33238,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33237
33238
|
type: "mcp";
|
|
33238
33239
|
mcp: ToolMcpConfig;
|
|
33239
33240
|
}>>;
|
|
33240
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33241
33241
|
credentialScope: z.ZodString;
|
|
33242
33242
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33243
33243
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -33247,9 +33247,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33247
33247
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33248
33248
|
id: z.ZodString;
|
|
33249
33249
|
name: z.ZodString;
|
|
33250
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33250
33251
|
createdAt: z.ZodString;
|
|
33251
33252
|
updatedAt: z.ZodString;
|
|
33252
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33253
33253
|
agentId: z.ZodString;
|
|
33254
33254
|
functionId: z.ZodString;
|
|
33255
33255
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -33265,9 +33265,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33265
33265
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33266
33266
|
id: z.ZodString;
|
|
33267
33267
|
name: z.ZodString;
|
|
33268
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33268
33269
|
createdAt: z.ZodString;
|
|
33269
33270
|
updatedAt: z.ZodString;
|
|
33270
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33271
33271
|
props: z.ZodType<{
|
|
33272
33272
|
[x: string]: unknown;
|
|
33273
33273
|
type: "object";
|
|
@@ -33314,9 +33314,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33314
33314
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33315
33315
|
id: z.ZodString;
|
|
33316
33316
|
name: z.ZodString;
|
|
33317
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33317
33318
|
createdAt: z.ZodString;
|
|
33318
33319
|
updatedAt: z.ZodString;
|
|
33319
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33320
33320
|
props: z.ZodNullable<z.ZodType<{
|
|
33321
33321
|
[x: string]: unknown;
|
|
33322
33322
|
type: "object";
|
|
@@ -33363,11 +33363,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33363
33363
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33364
33364
|
id: z.ZodString;
|
|
33365
33365
|
name: z.ZodString;
|
|
33366
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33366
33367
|
createdAt: z.ZodString;
|
|
33367
33368
|
updatedAt: z.ZodString;
|
|
33368
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33369
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33370
33369
|
baseUrl: z.ZodString;
|
|
33370
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33371
33371
|
}, z.core.$strip>>>;
|
|
33372
33372
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33373
33373
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33389,11 +33389,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33389
33389
|
name: z.ZodString;
|
|
33390
33390
|
createdAt: z.ZodString;
|
|
33391
33391
|
updatedAt: z.ZodString;
|
|
33392
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
33393
33392
|
toolId: z.ZodNullable<z.ZodString>;
|
|
33393
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
33394
33394
|
credentialStoreId: z.ZodString;
|
|
33395
33395
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33396
|
-
|
|
33396
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
33397
33397
|
type: z.ZodEnum<{
|
|
33398
33398
|
readonly memory: "memory";
|
|
33399
33399
|
readonly keychain: "keychain";
|
|
@@ -33979,19 +33979,20 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33979
33979
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33980
33980
|
id: z.ZodString;
|
|
33981
33981
|
name: z.ZodString;
|
|
33982
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33982
33983
|
createdAt: z.ZodString;
|
|
33983
33984
|
updatedAt: z.ZodString;
|
|
33984
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33985
33985
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33986
33986
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33987
33987
|
executionMode: z.ZodString;
|
|
33988
33988
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33989
33989
|
id: z.ZodString;
|
|
33990
33990
|
name: z.ZodString;
|
|
33991
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33991
33992
|
createdAt: z.ZodString;
|
|
33992
33993
|
updatedAt: z.ZodString;
|
|
33993
33994
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33994
|
-
|
|
33995
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33995
33996
|
config: z.ZodType<{
|
|
33996
33997
|
type: "mcp";
|
|
33997
33998
|
mcp: ToolMcpConfig;
|
|
@@ -34005,7 +34006,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34005
34006
|
type: "mcp";
|
|
34006
34007
|
mcp: ToolMcpConfig;
|
|
34007
34008
|
}>>;
|
|
34008
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34009
34009
|
credentialScope: z.ZodString;
|
|
34010
34010
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
34011
34011
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -34015,11 +34015,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34015
34015
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34016
34016
|
id: z.ZodString;
|
|
34017
34017
|
name: z.ZodString;
|
|
34018
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34018
34019
|
createdAt: z.ZodString;
|
|
34019
34020
|
updatedAt: z.ZodString;
|
|
34020
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34021
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34022
34021
|
baseUrl: z.ZodString;
|
|
34022
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34023
34023
|
}, z.core.$strip>>>;
|
|
34024
34024
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34025
34025
|
id: z.ZodString;
|
|
@@ -34029,9 +34029,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34029
34029
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34030
34030
|
id: z.ZodString;
|
|
34031
34031
|
name: z.ZodString;
|
|
34032
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34032
34033
|
createdAt: z.ZodString;
|
|
34033
34034
|
updatedAt: z.ZodString;
|
|
34034
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34035
34035
|
agentId: z.ZodString;
|
|
34036
34036
|
functionId: z.ZodString;
|
|
34037
34037
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -34093,8 +34093,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34093
34093
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34094
34094
|
id: z.ZodString;
|
|
34095
34095
|
name: z.ZodString;
|
|
34096
|
-
createdAt: z.ZodString;
|
|
34097
|
-
updatedAt: z.ZodString;
|
|
34098
34096
|
description: z.ZodNullable<z.ZodString>;
|
|
34099
34097
|
models: z.ZodNullable<z.ZodType<{
|
|
34100
34098
|
base?: {
|
|
@@ -34182,6 +34180,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34182
34180
|
}, {
|
|
34183
34181
|
stepCountIs?: number | undefined;
|
|
34184
34182
|
}>>>;
|
|
34183
|
+
createdAt: z.ZodString;
|
|
34184
|
+
updatedAt: z.ZodString;
|
|
34185
34185
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34186
34186
|
type: z.ZodLiteral<"internal">;
|
|
34187
34187
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -34230,8 +34230,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34230
34230
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34231
34231
|
id: z.ZodString;
|
|
34232
34232
|
name: z.ZodString;
|
|
34233
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
34234
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
34235
34233
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34236
34234
|
models: z.ZodOptional<z.ZodObject<{
|
|
34237
34235
|
base: z.ZodOptional<z.ZodObject<{
|
|
@@ -34253,6 +34251,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34253
34251
|
allowedProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
34254
34252
|
}, z.core.$strip>>;
|
|
34255
34253
|
}, z.core.$strip>>;
|
|
34254
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
34255
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
34256
34256
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
34257
34257
|
type: z.ZodLiteral<"internal">;
|
|
34258
34258
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -34289,8 +34289,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34289
34289
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34290
34290
|
id: z.ZodString;
|
|
34291
34291
|
name: z.ZodString;
|
|
34292
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34293
34292
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34293
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34294
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34294
34295
|
config: z.ZodObject<{
|
|
34295
34296
|
type: z.ZodLiteral<"mcp">;
|
|
34296
34297
|
mcp: z.ZodObject<{
|
|
@@ -34317,7 +34318,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34317
34318
|
prompt: z.ZodOptional<z.ZodString>;
|
|
34318
34319
|
}, z.core.$strip>;
|
|
34319
34320
|
}, z.core.$strip>;
|
|
34320
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34321
34321
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
34322
34322
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
34323
34323
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -34328,8 +34328,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34328
34328
|
id: z.ZodString;
|
|
34329
34329
|
name: z.ZodString;
|
|
34330
34330
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34331
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34332
34331
|
baseUrl: z.ZodURL;
|
|
34332
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34333
34333
|
}, z.core.$strip>>>;
|
|
34334
34334
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34335
34335
|
id: z.ZodString;
|
|
@@ -34353,7 +34353,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34353
34353
|
name: z.ZodString;
|
|
34354
34354
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34355
34355
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
34356
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34357
34356
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
34358
34357
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
34359
34358
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34362,6 +34361,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34362
34361
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>>;
|
|
34363
34362
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34364
34363
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
34364
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34365
34365
|
runAsUserIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
34366
34366
|
}, z.core.$strip>>>;
|
|
34367
34367
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -34414,17 +34414,15 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34414
34414
|
data: z.ZodObject<{
|
|
34415
34415
|
id: z.ZodString;
|
|
34416
34416
|
name: z.ZodString;
|
|
34417
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34417
34418
|
createdAt: z.ZodString;
|
|
34418
34419
|
updatedAt: z.ZodString;
|
|
34419
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34420
34420
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34421
34421
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34422
34422
|
executionMode: z.ZodString;
|
|
34423
34423
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34424
34424
|
id: z.ZodString;
|
|
34425
34425
|
name: z.ZodString;
|
|
34426
|
-
createdAt: z.ZodString;
|
|
34427
|
-
updatedAt: z.ZodString;
|
|
34428
34426
|
description: z.ZodNullable<z.ZodString>;
|
|
34429
34427
|
models: z.ZodNullable<z.ZodType<{
|
|
34430
34428
|
base?: {
|
|
@@ -34512,6 +34510,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34512
34510
|
}, {
|
|
34513
34511
|
stepCountIs?: number | undefined;
|
|
34514
34512
|
}>>>;
|
|
34513
|
+
createdAt: z.ZodString;
|
|
34514
|
+
updatedAt: z.ZodString;
|
|
34515
34515
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34516
34516
|
type: z.ZodLiteral<"internal">;
|
|
34517
34517
|
canUse: z.ZodArray<z.ZodObject<{
|
|
@@ -34540,10 +34540,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34540
34540
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34541
34541
|
id: z.ZodString;
|
|
34542
34542
|
name: z.ZodString;
|
|
34543
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34543
34544
|
createdAt: z.ZodString;
|
|
34544
34545
|
updatedAt: z.ZodString;
|
|
34545
34546
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34546
|
-
|
|
34547
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34547
34548
|
config: z.ZodType<{
|
|
34548
34549
|
type: "mcp";
|
|
34549
34550
|
mcp: ToolMcpConfig;
|
|
@@ -34557,7 +34558,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34557
34558
|
type: "mcp";
|
|
34558
34559
|
mcp: ToolMcpConfig;
|
|
34559
34560
|
}>>;
|
|
34560
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34561
34561
|
credentialScope: z.ZodString;
|
|
34562
34562
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
34563
34563
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -34567,11 +34567,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34567
34567
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34568
34568
|
id: z.ZodString;
|
|
34569
34569
|
name: z.ZodString;
|
|
34570
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34570
34571
|
createdAt: z.ZodString;
|
|
34571
34572
|
updatedAt: z.ZodString;
|
|
34572
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34573
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34574
34573
|
baseUrl: z.ZodString;
|
|
34574
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34575
34575
|
}, z.core.$strip>>>;
|
|
34576
34576
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34577
34577
|
id: z.ZodString;
|
|
@@ -34581,9 +34581,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34581
34581
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34582
34582
|
id: z.ZodString;
|
|
34583
34583
|
name: z.ZodString;
|
|
34584
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34584
34585
|
createdAt: z.ZodString;
|
|
34585
34586
|
updatedAt: z.ZodString;
|
|
34586
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34587
34587
|
agentId: z.ZodString;
|
|
34588
34588
|
functionId: z.ZodString;
|
|
34589
34589
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -34667,10 +34667,11 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34667
34667
|
data: z.ZodObject<{
|
|
34668
34668
|
id: z.ZodString;
|
|
34669
34669
|
name: z.ZodString;
|
|
34670
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34671
34670
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34672
34671
|
tenantId: z.ZodString;
|
|
34673
34672
|
projectId: z.ZodString;
|
|
34673
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34674
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34674
34675
|
config: z.ZodObject<{
|
|
34675
34676
|
type: z.ZodLiteral<"mcp">;
|
|
34676
34677
|
mcp: z.ZodObject<{
|
|
@@ -34697,7 +34698,6 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34697
34698
|
prompt: z.ZodOptional<z.ZodString>;
|
|
34698
34699
|
}, z.core.$strip>;
|
|
34699
34700
|
}, z.core.$strip>;
|
|
34700
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34701
34701
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
34702
34702
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
34703
34703
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34728,10 +34728,11 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
34728
34728
|
data: z.ZodArray<z.ZodObject<{
|
|
34729
34729
|
id: z.ZodString;
|
|
34730
34730
|
name: z.ZodString;
|
|
34731
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34732
34731
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34733
34732
|
tenantId: z.ZodString;
|
|
34734
34733
|
projectId: z.ZodString;
|
|
34734
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34735
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34735
34736
|
config: z.ZodObject<{
|
|
34736
34737
|
type: z.ZodLiteral<"mcp">;
|
|
34737
34738
|
mcp: z.ZodObject<{
|
|
@@ -34758,7 +34759,6 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
34758
34759
|
prompt: z.ZodOptional<z.ZodString>;
|
|
34759
34760
|
}, z.core.$strip>;
|
|
34760
34761
|
}, z.core.$strip>;
|
|
34761
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34762
34762
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
34763
34763
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
34764
34764
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34796,8 +34796,8 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
34796
34796
|
id: z.ZodString;
|
|
34797
34797
|
createdAt: z.ZodString;
|
|
34798
34798
|
updatedAt: z.ZodString;
|
|
34799
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34800
34799
|
subAgentId: z.ZodString;
|
|
34800
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34801
34801
|
targetAgentId: z.ZodString;
|
|
34802
34802
|
}, z.core.$strip>;
|
|
34803
34803
|
}, z.core.$strip>;
|
|
@@ -34806,8 +34806,8 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
34806
34806
|
id: z.ZodString;
|
|
34807
34807
|
createdAt: z.ZodString;
|
|
34808
34808
|
updatedAt: z.ZodString;
|
|
34809
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34810
34809
|
subAgentId: z.ZodString;
|
|
34810
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34811
34811
|
targetAgentId: z.ZodString;
|
|
34812
34812
|
}, z.core.$strip>>;
|
|
34813
34813
|
pagination: z.ZodObject<{
|
|
@@ -34822,9 +34822,9 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
34822
34822
|
id: z.ZodString;
|
|
34823
34823
|
createdAt: z.ZodString;
|
|
34824
34824
|
updatedAt: z.ZodString;
|
|
34825
|
+
subAgentId: z.ZodString;
|
|
34825
34826
|
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34826
34827
|
externalAgentId: z.ZodString;
|
|
34827
|
-
subAgentId: z.ZodString;
|
|
34828
34828
|
}, z.core.$strip>;
|
|
34829
34829
|
}, z.core.$strip>;
|
|
34830
34830
|
declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
@@ -34832,9 +34832,9 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
34832
34832
|
id: z.ZodString;
|
|
34833
34833
|
createdAt: z.ZodString;
|
|
34834
34834
|
updatedAt: z.ZodString;
|
|
34835
|
+
subAgentId: z.ZodString;
|
|
34835
34836
|
headers: z.ZodNullable<z.ZodType<drizzle_zod17.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod17.Json, unknown>>>;
|
|
34836
34837
|
externalAgentId: z.ZodString;
|
|
34837
|
-
subAgentId: z.ZodString;
|
|
34838
34838
|
}, z.core.$strip>>;
|
|
34839
34839
|
pagination: z.ZodObject<{
|
|
34840
34840
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -34847,9 +34847,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
34847
34847
|
data: z.ZodArray<z.ZodObject<{
|
|
34848
34848
|
id: z.ZodString;
|
|
34849
34849
|
name: z.ZodString;
|
|
34850
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34850
34851
|
createdAt: z.ZodString;
|
|
34851
34852
|
updatedAt: z.ZodString;
|
|
34852
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34853
34853
|
props: z.ZodType<{
|
|
34854
34854
|
[x: string]: unknown;
|
|
34855
34855
|
type: "object";
|
|
@@ -34898,9 +34898,9 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
34898
34898
|
data: z.ZodArray<z.ZodObject<{
|
|
34899
34899
|
id: z.ZodString;
|
|
34900
34900
|
name: z.ZodString;
|
|
34901
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34901
34902
|
createdAt: z.ZodString;
|
|
34902
34903
|
updatedAt: z.ZodString;
|
|
34903
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34904
34904
|
props: z.ZodNullable<z.ZodType<{
|
|
34905
34905
|
[x: string]: unknown;
|
|
34906
34906
|
type: "object";
|
|
@@ -35605,10 +35605,10 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod17.BuildSchema<"
|
|
|
35605
35605
|
}, undefined>, undefined>;
|
|
35606
35606
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
35607
35607
|
id: z.ZodString;
|
|
35608
|
-
accountId: z.ZodString;
|
|
35609
35608
|
tenantId: z.ZodString;
|
|
35610
35609
|
installationId: z.ZodString;
|
|
35611
35610
|
accountLogin: z.ZodString;
|
|
35611
|
+
accountId: z.ZodString;
|
|
35612
35612
|
accountType: z.ZodEnum<{
|
|
35613
35613
|
Organization: "Organization";
|
|
35614
35614
|
User: "User";
|
|
@@ -35627,23 +35627,23 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
|
35627
35627
|
id: z.ZodString;
|
|
35628
35628
|
createdAt: z.ZodString;
|
|
35629
35629
|
updatedAt: z.ZodString;
|
|
35630
|
-
accountId: z.ZodString;
|
|
35631
35630
|
status: z.ZodString;
|
|
35632
35631
|
installationId: z.ZodString;
|
|
35633
35632
|
accountLogin: z.ZodString;
|
|
35633
|
+
accountId: z.ZodString;
|
|
35634
35634
|
accountType: z.ZodString;
|
|
35635
35635
|
}, z.core.$strip>;
|
|
35636
35636
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
35637
|
-
|
|
35637
|
+
tenantId: z.ZodString;
|
|
35638
35638
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35639
35639
|
pending: "pending";
|
|
35640
35640
|
active: "active";
|
|
35641
35641
|
suspended: "suspended";
|
|
35642
35642
|
disconnected: "disconnected";
|
|
35643
35643
|
}>>>;
|
|
35644
|
-
tenantId: z.ZodString;
|
|
35645
35644
|
installationId: z.ZodString;
|
|
35646
35645
|
accountLogin: z.ZodString;
|
|
35646
|
+
accountId: z.ZodString;
|
|
35647
35647
|
accountType: z.ZodEnum<{
|
|
35648
35648
|
Organization: "Organization";
|
|
35649
35649
|
User: "User";
|
|
@@ -36440,27 +36440,27 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod17.Bu
|
|
|
36440
36440
|
}>;
|
|
36441
36441
|
}, undefined>, undefined>;
|
|
36442
36442
|
declare const WorkAppGitHubAccessModeSchema: z.ZodEnum<{
|
|
36443
|
-
selected: "selected";
|
|
36444
36443
|
all: "all";
|
|
36444
|
+
selected: "selected";
|
|
36445
36445
|
}>;
|
|
36446
36446
|
declare const WorkAppGitHubAccessSetRequestSchema: z.ZodObject<{
|
|
36447
36447
|
mode: z.ZodEnum<{
|
|
36448
|
-
selected: "selected";
|
|
36449
36448
|
all: "all";
|
|
36449
|
+
selected: "selected";
|
|
36450
36450
|
}>;
|
|
36451
36451
|
repositoryIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
36452
36452
|
}, z.core.$strip>;
|
|
36453
36453
|
declare const WorkAppGitHubAccessSetResponseSchema: z.ZodObject<{
|
|
36454
36454
|
mode: z.ZodEnum<{
|
|
36455
|
-
selected: "selected";
|
|
36456
36455
|
all: "all";
|
|
36456
|
+
selected: "selected";
|
|
36457
36457
|
}>;
|
|
36458
36458
|
repositoryCount: z.ZodNumber;
|
|
36459
36459
|
}, z.core.$strip>;
|
|
36460
36460
|
declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
36461
36461
|
mode: z.ZodEnum<{
|
|
36462
|
-
selected: "selected";
|
|
36463
36462
|
all: "all";
|
|
36463
|
+
selected: "selected";
|
|
36464
36464
|
}>;
|
|
36465
36465
|
repositories: z.ZodArray<drizzle_zod17.BuildSchema<"select", {
|
|
36466
36466
|
createdAt: drizzle_orm_pg_core1094.PgColumn<{
|
|
@@ -37844,24 +37844,24 @@ type WorkAppSlackAgentConfigRequest = z.infer<typeof WorkAppSlackAgentConfigRequ
|
|
|
37844
37844
|
type WorkAppSlackAgentConfigResponse = z.infer<typeof WorkAppSlackAgentConfigResponseSchema>;
|
|
37845
37845
|
declare const ChannelIdsSchema: z.ZodArray<z.ZodString>;
|
|
37846
37846
|
declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
37847
|
-
selected: "selected";
|
|
37848
37847
|
all: "all";
|
|
37848
|
+
selected: "selected";
|
|
37849
37849
|
}>;
|
|
37850
37850
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
37851
37851
|
tenantId: z.ZodString;
|
|
37852
37852
|
projectId: z.ZodString;
|
|
37853
37853
|
toolId: z.ZodString;
|
|
37854
37854
|
channelAccessMode: z.ZodEnum<{
|
|
37855
|
-
selected: "selected";
|
|
37856
37855
|
all: "all";
|
|
37856
|
+
selected: "selected";
|
|
37857
37857
|
}>;
|
|
37858
37858
|
dmEnabled: z.ZodBoolean;
|
|
37859
37859
|
channelIds: z.ZodArray<z.ZodString>;
|
|
37860
37860
|
}, z.core.$strip>;
|
|
37861
37861
|
declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
37862
37862
|
channelAccessMode: z.ZodEnum<{
|
|
37863
|
-
selected: "selected";
|
|
37864
37863
|
all: "all";
|
|
37864
|
+
selected: "selected";
|
|
37865
37865
|
}>;
|
|
37866
37866
|
dmEnabled: z.ZodBoolean;
|
|
37867
37867
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -38139,12 +38139,12 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
38139
38139
|
}>;
|
|
38140
38140
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
38141
38141
|
id: z.ZodString;
|
|
38142
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
38143
38142
|
tenantId: z.ZodString;
|
|
38143
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
38144
38144
|
projectId: z.ZodString;
|
|
38145
38145
|
agentId: z.ZodString;
|
|
38146
|
-
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38147
38146
|
conversationId: z.ZodString;
|
|
38147
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38148
38148
|
status: z.ZodDefault<z.ZodEnum<{
|
|
38149
38149
|
running: "running";
|
|
38150
38150
|
completed: "completed";
|
|
@@ -38157,12 +38157,12 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
38157
38157
|
}>;
|
|
38158
38158
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
38159
38159
|
id: z.ZodOptional<z.ZodString>;
|
|
38160
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
38161
38160
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
38161
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
38162
38162
|
projectId: z.ZodOptional<z.ZodString>;
|
|
38163
38163
|
agentId: z.ZodOptional<z.ZodString>;
|
|
38164
|
-
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
38165
38164
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
38165
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
38166
38166
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
38167
38167
|
running: "running";
|
|
38168
38168
|
completed: "completed";
|