@inkeep/agents-core 0.0.0-dev-20260320225026 → 0.0.0-dev-20260323133357
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +137 -137
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +37 -37
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +12 -12
- package/dist/data-access/manage/skills.d.ts +18 -18
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +24 -24
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +20 -20
- package/dist/data-access/runtime/apps.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/schemas.d.ts +542 -542
- package/package.json +1 -1
|
@@ -820,11 +820,11 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
820
820
|
}, z.core.$strip>>;
|
|
821
821
|
}>, z.core.$strip>;
|
|
822
822
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
823
|
-
|
|
823
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
824
824
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
825
825
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
826
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
826
827
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
827
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
828
828
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
829
829
|
base: z.ZodOptional<z.ZodObject<{
|
|
830
830
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -839,6 +839,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
839
839
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
840
840
|
}, z.core.$strip>>;
|
|
841
841
|
}, z.core.$strip>>>>;
|
|
842
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
842
843
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
843
844
|
stepCountIs?: number | undefined;
|
|
844
845
|
}, {
|
|
@@ -848,7 +849,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
848
849
|
}, {
|
|
849
850
|
stepCountIs?: number | undefined;
|
|
850
851
|
}>>>>>>;
|
|
851
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
852
852
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
853
853
|
}, z.core.$strip>;
|
|
854
854
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -2483,7 +2483,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2483
2483
|
}, {}, {
|
|
2484
2484
|
length: 256;
|
|
2485
2485
|
}>;
|
|
2486
|
-
}, "
|
|
2486
|
+
}, "description" | "id" | "tenantId" | "createdAt" | "name" | "updatedAt" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, undefined>, undefined>;
|
|
2487
2487
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2488
2488
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2489
2489
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2750,9 +2750,11 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2750
2750
|
id: z.ZodString;
|
|
2751
2751
|
}>, z.core.$strip>;
|
|
2752
2752
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2753
|
-
name: z.ZodString;
|
|
2754
|
-
id: z.ZodString;
|
|
2755
2753
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
|
+
id: z.ZodString;
|
|
2755
|
+
name: z.ZodString;
|
|
2756
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2757
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
2758
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2757
2759
|
base?: {
|
|
2758
2760
|
model?: string | undefined;
|
|
@@ -2806,18 +2808,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2806
2808
|
providerOptions?: Record<string, any> | undefined;
|
|
2807
2809
|
} | undefined;
|
|
2808
2810
|
}>>>>;
|
|
2809
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2810
|
-
transferCountIs?: number | undefined;
|
|
2811
|
-
}, {
|
|
2812
|
-
transferCountIs?: number | undefined;
|
|
2813
|
-
}, z.core.$ZodTypeInternals<{
|
|
2814
|
-
transferCountIs?: number | undefined;
|
|
2815
|
-
}, {
|
|
2816
|
-
transferCountIs?: number | undefined;
|
|
2817
|
-
}>>>>;
|
|
2818
2811
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2819
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2820
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2821
2812
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2822
2813
|
enabled?: boolean | undefined;
|
|
2823
2814
|
numEvents?: number | undefined;
|
|
@@ -2875,10 +2866,21 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2875
2866
|
} | undefined;
|
|
2876
2867
|
}[] | undefined;
|
|
2877
2868
|
}>>>>;
|
|
2869
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2870
|
+
transferCountIs?: number | undefined;
|
|
2871
|
+
}, {
|
|
2872
|
+
transferCountIs?: number | undefined;
|
|
2873
|
+
}, z.core.$ZodTypeInternals<{
|
|
2874
|
+
transferCountIs?: number | undefined;
|
|
2875
|
+
}, {
|
|
2876
|
+
transferCountIs?: number | undefined;
|
|
2877
|
+
}>>>>;
|
|
2878
2878
|
}, z.core.$strip>;
|
|
2879
2879
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2880
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2881
2880
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2881
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
|
+
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2883
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2882
2884
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2883
2885
|
base?: {
|
|
2884
2886
|
model?: string | undefined;
|
|
@@ -2932,18 +2934,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2932
2934
|
providerOptions?: Record<string, any> | undefined;
|
|
2933
2935
|
} | undefined;
|
|
2934
2936
|
}>>>>>>;
|
|
2935
|
-
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2936
|
-
transferCountIs?: number | undefined;
|
|
2937
|
-
}, {
|
|
2938
|
-
transferCountIs?: number | undefined;
|
|
2939
|
-
}, z.core.$ZodTypeInternals<{
|
|
2940
|
-
transferCountIs?: number | undefined;
|
|
2941
|
-
}, {
|
|
2942
|
-
transferCountIs?: number | undefined;
|
|
2943
|
-
}>>>>>>;
|
|
2944
2937
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2945
|
-
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2946
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2947
2938
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2948
2939
|
enabled?: boolean | undefined;
|
|
2949
2940
|
numEvents?: number | undefined;
|
|
@@ -3001,6 +2992,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3001
2992
|
} | undefined;
|
|
3002
2993
|
}[] | undefined;
|
|
3003
2994
|
}>>>>>>;
|
|
2995
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2996
|
+
transferCountIs?: number | undefined;
|
|
2997
|
+
}, {
|
|
2998
|
+
transferCountIs?: number | undefined;
|
|
2999
|
+
}, z.core.$ZodTypeInternals<{
|
|
3000
|
+
transferCountIs?: number | undefined;
|
|
3001
|
+
}, {
|
|
3002
|
+
transferCountIs?: number | undefined;
|
|
3003
|
+
}>>>>>>;
|
|
3004
3004
|
}, z.core.$strip>;
|
|
3005
3005
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
3006
3006
|
name: z.ZodString;
|
|
@@ -3066,9 +3066,9 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3066
3066
|
*/
|
|
3067
3067
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3068
3068
|
source: z.ZodEnum<{
|
|
3069
|
-
body: "body";
|
|
3070
3069
|
query: "query";
|
|
3071
3070
|
header: "header";
|
|
3071
|
+
body: "body";
|
|
3072
3072
|
}>;
|
|
3073
3073
|
key: z.ZodString;
|
|
3074
3074
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3097,8 +3097,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3097
3097
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3098
3098
|
source: z.ZodEnum<{
|
|
3099
3099
|
literal: "literal";
|
|
3100
|
-
body: "body";
|
|
3101
3100
|
header: "header";
|
|
3101
|
+
body: "body";
|
|
3102
3102
|
}>;
|
|
3103
3103
|
key: z.ZodOptional<z.ZodString>;
|
|
3104
3104
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3206,9 +3206,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3206
3206
|
}>;
|
|
3207
3207
|
signature: z.ZodObject<{
|
|
3208
3208
|
source: z.ZodEnum<{
|
|
3209
|
-
body: "body";
|
|
3210
3209
|
query: "query";
|
|
3211
3210
|
header: "header";
|
|
3211
|
+
body: "body";
|
|
3212
3212
|
}>;
|
|
3213
3213
|
key: z.ZodString;
|
|
3214
3214
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3217,8 +3217,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3217
3217
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3218
3218
|
source: z.ZodEnum<{
|
|
3219
3219
|
literal: "literal";
|
|
3220
|
-
body: "body";
|
|
3221
3220
|
header: "header";
|
|
3221
|
+
body: "body";
|
|
3222
3222
|
}>;
|
|
3223
3223
|
key: z.ZodOptional<z.ZodString>;
|
|
3224
3224
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3302,9 +3302,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3302
3302
|
}>;
|
|
3303
3303
|
signature: z.ZodObject<{
|
|
3304
3304
|
source: z.ZodEnum<{
|
|
3305
|
-
body: "body";
|
|
3306
3305
|
query: "query";
|
|
3307
3306
|
header: "header";
|
|
3307
|
+
body: "body";
|
|
3308
3308
|
}>;
|
|
3309
3309
|
key: z.ZodString;
|
|
3310
3310
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3313,8 +3313,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3313
3313
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3314
3314
|
source: z.ZodEnum<{
|
|
3315
3315
|
literal: "literal";
|
|
3316
|
-
body: "body";
|
|
3317
3316
|
header: "header";
|
|
3317
|
+
body: "body";
|
|
3318
3318
|
}>;
|
|
3319
3319
|
key: z.ZodOptional<z.ZodString>;
|
|
3320
3320
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3499,13 +3499,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3499
3499
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3500
3500
|
encoding: "hex" | "base64";
|
|
3501
3501
|
signature: {
|
|
3502
|
-
source: "
|
|
3502
|
+
source: "query" | "header" | "body";
|
|
3503
3503
|
key: string;
|
|
3504
3504
|
prefix?: string | undefined;
|
|
3505
3505
|
regex?: string | undefined;
|
|
3506
3506
|
};
|
|
3507
3507
|
signedComponents: {
|
|
3508
|
-
source: "literal" | "
|
|
3508
|
+
source: "literal" | "header" | "body";
|
|
3509
3509
|
required: boolean;
|
|
3510
3510
|
key?: string | undefined;
|
|
3511
3511
|
value?: string | undefined;
|
|
@@ -3536,13 +3536,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3536
3536
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3537
3537
|
encoding: "hex" | "base64";
|
|
3538
3538
|
signature: {
|
|
3539
|
-
source: "
|
|
3539
|
+
source: "query" | "header" | "body";
|
|
3540
3540
|
key: string;
|
|
3541
3541
|
prefix?: string | undefined;
|
|
3542
3542
|
regex?: string | undefined;
|
|
3543
3543
|
};
|
|
3544
3544
|
signedComponents: {
|
|
3545
|
-
source: "literal" | "
|
|
3545
|
+
source: "literal" | "header" | "body";
|
|
3546
3546
|
required: boolean;
|
|
3547
3547
|
key?: string | undefined;
|
|
3548
3548
|
value?: string | undefined;
|
|
@@ -3869,13 +3869,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3869
3869
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3870
3870
|
encoding: "hex" | "base64";
|
|
3871
3871
|
signature: {
|
|
3872
|
-
source: "
|
|
3872
|
+
source: "query" | "header" | "body";
|
|
3873
3873
|
key: string;
|
|
3874
3874
|
prefix?: string | undefined;
|
|
3875
3875
|
regex?: string | undefined;
|
|
3876
3876
|
};
|
|
3877
3877
|
signedComponents: {
|
|
3878
|
-
source: "literal" | "
|
|
3878
|
+
source: "literal" | "header" | "body";
|
|
3879
3879
|
required: boolean;
|
|
3880
3880
|
key?: string | undefined;
|
|
3881
3881
|
value?: string | undefined;
|
|
@@ -3906,13 +3906,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3906
3906
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3907
3907
|
encoding: "hex" | "base64";
|
|
3908
3908
|
signature: {
|
|
3909
|
-
source: "
|
|
3909
|
+
source: "query" | "header" | "body";
|
|
3910
3910
|
key: string;
|
|
3911
3911
|
prefix?: string | undefined;
|
|
3912
3912
|
regex?: string | undefined;
|
|
3913
3913
|
};
|
|
3914
3914
|
signedComponents: {
|
|
3915
|
-
source: "literal" | "
|
|
3915
|
+
source: "literal" | "header" | "body";
|
|
3916
3916
|
required: boolean;
|
|
3917
3917
|
key?: string | undefined;
|
|
3918
3918
|
value?: string | undefined;
|
|
@@ -4079,7 +4079,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4079
4079
|
}, {}, {
|
|
4080
4080
|
length: 256;
|
|
4081
4081
|
}>;
|
|
4082
|
-
}, "
|
|
4082
|
+
}, "description" | "id" | "tenantId" | "createdAt" | "createdBy" | "name" | "updatedAt" | "agentId" | "projectId" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId">, undefined>, undefined>;
|
|
4083
4083
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4084
4084
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4085
4085
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4131,9 +4131,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4131
4131
|
}>;
|
|
4132
4132
|
signature: z.ZodObject<{
|
|
4133
4133
|
source: z.ZodEnum<{
|
|
4134
|
-
body: "body";
|
|
4135
4134
|
query: "query";
|
|
4136
4135
|
header: "header";
|
|
4136
|
+
body: "body";
|
|
4137
4137
|
}>;
|
|
4138
4138
|
key: z.ZodString;
|
|
4139
4139
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4142,8 +4142,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4142
4142
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4143
4143
|
source: z.ZodEnum<{
|
|
4144
4144
|
literal: "literal";
|
|
4145
|
-
body: "body";
|
|
4146
4145
|
header: "header";
|
|
4146
|
+
body: "body";
|
|
4147
4147
|
}>;
|
|
4148
4148
|
key: z.ZodOptional<z.ZodString>;
|
|
4149
4149
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4166,11 +4166,11 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4166
4166
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4167
4167
|
}>, z.core.$strip>;
|
|
4168
4168
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4169
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4170
|
-
name: z.ZodString;
|
|
4171
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4172
4169
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4170
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4173
4171
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4172
|
+
name: z.ZodString;
|
|
4173
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4174
4174
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4175
4175
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4176
4176
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4180,13 +4180,13 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4180
4180
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4181
4181
|
}, z.core.$strip>;
|
|
4182
4182
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4183
|
-
|
|
4184
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4183
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4185
4184
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4186
4185
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4187
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4188
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4189
4186
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4187
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4188
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4189
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4190
4190
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4191
4191
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4192
4192
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4196,13 +4196,13 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4196
4196
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4197
4197
|
}, z.core.$strip>;
|
|
4198
4198
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4199
|
-
|
|
4200
|
-
name: z.ZodString;
|
|
4199
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4201
4200
|
id: z.ZodString;
|
|
4202
4201
|
createdAt: z.ZodString;
|
|
4203
|
-
updatedAt: z.ZodString;
|
|
4204
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4205
4202
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4203
|
+
name: z.ZodString;
|
|
4204
|
+
updatedAt: z.ZodString;
|
|
4205
|
+
enabled: z.ZodBoolean;
|
|
4206
4206
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4207
4207
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4208
4208
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -4222,9 +4222,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4222
4222
|
}>;
|
|
4223
4223
|
signature: z.ZodObject<{
|
|
4224
4224
|
source: z.ZodEnum<{
|
|
4225
|
-
body: "body";
|
|
4226
4225
|
query: "query";
|
|
4227
4226
|
header: "header";
|
|
4227
|
+
body: "body";
|
|
4228
4228
|
}>;
|
|
4229
4229
|
key: z.ZodString;
|
|
4230
4230
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4233,8 +4233,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4233
4233
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4234
4234
|
source: z.ZodEnum<{
|
|
4235
4235
|
literal: "literal";
|
|
4236
|
-
body: "body";
|
|
4237
4236
|
header: "header";
|
|
4237
|
+
body: "body";
|
|
4238
4238
|
}>;
|
|
4239
4239
|
key: z.ZodOptional<z.ZodString>;
|
|
4240
4240
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4739,7 +4739,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4739
4739
|
}, {}, {
|
|
4740
4740
|
length: 256;
|
|
4741
4741
|
}>;
|
|
4742
|
-
}, "
|
|
4742
|
+
}, "status" | "id" | "tenantId" | "createdAt" | "ref" | "agentId" | "projectId" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4743
4743
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4744
4744
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4745
4745
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4796,8 +4796,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4796
4796
|
}, z.core.$strip>>>;
|
|
4797
4797
|
}>, z.core.$strip>;
|
|
4798
4798
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
4799
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
4800
4799
|
status: z.ZodOptional<z.ZodString>;
|
|
4800
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4801
4801
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4802
4802
|
type: "commit" | "tag" | "branch";
|
|
4803
4803
|
name: string;
|
|
@@ -4823,9 +4823,9 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4823
4823
|
id: z.ZodString;
|
|
4824
4824
|
}, z.core.$strip>;
|
|
4825
4825
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
4826
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4826
4827
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4827
4828
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4828
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4829
4829
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4830
4830
|
type: "commit" | "tag" | "branch";
|
|
4831
4831
|
name: string;
|
|
@@ -4875,14 +4875,14 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
4875
4875
|
in: {};
|
|
4876
4876
|
}>;
|
|
4877
4877
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
4878
|
-
|
|
4879
|
-
name: z.ZodString;
|
|
4878
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4880
4879
|
id: z.ZodString;
|
|
4881
4880
|
tenantId: z.ZodString;
|
|
4882
|
-
projectId: z.ZodString;
|
|
4883
|
-
agentId: z.ZodString;
|
|
4884
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4885
4881
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4882
|
+
name: z.ZodString;
|
|
4883
|
+
agentId: z.ZodString;
|
|
4884
|
+
projectId: z.ZodString;
|
|
4885
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4886
4886
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4887
4887
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4888
4888
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4897,13 +4897,13 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
4897
4897
|
in: {};
|
|
4898
4898
|
}>;
|
|
4899
4899
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
4900
|
-
|
|
4900
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4901
4901
|
id: z.ZodOptional<z.ZodString>;
|
|
4902
4902
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4903
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
4904
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
4905
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4906
4903
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4904
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4905
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
4906
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
4907
4907
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4908
4908
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4909
4909
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4940,10 +4940,10 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4940
4940
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
4941
4941
|
}>, z.core.$strip>;
|
|
4942
4942
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
4943
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4944
|
-
name: z.ZodString;
|
|
4945
4943
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4946
4944
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4945
|
+
name: z.ZodString;
|
|
4946
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4947
4947
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4948
4948
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4949
4949
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4956,10 +4956,10 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
4956
4956
|
id: z.ZodOptional<z.ZodString>;
|
|
4957
4957
|
}, z.core.$strip>;
|
|
4958
4958
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
4959
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4960
|
-
name: z.ZodString;
|
|
4961
4959
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4962
4960
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4961
|
+
name: z.ZodString;
|
|
4962
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4963
4963
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4964
4964
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4965
4965
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4972,11 +4972,11 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
4972
4972
|
id: z.ZodOptional<z.ZodString>;
|
|
4973
4973
|
}, z.core.$strip>;
|
|
4974
4974
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
4975
|
-
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4976
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4977
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4978
4975
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4976
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4979
4977
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4978
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4979
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4980
4980
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4981
4981
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4982
4982
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5810,7 +5810,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5810
5810
|
}, {}, {
|
|
5811
5811
|
length: 256;
|
|
5812
5812
|
}>;
|
|
5813
|
-
}, "
|
|
5813
|
+
}, "description" | "status" | "id" | "tenantId" | "createdAt" | "name" | "updatedAt" | "agentId" | "projectId" | "scheduledTriggerId" | "workflowRunId">, undefined>, undefined>;
|
|
5814
5814
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
5815
5815
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5816
5816
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5841,33 +5841,33 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5841
5841
|
id: z.ZodString;
|
|
5842
5842
|
}>, z.core.$strip>;
|
|
5843
5843
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
5844
|
-
|
|
5845
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5844
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5846
5845
|
status: z.ZodOptional<z.ZodString>;
|
|
5846
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5847
|
+
name: z.ZodString;
|
|
5847
5848
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5848
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5849
|
-
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5850
5849
|
scheduledTriggerId: z.ZodString;
|
|
5850
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5851
5851
|
id: z.ZodOptional<z.ZodString>;
|
|
5852
5852
|
}, z.core.$strip>;
|
|
5853
5853
|
declare const ScheduledWorkflowApiUpdateSchema: z.ZodObject<{
|
|
5854
|
-
|
|
5854
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5855
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5855
5856
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5856
5857
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5857
|
-
|
|
5858
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5858
5859
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5859
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5860
|
-
workflowRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5861
5860
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5861
|
+
workflowRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5862
5862
|
}, z.core.$strip>;
|
|
5863
5863
|
type ScheduledWorkflow = z.infer<typeof ScheduledWorkflowSelectSchema>;
|
|
5864
5864
|
type ScheduledWorkflowInsert = z.infer<typeof ScheduledWorkflowInsertSchema>;
|
|
5865
5865
|
type ScheduledWorkflowUpdate = z.infer<typeof ScheduledWorkflowUpdateSchema>;
|
|
5866
5866
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
5867
5867
|
pending: "pending";
|
|
5868
|
-
failed: "failed";
|
|
5869
5868
|
running: "running";
|
|
5870
5869
|
completed: "completed";
|
|
5870
|
+
failed: "failed";
|
|
5871
5871
|
cancelled: "cancelled";
|
|
5872
5872
|
}>;
|
|
5873
5873
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -5895,9 +5895,9 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
5895
5895
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5896
5896
|
status: z.ZodEnum<{
|
|
5897
5897
|
pending: "pending";
|
|
5898
|
-
failed: "failed";
|
|
5899
5898
|
running: "running";
|
|
5900
5899
|
completed: "completed";
|
|
5900
|
+
failed: "failed";
|
|
5901
5901
|
cancelled: "cancelled";
|
|
5902
5902
|
}>;
|
|
5903
5903
|
}, {
|
|
@@ -5956,7 +5956,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
5956
5956
|
tableName: "scheduled_trigger_invocations";
|
|
5957
5957
|
dataType: "string";
|
|
5958
5958
|
columnType: "PgVarchar";
|
|
5959
|
-
data: "pending" | "
|
|
5959
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5960
5960
|
driverParam: string;
|
|
5961
5961
|
notNull: true;
|
|
5962
5962
|
hasDefault: false;
|
|
@@ -5969,7 +5969,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
5969
5969
|
generated: undefined;
|
|
5970
5970
|
}, {}, {
|
|
5971
5971
|
length: 50;
|
|
5972
|
-
$type: "pending" | "
|
|
5972
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5973
5973
|
}>;
|
|
5974
5974
|
scheduledFor: drizzle_orm_pg_core873.PgColumn<{
|
|
5975
5975
|
name: "scheduled_for";
|
|
@@ -6241,7 +6241,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6241
6241
|
tableName: "scheduled_trigger_invocations";
|
|
6242
6242
|
dataType: "string";
|
|
6243
6243
|
columnType: "PgVarchar";
|
|
6244
|
-
data: "pending" | "
|
|
6244
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6245
6245
|
driverParam: string;
|
|
6246
6246
|
notNull: true;
|
|
6247
6247
|
hasDefault: false;
|
|
@@ -6254,7 +6254,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6254
6254
|
generated: undefined;
|
|
6255
6255
|
}, {}, {
|
|
6256
6256
|
length: 50;
|
|
6257
|
-
$type: "pending" | "
|
|
6257
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6258
6258
|
}>;
|
|
6259
6259
|
scheduledFor: drizzle_orm_pg_core873.PgColumn<{
|
|
6260
6260
|
name: "scheduled_for";
|
|
@@ -6474,7 +6474,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6474
6474
|
}, {}, {
|
|
6475
6475
|
length: 256;
|
|
6476
6476
|
}>;
|
|
6477
|
-
}, "
|
|
6477
|
+
}, "status" | "id" | "tenantId" | "createdAt" | "ref" | "agentId" | "projectId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6478
6478
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6479
6479
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6480
6480
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6536,15 +6536,15 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
|
|
|
6536
6536
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6537
6537
|
status: z.ZodEnum<{
|
|
6538
6538
|
pending: "pending";
|
|
6539
|
-
failed: "failed";
|
|
6540
6539
|
running: "running";
|
|
6541
6540
|
completed: "completed";
|
|
6541
|
+
failed: "failed";
|
|
6542
6542
|
cancelled: "cancelled";
|
|
6543
6543
|
}>;
|
|
6544
6544
|
}>, z.core.$strip>;
|
|
6545
6545
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
6546
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6547
6546
|
status: z.ZodString;
|
|
6547
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6548
6548
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6549
6549
|
type: "commit" | "tag" | "branch";
|
|
6550
6550
|
name: string;
|
|
@@ -6563,19 +6563,19 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6563
6563
|
hash: string;
|
|
6564
6564
|
}>>>>;
|
|
6565
6565
|
scheduledTriggerId: z.ZodString;
|
|
6566
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6567
6566
|
scheduledFor: z.ZodString;
|
|
6568
6567
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6569
6568
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6570
6569
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
6570
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6571
6571
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6572
6572
|
idempotencyKey: z.ZodString;
|
|
6573
6573
|
id: z.ZodString;
|
|
6574
6574
|
}, z.core.$strip>;
|
|
6575
6575
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
6576
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6576
6577
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6577
6578
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6578
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6579
6579
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6580
6580
|
type: "commit" | "tag" | "branch";
|
|
6581
6581
|
name: string;
|
|
@@ -6594,11 +6594,11 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6594
6594
|
hash: string;
|
|
6595
6595
|
}>>>>>>;
|
|
6596
6596
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6597
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6598
6597
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6599
6598
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6600
6599
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6601
6600
|
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
6601
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6602
6602
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6603
6603
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6604
6604
|
}, z.core.$strip>;
|
|
@@ -6724,11 +6724,10 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
6724
6724
|
}, z.core.$strip>;
|
|
6725
6725
|
}>, z.core.$strip>;
|
|
6726
6726
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6727
|
-
|
|
6727
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6728
6728
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6729
6729
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6730
|
-
|
|
6731
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6730
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6732
6731
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6733
6732
|
type: z.ZodEnum<{
|
|
6734
6733
|
commit: "commit";
|
|
@@ -6738,6 +6737,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6738
6737
|
name: z.ZodString;
|
|
6739
6738
|
hash: z.ZodString;
|
|
6740
6739
|
}, z.core.$strip>>>;
|
|
6740
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6741
6741
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6742
6742
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6743
6743
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7680,12 +7680,11 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7680
7680
|
}>;
|
|
7681
7681
|
}, undefined>, undefined>;
|
|
7682
7682
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
7683
|
-
|
|
7684
|
-
name: z.ZodString;
|
|
7683
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7685
7684
|
id: z.ZodString;
|
|
7686
7685
|
tenantId: z.ZodString;
|
|
7686
|
+
name: z.ZodString;
|
|
7687
7687
|
projectId: z.ZodString;
|
|
7688
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7689
7688
|
config: z.ZodObject<{
|
|
7690
7689
|
type: z.ZodLiteral<"mcp">;
|
|
7691
7690
|
mcp: z.ZodObject<{
|
|
@@ -7714,6 +7713,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7714
7713
|
}, z.core.$strip>;
|
|
7715
7714
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7716
7715
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
7716
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7717
7717
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7718
7718
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7719
7719
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7845,11 +7845,10 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7845
7845
|
}, z.core.$strip>;
|
|
7846
7846
|
}>, z.core.$strip>;
|
|
7847
7847
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7848
|
-
|
|
7849
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7848
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7850
7849
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7851
7850
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7852
|
-
|
|
7851
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7853
7852
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7854
7853
|
type: z.ZodEnum<{
|
|
7855
7854
|
commit: "commit";
|
|
@@ -7859,8 +7858,9 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7859
7858
|
name: z.ZodString;
|
|
7860
7859
|
hash: z.ZodString;
|
|
7861
7860
|
}, z.core.$strip>>>;
|
|
7861
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7862
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7862
7863
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7863
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7864
7864
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7865
7865
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7866
7866
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8757,12 +8757,12 @@ declare const MessageApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8757
8757
|
taskId: z.ZodOptional<z.ZodString>;
|
|
8758
8758
|
}>, z.core.$strip>;
|
|
8759
8759
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8760
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8761
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8762
8760
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8763
8761
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8764
|
-
|
|
8762
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8765
8763
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8764
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8765
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8766
8766
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8767
8767
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8768
8768
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8902,10 +8902,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8902
8902
|
}, z.core.$strip>;
|
|
8903
8903
|
}>, z.core.$strip>;
|
|
8904
8904
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8905
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8906
8905
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8907
8906
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8908
|
-
|
|
8907
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8909
8908
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8910
8909
|
type: z.ZodEnum<{
|
|
8911
8910
|
commit: "commit";
|
|
@@ -8915,8 +8914,9 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8915
8914
|
name: z.ZodString;
|
|
8916
8915
|
hash: z.ZodString;
|
|
8917
8916
|
}, z.core.$strip>>>;
|
|
8918
|
-
|
|
8917
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8919
8918
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8919
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8920
8920
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8921
8921
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8922
8922
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9025,7 +9025,6 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9025
9025
|
}>, z.core.$strip>;
|
|
9026
9026
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9027
9027
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9028
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9029
9028
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9030
9029
|
type: "commit" | "tag" | "branch";
|
|
9031
9030
|
name: string;
|
|
@@ -9043,13 +9042,13 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9043
9042
|
name: string;
|
|
9044
9043
|
hash: string;
|
|
9045
9044
|
}>>>>;
|
|
9045
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9046
9046
|
datasetId: z.ZodString;
|
|
9047
9047
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9048
9048
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9049
9049
|
}, z.core.$strip>;
|
|
9050
9050
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9051
9051
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9052
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9053
9052
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9054
9053
|
type: "commit" | "tag" | "branch";
|
|
9055
9054
|
name: string;
|
|
@@ -9067,6 +9066,7 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9067
9066
|
name: string;
|
|
9068
9067
|
hash: string;
|
|
9069
9068
|
}>>>>>>;
|
|
9069
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9070
9070
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9071
9071
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9072
9072
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9887,7 +9887,6 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9887
9887
|
}>, z.core.$strip>;
|
|
9888
9888
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
9889
9889
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9890
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9891
9890
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9892
9891
|
type: "commit" | "tag" | "branch";
|
|
9893
9892
|
name: string;
|
|
@@ -9905,12 +9904,12 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
9905
9904
|
name: string;
|
|
9906
9905
|
hash: string;
|
|
9907
9906
|
}>>>>;
|
|
9907
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9908
9908
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9909
9909
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9910
9910
|
}, z.core.$strip>;
|
|
9911
9911
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
9912
9912
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9913
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9914
9913
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9915
9914
|
type: "commit" | "tag" | "branch";
|
|
9916
9915
|
name: string;
|
|
@@ -9928,6 +9927,7 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
9928
9927
|
name: string;
|
|
9929
9928
|
hash: string;
|
|
9930
9929
|
}>>>>>>;
|
|
9930
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9931
9931
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9932
9932
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9933
9933
|
}, z.core.$strip>;
|
|
@@ -10259,27 +10259,27 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10259
10259
|
id: z.ZodString;
|
|
10260
10260
|
}>, z.core.$strip>;
|
|
10261
10261
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10262
|
-
|
|
10262
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10263
10263
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10264
|
+
name: z.ZodString;
|
|
10264
10265
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10265
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10266
10266
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10267
10267
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10268
10268
|
}, z.core.$strip>;
|
|
10269
10269
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10270
|
-
|
|
10270
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10271
10271
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10272
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10272
10273
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10273
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10274
10274
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10275
10275
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10276
10276
|
}, z.core.$strip>;
|
|
10277
10277
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10278
|
-
|
|
10278
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10279
10279
|
id: z.ZodString;
|
|
10280
10280
|
createdAt: z.ZodString;
|
|
10281
|
+
name: z.ZodString;
|
|
10281
10282
|
updatedAt: z.ZodString;
|
|
10282
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10283
10283
|
isActive: z.ZodBoolean;
|
|
10284
10284
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10285
10285
|
}, z.core.$strip>;
|
|
@@ -12436,11 +12436,11 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12436
12436
|
id: z.ZodString;
|
|
12437
12437
|
}>, z.core.$strip>;
|
|
12438
12438
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12439
|
-
|
|
12440
|
-
name: z.ZodString;
|
|
12439
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12441
12440
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12441
|
+
name: z.ZodString;
|
|
12442
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12442
12443
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12443
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12444
12444
|
model: z.ZodType<{
|
|
12445
12445
|
model?: string | undefined;
|
|
12446
12446
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12458,11 +12458,11 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12458
12458
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12459
12459
|
}, z.core.$strip>;
|
|
12460
12460
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12461
|
-
|
|
12462
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12461
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12463
12462
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12463
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12464
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12464
12465
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12465
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12466
12466
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12467
12467
|
model?: string | undefined;
|
|
12468
12468
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12733,13 +12733,13 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12733
12733
|
id: z.ZodString;
|
|
12734
12734
|
}>, z.core.$strip>;
|
|
12735
12735
|
declare const DatasetApiInsertSchema: z.ZodObject<{
|
|
12736
|
-
name: z.ZodString;
|
|
12737
12736
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12737
|
+
name: z.ZodString;
|
|
12738
12738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12739
12739
|
}, z.core.$strip>;
|
|
12740
12740
|
declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
12741
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12742
12741
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12742
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12743
12743
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12744
12744
|
}, z.core.$strip>;
|
|
12745
12745
|
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -13279,8 +13279,8 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13279
13279
|
id: z.ZodString;
|
|
13280
13280
|
}>, z.core.$strip>;
|
|
13281
13281
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13282
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13283
13282
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13283
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13284
13284
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13285
13285
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13286
13286
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -13326,8 +13326,8 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
13326
13326
|
}>>>>;
|
|
13327
13327
|
}, z.core.$strip>;
|
|
13328
13328
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13329
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13330
13329
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13330
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13331
13331
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13332
13332
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13333
13333
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -13373,8 +13373,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13373
13373
|
}>>>>>>;
|
|
13374
13374
|
}, z.core.$strip>;
|
|
13375
13375
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13376
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13377
13376
|
id: z.ZodOptional<z.ZodString>;
|
|
13377
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13378
13378
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13379
13379
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13380
13380
|
prompt: string;
|
|
@@ -13422,8 +13422,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13422
13422
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13423
13423
|
datasetRunId: z.ZodString;
|
|
13424
13424
|
items: z.ZodArray<z.ZodObject<{
|
|
13425
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13426
13425
|
id: z.ZodOptional<z.ZodString>;
|
|
13426
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13427
13427
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13428
13428
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13429
13429
|
prompt: string;
|
|
@@ -13833,17 +13833,17 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13833
13833
|
id: z.ZodString;
|
|
13834
13834
|
}>, z.core.$strip>;
|
|
13835
13835
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13836
|
-
|
|
13836
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13837
13837
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13838
|
+
name: z.ZodString;
|
|
13838
13839
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13839
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13840
13840
|
datasetId: z.ZodString;
|
|
13841
13841
|
}, z.core.$strip>;
|
|
13842
13842
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13843
|
-
|
|
13843
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13844
13844
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13845
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13845
13846
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13846
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13847
13847
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13848
13848
|
}, z.core.$strip>;
|
|
13849
13849
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14151,22 +14151,22 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
14151
14151
|
in: {};
|
|
14152
14152
|
}>;
|
|
14153
14153
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
14154
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14155
|
-
name: z.ZodString;
|
|
14156
|
-
tenantId: z.ZodString;
|
|
14157
|
-
projectId: z.ZodString;
|
|
14158
14154
|
description: z.ZodString;
|
|
14155
|
+
tenantId: z.ZodString;
|
|
14156
|
+
name: z.ZodString;
|
|
14157
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14159
14158
|
content: z.ZodString;
|
|
14159
|
+
projectId: z.ZodString;
|
|
14160
14160
|
}, {
|
|
14161
14161
|
out: {};
|
|
14162
14162
|
in: {};
|
|
14163
14163
|
}>;
|
|
14164
14164
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
14165
|
-
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
14166
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
14167
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
14168
14165
|
description: z.ZodOptional<z.ZodString>;
|
|
14166
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
14167
|
+
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
14169
14168
|
content: z.ZodOptional<z.ZodString>;
|
|
14169
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
14170
14170
|
}, {
|
|
14171
14171
|
out: {};
|
|
14172
14172
|
in: {};
|
|
@@ -14183,16 +14183,16 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14183
14183
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14184
14184
|
}>, z.core.$strip>;
|
|
14185
14185
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
14186
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14187
|
-
name: z.ZodString;
|
|
14188
|
-
tenantId: z.ZodString;
|
|
14189
|
-
projectId: z.ZodString;
|
|
14190
14186
|
description: z.ZodString;
|
|
14187
|
+
tenantId: z.ZodString;
|
|
14188
|
+
name: z.ZodString;
|
|
14189
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
14191
14190
|
content: z.ZodString;
|
|
14191
|
+
projectId: z.ZodString;
|
|
14192
14192
|
}>, z.core.$strip>;
|
|
14193
14193
|
declare const SkillApiUpdateSchema: z.ZodObject<{
|
|
14194
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
14195
14194
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14195
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
14196
14196
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14197
14197
|
}, z.core.$strip>;
|
|
14198
14198
|
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -14569,11 +14569,11 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14569
14569
|
}>;
|
|
14570
14570
|
}, undefined>, undefined>;
|
|
14571
14571
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
14572
|
-
|
|
14572
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14573
14573
|
id: z.ZodString;
|
|
14574
14574
|
tenantId: z.ZodString;
|
|
14575
|
+
name: z.ZodString;
|
|
14575
14576
|
projectId: z.ZodString;
|
|
14576
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14577
14577
|
props: z.ZodType<{
|
|
14578
14578
|
[x: string]: unknown;
|
|
14579
14579
|
type: "object";
|
|
@@ -14621,11 +14621,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
14621
14621
|
in: {};
|
|
14622
14622
|
}>;
|
|
14623
14623
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
14624
|
-
|
|
14624
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14625
14625
|
id: z.ZodOptional<z.ZodString>;
|
|
14626
14626
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14627
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14627
14628
|
projectId: z.ZodOptional<z.ZodString>;
|
|
14628
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14629
14629
|
props: z.ZodOptional<z.ZodType<{
|
|
14630
14630
|
[x: string]: unknown;
|
|
14631
14631
|
type: "object";
|
|
@@ -15302,7 +15302,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15302
15302
|
}, {}, {
|
|
15303
15303
|
length: 256;
|
|
15304
15304
|
}>;
|
|
15305
|
-
}, "id" | "
|
|
15305
|
+
}, "id" | "tenantId" | "createdAt" | "agentId" | "projectId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
15306
15306
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15307
15307
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15308
15308
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15899,11 +15899,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15899
15899
|
in: {};
|
|
15900
15900
|
}>;
|
|
15901
15901
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15902
|
-
|
|
15902
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15903
15903
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15904
15904
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15905
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15905
15906
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15906
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15907
15907
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15908
15908
|
[x: string]: unknown;
|
|
15909
15909
|
type: "object";
|
|
@@ -16319,9 +16319,9 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
16319
16319
|
declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
|
|
16320
16320
|
agentId: z.ZodString;
|
|
16321
16321
|
subAgentId: z.ZodString;
|
|
16322
|
-
skillId: z.ZodString;
|
|
16323
16322
|
index: z.ZodInt;
|
|
16324
16323
|
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16324
|
+
skillId: z.ZodString;
|
|
16325
16325
|
}, {
|
|
16326
16326
|
out: {};
|
|
16327
16327
|
in: {};
|
|
@@ -16331,18 +16331,18 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
16331
16331
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16332
16332
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16333
16333
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16334
|
-
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16335
16334
|
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
16336
16335
|
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
16336
|
+
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16337
16337
|
}, z.core.$strip>;
|
|
16338
16338
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
16339
|
-
|
|
16340
|
-
name: z.ZodString;
|
|
16339
|
+
description: z.ZodString;
|
|
16341
16340
|
id: z.ZodString;
|
|
16342
16341
|
createdAt: z.ZodString;
|
|
16343
|
-
|
|
16344
|
-
|
|
16342
|
+
name: z.ZodString;
|
|
16343
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16345
16344
|
content: z.ZodString;
|
|
16345
|
+
updatedAt: z.ZodString;
|
|
16346
16346
|
subAgentSkillId: z.ZodString;
|
|
16347
16347
|
subAgentId: z.ZodString;
|
|
16348
16348
|
index: z.ZodInt;
|
|
@@ -16363,11 +16363,11 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
16363
16363
|
in: {};
|
|
16364
16364
|
}>;
|
|
16365
16365
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
16366
|
-
|
|
16366
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16367
16367
|
id: z.ZodString;
|
|
16368
16368
|
tenantId: z.ZodString;
|
|
16369
|
+
name: z.ZodString;
|
|
16369
16370
|
projectId: z.ZodString;
|
|
16370
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16371
16371
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16372
16372
|
baseUrl: z.ZodURL;
|
|
16373
16373
|
}, {
|
|
@@ -16375,11 +16375,11 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16375
16375
|
in: {};
|
|
16376
16376
|
}>;
|
|
16377
16377
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
16378
|
-
|
|
16378
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16379
16379
|
id: z.ZodOptional<z.ZodString>;
|
|
16380
16380
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16381
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16381
16382
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16382
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16383
16383
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16384
16384
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16385
16385
|
}, {
|
|
@@ -16398,27 +16398,27 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16398
16398
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16399
16399
|
}>, z.core.$strip>;
|
|
16400
16400
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16401
|
-
|
|
16401
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16402
16402
|
id: z.ZodString;
|
|
16403
16403
|
tenantId: z.ZodString;
|
|
16404
|
+
name: z.ZodString;
|
|
16404
16405
|
projectId: z.ZodString;
|
|
16405
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16406
16406
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16407
16407
|
baseUrl: z.ZodURL;
|
|
16408
16408
|
}>, z.core.$strip>;
|
|
16409
16409
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16410
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16411
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16412
16410
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16411
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16412
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16413
16413
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16414
16414
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16415
16415
|
}, z.core.$strip>;
|
|
16416
16416
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16417
|
-
|
|
16417
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16418
16418
|
id: z.ZodString;
|
|
16419
16419
|
createdAt: z.ZodString;
|
|
16420
|
+
name: z.ZodString;
|
|
16420
16421
|
updatedAt: z.ZodString;
|
|
16421
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16422
16422
|
models: z.ZodNullable<z.ZodType<{
|
|
16423
16423
|
base?: {
|
|
16424
16424
|
model?: string | undefined;
|
|
@@ -16472,6 +16472,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16472
16472
|
providerOptions?: Record<string, any> | undefined;
|
|
16473
16473
|
} | undefined;
|
|
16474
16474
|
}>>>;
|
|
16475
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16475
16476
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
16476
16477
|
stepCountIs?: number | undefined;
|
|
16477
16478
|
}, {
|
|
@@ -16481,15 +16482,14 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16481
16482
|
}, {
|
|
16482
16483
|
stepCountIs?: number | undefined;
|
|
16483
16484
|
}>>>;
|
|
16484
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16485
16485
|
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16486
16486
|
type: z.ZodLiteral<"internal">;
|
|
16487
16487
|
}, z.core.$strip>, z.ZodObject<{
|
|
16488
|
-
|
|
16488
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16489
16489
|
id: z.ZodString;
|
|
16490
16490
|
createdAt: z.ZodString;
|
|
16491
|
+
name: z.ZodString;
|
|
16491
16492
|
updatedAt: z.ZodString;
|
|
16492
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16493
16493
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16494
16494
|
baseUrl: z.ZodString;
|
|
16495
16495
|
type: z.ZodLiteral<"external">;
|
|
@@ -16956,23 +16956,23 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16956
16956
|
}>;
|
|
16957
16957
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16958
16958
|
name: z.ZodOptional<z.ZodString>;
|
|
16959
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16960
16959
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16961
16960
|
agentId: z.ZodOptional<z.ZodString>;
|
|
16961
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16962
16962
|
}, {
|
|
16963
16963
|
out: {};
|
|
16964
16964
|
in: {};
|
|
16965
16965
|
}>;
|
|
16966
16966
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16967
|
-
name: z.ZodNullable<z.ZodString>;
|
|
16968
16967
|
id: z.ZodString;
|
|
16969
16968
|
createdAt: z.ZodString;
|
|
16970
|
-
|
|
16969
|
+
name: z.ZodNullable<z.ZodString>;
|
|
16971
16970
|
updatedAt: z.ZodString;
|
|
16972
16971
|
agentId: z.ZodString;
|
|
16972
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16973
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16973
16974
|
publicId: z.ZodString;
|
|
16974
16975
|
keyPrefix: z.ZodString;
|
|
16975
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16976
16976
|
}, {
|
|
16977
16977
|
out: {};
|
|
16978
16978
|
in: {};
|
|
@@ -16980,15 +16980,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
16980
16980
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
16981
16981
|
data: z.ZodObject<{
|
|
16982
16982
|
apiKey: z.ZodObject<{
|
|
16983
|
-
name: z.ZodNullable<z.ZodString>;
|
|
16984
16983
|
id: z.ZodString;
|
|
16985
16984
|
createdAt: z.ZodString;
|
|
16986
|
-
|
|
16985
|
+
name: z.ZodNullable<z.ZodString>;
|
|
16987
16986
|
updatedAt: z.ZodString;
|
|
16988
16987
|
agentId: z.ZodString;
|
|
16988
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16989
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16989
16990
|
publicId: z.ZodString;
|
|
16990
16991
|
keyPrefix: z.ZodString;
|
|
16991
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
16992
16992
|
}, {
|
|
16993
16993
|
out: {};
|
|
16994
16994
|
in: {};
|
|
@@ -16997,20 +16997,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16997
16997
|
}, z.core.$strip>;
|
|
16998
16998
|
}, z.core.$strip>;
|
|
16999
16999
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
17000
|
-
name: z.ZodString;
|
|
17001
17000
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17002
|
-
|
|
17001
|
+
name: z.ZodString;
|
|
17003
17002
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17004
17003
|
agentId: z.ZodString;
|
|
17004
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17005
17005
|
}, {
|
|
17006
17006
|
out: {};
|
|
17007
17007
|
in: {};
|
|
17008
17008
|
}>;
|
|
17009
17009
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
17010
17010
|
name: z.ZodOptional<z.ZodString>;
|
|
17011
|
-
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17012
17011
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17013
17012
|
agentId: z.ZodOptional<z.ZodString>;
|
|
17013
|
+
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17014
17014
|
}, {
|
|
17015
17015
|
out: {};
|
|
17016
17016
|
in: {};
|
|
@@ -17591,12 +17591,12 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
17591
17591
|
in: {};
|
|
17592
17592
|
}>;
|
|
17593
17593
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
17594
|
-
|
|
17594
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17595
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17595
17596
|
name: z.ZodOptional<z.ZodString>;
|
|
17596
17597
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17597
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17598
17598
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17599
|
-
|
|
17599
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17600
17600
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17601
17601
|
type: z.ZodLiteral<"web_client">;
|
|
17602
17602
|
webClient: z.ZodObject<{
|
|
@@ -17606,9 +17606,9 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
17606
17606
|
type: z.ZodLiteral<"api">;
|
|
17607
17607
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
17608
17608
|
}, z.core.$strip>], "type">>;
|
|
17609
|
-
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17610
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17611
17609
|
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17610
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17611
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17612
17612
|
}, {
|
|
17613
17613
|
out: {};
|
|
17614
17614
|
in: {};
|
|
@@ -18125,18 +18125,18 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18125
18125
|
}, {}, {}>;
|
|
18126
18126
|
}, undefined>, undefined>;
|
|
18127
18127
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18128
|
-
enabled: z.ZodBoolean;
|
|
18129
18128
|
type: z.ZodString;
|
|
18130
|
-
|
|
18129
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18131
18130
|
id: z.ZodString;
|
|
18131
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18132
18132
|
createdAt: z.ZodString;
|
|
18133
|
+
name: z.ZodString;
|
|
18133
18134
|
updatedAt: z.ZodString;
|
|
18134
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18135
18135
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18136
|
-
|
|
18137
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18138
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18136
|
+
enabled: z.ZodBoolean;
|
|
18139
18137
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
18138
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18139
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18140
18140
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18141
18141
|
type: z.ZodLiteral<"web_client">;
|
|
18142
18142
|
webClient: z.ZodObject<{
|
|
@@ -18151,17 +18151,17 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18151
18151
|
in: {};
|
|
18152
18152
|
}>;
|
|
18153
18153
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18154
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18155
18154
|
type: z.ZodEnum<{
|
|
18156
18155
|
web_client: "web_client";
|
|
18157
18156
|
api: "api";
|
|
18158
18157
|
}>;
|
|
18159
|
-
|
|
18158
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18159
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18160
18160
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18161
|
+
name: z.ZodString;
|
|
18161
18162
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18162
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18163
18163
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18164
|
-
|
|
18164
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18165
18165
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18166
18166
|
type: z.ZodLiteral<"web_client">;
|
|
18167
18167
|
webClient: z.ZodObject<{
|
|
@@ -18171,19 +18171,19 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18171
18171
|
type: z.ZodLiteral<"api">;
|
|
18172
18172
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
18173
18173
|
}, z.core.$strip>], "type">;
|
|
18174
|
-
defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18175
18174
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18175
|
+
defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18176
18176
|
}, {
|
|
18177
18177
|
out: {};
|
|
18178
18178
|
in: {};
|
|
18179
18179
|
}>;
|
|
18180
18180
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
18181
|
-
|
|
18181
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18182
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18182
18183
|
name: z.ZodOptional<z.ZodString>;
|
|
18183
18184
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18184
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18185
18185
|
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18186
|
-
|
|
18186
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18187
18187
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18188
18188
|
type: z.ZodLiteral<"web_client">;
|
|
18189
18189
|
webClient: z.ZodObject<{
|
|
@@ -18193,9 +18193,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18193
18193
|
type: z.ZodLiteral<"api">;
|
|
18194
18194
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
18195
18195
|
}, z.core.$strip>], "type">>;
|
|
18196
|
-
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18197
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18198
18196
|
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18197
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18198
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18199
18199
|
}, {
|
|
18200
18200
|
out: {};
|
|
18201
18201
|
in: {};
|
|
@@ -18203,18 +18203,18 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18203
18203
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18204
18204
|
data: z.ZodObject<{
|
|
18205
18205
|
app: z.ZodObject<{
|
|
18206
|
-
enabled: z.ZodBoolean;
|
|
18207
18206
|
type: z.ZodString;
|
|
18208
|
-
|
|
18207
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18209
18208
|
id: z.ZodString;
|
|
18209
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
18210
18210
|
createdAt: z.ZodString;
|
|
18211
|
+
name: z.ZodString;
|
|
18211
18212
|
updatedAt: z.ZodString;
|
|
18212
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
18213
18213
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18214
|
-
|
|
18215
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18216
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18214
|
+
enabled: z.ZodBoolean;
|
|
18217
18215
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
18216
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
18217
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18218
18218
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18219
18219
|
type: z.ZodLiteral<"web_client">;
|
|
18220
18220
|
webClient: z.ZodObject<{
|
|
@@ -18683,44 +18683,44 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
18683
18683
|
}, undefined>, undefined>;
|
|
18684
18684
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
18685
18685
|
type: z.ZodString;
|
|
18686
|
-
name: z.ZodString;
|
|
18687
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18688
18686
|
id: z.ZodString;
|
|
18689
18687
|
tenantId: z.ZodString;
|
|
18688
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18689
|
+
name: z.ZodString;
|
|
18690
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18690
18691
|
projectId: z.ZodString;
|
|
18691
18692
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18692
18693
|
credentialStoreId: z.ZodString;
|
|
18693
18694
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18694
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18695
18695
|
}, {
|
|
18696
18696
|
out: {};
|
|
18697
18697
|
in: {};
|
|
18698
18698
|
}>;
|
|
18699
18699
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
18700
18700
|
type: z.ZodOptional<z.ZodString>;
|
|
18701
|
-
name: z.ZodOptional<z.ZodString>;
|
|
18702
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18703
18701
|
id: z.ZodOptional<z.ZodString>;
|
|
18704
18702
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18703
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18704
|
+
name: z.ZodOptional<z.ZodString>;
|
|
18705
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18705
18706
|
projectId: z.ZodOptional<z.ZodString>;
|
|
18706
18707
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18707
18708
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
18708
18709
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
18709
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18710
18710
|
}, {
|
|
18711
18711
|
out: {};
|
|
18712
18712
|
in: {};
|
|
18713
18713
|
}>;
|
|
18714
18714
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
18715
|
-
name: z.ZodString;
|
|
18716
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
18717
18715
|
id: z.ZodString;
|
|
18718
18716
|
createdAt: z.ZodString;
|
|
18717
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
18718
|
+
name: z.ZodString;
|
|
18719
18719
|
updatedAt: z.ZodString;
|
|
18720
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
18720
18721
|
toolId: z.ZodNullable<z.ZodString>;
|
|
18721
18722
|
credentialStoreId: z.ZodString;
|
|
18722
18723
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
18723
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
18724
18724
|
type: z.ZodEnum<{
|
|
18725
18725
|
readonly memory: "memory";
|
|
18726
18726
|
readonly keychain: "keychain";
|
|
@@ -19304,13 +19304,13 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19304
19304
|
}>>>;
|
|
19305
19305
|
}, z.core.$strip>;
|
|
19306
19306
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
19307
|
+
id: z.ZodString;
|
|
19308
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19307
19309
|
name: z.ZodString;
|
|
19308
19310
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19309
|
-
id: z.ZodString;
|
|
19310
19311
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19311
19312
|
credentialStoreId: z.ZodString;
|
|
19312
19313
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19313
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19314
19314
|
type: z.ZodEnum<{
|
|
19315
19315
|
readonly memory: "memory";
|
|
19316
19316
|
readonly keychain: "keychain";
|
|
@@ -19319,13 +19319,13 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19319
19319
|
}>;
|
|
19320
19320
|
}, z.core.$strip>;
|
|
19321
19321
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
19322
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19323
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19322
19324
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19323
19325
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19324
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19325
19326
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19326
19327
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19327
19328
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19328
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19329
19329
|
type: z.ZodOptional<z.ZodEnum<{
|
|
19330
19330
|
readonly memory: "memory";
|
|
19331
19331
|
readonly keychain: "keychain";
|
|
@@ -19390,12 +19390,11 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
19390
19390
|
error_description: z.ZodOptional<z.ZodString>;
|
|
19391
19391
|
}, z.core.$strip>;
|
|
19392
19392
|
declare const McpToolSchema: z.ZodObject<{
|
|
19393
|
-
|
|
19394
|
-
name: z.ZodString;
|
|
19393
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19395
19394
|
id: z.ZodString;
|
|
19396
19395
|
tenantId: z.ZodString;
|
|
19396
|
+
name: z.ZodString;
|
|
19397
19397
|
projectId: z.ZodString;
|
|
19398
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19399
19398
|
config: z.ZodObject<{
|
|
19400
19399
|
type: z.ZodLiteral<"mcp">;
|
|
19401
19400
|
mcp: z.ZodObject<{
|
|
@@ -19424,6 +19423,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19424
19423
|
}, z.core.$strip>;
|
|
19425
19424
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19426
19425
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19426
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
19427
19427
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19428
19428
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19429
19429
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19449,16 +19449,16 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19449
19449
|
in: {};
|
|
19450
19450
|
}>;
|
|
19451
19451
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
19452
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
19453
|
-
name: z.ZodString;
|
|
19454
19452
|
id: z.ZodString;
|
|
19453
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
19454
|
+
name: z.ZodString;
|
|
19455
19455
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19456
19456
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19457
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
19457
19458
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19458
19459
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19459
19460
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19460
19461
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19461
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
19462
19462
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19463
19463
|
name: z.ZodString;
|
|
19464
19464
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19485,13 +19485,13 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19485
19485
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
19486
19486
|
}, z.core.$strip>>;
|
|
19487
19487
|
credential: z.ZodOptional<z.ZodObject<{
|
|
19488
|
+
id: z.ZodString;
|
|
19489
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19488
19490
|
name: z.ZodString;
|
|
19489
19491
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19490
|
-
id: z.ZodString;
|
|
19491
19492
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19492
19493
|
credentialStoreId: z.ZodString;
|
|
19493
19494
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19494
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19495
19495
|
type: z.ZodEnum<{
|
|
19496
19496
|
readonly memory: "memory";
|
|
19497
19497
|
readonly keychain: "keychain";
|
|
@@ -19511,12 +19511,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19511
19511
|
in: {};
|
|
19512
19512
|
}>;
|
|
19513
19513
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
19514
|
-
|
|
19515
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19514
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19516
19515
|
id: z.ZodOptional<z.ZodString>;
|
|
19517
19516
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19517
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19518
19518
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19519
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19520
19519
|
config: z.ZodOptional<z.ZodObject<{
|
|
19521
19520
|
type: z.ZodLiteral<"mcp">;
|
|
19522
19521
|
mcp: z.ZodObject<{
|
|
@@ -19545,6 +19544,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19545
19544
|
}, z.core.$strip>>;
|
|
19546
19545
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19547
19546
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19547
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
|
|
19548
19548
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19549
19549
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
19550
19550
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -19583,12 +19583,11 @@ declare const ToolApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
19583
19583
|
id: z.ZodString;
|
|
19584
19584
|
}>, z.core.$strip>;
|
|
19585
19585
|
declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
19586
|
-
|
|
19587
|
-
name: z.ZodString;
|
|
19586
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19588
19587
|
id: z.ZodString;
|
|
19589
19588
|
tenantId: z.ZodString;
|
|
19589
|
+
name: z.ZodString;
|
|
19590
19590
|
projectId: z.ZodString;
|
|
19591
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19592
19591
|
config: z.ZodObject<{
|
|
19593
19592
|
type: z.ZodLiteral<"mcp">;
|
|
19594
19593
|
mcp: z.ZodObject<{
|
|
@@ -19617,16 +19616,16 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
19617
19616
|
}, z.core.$strip>;
|
|
19618
19617
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19619
19618
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19619
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
19620
19620
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19621
19621
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19622
19622
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19623
19623
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19624
19624
|
}>, z.core.$strip>;
|
|
19625
19625
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
19626
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19627
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19628
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19629
19626
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19627
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19628
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19630
19629
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
19631
19630
|
type: z.ZodLiteral<"mcp">;
|
|
19632
19631
|
mcp: z.ZodObject<{
|
|
@@ -19655,6 +19654,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
19655
19654
|
}, z.core.$strip>>>;
|
|
19656
19655
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19657
19656
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19657
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19658
19658
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19659
19659
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
19660
19660
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -19994,53 +19994,53 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19994
19994
|
}>;
|
|
19995
19995
|
}, undefined>, undefined>;
|
|
19996
19996
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
19997
|
-
|
|
19997
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19998
19998
|
id: z.ZodString;
|
|
19999
19999
|
tenantId: z.ZodString;
|
|
20000
|
-
|
|
20000
|
+
name: z.ZodString;
|
|
20001
20001
|
agentId: z.ZodString;
|
|
20002
|
-
|
|
20002
|
+
projectId: z.ZodString;
|
|
20003
20003
|
functionId: z.ZodString;
|
|
20004
20004
|
}, {
|
|
20005
20005
|
out: {};
|
|
20006
20006
|
in: {};
|
|
20007
20007
|
}>;
|
|
20008
20008
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
20009
|
-
|
|
20009
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20010
20010
|
id: z.ZodOptional<z.ZodString>;
|
|
20011
20011
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20012
|
-
|
|
20012
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20013
20013
|
agentId: z.ZodOptional<z.ZodString>;
|
|
20014
|
-
|
|
20014
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20015
20015
|
functionId: z.ZodOptional<z.ZodString>;
|
|
20016
20016
|
}, {
|
|
20017
20017
|
out: {};
|
|
20018
20018
|
in: {};
|
|
20019
20019
|
}>;
|
|
20020
20020
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
20021
|
-
|
|
20021
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20022
20022
|
id: z.ZodString;
|
|
20023
20023
|
createdAt: z.ZodString;
|
|
20024
|
+
name: z.ZodString;
|
|
20024
20025
|
updatedAt: z.ZodString;
|
|
20025
20026
|
agentId: z.ZodString;
|
|
20026
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20027
20027
|
functionId: z.ZodString;
|
|
20028
20028
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20029
20029
|
}, z.core.$strip>;
|
|
20030
20030
|
declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
20031
|
-
|
|
20031
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20032
20032
|
id: z.ZodString;
|
|
20033
20033
|
tenantId: z.ZodString;
|
|
20034
|
-
|
|
20034
|
+
name: z.ZodString;
|
|
20035
20035
|
agentId: z.ZodString;
|
|
20036
|
-
|
|
20036
|
+
projectId: z.ZodString;
|
|
20037
20037
|
functionId: z.ZodString;
|
|
20038
20038
|
}>, z.core.$strip>;
|
|
20039
20039
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
20040
|
-
|
|
20040
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20041
20041
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20042
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20042
20043
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20043
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20044
20044
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20045
20045
|
}, z.core.$strip>;
|
|
20046
20046
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -20806,13 +20806,13 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
20806
20806
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
20807
20807
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
20808
20808
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20809
|
+
id: z.ZodString;
|
|
20810
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20809
20811
|
name: z.ZodString;
|
|
20810
20812
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20811
|
-
id: z.ZodString;
|
|
20812
20813
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20813
20814
|
credentialStoreId: z.ZodString;
|
|
20814
20815
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20815
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20816
20816
|
type: z.ZodEnum<{
|
|
20817
20817
|
readonly memory: "memory";
|
|
20818
20818
|
readonly keychain: "keychain";
|
|
@@ -20837,10 +20837,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
20837
20837
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
20838
20838
|
id: z.ZodOptional<z.ZodString>;
|
|
20839
20839
|
tenantId: z.ZodString;
|
|
20840
|
-
projectId: z.ZodString;
|
|
20841
|
-
agentId: z.ZodString;
|
|
20842
20840
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
20843
20841
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
20842
|
+
agentId: z.ZodString;
|
|
20843
|
+
projectId: z.ZodString;
|
|
20844
20844
|
}, {
|
|
20845
20845
|
out: {};
|
|
20846
20846
|
in: {};
|
|
@@ -20848,10 +20848,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
20848
20848
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
20849
20849
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20850
20850
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20851
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20852
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
20853
20851
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
20854
20852
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
20853
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
20854
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20855
20855
|
}, {
|
|
20856
20856
|
out: {};
|
|
20857
20857
|
in: {};
|
|
@@ -21359,16 +21359,16 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21359
21359
|
}, z.core.$strip>>>>;
|
|
21360
21360
|
}>, z.core.$strip>;
|
|
21361
21361
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21362
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21363
21362
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21364
21363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21365
21364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21366
21365
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21367
21366
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21368
|
-
|
|
21367
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21369
21368
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21370
21369
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21371
21370
|
}, z.core.$strip>>>>>>;
|
|
21371
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21372
21372
|
}, z.core.$strip>;
|
|
21373
21373
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21374
21374
|
createdAt: drizzle_orm_pg_core873.PgColumn<{
|
|
@@ -21747,17 +21747,17 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
21747
21747
|
id: z.ZodString;
|
|
21748
21748
|
}>, z.core.$strip>;
|
|
21749
21749
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
21750
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21751
21750
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21752
21751
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21752
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21753
21753
|
externalAgentId: z.ZodString;
|
|
21754
21754
|
}, z.core.$strip>;
|
|
21755
21755
|
declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
21756
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21757
21756
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21758
21757
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21759
21758
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21760
21759
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21760
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21761
21761
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21762
21762
|
}, z.core.$strip>;
|
|
21763
21763
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -22137,17 +22137,17 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
22137
22137
|
id: z.ZodString;
|
|
22138
22138
|
}>, z.core.$strip>;
|
|
22139
22139
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
22140
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22141
22140
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22142
22141
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22142
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22143
22143
|
targetAgentId: z.ZodString;
|
|
22144
22144
|
}, z.core.$strip>;
|
|
22145
22145
|
declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
22146
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22147
22146
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22148
22147
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22149
22148
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22150
22149
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22150
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22151
22151
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22152
22152
|
}, z.core.$strip>;
|
|
22153
22153
|
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -23491,7 +23491,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
23491
23491
|
}, {}, {
|
|
23492
23492
|
length: 256;
|
|
23493
23493
|
}>;
|
|
23494
|
-
}, "
|
|
23494
|
+
}, "type" | "description" | "id" | "tenantId" | "createdAt" | "name" | "metadata" | "updatedAt" | "projectId" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23495
23495
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23496
23496
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23497
23497
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23556,13 +23556,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
23556
23556
|
id: z.ZodString;
|
|
23557
23557
|
}>, z.core.$strip>;
|
|
23558
23558
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23559
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23560
23559
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23561
|
-
|
|
23560
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23562
23561
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23563
23562
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23563
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23564
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23564
23565
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23565
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23566
23566
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23567
23567
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23568
23568
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23636,11 +23636,11 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
23636
23636
|
description: z.ZodString;
|
|
23637
23637
|
}, z.core.$strip>;
|
|
23638
23638
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
23639
|
-
|
|
23639
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23640
23640
|
id: z.ZodString;
|
|
23641
23641
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23642
|
+
name: z.ZodString;
|
|
23642
23643
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23643
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23644
23644
|
models: z.ZodOptional<z.ZodObject<{
|
|
23645
23645
|
base: z.ZodOptional<z.ZodObject<{
|
|
23646
23646
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23689,17 +23689,17 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
23689
23689
|
}, z.core.$strip>>;
|
|
23690
23690
|
}, z.core.$strip>;
|
|
23691
23691
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
23692
|
-
name: z.ZodString;
|
|
23693
|
-
id: z.ZodString;
|
|
23694
23692
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23693
|
+
id: z.ZodString;
|
|
23694
|
+
name: z.ZodString;
|
|
23695
23695
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23696
23696
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23697
23697
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23698
|
-
|
|
23698
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23699
23699
|
id: z.ZodString;
|
|
23700
23700
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23701
|
+
name: z.ZodString;
|
|
23701
23702
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23702
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23703
23703
|
models: z.ZodOptional<z.ZodObject<{
|
|
23704
23704
|
base: z.ZodOptional<z.ZodObject<{
|
|
23705
23705
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23748,12 +23748,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23748
23748
|
}, z.core.$strip>>;
|
|
23749
23749
|
}, z.core.$strip>>;
|
|
23750
23750
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
23751
|
-
|
|
23752
|
-
name: z.ZodString;
|
|
23751
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23753
23752
|
id: z.ZodString;
|
|
23754
23753
|
tenantId: z.ZodString;
|
|
23754
|
+
name: z.ZodString;
|
|
23755
23755
|
projectId: z.ZodString;
|
|
23756
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23757
23756
|
config: z.ZodObject<{
|
|
23758
23757
|
type: z.ZodLiteral<"mcp">;
|
|
23759
23758
|
mcp: z.ZodObject<{
|
|
@@ -23782,17 +23781,18 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23782
23781
|
}, z.core.$strip>;
|
|
23783
23782
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23784
23783
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
23784
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
23785
23785
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
23786
23786
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
23787
23787
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23788
23788
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
23789
23789
|
}>, z.core.$strip>>>;
|
|
23790
23790
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
23791
|
-
|
|
23791
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23792
23792
|
id: z.ZodString;
|
|
23793
23793
|
tenantId: z.ZodString;
|
|
23794
|
+
name: z.ZodString;
|
|
23794
23795
|
projectId: z.ZodString;
|
|
23795
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23796
23796
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23797
23797
|
baseUrl: z.ZodURL;
|
|
23798
23798
|
}>, z.core.$strip>>>;
|
|
@@ -23802,12 +23802,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23802
23802
|
description: z.ZodString;
|
|
23803
23803
|
}, z.core.$strip>>>;
|
|
23804
23804
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
23805
|
-
|
|
23805
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23806
23806
|
id: z.ZodString;
|
|
23807
23807
|
tenantId: z.ZodString;
|
|
23808
|
-
|
|
23808
|
+
name: z.ZodString;
|
|
23809
23809
|
agentId: z.ZodString;
|
|
23810
|
-
|
|
23810
|
+
projectId: z.ZodString;
|
|
23811
23811
|
functionId: z.ZodString;
|
|
23812
23812
|
}>, z.core.$strip>>>;
|
|
23813
23813
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -23817,11 +23817,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23817
23817
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
23818
23818
|
}, z.core.$strip>>>;
|
|
23819
23819
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23820
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23821
|
-
name: z.ZodString;
|
|
23822
|
-
id: z.ZodOptional<z.ZodString>;
|
|
23823
23820
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23821
|
+
id: z.ZodOptional<z.ZodString>;
|
|
23824
23822
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23823
|
+
name: z.ZodString;
|
|
23824
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23825
23825
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23826
23826
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23827
23827
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23831,10 +23831,10 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23831
23831
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23832
23832
|
}, z.core.$strip>>>;
|
|
23833
23833
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23834
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23835
|
-
name: z.ZodString;
|
|
23836
23834
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23837
23835
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23836
|
+
name: z.ZodString;
|
|
23837
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23838
23838
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23839
23839
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23840
23840
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23945,10 +23945,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
23945
23945
|
in: {};
|
|
23946
23946
|
}>;
|
|
23947
23947
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
23948
|
-
|
|
23948
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23949
23949
|
id: z.ZodString;
|
|
23950
23950
|
tenantId: z.ZodString;
|
|
23951
|
-
|
|
23951
|
+
name: z.ZodString;
|
|
23952
23952
|
models: z.ZodObject<{
|
|
23953
23953
|
base: z.ZodObject<{
|
|
23954
23954
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23972,8 +23972,8 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
23972
23972
|
in: {};
|
|
23973
23973
|
}>;
|
|
23974
23974
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
23975
|
-
name: z.ZodOptional<z.ZodString>;
|
|
23976
23975
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23976
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23977
23977
|
models: z.ZodOptional<z.ZodObject<{
|
|
23978
23978
|
base: z.ZodObject<{
|
|
23979
23979
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23997,11 +23997,11 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
23997
23997
|
in: {};
|
|
23998
23998
|
}>;
|
|
23999
23999
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
24000
|
-
|
|
24000
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24001
24001
|
id: z.ZodString;
|
|
24002
24002
|
createdAt: z.ZodString;
|
|
24003
|
+
name: z.ZodString;
|
|
24003
24004
|
updatedAt: z.ZodString;
|
|
24004
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24005
24005
|
models: z.ZodNullable<z.ZodObject<{
|
|
24006
24006
|
base: z.ZodObject<{
|
|
24007
24007
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24025,9 +24025,9 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
24025
24025
|
in: {};
|
|
24026
24026
|
}>;
|
|
24027
24027
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
24028
|
-
name: z.ZodString;
|
|
24029
|
-
id: z.ZodString;
|
|
24030
24028
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24029
|
+
id: z.ZodString;
|
|
24030
|
+
name: z.ZodString;
|
|
24031
24031
|
models: z.ZodObject<{
|
|
24032
24032
|
base: z.ZodObject<{
|
|
24033
24033
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24051,8 +24051,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
24051
24051
|
in: {};
|
|
24052
24052
|
}>;
|
|
24053
24053
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
24054
|
-
name: z.ZodOptional<z.ZodString>;
|
|
24055
24054
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24055
|
+
name: z.ZodOptional<z.ZodString>;
|
|
24056
24056
|
models: z.ZodOptional<z.ZodObject<{
|
|
24057
24057
|
base: z.ZodObject<{
|
|
24058
24058
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24076,9 +24076,9 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
24076
24076
|
in: {};
|
|
24077
24077
|
}>;
|
|
24078
24078
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
24079
|
-
name: z.ZodString;
|
|
24080
|
-
id: z.ZodString;
|
|
24081
24079
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24080
|
+
id: z.ZodString;
|
|
24081
|
+
name: z.ZodString;
|
|
24082
24082
|
models: z.ZodObject<{
|
|
24083
24083
|
base: z.ZodObject<{
|
|
24084
24084
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24098,17 +24098,17 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24098
24098
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24099
24099
|
}, z.core.$strip>>;
|
|
24100
24100
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24101
|
-
name: z.ZodString;
|
|
24102
|
-
id: z.ZodString;
|
|
24103
24101
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24102
|
+
id: z.ZodString;
|
|
24103
|
+
name: z.ZodString;
|
|
24104
24104
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24105
24105
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24106
24106
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24107
|
-
|
|
24107
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24108
24108
|
id: z.ZodString;
|
|
24109
24109
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24110
|
+
name: z.ZodString;
|
|
24110
24111
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24111
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24112
24112
|
models: z.ZodOptional<z.ZodObject<{
|
|
24113
24113
|
base: z.ZodOptional<z.ZodObject<{
|
|
24114
24114
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24157,12 +24157,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24157
24157
|
}, z.core.$strip>>;
|
|
24158
24158
|
}, z.core.$strip>>;
|
|
24159
24159
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24160
|
-
|
|
24161
|
-
name: z.ZodString;
|
|
24160
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24162
24161
|
id: z.ZodString;
|
|
24163
24162
|
tenantId: z.ZodString;
|
|
24163
|
+
name: z.ZodString;
|
|
24164
24164
|
projectId: z.ZodString;
|
|
24165
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24166
24165
|
config: z.ZodObject<{
|
|
24167
24166
|
type: z.ZodLiteral<"mcp">;
|
|
24168
24167
|
mcp: z.ZodObject<{
|
|
@@ -24191,17 +24190,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24191
24190
|
}, z.core.$strip>;
|
|
24192
24191
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24193
24192
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24193
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
24194
24194
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24195
24195
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24196
24196
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24197
24197
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24198
24198
|
}>, z.core.$strip>>>;
|
|
24199
24199
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24200
|
-
|
|
24200
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24201
24201
|
id: z.ZodString;
|
|
24202
24202
|
tenantId: z.ZodString;
|
|
24203
|
+
name: z.ZodString;
|
|
24203
24204
|
projectId: z.ZodString;
|
|
24204
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24205
24205
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24206
24206
|
baseUrl: z.ZodURL;
|
|
24207
24207
|
}>, z.core.$strip>>>;
|
|
@@ -24211,12 +24211,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24211
24211
|
description: z.ZodString;
|
|
24212
24212
|
}, z.core.$strip>>>;
|
|
24213
24213
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
24214
|
-
|
|
24214
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24215
24215
|
id: z.ZodString;
|
|
24216
24216
|
tenantId: z.ZodString;
|
|
24217
|
-
|
|
24217
|
+
name: z.ZodString;
|
|
24218
24218
|
agentId: z.ZodString;
|
|
24219
|
-
|
|
24219
|
+
projectId: z.ZodString;
|
|
24220
24220
|
functionId: z.ZodString;
|
|
24221
24221
|
}>, z.core.$strip>>>;
|
|
24222
24222
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24226,11 +24226,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24226
24226
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
24227
24227
|
}, z.core.$strip>>>;
|
|
24228
24228
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24229
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24230
|
-
name: z.ZodString;
|
|
24231
|
-
id: z.ZodOptional<z.ZodString>;
|
|
24232
24229
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24230
|
+
id: z.ZodOptional<z.ZodString>;
|
|
24233
24231
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24232
|
+
name: z.ZodString;
|
|
24233
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24234
24234
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24235
24235
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24236
24236
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24240,10 +24240,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24240
24240
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24241
24241
|
}, z.core.$strip>>>;
|
|
24242
24242
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24243
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24244
|
-
name: z.ZodString;
|
|
24245
24243
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24246
24244
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24245
|
+
name: z.ZodString;
|
|
24246
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24247
24247
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24248
24248
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24249
24249
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24295,12 +24295,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24295
24295
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24296
24296
|
}, z.core.$strip>>;
|
|
24297
24297
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24298
|
-
|
|
24299
|
-
name: z.ZodString;
|
|
24298
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24300
24299
|
id: z.ZodString;
|
|
24301
24300
|
tenantId: z.ZodString;
|
|
24301
|
+
name: z.ZodString;
|
|
24302
24302
|
projectId: z.ZodString;
|
|
24303
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24304
24303
|
config: z.ZodObject<{
|
|
24305
24304
|
type: z.ZodLiteral<"mcp">;
|
|
24306
24305
|
mcp: z.ZodObject<{
|
|
@@ -24329,18 +24328,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24329
24328
|
}, z.core.$strip>;
|
|
24330
24329
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24331
24330
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24331
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
24332
24332
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24333
24333
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
24334
24334
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24335
24335
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
24336
24336
|
}>, z.core.$strip>>;
|
|
24337
24337
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
24338
|
-
|
|
24338
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24339
24339
|
id: z.ZodString;
|
|
24340
24340
|
tenantId: z.ZodString;
|
|
24341
|
-
|
|
24341
|
+
name: z.ZodString;
|
|
24342
24342
|
agentId: z.ZodString;
|
|
24343
|
-
|
|
24343
|
+
projectId: z.ZodString;
|
|
24344
24344
|
functionId: z.ZodString;
|
|
24345
24345
|
}>, z.core.$strip>>>;
|
|
24346
24346
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -24350,12 +24350,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24350
24350
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
24351
24351
|
}, z.core.$strip>>>;
|
|
24352
24352
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24353
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
24354
|
-
name: z.ZodString;
|
|
24355
|
-
tenantId: z.ZodString;
|
|
24356
|
-
projectId: z.ZodString;
|
|
24357
24353
|
description: z.ZodString;
|
|
24354
|
+
tenantId: z.ZodString;
|
|
24355
|
+
name: z.ZodString;
|
|
24356
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
24358
24357
|
content: z.ZodString;
|
|
24358
|
+
projectId: z.ZodString;
|
|
24359
24359
|
}>, z.core.$strip>>>;
|
|
24360
24360
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24361
24361
|
id: z.ZodString;
|
|
@@ -24411,11 +24411,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24411
24411
|
in: {};
|
|
24412
24412
|
}>>>;
|
|
24413
24413
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24414
|
-
|
|
24414
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24415
24415
|
id: z.ZodString;
|
|
24416
24416
|
tenantId: z.ZodString;
|
|
24417
|
+
name: z.ZodString;
|
|
24417
24418
|
projectId: z.ZodString;
|
|
24418
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24419
24419
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24420
24420
|
baseUrl: z.ZodURL;
|
|
24421
24421
|
}>, z.core.$strip>>>;
|
|
@@ -24435,13 +24435,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24435
24435
|
}, z.core.$strip>>>;
|
|
24436
24436
|
}, z.core.$strip>>;
|
|
24437
24437
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24438
|
+
id: z.ZodString;
|
|
24439
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24438
24440
|
name: z.ZodString;
|
|
24439
24441
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24440
|
-
id: z.ZodString;
|
|
24441
24442
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24442
24443
|
credentialStoreId: z.ZodString;
|
|
24443
24444
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24444
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24445
24445
|
type: z.ZodEnum<{
|
|
24446
24446
|
readonly memory: "memory";
|
|
24447
24447
|
readonly keychain: "keychain";
|
|
@@ -24456,11 +24456,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24456
24456
|
in: {};
|
|
24457
24457
|
}>;
|
|
24458
24458
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
24459
|
-
|
|
24459
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24460
24460
|
id: z.ZodString;
|
|
24461
24461
|
createdAt: z.ZodString;
|
|
24462
|
+
name: z.ZodString;
|
|
24462
24463
|
updatedAt: z.ZodString;
|
|
24463
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24464
24464
|
models: z.ZodNullable<z.ZodType<{
|
|
24465
24465
|
base?: {
|
|
24466
24466
|
model?: string | undefined;
|
|
@@ -24549,11 +24549,11 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
24549
24549
|
}, z.core.$strip>]>>>;
|
|
24550
24550
|
}, z.core.$strip>;
|
|
24551
24551
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24552
|
-
|
|
24552
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24553
24553
|
id: z.ZodString;
|
|
24554
24554
|
createdAt: z.ZodString;
|
|
24555
|
+
name: z.ZodString;
|
|
24555
24556
|
updatedAt: z.ZodString;
|
|
24556
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24557
24557
|
models: z.ZodNullable<z.ZodType<{
|
|
24558
24558
|
base?: {
|
|
24559
24559
|
model?: string | undefined;
|
|
@@ -24648,19 +24648,19 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24648
24648
|
}, z.core.$strip>]>>>;
|
|
24649
24649
|
}, z.core.$strip>;
|
|
24650
24650
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
24651
|
-
|
|
24651
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24652
24652
|
id: z.ZodString;
|
|
24653
24653
|
createdAt: z.ZodString;
|
|
24654
|
+
name: z.ZodString;
|
|
24654
24655
|
updatedAt: z.ZodString;
|
|
24655
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24656
24656
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24657
24657
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24658
24658
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24659
|
-
|
|
24659
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24660
24660
|
id: z.ZodString;
|
|
24661
24661
|
createdAt: z.ZodString;
|
|
24662
|
+
name: z.ZodString;
|
|
24662
24663
|
updatedAt: z.ZodString;
|
|
24663
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24664
24664
|
models: z.ZodNullable<z.ZodType<{
|
|
24665
24665
|
base?: {
|
|
24666
24666
|
model?: string | undefined;
|
|
@@ -24794,12 +24794,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24794
24794
|
description: z.ZodString;
|
|
24795
24795
|
}, z.core.$strip>>>;
|
|
24796
24796
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24797
|
-
|
|
24797
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24798
24798
|
id: z.ZodString;
|
|
24799
24799
|
createdAt: z.ZodString;
|
|
24800
|
+
name: z.ZodString;
|
|
24800
24801
|
updatedAt: z.ZodString;
|
|
24801
24802
|
agentId: z.ZodString;
|
|
24802
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24803
24803
|
functionId: z.ZodString;
|
|
24804
24804
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24805
24805
|
}, z.core.$strip>>>;
|
|
@@ -24876,11 +24876,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24876
24876
|
prompt: z.ZodNullable<z.ZodString>;
|
|
24877
24877
|
}, z.core.$strip>;
|
|
24878
24878
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24879
|
-
|
|
24879
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24880
24880
|
id: z.ZodString;
|
|
24881
24881
|
createdAt: z.ZodString;
|
|
24882
|
+
name: z.ZodString;
|
|
24882
24883
|
updatedAt: z.ZodString;
|
|
24883
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24884
24884
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24885
24885
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24886
24886
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -24929,12 +24929,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24929
24929
|
description: z.ZodString;
|
|
24930
24930
|
}, z.core.$strip>>>;
|
|
24931
24931
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24932
|
-
|
|
24932
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24933
24933
|
id: z.ZodString;
|
|
24934
24934
|
createdAt: z.ZodString;
|
|
24935
|
+
name: z.ZodString;
|
|
24935
24936
|
updatedAt: z.ZodString;
|
|
24936
24937
|
agentId: z.ZodString;
|
|
24937
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24938
24938
|
functionId: z.ZodString;
|
|
24939
24939
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24940
24940
|
}, z.core.$strip>>>;
|
|
@@ -25010,11 +25010,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25010
25010
|
}, z.core.$strip>>;
|
|
25011
25011
|
prompt: z.ZodNullable<z.ZodString>;
|
|
25012
25012
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25013
|
-
|
|
25013
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25014
25014
|
id: z.ZodString;
|
|
25015
25015
|
createdAt: z.ZodString;
|
|
25016
|
+
name: z.ZodString;
|
|
25016
25017
|
updatedAt: z.ZodString;
|
|
25017
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25018
25018
|
models: z.ZodNullable<z.ZodType<{
|
|
25019
25019
|
base?: {
|
|
25020
25020
|
model?: string | undefined;
|
|
@@ -25110,11 +25110,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25110
25110
|
}, z.core.$strip>>;
|
|
25111
25111
|
}, z.core.$strip>;
|
|
25112
25112
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
25113
|
-
|
|
25113
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25114
25114
|
id: z.ZodString;
|
|
25115
25115
|
createdAt: z.ZodString;
|
|
25116
|
+
name: z.ZodString;
|
|
25116
25117
|
updatedAt: z.ZodString;
|
|
25117
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25118
25118
|
models: z.ZodNullable<z.ZodObject<{
|
|
25119
25119
|
base: z.ZodObject<{
|
|
25120
25120
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25134,19 +25134,19 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25134
25134
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25135
25135
|
}, z.core.$strip>>;
|
|
25136
25136
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25137
|
-
|
|
25137
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25138
25138
|
id: z.ZodString;
|
|
25139
25139
|
createdAt: z.ZodString;
|
|
25140
|
+
name: z.ZodString;
|
|
25140
25141
|
updatedAt: z.ZodString;
|
|
25141
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25142
25142
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25143
25143
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25144
25144
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25145
|
-
|
|
25145
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25146
25146
|
id: z.ZodString;
|
|
25147
25147
|
createdAt: z.ZodString;
|
|
25148
|
+
name: z.ZodString;
|
|
25148
25149
|
updatedAt: z.ZodString;
|
|
25149
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25150
25150
|
models: z.ZodNullable<z.ZodType<{
|
|
25151
25151
|
base?: {
|
|
25152
25152
|
model?: string | undefined;
|
|
@@ -25280,12 +25280,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25280
25280
|
description: z.ZodString;
|
|
25281
25281
|
}, z.core.$strip>>>;
|
|
25282
25282
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25283
|
-
|
|
25283
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25284
25284
|
id: z.ZodString;
|
|
25285
25285
|
createdAt: z.ZodString;
|
|
25286
|
+
name: z.ZodString;
|
|
25286
25287
|
updatedAt: z.ZodString;
|
|
25287
25288
|
agentId: z.ZodString;
|
|
25288
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25289
25289
|
functionId: z.ZodString;
|
|
25290
25290
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25291
25291
|
}, z.core.$strip>>>;
|
|
@@ -25391,12 +25391,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25391
25391
|
id: z.ZodString;
|
|
25392
25392
|
}>, z.core.$strip>>;
|
|
25393
25393
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25394
|
-
|
|
25394
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25395
25395
|
id: z.ZodString;
|
|
25396
25396
|
createdAt: z.ZodString;
|
|
25397
|
+
name: z.ZodString;
|
|
25397
25398
|
updatedAt: z.ZodString;
|
|
25398
25399
|
agentId: z.ZodString;
|
|
25399
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25400
25400
|
functionId: z.ZodString;
|
|
25401
25401
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25402
25402
|
}, z.core.$strip>>>;
|
|
@@ -25539,15 +25539,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25539
25539
|
}, z.core.$strip>>>;
|
|
25540
25540
|
}, z.core.$strip>>;
|
|
25541
25541
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25542
|
-
name: z.ZodString;
|
|
25543
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
25544
25542
|
id: z.ZodString;
|
|
25545
25543
|
createdAt: z.ZodString;
|
|
25544
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
25545
|
+
name: z.ZodString;
|
|
25546
25546
|
updatedAt: z.ZodString;
|
|
25547
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
25547
25548
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25548
25549
|
credentialStoreId: z.ZodString;
|
|
25549
25550
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25550
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
25551
25551
|
type: z.ZodEnum<{
|
|
25552
25552
|
readonly memory: "memory";
|
|
25553
25553
|
readonly keychain: "keychain";
|
|
@@ -26135,11 +26135,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26135
26135
|
in: {};
|
|
26136
26136
|
}>;
|
|
26137
26137
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26138
|
-
|
|
26138
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26139
26139
|
id: z.ZodString;
|
|
26140
26140
|
createdAt: z.ZodString;
|
|
26141
|
+
name: z.ZodString;
|
|
26141
26142
|
updatedAt: z.ZodString;
|
|
26142
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26143
26143
|
models: z.ZodNullable<z.ZodObject<{
|
|
26144
26144
|
base: z.ZodObject<{
|
|
26145
26145
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26188,12 +26188,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26188
26188
|
id: z.ZodString;
|
|
26189
26189
|
}>, z.core.$strip>>;
|
|
26190
26190
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26191
|
-
|
|
26191
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26192
26192
|
id: z.ZodString;
|
|
26193
26193
|
createdAt: z.ZodString;
|
|
26194
|
+
name: z.ZodString;
|
|
26194
26195
|
updatedAt: z.ZodString;
|
|
26195
26196
|
agentId: z.ZodString;
|
|
26196
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26197
26197
|
functionId: z.ZodString;
|
|
26198
26198
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26199
26199
|
}, z.core.$strip>>>;
|
|
@@ -26336,15 +26336,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26336
26336
|
}, z.core.$strip>>>;
|
|
26337
26337
|
}, z.core.$strip>>;
|
|
26338
26338
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26339
|
-
name: z.ZodString;
|
|
26340
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26341
26339
|
id: z.ZodString;
|
|
26342
26340
|
createdAt: z.ZodString;
|
|
26341
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26342
|
+
name: z.ZodString;
|
|
26343
26343
|
updatedAt: z.ZodString;
|
|
26344
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26344
26345
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26345
26346
|
credentialStoreId: z.ZodString;
|
|
26346
26347
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26347
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26348
26348
|
type: z.ZodEnum<{
|
|
26349
26349
|
readonly memory: "memory";
|
|
26350
26350
|
readonly keychain: "keychain";
|
|
@@ -26928,11 +26928,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26928
26928
|
}>>>;
|
|
26929
26929
|
}, z.core.$strip>>>;
|
|
26930
26930
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26931
|
-
|
|
26931
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26932
26932
|
id: z.ZodString;
|
|
26933
26933
|
createdAt: z.ZodString;
|
|
26934
|
+
name: z.ZodString;
|
|
26934
26935
|
updatedAt: z.ZodString;
|
|
26935
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26936
26936
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26937
26937
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26938
26938
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -26981,12 +26981,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26981
26981
|
description: z.ZodString;
|
|
26982
26982
|
}, z.core.$strip>>>;
|
|
26983
26983
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26984
|
-
|
|
26984
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26985
26985
|
id: z.ZodString;
|
|
26986
26986
|
createdAt: z.ZodString;
|
|
26987
|
+
name: z.ZodString;
|
|
26987
26988
|
updatedAt: z.ZodString;
|
|
26988
26989
|
agentId: z.ZodString;
|
|
26989
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26990
26990
|
functionId: z.ZodString;
|
|
26991
26991
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26992
26992
|
}, z.core.$strip>>>;
|
|
@@ -27062,11 +27062,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27062
27062
|
}, z.core.$strip>>;
|
|
27063
27063
|
prompt: z.ZodNullable<z.ZodString>;
|
|
27064
27064
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27065
|
-
|
|
27065
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27066
27066
|
id: z.ZodString;
|
|
27067
27067
|
createdAt: z.ZodString;
|
|
27068
|
+
name: z.ZodString;
|
|
27068
27069
|
updatedAt: z.ZodString;
|
|
27069
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27070
27070
|
models: z.ZodNullable<z.ZodType<{
|
|
27071
27071
|
base?: {
|
|
27072
27072
|
model?: string | undefined;
|
|
@@ -27167,11 +27167,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27167
27167
|
}>;
|
|
27168
27168
|
declare const ProjectResponse: z.ZodObject<{
|
|
27169
27169
|
data: z.ZodObject<{
|
|
27170
|
-
|
|
27170
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27171
27171
|
id: z.ZodString;
|
|
27172
27172
|
createdAt: z.ZodString;
|
|
27173
|
+
name: z.ZodString;
|
|
27173
27174
|
updatedAt: z.ZodString;
|
|
27174
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27175
27175
|
models: z.ZodNullable<z.ZodObject<{
|
|
27176
27176
|
base: z.ZodObject<{
|
|
27177
27177
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27428,15 +27428,15 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
27428
27428
|
}, z.core.$strip>;
|
|
27429
27429
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
27430
27430
|
data: z.ZodObject<{
|
|
27431
|
-
name: z.ZodNullable<z.ZodString>;
|
|
27432
27431
|
id: z.ZodString;
|
|
27433
27432
|
createdAt: z.ZodString;
|
|
27434
|
-
|
|
27433
|
+
name: z.ZodNullable<z.ZodString>;
|
|
27435
27434
|
updatedAt: z.ZodString;
|
|
27436
27435
|
agentId: z.ZodString;
|
|
27436
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
27437
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
27437
27438
|
publicId: z.ZodString;
|
|
27438
27439
|
keyPrefix: z.ZodString;
|
|
27439
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
27440
27440
|
}, {
|
|
27441
27441
|
out: {};
|
|
27442
27442
|
in: {};
|
|
@@ -27444,15 +27444,15 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
27444
27444
|
}, z.core.$strip>;
|
|
27445
27445
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
27446
27446
|
data: z.ZodObject<{
|
|
27447
|
-
name: z.ZodString;
|
|
27448
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27449
27447
|
id: z.ZodString;
|
|
27450
27448
|
createdAt: z.ZodString;
|
|
27449
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27450
|
+
name: z.ZodString;
|
|
27451
27451
|
updatedAt: z.ZodString;
|
|
27452
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27452
27453
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27453
27454
|
credentialStoreId: z.ZodString;
|
|
27454
27455
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27455
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27456
27456
|
type: z.ZodEnum<{
|
|
27457
27457
|
readonly memory: "memory";
|
|
27458
27458
|
readonly keychain: "keychain";
|
|
@@ -28050,12 +28050,12 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28050
28050
|
}, z.core.$strip>;
|
|
28051
28051
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
28052
28052
|
data: z.ZodObject<{
|
|
28053
|
-
|
|
28053
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28054
28054
|
id: z.ZodString;
|
|
28055
28055
|
createdAt: z.ZodString;
|
|
28056
|
+
name: z.ZodString;
|
|
28056
28057
|
updatedAt: z.ZodString;
|
|
28057
28058
|
agentId: z.ZodString;
|
|
28058
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28059
28059
|
functionId: z.ZodString;
|
|
28060
28060
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28061
28061
|
}, z.core.$strip>;
|
|
@@ -28237,9 +28237,9 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28237
28237
|
}>;
|
|
28238
28238
|
signature: z.ZodObject<{
|
|
28239
28239
|
source: z.ZodEnum<{
|
|
28240
|
-
body: "body";
|
|
28241
28240
|
query: "query";
|
|
28242
28241
|
header: "header";
|
|
28242
|
+
body: "body";
|
|
28243
28243
|
}>;
|
|
28244
28244
|
key: z.ZodString;
|
|
28245
28245
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28248,8 +28248,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28248
28248
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28249
28249
|
source: z.ZodEnum<{
|
|
28250
28250
|
literal: "literal";
|
|
28251
|
-
body: "body";
|
|
28252
28251
|
header: "header";
|
|
28252
|
+
body: "body";
|
|
28253
28253
|
}>;
|
|
28254
28254
|
key: z.ZodOptional<z.ZodString>;
|
|
28255
28255
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28298,11 +28298,11 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
28298
28298
|
}, z.core.$strip>;
|
|
28299
28299
|
declare const ProjectListResponse: z.ZodObject<{
|
|
28300
28300
|
data: z.ZodArray<z.ZodObject<{
|
|
28301
|
-
|
|
28301
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28302
28302
|
id: z.ZodString;
|
|
28303
28303
|
createdAt: z.ZodString;
|
|
28304
|
+
name: z.ZodString;
|
|
28304
28305
|
updatedAt: z.ZodString;
|
|
28305
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28306
28306
|
models: z.ZodNullable<z.ZodObject<{
|
|
28307
28307
|
base: z.ZodObject<{
|
|
28308
28308
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28589,15 +28589,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
28589
28589
|
}, z.core.$strip>;
|
|
28590
28590
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
28591
28591
|
data: z.ZodArray<z.ZodObject<{
|
|
28592
|
-
name: z.ZodNullable<z.ZodString>;
|
|
28593
28592
|
id: z.ZodString;
|
|
28594
28593
|
createdAt: z.ZodString;
|
|
28595
|
-
|
|
28594
|
+
name: z.ZodNullable<z.ZodString>;
|
|
28596
28595
|
updatedAt: z.ZodString;
|
|
28597
28596
|
agentId: z.ZodString;
|
|
28597
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28598
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28598
28599
|
publicId: z.ZodString;
|
|
28599
28600
|
keyPrefix: z.ZodString;
|
|
28600
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28601
28601
|
}, {
|
|
28602
28602
|
out: {};
|
|
28603
28603
|
in: {};
|
|
@@ -28611,18 +28611,18 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
28611
28611
|
}, z.core.$strip>;
|
|
28612
28612
|
declare const AppResponse: z.ZodObject<{
|
|
28613
28613
|
data: z.ZodObject<{
|
|
28614
|
-
enabled: z.ZodBoolean;
|
|
28615
28614
|
type: z.ZodString;
|
|
28616
|
-
|
|
28615
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28617
28616
|
id: z.ZodString;
|
|
28617
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
28618
28618
|
createdAt: z.ZodString;
|
|
28619
|
+
name: z.ZodString;
|
|
28619
28620
|
updatedAt: z.ZodString;
|
|
28620
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
28621
28621
|
projectId: z.ZodNullable<z.ZodString>;
|
|
28622
|
-
|
|
28623
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28624
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28622
|
+
enabled: z.ZodBoolean;
|
|
28625
28623
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
28624
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28625
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28626
28626
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28627
28627
|
type: z.ZodLiteral<"web_client">;
|
|
28628
28628
|
webClient: z.ZodObject<{
|
|
@@ -28639,18 +28639,18 @@ declare const AppResponse: z.ZodObject<{
|
|
|
28639
28639
|
}, z.core.$strip>;
|
|
28640
28640
|
declare const AppListResponse: z.ZodObject<{
|
|
28641
28641
|
data: z.ZodArray<z.ZodObject<{
|
|
28642
|
-
enabled: z.ZodBoolean;
|
|
28643
28642
|
type: z.ZodString;
|
|
28644
|
-
|
|
28643
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28645
28644
|
id: z.ZodString;
|
|
28645
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
28646
28646
|
createdAt: z.ZodString;
|
|
28647
|
+
name: z.ZodString;
|
|
28647
28648
|
updatedAt: z.ZodString;
|
|
28648
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
28649
28649
|
projectId: z.ZodNullable<z.ZodString>;
|
|
28650
|
-
|
|
28651
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28652
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28650
|
+
enabled: z.ZodBoolean;
|
|
28653
28651
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
28652
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28653
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28654
28654
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28655
28655
|
type: z.ZodLiteral<"web_client">;
|
|
28656
28656
|
webClient: z.ZodObject<{
|
|
@@ -28673,15 +28673,15 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
28673
28673
|
}, z.core.$strip>;
|
|
28674
28674
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
28675
28675
|
data: z.ZodArray<z.ZodObject<{
|
|
28676
|
-
name: z.ZodString;
|
|
28677
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28678
28676
|
id: z.ZodString;
|
|
28679
28677
|
createdAt: z.ZodString;
|
|
28678
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28679
|
+
name: z.ZodString;
|
|
28680
28680
|
updatedAt: z.ZodString;
|
|
28681
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28681
28682
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28682
28683
|
credentialStoreId: z.ZodString;
|
|
28683
28684
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28684
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28685
28685
|
type: z.ZodEnum<{
|
|
28686
28686
|
readonly memory: "memory";
|
|
28687
28687
|
readonly keychain: "keychain";
|
|
@@ -29291,12 +29291,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
29291
29291
|
}, z.core.$strip>;
|
|
29292
29292
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
29293
29293
|
data: z.ZodArray<z.ZodObject<{
|
|
29294
|
-
|
|
29294
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29295
29295
|
id: z.ZodString;
|
|
29296
29296
|
createdAt: z.ZodString;
|
|
29297
|
+
name: z.ZodString;
|
|
29297
29298
|
updatedAt: z.ZodString;
|
|
29298
29299
|
agentId: z.ZodString;
|
|
29299
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29300
29300
|
functionId: z.ZodString;
|
|
29301
29301
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29302
29302
|
}, z.core.$strip>>;
|
|
@@ -29546,9 +29546,9 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29546
29546
|
}>;
|
|
29547
29547
|
signature: z.ZodObject<{
|
|
29548
29548
|
source: z.ZodEnum<{
|
|
29549
|
-
body: "body";
|
|
29550
29549
|
query: "query";
|
|
29551
29550
|
header: "header";
|
|
29551
|
+
body: "body";
|
|
29552
29552
|
}>;
|
|
29553
29553
|
key: z.ZodString;
|
|
29554
29554
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29557,8 +29557,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29557
29557
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29558
29558
|
source: z.ZodEnum<{
|
|
29559
29559
|
literal: "literal";
|
|
29560
|
-
body: "body";
|
|
29561
29560
|
header: "header";
|
|
29561
|
+
body: "body";
|
|
29562
29562
|
}>;
|
|
29563
29563
|
key: z.ZodOptional<z.ZodString>;
|
|
29564
29564
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29619,13 +29619,13 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
29619
29619
|
}, z.core.$strip>;
|
|
29620
29620
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
29621
29621
|
data: z.ZodObject<{
|
|
29622
|
-
|
|
29623
|
-
name: z.ZodString;
|
|
29622
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29624
29623
|
id: z.ZodString;
|
|
29625
29624
|
createdAt: z.ZodString;
|
|
29626
|
-
updatedAt: z.ZodString;
|
|
29627
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29628
29625
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29626
|
+
name: z.ZodString;
|
|
29627
|
+
updatedAt: z.ZodString;
|
|
29628
|
+
enabled: z.ZodBoolean;
|
|
29629
29629
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29630
29630
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29631
29631
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29645,9 +29645,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29645
29645
|
}>;
|
|
29646
29646
|
signature: z.ZodObject<{
|
|
29647
29647
|
source: z.ZodEnum<{
|
|
29648
|
-
body: "body";
|
|
29649
29648
|
query: "query";
|
|
29650
29649
|
header: "header";
|
|
29650
|
+
body: "body";
|
|
29651
29651
|
}>;
|
|
29652
29652
|
key: z.ZodString;
|
|
29653
29653
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29656,8 +29656,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29656
29656
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29657
29657
|
source: z.ZodEnum<{
|
|
29658
29658
|
literal: "literal";
|
|
29659
|
-
body: "body";
|
|
29660
29659
|
header: "header";
|
|
29660
|
+
body: "body";
|
|
29661
29661
|
}>;
|
|
29662
29662
|
key: z.ZodOptional<z.ZodString>;
|
|
29663
29663
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29682,13 +29682,13 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29682
29682
|
}, z.core.$strip>;
|
|
29683
29683
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
29684
29684
|
data: z.ZodObject<{
|
|
29685
|
-
|
|
29686
|
-
name: z.ZodString;
|
|
29685
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29687
29686
|
id: z.ZodString;
|
|
29688
29687
|
createdAt: z.ZodString;
|
|
29689
|
-
updatedAt: z.ZodString;
|
|
29690
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29691
29688
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29689
|
+
name: z.ZodString;
|
|
29690
|
+
updatedAt: z.ZodString;
|
|
29691
|
+
enabled: z.ZodBoolean;
|
|
29692
29692
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29693
29693
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29694
29694
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29708,9 +29708,9 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29708
29708
|
}>;
|
|
29709
29709
|
signature: z.ZodObject<{
|
|
29710
29710
|
source: z.ZodEnum<{
|
|
29711
|
-
body: "body";
|
|
29712
29711
|
query: "query";
|
|
29713
29712
|
header: "header";
|
|
29713
|
+
body: "body";
|
|
29714
29714
|
}>;
|
|
29715
29715
|
key: z.ZodString;
|
|
29716
29716
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29719,8 +29719,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29719
29719
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29720
29720
|
source: z.ZodEnum<{
|
|
29721
29721
|
literal: "literal";
|
|
29722
|
-
body: "body";
|
|
29723
29722
|
header: "header";
|
|
29723
|
+
body: "body";
|
|
29724
29724
|
}>;
|
|
29725
29725
|
key: z.ZodOptional<z.ZodString>;
|
|
29726
29726
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29746,13 +29746,13 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29746
29746
|
}, z.core.$strip>;
|
|
29747
29747
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
29748
29748
|
data: z.ZodArray<z.ZodObject<{
|
|
29749
|
-
|
|
29750
|
-
name: z.ZodString;
|
|
29749
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29751
29750
|
id: z.ZodString;
|
|
29752
29751
|
createdAt: z.ZodString;
|
|
29753
|
-
updatedAt: z.ZodString;
|
|
29754
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29755
29752
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29753
|
+
name: z.ZodString;
|
|
29754
|
+
updatedAt: z.ZodString;
|
|
29755
|
+
enabled: z.ZodBoolean;
|
|
29756
29756
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29757
29757
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29758
29758
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -29772,9 +29772,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
29772
29772
|
}>;
|
|
29773
29773
|
signature: z.ZodObject<{
|
|
29774
29774
|
source: z.ZodEnum<{
|
|
29775
|
-
body: "body";
|
|
29776
29775
|
query: "query";
|
|
29777
29776
|
header: "header";
|
|
29777
|
+
body: "body";
|
|
29778
29778
|
}>;
|
|
29779
29779
|
key: z.ZodString;
|
|
29780
29780
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29783,8 +29783,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
29783
29783
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29784
29784
|
source: z.ZodEnum<{
|
|
29785
29785
|
literal: "literal";
|
|
29786
|
-
body: "body";
|
|
29787
29786
|
header: "header";
|
|
29787
|
+
body: "body";
|
|
29788
29788
|
}>;
|
|
29789
29789
|
key: z.ZodOptional<z.ZodString>;
|
|
29790
29790
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29814,13 +29814,13 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
29814
29814
|
}, z.core.$strip>;
|
|
29815
29815
|
}, z.core.$strip>;
|
|
29816
29816
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
29817
|
-
|
|
29818
|
-
name: z.ZodString;
|
|
29817
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29819
29818
|
id: z.ZodString;
|
|
29820
29819
|
createdAt: z.ZodString;
|
|
29821
|
-
updatedAt: z.ZodString;
|
|
29822
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29823
29820
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29821
|
+
name: z.ZodString;
|
|
29822
|
+
updatedAt: z.ZodString;
|
|
29823
|
+
enabled: z.ZodBoolean;
|
|
29824
29824
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29825
29825
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
29826
29826
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
@@ -29832,8 +29832,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
29832
29832
|
timeoutSeconds: z.ZodNumber;
|
|
29833
29833
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
29834
29834
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
29835
|
-
failed: "failed";
|
|
29836
29835
|
completed: "completed";
|
|
29836
|
+
failed: "failed";
|
|
29837
29837
|
}>>;
|
|
29838
29838
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
29839
29839
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -29893,13 +29893,13 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
29893
29893
|
}, z.core.$strip>;
|
|
29894
29894
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
29895
29895
|
data: z.ZodArray<z.ZodObject<{
|
|
29896
|
-
|
|
29897
|
-
name: z.ZodString;
|
|
29896
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29898
29897
|
id: z.ZodString;
|
|
29899
29898
|
createdAt: z.ZodString;
|
|
29900
|
-
updatedAt: z.ZodString;
|
|
29901
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29902
29899
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29900
|
+
name: z.ZodString;
|
|
29901
|
+
updatedAt: z.ZodString;
|
|
29902
|
+
enabled: z.ZodBoolean;
|
|
29903
29903
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29904
29904
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
29905
29905
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
@@ -29911,8 +29911,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
29911
29911
|
timeoutSeconds: z.ZodNumber;
|
|
29912
29912
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
29913
29913
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
29914
|
-
failed: "failed";
|
|
29915
29914
|
completed: "completed";
|
|
29915
|
+
failed: "failed";
|
|
29916
29916
|
}>>;
|
|
29917
29917
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
29918
29918
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -29950,9 +29950,9 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
29950
29950
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
29951
29951
|
status: z.ZodEnum<{
|
|
29952
29952
|
pending: "pending";
|
|
29953
|
-
failed: "failed";
|
|
29954
29953
|
running: "running";
|
|
29955
29954
|
completed: "completed";
|
|
29955
|
+
failed: "failed";
|
|
29956
29956
|
cancelled: "cancelled";
|
|
29957
29957
|
}>;
|
|
29958
29958
|
}>, z.core.$strip>;
|
|
@@ -29983,9 +29983,9 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
29983
29983
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
29984
29984
|
status: z.ZodEnum<{
|
|
29985
29985
|
pending: "pending";
|
|
29986
|
-
failed: "failed";
|
|
29987
29986
|
running: "running";
|
|
29988
29987
|
completed: "completed";
|
|
29988
|
+
failed: "failed";
|
|
29989
29989
|
cancelled: "cancelled";
|
|
29990
29990
|
}>;
|
|
29991
29991
|
}>, z.core.$strip>>;
|
|
@@ -30070,13 +30070,13 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
30070
30070
|
}, z.core.$strip>;
|
|
30071
30071
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
30072
30072
|
data: z.ZodArray<z.ZodObject<{
|
|
30073
|
-
|
|
30074
|
-
name: z.ZodString;
|
|
30073
|
+
description: z.ZodString;
|
|
30075
30074
|
id: z.ZodString;
|
|
30076
30075
|
createdAt: z.ZodString;
|
|
30077
|
-
|
|
30078
|
-
|
|
30076
|
+
name: z.ZodString;
|
|
30077
|
+
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
30079
30078
|
content: z.ZodString;
|
|
30079
|
+
updatedAt: z.ZodString;
|
|
30080
30080
|
subAgentSkillId: z.ZodString;
|
|
30081
30081
|
subAgentId: z.ZodString;
|
|
30082
30082
|
index: z.ZodInt;
|
|
@@ -30085,9 +30085,9 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
30085
30085
|
}, z.core.$strip>;
|
|
30086
30086
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
30087
30087
|
data: z.ZodObject<{
|
|
30088
|
-
name: z.ZodString;
|
|
30089
|
-
id: z.ZodString;
|
|
30090
30088
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30089
|
+
id: z.ZodString;
|
|
30090
|
+
name: z.ZodString;
|
|
30091
30091
|
models: z.ZodObject<{
|
|
30092
30092
|
base: z.ZodObject<{
|
|
30093
30093
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30107,17 +30107,17 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30107
30107
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
30108
30108
|
}, z.core.$strip>>;
|
|
30109
30109
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30110
|
-
name: z.ZodString;
|
|
30111
|
-
id: z.ZodString;
|
|
30112
30110
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30111
|
+
id: z.ZodString;
|
|
30112
|
+
name: z.ZodString;
|
|
30113
30113
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30114
30114
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30115
30115
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30116
|
-
|
|
30116
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30117
30117
|
id: z.ZodString;
|
|
30118
30118
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30119
|
+
name: z.ZodString;
|
|
30119
30120
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30120
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30121
30121
|
models: z.ZodOptional<z.ZodObject<{
|
|
30122
30122
|
base: z.ZodOptional<z.ZodObject<{
|
|
30123
30123
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30166,12 +30166,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30166
30166
|
}, z.core.$strip>>;
|
|
30167
30167
|
}, z.core.$strip>>;
|
|
30168
30168
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30169
|
-
|
|
30170
|
-
name: z.ZodString;
|
|
30169
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30171
30170
|
id: z.ZodString;
|
|
30172
30171
|
tenantId: z.ZodString;
|
|
30172
|
+
name: z.ZodString;
|
|
30173
30173
|
projectId: z.ZodString;
|
|
30174
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30175
30174
|
config: z.ZodObject<{
|
|
30176
30175
|
type: z.ZodLiteral<"mcp">;
|
|
30177
30176
|
mcp: z.ZodObject<{
|
|
@@ -30200,17 +30199,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30200
30199
|
}, z.core.$strip>;
|
|
30201
30200
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30202
30201
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
30202
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
30203
30203
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
30204
30204
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
30205
30205
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30206
30206
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30207
30207
|
}>, z.core.$strip>>>;
|
|
30208
30208
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30209
|
-
|
|
30209
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30210
30210
|
id: z.ZodString;
|
|
30211
30211
|
tenantId: z.ZodString;
|
|
30212
|
+
name: z.ZodString;
|
|
30212
30213
|
projectId: z.ZodString;
|
|
30213
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30214
30214
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30215
30215
|
baseUrl: z.ZodURL;
|
|
30216
30216
|
}>, z.core.$strip>>>;
|
|
@@ -30220,12 +30220,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30220
30220
|
description: z.ZodString;
|
|
30221
30221
|
}, z.core.$strip>>>;
|
|
30222
30222
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
30223
|
-
|
|
30223
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30224
30224
|
id: z.ZodString;
|
|
30225
30225
|
tenantId: z.ZodString;
|
|
30226
|
-
|
|
30226
|
+
name: z.ZodString;
|
|
30227
30227
|
agentId: z.ZodString;
|
|
30228
|
-
|
|
30228
|
+
projectId: z.ZodString;
|
|
30229
30229
|
functionId: z.ZodString;
|
|
30230
30230
|
}>, z.core.$strip>>>;
|
|
30231
30231
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30235,11 +30235,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30235
30235
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
30236
30236
|
}, z.core.$strip>>>;
|
|
30237
30237
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30238
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30239
|
-
name: z.ZodString;
|
|
30240
|
-
id: z.ZodOptional<z.ZodString>;
|
|
30241
30238
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30239
|
+
id: z.ZodOptional<z.ZodString>;
|
|
30242
30240
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30241
|
+
name: z.ZodString;
|
|
30242
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30243
30243
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30244
30244
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30245
30245
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30249,10 +30249,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30249
30249
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30250
30250
|
}, z.core.$strip>>>;
|
|
30251
30251
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30252
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30253
|
-
name: z.ZodString;
|
|
30254
30252
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30255
30253
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30254
|
+
name: z.ZodString;
|
|
30255
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30256
30256
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30257
30257
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30258
30258
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30304,12 +30304,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30304
30304
|
prompt: z.ZodOptional<z.ZodString>;
|
|
30305
30305
|
}, z.core.$strip>>;
|
|
30306
30306
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30307
|
-
|
|
30308
|
-
name: z.ZodString;
|
|
30307
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30309
30308
|
id: z.ZodString;
|
|
30310
30309
|
tenantId: z.ZodString;
|
|
30310
|
+
name: z.ZodString;
|
|
30311
30311
|
projectId: z.ZodString;
|
|
30312
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30313
30312
|
config: z.ZodObject<{
|
|
30314
30313
|
type: z.ZodLiteral<"mcp">;
|
|
30315
30314
|
mcp: z.ZodObject<{
|
|
@@ -30338,18 +30337,19 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30338
30337
|
}, z.core.$strip>;
|
|
30339
30338
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30340
30339
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
30340
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
30341
30341
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
30342
30342
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
30343
30343
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30344
30344
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
30345
30345
|
}>, z.core.$strip>>;
|
|
30346
30346
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
30347
|
-
|
|
30347
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30348
30348
|
id: z.ZodString;
|
|
30349
30349
|
tenantId: z.ZodString;
|
|
30350
|
-
|
|
30350
|
+
name: z.ZodString;
|
|
30351
30351
|
agentId: z.ZodString;
|
|
30352
|
-
|
|
30352
|
+
projectId: z.ZodString;
|
|
30353
30353
|
functionId: z.ZodString;
|
|
30354
30354
|
}>, z.core.$strip>>>;
|
|
30355
30355
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -30359,12 +30359,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30359
30359
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
30360
30360
|
}, z.core.$strip>>>;
|
|
30361
30361
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30362
|
-
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
30363
|
-
name: z.ZodString;
|
|
30364
|
-
tenantId: z.ZodString;
|
|
30365
|
-
projectId: z.ZodString;
|
|
30366
30362
|
description: z.ZodString;
|
|
30363
|
+
tenantId: z.ZodString;
|
|
30364
|
+
name: z.ZodString;
|
|
30365
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
30367
30366
|
content: z.ZodString;
|
|
30367
|
+
projectId: z.ZodString;
|
|
30368
30368
|
}>, z.core.$strip>>>;
|
|
30369
30369
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30370
30370
|
id: z.ZodString;
|
|
@@ -30420,11 +30420,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30420
30420
|
in: {};
|
|
30421
30421
|
}>>>;
|
|
30422
30422
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30423
|
-
|
|
30423
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30424
30424
|
id: z.ZodString;
|
|
30425
30425
|
tenantId: z.ZodString;
|
|
30426
|
+
name: z.ZodString;
|
|
30426
30427
|
projectId: z.ZodString;
|
|
30427
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30428
30428
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30429
30429
|
baseUrl: z.ZodURL;
|
|
30430
30430
|
}>, z.core.$strip>>>;
|
|
@@ -30444,13 +30444,13 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30444
30444
|
}, z.core.$strip>>>;
|
|
30445
30445
|
}, z.core.$strip>>;
|
|
30446
30446
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30447
|
+
id: z.ZodString;
|
|
30448
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30447
30449
|
name: z.ZodString;
|
|
30448
30450
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30449
|
-
id: z.ZodString;
|
|
30450
30451
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30451
30452
|
credentialStoreId: z.ZodString;
|
|
30452
30453
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30453
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30454
30454
|
type: z.ZodEnum<{
|
|
30455
30455
|
readonly memory: "memory";
|
|
30456
30456
|
readonly keychain: "keychain";
|
|
@@ -30467,11 +30467,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30467
30467
|
}, z.core.$strip>;
|
|
30468
30468
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
30469
30469
|
data: z.ZodObject<{
|
|
30470
|
-
|
|
30470
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30471
30471
|
id: z.ZodString;
|
|
30472
30472
|
createdAt: z.ZodString;
|
|
30473
|
+
name: z.ZodString;
|
|
30473
30474
|
updatedAt: z.ZodString;
|
|
30474
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30475
30475
|
models: z.ZodNullable<z.ZodObject<{
|
|
30476
30476
|
base: z.ZodObject<{
|
|
30477
30477
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30491,19 +30491,19 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30491
30491
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
30492
30492
|
}, z.core.$strip>>;
|
|
30493
30493
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30494
|
-
|
|
30494
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30495
30495
|
id: z.ZodString;
|
|
30496
30496
|
createdAt: z.ZodString;
|
|
30497
|
+
name: z.ZodString;
|
|
30497
30498
|
updatedAt: z.ZodString;
|
|
30498
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30499
30499
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30500
30500
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30501
30501
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30502
|
-
|
|
30502
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30503
30503
|
id: z.ZodString;
|
|
30504
30504
|
createdAt: z.ZodString;
|
|
30505
|
+
name: z.ZodString;
|
|
30505
30506
|
updatedAt: z.ZodString;
|
|
30506
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30507
30507
|
models: z.ZodNullable<z.ZodType<{
|
|
30508
30508
|
base?: {
|
|
30509
30509
|
model?: string | undefined;
|
|
@@ -30637,12 +30637,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30637
30637
|
description: z.ZodString;
|
|
30638
30638
|
}, z.core.$strip>>>;
|
|
30639
30639
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30640
|
-
|
|
30640
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30641
30641
|
id: z.ZodString;
|
|
30642
30642
|
createdAt: z.ZodString;
|
|
30643
|
+
name: z.ZodString;
|
|
30643
30644
|
updatedAt: z.ZodString;
|
|
30644
30645
|
agentId: z.ZodString;
|
|
30645
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30646
30646
|
functionId: z.ZodString;
|
|
30647
30647
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30648
30648
|
}, z.core.$strip>>>;
|
|
@@ -30748,12 +30748,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30748
30748
|
id: z.ZodString;
|
|
30749
30749
|
}>, z.core.$strip>>;
|
|
30750
30750
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30751
|
-
|
|
30751
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30752
30752
|
id: z.ZodString;
|
|
30753
30753
|
createdAt: z.ZodString;
|
|
30754
|
+
name: z.ZodString;
|
|
30754
30755
|
updatedAt: z.ZodString;
|
|
30755
30756
|
agentId: z.ZodString;
|
|
30756
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30757
30757
|
functionId: z.ZodString;
|
|
30758
30758
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30759
30759
|
}, z.core.$strip>>>;
|
|
@@ -30896,15 +30896,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30896
30896
|
}, z.core.$strip>>>;
|
|
30897
30897
|
}, z.core.$strip>>;
|
|
30898
30898
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30899
|
-
name: z.ZodString;
|
|
30900
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
30901
30899
|
id: z.ZodString;
|
|
30902
30900
|
createdAt: z.ZodString;
|
|
30901
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30902
|
+
name: z.ZodString;
|
|
30903
30903
|
updatedAt: z.ZodString;
|
|
30904
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
30904
30905
|
toolId: z.ZodNullable<z.ZodString>;
|
|
30905
30906
|
credentialStoreId: z.ZodString;
|
|
30906
30907
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30907
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30908
30908
|
type: z.ZodEnum<{
|
|
30909
30909
|
readonly memory: "memory";
|
|
30910
30910
|
readonly keychain: "keychain";
|
|
@@ -31494,11 +31494,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31494
31494
|
}, z.core.$strip>;
|
|
31495
31495
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
31496
31496
|
data: z.ZodObject<{
|
|
31497
|
-
|
|
31497
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31498
31498
|
id: z.ZodString;
|
|
31499
31499
|
createdAt: z.ZodString;
|
|
31500
|
+
name: z.ZodString;
|
|
31500
31501
|
updatedAt: z.ZodString;
|
|
31501
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31502
31502
|
models: z.ZodNullable<z.ZodObject<{
|
|
31503
31503
|
base: z.ZodObject<{
|
|
31504
31504
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31547,12 +31547,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31547
31547
|
id: z.ZodString;
|
|
31548
31548
|
}>, z.core.$strip>>;
|
|
31549
31549
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31550
|
-
|
|
31550
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31551
31551
|
id: z.ZodString;
|
|
31552
31552
|
createdAt: z.ZodString;
|
|
31553
|
+
name: z.ZodString;
|
|
31553
31554
|
updatedAt: z.ZodString;
|
|
31554
31555
|
agentId: z.ZodString;
|
|
31555
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31556
31556
|
functionId: z.ZodString;
|
|
31557
31557
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31558
31558
|
}, z.core.$strip>>>;
|
|
@@ -31695,15 +31695,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31695
31695
|
}, z.core.$strip>>>;
|
|
31696
31696
|
}, z.core.$strip>>;
|
|
31697
31697
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31698
|
-
name: z.ZodString;
|
|
31699
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
31700
31698
|
id: z.ZodString;
|
|
31701
31699
|
createdAt: z.ZodString;
|
|
31700
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31701
|
+
name: z.ZodString;
|
|
31702
31702
|
updatedAt: z.ZodString;
|
|
31703
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
31703
31704
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31704
31705
|
credentialStoreId: z.ZodString;
|
|
31705
31706
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31706
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31707
31707
|
type: z.ZodEnum<{
|
|
31708
31708
|
readonly memory: "memory";
|
|
31709
31709
|
readonly keychain: "keychain";
|
|
@@ -32287,11 +32287,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32287
32287
|
}>>>;
|
|
32288
32288
|
}, z.core.$strip>>>;
|
|
32289
32289
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32290
|
-
|
|
32290
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32291
32291
|
id: z.ZodString;
|
|
32292
32292
|
createdAt: z.ZodString;
|
|
32293
|
+
name: z.ZodString;
|
|
32293
32294
|
updatedAt: z.ZodString;
|
|
32294
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32295
32295
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32296
32296
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32297
32297
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
@@ -32340,12 +32340,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32340
32340
|
description: z.ZodString;
|
|
32341
32341
|
}, z.core.$strip>>>;
|
|
32342
32342
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32343
|
-
|
|
32343
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32344
32344
|
id: z.ZodString;
|
|
32345
32345
|
createdAt: z.ZodString;
|
|
32346
|
+
name: z.ZodString;
|
|
32346
32347
|
updatedAt: z.ZodString;
|
|
32347
32348
|
agentId: z.ZodString;
|
|
32348
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32349
32349
|
functionId: z.ZodString;
|
|
32350
32350
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32351
32351
|
}, z.core.$strip>>>;
|
|
@@ -32421,11 +32421,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32421
32421
|
}, z.core.$strip>>;
|
|
32422
32422
|
prompt: z.ZodNullable<z.ZodString>;
|
|
32423
32423
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32424
|
-
|
|
32424
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32425
32425
|
id: z.ZodString;
|
|
32426
32426
|
createdAt: z.ZodString;
|
|
32427
|
+
name: z.ZodString;
|
|
32427
32428
|
updatedAt: z.ZodString;
|
|
32428
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32429
32429
|
models: z.ZodNullable<z.ZodType<{
|
|
32430
32430
|
base?: {
|
|
32431
32431
|
model?: string | undefined;
|
|
@@ -32527,17 +32527,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32527
32527
|
}, z.core.$strip>;
|
|
32528
32528
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
32529
32529
|
data: z.ZodObject<{
|
|
32530
|
-
name: z.ZodString;
|
|
32531
|
-
id: z.ZodString;
|
|
32532
32530
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32531
|
+
id: z.ZodString;
|
|
32532
|
+
name: z.ZodString;
|
|
32533
32533
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32534
32534
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32535
32535
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32536
|
-
|
|
32536
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32537
32537
|
id: z.ZodString;
|
|
32538
32538
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
32539
|
+
name: z.ZodString;
|
|
32539
32540
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
32540
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32541
32541
|
models: z.ZodOptional<z.ZodObject<{
|
|
32542
32542
|
base: z.ZodOptional<z.ZodObject<{
|
|
32543
32543
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -32586,12 +32586,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32586
32586
|
}, z.core.$strip>>;
|
|
32587
32587
|
}, z.core.$strip>>;
|
|
32588
32588
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32589
|
-
|
|
32590
|
-
name: z.ZodString;
|
|
32589
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32591
32590
|
id: z.ZodString;
|
|
32592
32591
|
tenantId: z.ZodString;
|
|
32592
|
+
name: z.ZodString;
|
|
32593
32593
|
projectId: z.ZodString;
|
|
32594
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32595
32594
|
config: z.ZodObject<{
|
|
32596
32595
|
type: z.ZodLiteral<"mcp">;
|
|
32597
32596
|
mcp: z.ZodObject<{
|
|
@@ -32620,17 +32619,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32620
32619
|
}, z.core.$strip>;
|
|
32621
32620
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32622
32621
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32622
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
32623
32623
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
32624
32624
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
32625
32625
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32626
32626
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
32627
32627
|
}>, z.core.$strip>>>;
|
|
32628
32628
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32629
|
-
|
|
32629
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32630
32630
|
id: z.ZodString;
|
|
32631
32631
|
tenantId: z.ZodString;
|
|
32632
|
+
name: z.ZodString;
|
|
32632
32633
|
projectId: z.ZodString;
|
|
32633
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32634
32634
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32635
32635
|
baseUrl: z.ZodURL;
|
|
32636
32636
|
}>, z.core.$strip>>>;
|
|
@@ -32640,12 +32640,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32640
32640
|
description: z.ZodString;
|
|
32641
32641
|
}, z.core.$strip>>>;
|
|
32642
32642
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
32643
|
-
|
|
32643
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32644
32644
|
id: z.ZodString;
|
|
32645
32645
|
tenantId: z.ZodString;
|
|
32646
|
-
|
|
32646
|
+
name: z.ZodString;
|
|
32647
32647
|
agentId: z.ZodString;
|
|
32648
|
-
|
|
32648
|
+
projectId: z.ZodString;
|
|
32649
32649
|
functionId: z.ZodString;
|
|
32650
32650
|
}>, z.core.$strip>>>;
|
|
32651
32651
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -32655,11 +32655,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32655
32655
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
32656
32656
|
}, z.core.$strip>>>;
|
|
32657
32657
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32658
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32659
|
-
name: z.ZodString;
|
|
32660
|
-
id: z.ZodOptional<z.ZodString>;
|
|
32661
32658
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32659
|
+
id: z.ZodOptional<z.ZodString>;
|
|
32662
32660
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32661
|
+
name: z.ZodString;
|
|
32662
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32663
32663
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32664
32664
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32665
32665
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32669,10 +32669,10 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32669
32669
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32670
32670
|
}, z.core.$strip>>>;
|
|
32671
32671
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32672
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32673
|
-
name: z.ZodString;
|
|
32674
32672
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32675
32673
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32674
|
+
name: z.ZodString;
|
|
32675
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32676
32676
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32677
32677
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32678
32678
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32726,19 +32726,19 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32726
32726
|
}, z.core.$strip>;
|
|
32727
32727
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
32728
32728
|
data: z.ZodObject<{
|
|
32729
|
-
|
|
32729
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32730
32730
|
id: z.ZodString;
|
|
32731
32731
|
createdAt: z.ZodString;
|
|
32732
|
+
name: z.ZodString;
|
|
32732
32733
|
updatedAt: z.ZodString;
|
|
32733
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32734
32734
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32735
32735
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32736
32736
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32737
|
-
|
|
32737
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32738
32738
|
id: z.ZodString;
|
|
32739
32739
|
createdAt: z.ZodString;
|
|
32740
|
+
name: z.ZodString;
|
|
32740
32741
|
updatedAt: z.ZodString;
|
|
32741
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32742
32742
|
models: z.ZodNullable<z.ZodType<{
|
|
32743
32743
|
base?: {
|
|
32744
32744
|
model?: string | undefined;
|
|
@@ -32872,12 +32872,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32872
32872
|
description: z.ZodString;
|
|
32873
32873
|
}, z.core.$strip>>>;
|
|
32874
32874
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32875
|
-
|
|
32875
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32876
32876
|
id: z.ZodString;
|
|
32877
32877
|
createdAt: z.ZodString;
|
|
32878
|
+
name: z.ZodString;
|
|
32878
32879
|
updatedAt: z.ZodString;
|
|
32879
32880
|
agentId: z.ZodString;
|
|
32880
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32881
32881
|
functionId: z.ZodString;
|
|
32882
32882
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32883
32883
|
}, z.core.$strip>>>;
|
|
@@ -32975,12 +32975,11 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
32975
32975
|
}, z.core.$strip>;
|
|
32976
32976
|
declare const McpToolResponse: z.ZodObject<{
|
|
32977
32977
|
data: z.ZodObject<{
|
|
32978
|
-
|
|
32979
|
-
name: z.ZodString;
|
|
32978
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32980
32979
|
id: z.ZodString;
|
|
32981
32980
|
tenantId: z.ZodString;
|
|
32981
|
+
name: z.ZodString;
|
|
32982
32982
|
projectId: z.ZodString;
|
|
32983
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32984
32983
|
config: z.ZodObject<{
|
|
32985
32984
|
type: z.ZodLiteral<"mcp">;
|
|
32986
32985
|
mcp: z.ZodObject<{
|
|
@@ -33009,6 +33008,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33009
33008
|
}, z.core.$strip>;
|
|
33010
33009
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33011
33010
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33011
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
33012
33012
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33013
33013
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33014
33014
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33036,12 +33036,11 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33036
33036
|
}, z.core.$strip>;
|
|
33037
33037
|
declare const McpToolListResponse: z.ZodObject<{
|
|
33038
33038
|
data: z.ZodArray<z.ZodObject<{
|
|
33039
|
-
|
|
33040
|
-
name: z.ZodString;
|
|
33039
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33041
33040
|
id: z.ZodString;
|
|
33042
33041
|
tenantId: z.ZodString;
|
|
33042
|
+
name: z.ZodString;
|
|
33043
33043
|
projectId: z.ZodString;
|
|
33044
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33045
33044
|
config: z.ZodObject<{
|
|
33046
33045
|
type: z.ZodLiteral<"mcp">;
|
|
33047
33046
|
mcp: z.ZodObject<{
|
|
@@ -33070,6 +33069,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33070
33069
|
}, z.core.$strip>;
|
|
33071
33070
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33072
33071
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33072
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
33073
33073
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
33074
33074
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33075
33075
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33935,8 +33935,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
33935
33935
|
}, undefined>, undefined>;
|
|
33936
33936
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
33937
33937
|
id: z.ZodString;
|
|
33938
|
-
accountId: z.ZodString;
|
|
33939
33938
|
tenantId: z.ZodString;
|
|
33939
|
+
accountId: z.ZodString;
|
|
33940
33940
|
installationId: z.ZodString;
|
|
33941
33941
|
accountLogin: z.ZodString;
|
|
33942
33942
|
accountType: z.ZodEnum<{
|
|
@@ -33966,8 +33966,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
33966
33966
|
}>, z.core.$strip>;
|
|
33967
33967
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
33968
33968
|
id: z.ZodString;
|
|
33969
|
-
accountId: z.ZodString;
|
|
33970
33969
|
tenantId: z.ZodString;
|
|
33970
|
+
accountId: z.ZodString;
|
|
33971
33971
|
installationId: z.ZodString;
|
|
33972
33972
|
accountLogin: z.ZodString;
|
|
33973
33973
|
accountType: z.ZodEnum<{
|
|
@@ -36160,16 +36160,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
36160
36160
|
}, {}, {}>;
|
|
36161
36161
|
}, undefined>, undefined>;
|
|
36162
36162
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
36163
|
-
projectId: z.ZodString;
|
|
36164
36163
|
agentId: z.ZodString;
|
|
36164
|
+
projectId: z.ZodString;
|
|
36165
36165
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36166
36166
|
}, {
|
|
36167
36167
|
out: {};
|
|
36168
36168
|
in: {};
|
|
36169
36169
|
}>;
|
|
36170
36170
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
36171
|
-
projectId: z.ZodString;
|
|
36172
36171
|
agentId: z.ZodString;
|
|
36172
|
+
projectId: z.ZodString;
|
|
36173
36173
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
36174
36174
|
agentName: z.ZodString;
|
|
36175
36175
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -36415,8 +36415,8 @@ declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
36415
36415
|
}>;
|
|
36416
36416
|
}, undefined>, undefined>;
|
|
36417
36417
|
declare const UserProfileInsertSchema: z.ZodObject<{
|
|
36418
|
-
userId: z.ZodString;
|
|
36419
36418
|
id: z.ZodString;
|
|
36419
|
+
userId: z.ZodString;
|
|
36420
36420
|
attributes: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
36421
36421
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36422
36422
|
}, {
|
|
@@ -36424,8 +36424,8 @@ declare const UserProfileInsertSchema: z.ZodObject<{
|
|
|
36424
36424
|
in: {};
|
|
36425
36425
|
}>;
|
|
36426
36426
|
declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
36427
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
36428
36427
|
id: z.ZodOptional<z.ZodString>;
|
|
36428
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
36429
36429
|
attributes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
36430
36430
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36431
36431
|
}, {
|
|
@@ -36433,8 +36433,8 @@ declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
|
36433
36433
|
in: {};
|
|
36434
36434
|
}>;
|
|
36435
36435
|
declare const UserProfileApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
36436
|
-
userId: z.ZodString;
|
|
36437
36436
|
id: z.ZodString;
|
|
36437
|
+
userId: z.ZodString;
|
|
36438
36438
|
attributes: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
36439
36439
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36440
36440
|
}>, z.core.$strip>;
|