@inkeep/agents-core 0.58.17 → 0.58.19
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/client-exports.d.ts +4 -4
- package/dist/constants/models.d.ts +2 -0
- package/dist/constants/models.js +2 -0
- package/dist/data-access/index.d.ts +2 -2
- package/dist/data-access/index.js +2 -2
- package/dist/data-access/manage/agents.d.ts +48 -48
- package/dist/data-access/manage/artifactComponents.d.ts +14 -14
- package/dist/data-access/manage/contextConfigs.d.ts +20 -20
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +15 -15
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +24 -24
- package/dist/data-access/manage/tools.d.ts +21 -21
- 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 +29 -16
- package/dist/data-access/runtime/apps.js +14 -7
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +10 -7
- package/dist/data-access/runtime/messages.js +4 -1
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/schemas.d.ts +562 -580
- package/dist/validation/schemas.js +3 -3
- 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
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
823
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
825
|
-
|
|
826
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
824
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
827
825
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
826
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
827
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
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,7 +839,6 @@ 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>>>>;
|
|
843
842
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
844
843
|
stepCountIs?: number | undefined;
|
|
845
844
|
}, {
|
|
@@ -849,7 +848,8 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
849
848
|
}, {
|
|
850
849
|
stepCountIs?: number | undefined;
|
|
851
850
|
}>>>>>>;
|
|
852
|
-
|
|
851
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
852
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
853
853
|
}, z.core.$strip>;
|
|
854
854
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
855
855
|
createdAt: drizzle_orm_pg_core217.PgColumn<{
|
|
@@ -2483,7 +2483,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2483
2483
|
}, {}, {
|
|
2484
2484
|
length: 256;
|
|
2485
2485
|
}>;
|
|
2486
|
-
}, "
|
|
2486
|
+
}, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, 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,11 +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
2753
|
id: z.ZodString;
|
|
2754
|
+
name: z.ZodString;
|
|
2755
2755
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
2756
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2757
|
-
|
|
2757
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2758
2758
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2759
2759
|
base?: {
|
|
2760
2760
|
model?: string | undefined;
|
|
@@ -2808,7 +2808,16 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2808
2808
|
providerOptions?: Record<string, any> | undefined;
|
|
2809
2809
|
} | undefined;
|
|
2810
2810
|
}>>>>;
|
|
2811
|
-
|
|
2811
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2812
|
+
transferCountIs?: number | undefined;
|
|
2813
|
+
}, {
|
|
2814
|
+
transferCountIs?: number | undefined;
|
|
2815
|
+
}, z.core.$ZodTypeInternals<{
|
|
2816
|
+
transferCountIs?: number | undefined;
|
|
2817
|
+
}, {
|
|
2818
|
+
transferCountIs?: number | undefined;
|
|
2819
|
+
}>>>>;
|
|
2820
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2812
2821
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2813
2822
|
enabled?: boolean | undefined;
|
|
2814
2823
|
numEvents?: number | undefined;
|
|
@@ -2866,21 +2875,12 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2866
2875
|
} | undefined;
|
|
2867
2876
|
}[] | undefined;
|
|
2868
2877
|
}>>>>;
|
|
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
2880
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2881
2881
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2882
2882
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2883
|
-
|
|
2883
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
2884
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2885
2885
|
base?: {
|
|
2886
2886
|
model?: string | undefined;
|
|
@@ -2934,7 +2934,16 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2934
2934
|
providerOptions?: Record<string, any> | undefined;
|
|
2935
2935
|
} | undefined;
|
|
2936
2936
|
}>>>>>>;
|
|
2937
|
-
|
|
2937
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2938
|
+
transferCountIs?: number | undefined;
|
|
2939
|
+
}, {
|
|
2940
|
+
transferCountIs?: number | undefined;
|
|
2941
|
+
}, z.core.$ZodTypeInternals<{
|
|
2942
|
+
transferCountIs?: number | undefined;
|
|
2943
|
+
}, {
|
|
2944
|
+
transferCountIs?: number | undefined;
|
|
2945
|
+
}>>>>>>;
|
|
2946
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2938
2947
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2939
2948
|
enabled?: boolean | undefined;
|
|
2940
2949
|
numEvents?: number | undefined;
|
|
@@ -2992,15 +3001,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2992
3001
|
} | undefined;
|
|
2993
3002
|
}[] | undefined;
|
|
2994
3003
|
}>>>>>>;
|
|
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;
|
|
@@ -3067,8 +3067,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3067
3067
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3068
3068
|
source: z.ZodEnum<{
|
|
3069
3069
|
query: "query";
|
|
3070
|
-
body: "body";
|
|
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>;
|
|
@@ -3207,8 +3207,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3207
3207
|
signature: z.ZodObject<{
|
|
3208
3208
|
source: z.ZodEnum<{
|
|
3209
3209
|
query: "query";
|
|
3210
|
-
body: "body";
|
|
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>;
|
|
@@ -3303,8 +3303,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3303
3303
|
signature: z.ZodObject<{
|
|
3304
3304
|
source: z.ZodEnum<{
|
|
3305
3305
|
query: "query";
|
|
3306
|
-
body: "body";
|
|
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: "query" | "
|
|
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: "query" | "
|
|
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: "query" | "
|
|
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: "query" | "
|
|
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
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "createdBy" | "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>>;
|
|
@@ -4132,8 +4132,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4132
4132
|
signature: z.ZodObject<{
|
|
4133
4133
|
source: z.ZodEnum<{
|
|
4134
4134
|
query: "query";
|
|
4135
|
-
body: "body";
|
|
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,8 +4166,8 @@ 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
|
-
name: z.ZodString;
|
|
4170
4169
|
id: z.ZodOptional<z.ZodString>;
|
|
4170
|
+
name: z.ZodString;
|
|
4171
4171
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4172
4172
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4173
4173
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4180,33 +4180,27 @@ 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
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4199
|
-
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4200
|
-
}, {
|
|
4201
|
-
out: {};
|
|
4202
|
-
in: {};
|
|
4203
|
-
}>;
|
|
4183
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4184
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4185
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4186
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4187
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4188
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4189
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4190
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4191
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4192
|
+
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4193
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4194
|
+
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4195
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4196
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4197
|
+
}, z.core.$strip>;
|
|
4204
4198
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4205
|
-
name: z.ZodString;
|
|
4206
4199
|
id: z.ZodString;
|
|
4200
|
+
name: z.ZodString;
|
|
4201
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4207
4202
|
createdAt: z.ZodString;
|
|
4208
4203
|
updatedAt: z.ZodString;
|
|
4209
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4210
4204
|
enabled: z.ZodBoolean;
|
|
4211
4205
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4212
4206
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -4229,8 +4223,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4229
4223
|
signature: z.ZodObject<{
|
|
4230
4224
|
source: z.ZodEnum<{
|
|
4231
4225
|
query: "query";
|
|
4232
|
-
body: "body";
|
|
4233
4226
|
header: "header";
|
|
4227
|
+
body: "body";
|
|
4234
4228
|
}>;
|
|
4235
4229
|
key: z.ZodString;
|
|
4236
4230
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4239,8 +4233,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4239
4233
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4240
4234
|
source: z.ZodEnum<{
|
|
4241
4235
|
literal: "literal";
|
|
4242
|
-
body: "body";
|
|
4243
4236
|
header: "header";
|
|
4237
|
+
body: "body";
|
|
4244
4238
|
}>;
|
|
4245
4239
|
key: z.ZodOptional<z.ZodString>;
|
|
4246
4240
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5071,7 +5065,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5071
5065
|
}, {}, {
|
|
5072
5066
|
length: 256;
|
|
5073
5067
|
}>;
|
|
5074
|
-
}, "id" | "
|
|
5068
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5075
5069
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5076
5070
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
5077
5071
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5147,12 +5141,12 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
5147
5141
|
in: {};
|
|
5148
5142
|
}>;
|
|
5149
5143
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
5150
|
-
name: z.ZodString;
|
|
5151
5144
|
id: z.ZodString;
|
|
5152
|
-
|
|
5153
|
-
projectId: z.ZodString;
|
|
5154
|
-
tenantId: z.ZodString;
|
|
5145
|
+
name: z.ZodString;
|
|
5155
5146
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5147
|
+
tenantId: z.ZodString;
|
|
5148
|
+
projectId: z.ZodString;
|
|
5149
|
+
agentId: z.ZodString;
|
|
5156
5150
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5157
5151
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5158
5152
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5169,12 +5163,12 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5169
5163
|
in: {};
|
|
5170
5164
|
}>;
|
|
5171
5165
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5172
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5173
5166
|
id: z.ZodOptional<z.ZodString>;
|
|
5174
|
-
|
|
5175
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
5176
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
5167
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5177
5168
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5169
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
5170
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
5171
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
5178
5172
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5179
5173
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5180
5174
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5244,27 +5238,21 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5244
5238
|
id: z.ZodOptional<z.ZodString>;
|
|
5245
5239
|
}, z.core.$strip>;
|
|
5246
5240
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5263
|
-
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5264
|
-
}, {
|
|
5265
|
-
out: {};
|
|
5266
|
-
in: {};
|
|
5267
|
-
}>;
|
|
5241
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5242
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5243
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5244
|
+
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5245
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5246
|
+
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5247
|
+
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5248
|
+
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5249
|
+
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5250
|
+
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5251
|
+
payload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5252
|
+
maxRetries: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
5253
|
+
retryDelaySeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
5254
|
+
timeoutSeconds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNumber>>>;
|
|
5255
|
+
}, z.core.$strip>;
|
|
5268
5256
|
type ScheduledTrigger = z.infer<typeof ScheduledTriggerSelectSchema>;
|
|
5269
5257
|
type ScheduledTriggerInsert = z.infer<typeof ScheduledTriggerInsertSchema>;
|
|
5270
5258
|
type ScheduledTriggerUpdate = z.infer<typeof ScheduledTriggerUpdateSchema>;
|
|
@@ -6088,7 +6076,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
6088
6076
|
}, {}, {
|
|
6089
6077
|
length: 256;
|
|
6090
6078
|
}>;
|
|
6091
|
-
}, "
|
|
6079
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6092
6080
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6093
6081
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6094
6082
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6120,38 +6108,32 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
6120
6108
|
}>, z.core.$strip>;
|
|
6121
6109
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
6122
6110
|
name: z.ZodString;
|
|
6111
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6123
6112
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6124
6113
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6125
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6126
6114
|
status: z.ZodOptional<z.ZodString>;
|
|
6127
6115
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6128
6116
|
scheduledTriggerId: z.ZodString;
|
|
6129
6117
|
id: z.ZodOptional<z.ZodString>;
|
|
6130
6118
|
}, z.core.$strip>;
|
|
6131
6119
|
declare const ScheduledWorkflowApiUpdateSchema: z.ZodObject<{
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6142
|
-
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6143
|
-
}, {
|
|
6144
|
-
out: {};
|
|
6145
|
-
in: {};
|
|
6146
|
-
}>;
|
|
6120
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6121
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6122
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6123
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6124
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6125
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6126
|
+
workflowRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6127
|
+
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6128
|
+
}, z.core.$strip>;
|
|
6147
6129
|
type ScheduledWorkflow = z.infer<typeof ScheduledWorkflowSelectSchema>;
|
|
6148
6130
|
type ScheduledWorkflowInsert = z.infer<typeof ScheduledWorkflowInsertSchema>;
|
|
6149
6131
|
type ScheduledWorkflowUpdate = z.infer<typeof ScheduledWorkflowUpdateSchema>;
|
|
6150
6132
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
6151
6133
|
pending: "pending";
|
|
6134
|
+
failed: "failed";
|
|
6152
6135
|
running: "running";
|
|
6153
6136
|
completed: "completed";
|
|
6154
|
-
failed: "failed";
|
|
6155
6137
|
cancelled: "cancelled";
|
|
6156
6138
|
}>;
|
|
6157
6139
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -6170,9 +6152,9 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6170
6152
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6171
6153
|
status: z.ZodEnum<{
|
|
6172
6154
|
pending: "pending";
|
|
6155
|
+
failed: "failed";
|
|
6173
6156
|
running: "running";
|
|
6174
6157
|
completed: "completed";
|
|
6175
|
-
failed: "failed";
|
|
6176
6158
|
cancelled: "cancelled";
|
|
6177
6159
|
}>;
|
|
6178
6160
|
}, {
|
|
@@ -6204,7 +6186,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6204
6186
|
tableName: "scheduled_trigger_invocations";
|
|
6205
6187
|
dataType: "string";
|
|
6206
6188
|
columnType: "PgVarchar";
|
|
6207
|
-
data: "pending" | "
|
|
6189
|
+
data: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
6208
6190
|
driverParam: string;
|
|
6209
6191
|
notNull: true;
|
|
6210
6192
|
hasDefault: false;
|
|
@@ -6217,7 +6199,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6217
6199
|
generated: undefined;
|
|
6218
6200
|
}, {}, {
|
|
6219
6201
|
length: 50;
|
|
6220
|
-
$type: "pending" | "
|
|
6202
|
+
$type: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
6221
6203
|
}>;
|
|
6222
6204
|
scheduledFor: drizzle_orm_pg_core217.PgColumn<{
|
|
6223
6205
|
name: "scheduled_for";
|
|
@@ -6462,7 +6444,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6462
6444
|
tableName: "scheduled_trigger_invocations";
|
|
6463
6445
|
dataType: "string";
|
|
6464
6446
|
columnType: "PgVarchar";
|
|
6465
|
-
data: "pending" | "
|
|
6447
|
+
data: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
6466
6448
|
driverParam: string;
|
|
6467
6449
|
notNull: true;
|
|
6468
6450
|
hasDefault: false;
|
|
@@ -6475,7 +6457,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6475
6457
|
generated: undefined;
|
|
6476
6458
|
}, {}, {
|
|
6477
6459
|
length: 50;
|
|
6478
|
-
$type: "pending" | "
|
|
6460
|
+
$type: "pending" | "failed" | "running" | "completed" | "cancelled";
|
|
6479
6461
|
}>;
|
|
6480
6462
|
scheduledFor: drizzle_orm_pg_core217.PgColumn<{
|
|
6481
6463
|
name: "scheduled_for";
|
|
@@ -6695,7 +6677,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6695
6677
|
}, {}, {
|
|
6696
6678
|
length: 256;
|
|
6697
6679
|
}>;
|
|
6698
|
-
}, "id" | "
|
|
6680
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6699
6681
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6700
6682
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6701
6683
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -6731,9 +6713,9 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
|
|
|
6731
6713
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6732
6714
|
status: z.ZodEnum<{
|
|
6733
6715
|
pending: "pending";
|
|
6716
|
+
failed: "failed";
|
|
6734
6717
|
running: "running";
|
|
6735
6718
|
completed: "completed";
|
|
6736
|
-
failed: "failed";
|
|
6737
6719
|
cancelled: "cancelled";
|
|
6738
6720
|
}>;
|
|
6739
6721
|
}>, z.core.$strip>;
|
|
@@ -7299,9 +7281,9 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7299
7281
|
}>, z.core.$strip>;
|
|
7300
7282
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7301
7283
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7284
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7302
7285
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7303
7286
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7304
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7305
7287
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7306
7288
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7307
7289
|
type: z.ZodEnum<{
|
|
@@ -7314,8 +7296,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7314
7296
|
}, z.core.$strip>>>;
|
|
7315
7297
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7316
7298
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7317
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7318
7299
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7300
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7319
7301
|
}, z.core.$strip>;
|
|
7320
7302
|
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7321
7303
|
createdAt: drizzle_orm_pg_core217.PgColumn<{
|
|
@@ -8254,11 +8236,11 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8254
8236
|
}>;
|
|
8255
8237
|
}, undefined>, undefined>;
|
|
8256
8238
|
declare const ToolInsertSchema: z.ZodObject<{
|
|
8257
|
-
name: z.ZodString;
|
|
8258
8239
|
id: z.ZodString;
|
|
8259
|
-
|
|
8260
|
-
tenantId: z.ZodString;
|
|
8240
|
+
name: z.ZodString;
|
|
8261
8241
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8242
|
+
tenantId: z.ZodString;
|
|
8243
|
+
projectId: z.ZodString;
|
|
8262
8244
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8263
8245
|
config: z.ZodObject<{
|
|
8264
8246
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -8862,11 +8844,11 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8862
8844
|
}>, z.core.$strip>;
|
|
8863
8845
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
8864
8846
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8847
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8848
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8865
8849
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8866
8850
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8867
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8868
8851
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8869
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8870
8852
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
8871
8853
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8872
8854
|
type: z.ZodEnum<{
|
|
@@ -10401,8 +10383,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10401
10383
|
}, z.core.$strip>;
|
|
10402
10384
|
}>, z.core.$strip>;
|
|
10403
10385
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
10404
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
10405
10386
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10387
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
10406
10388
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10407
10389
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10408
10390
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -12102,26 +12084,26 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12102
12084
|
}>, z.core.$strip>;
|
|
12103
12085
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
12104
12086
|
name: z.ZodString;
|
|
12087
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12105
12088
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12106
12089
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12107
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12108
12090
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12109
12091
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12110
12092
|
}, z.core.$strip>;
|
|
12111
12093
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
12112
12094
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12095
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12113
12096
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12114
12097
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12115
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12116
12098
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
12117
12099
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12118
12100
|
}, z.core.$strip>;
|
|
12119
12101
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12120
|
-
name: z.ZodString;
|
|
12121
12102
|
id: z.ZodString;
|
|
12103
|
+
name: z.ZodString;
|
|
12104
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12122
12105
|
createdAt: z.ZodString;
|
|
12123
12106
|
updatedAt: z.ZodString;
|
|
12124
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12125
12107
|
isActive: z.ZodBoolean;
|
|
12126
12108
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12127
12109
|
}, z.core.$strip>;
|
|
@@ -14279,9 +14261,8 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14279
14261
|
}>, z.core.$strip>;
|
|
14280
14262
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14281
14263
|
name: z.ZodString;
|
|
14282
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
14283
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14284
14264
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14265
|
+
prompt: z.ZodString;
|
|
14285
14266
|
model: z.ZodType<{
|
|
14286
14267
|
model?: string | undefined;
|
|
14287
14268
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14295,15 +14276,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14295
14276
|
model?: string | undefined;
|
|
14296
14277
|
providerOptions?: Record<string, any> | undefined;
|
|
14297
14278
|
}>>;
|
|
14298
|
-
|
|
14279
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
14280
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14299
14281
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14300
14282
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14301
14283
|
}, z.core.$strip>;
|
|
14302
14284
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14303
14285
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14304
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14305
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14306
14286
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14287
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14307
14288
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14308
14289
|
model?: string | undefined;
|
|
14309
14290
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14317,7 +14298,8 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14317
14298
|
model?: string | undefined;
|
|
14318
14299
|
providerOptions?: Record<string, any> | undefined;
|
|
14319
14300
|
}>>>>;
|
|
14320
|
-
|
|
14301
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14302
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14321
14303
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14322
14304
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14323
14305
|
}, z.core.$strip>;
|
|
@@ -15215,8 +15197,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
15215
15197
|
}>>>>>>;
|
|
15216
15198
|
}, z.core.$strip>;
|
|
15217
15199
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
15218
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15219
15200
|
id: z.ZodOptional<z.ZodString>;
|
|
15201
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15220
15202
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15221
15203
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15222
15204
|
prompt: string;
|
|
@@ -15264,8 +15246,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
15264
15246
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
15265
15247
|
datasetRunId: z.ZodString;
|
|
15266
15248
|
items: z.ZodArray<z.ZodObject<{
|
|
15267
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15268
15249
|
id: z.ZodOptional<z.ZodString>;
|
|
15250
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15269
15251
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15270
15252
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15271
15253
|
prompt: string;
|
|
@@ -15676,16 +15658,16 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
15676
15658
|
}>, z.core.$strip>;
|
|
15677
15659
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
15678
15660
|
name: z.ZodString;
|
|
15661
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15679
15662
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15680
15663
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15681
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15682
15664
|
datasetId: z.ZodString;
|
|
15683
15665
|
}, z.core.$strip>;
|
|
15684
15666
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
15685
15667
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15668
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15686
15669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15687
15670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15688
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15689
15671
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15690
15672
|
}, z.core.$strip>;
|
|
15691
15673
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -15994,9 +15976,9 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
15994
15976
|
}>;
|
|
15995
15977
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
15996
15978
|
name: z.ZodString;
|
|
15997
|
-
projectId: z.ZodString;
|
|
15998
|
-
tenantId: z.ZodString;
|
|
15999
15979
|
description: z.ZodString;
|
|
15980
|
+
tenantId: z.ZodString;
|
|
15981
|
+
projectId: z.ZodString;
|
|
16000
15982
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16001
15983
|
content: z.ZodString;
|
|
16002
15984
|
}, {
|
|
@@ -16004,9 +15986,9 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
16004
15986
|
in: {};
|
|
16005
15987
|
}>;
|
|
16006
15988
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16007
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
16008
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16009
15989
|
description: z.ZodOptional<z.ZodString>;
|
|
15990
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
15991
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
16010
15992
|
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16011
15993
|
content: z.ZodOptional<z.ZodString>;
|
|
16012
15994
|
}, {
|
|
@@ -16026,9 +16008,9 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16026
16008
|
}>, z.core.$strip>;
|
|
16027
16009
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16028
16010
|
name: z.ZodString;
|
|
16029
|
-
projectId: z.ZodString;
|
|
16030
|
-
tenantId: z.ZodString;
|
|
16031
16011
|
description: z.ZodString;
|
|
16012
|
+
tenantId: z.ZodString;
|
|
16013
|
+
projectId: z.ZodString;
|
|
16032
16014
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16033
16015
|
content: z.ZodString;
|
|
16034
16016
|
}>, z.core.$strip>;
|
|
@@ -16411,11 +16393,11 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
16411
16393
|
}>;
|
|
16412
16394
|
}, undefined>, undefined>;
|
|
16413
16395
|
declare const DataComponentInsertSchema: z.ZodObject<{
|
|
16414
|
-
name: z.ZodString;
|
|
16415
16396
|
id: z.ZodString;
|
|
16416
|
-
|
|
16417
|
-
tenantId: z.ZodString;
|
|
16397
|
+
name: z.ZodString;
|
|
16418
16398
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16399
|
+
tenantId: z.ZodString;
|
|
16400
|
+
projectId: z.ZodString;
|
|
16419
16401
|
props: z.ZodType<{
|
|
16420
16402
|
[x: string]: unknown;
|
|
16421
16403
|
type: "object";
|
|
@@ -16463,11 +16445,11 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
16463
16445
|
in: {};
|
|
16464
16446
|
}>;
|
|
16465
16447
|
declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
16466
|
-
name: z.ZodOptional<z.ZodString>;
|
|
16467
16448
|
id: z.ZodOptional<z.ZodString>;
|
|
16468
|
-
|
|
16469
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16449
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16470
16450
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16451
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16452
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
16471
16453
|
props: z.ZodOptional<z.ZodType<{
|
|
16472
16454
|
[x: string]: unknown;
|
|
16473
16455
|
type: "object";
|
|
@@ -17144,7 +17126,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
17144
17126
|
}, {}, {
|
|
17145
17127
|
length: 256;
|
|
17146
17128
|
}>;
|
|
17147
|
-
}, "id" | "
|
|
17129
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17148
17130
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17149
17131
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17150
17132
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -17741,11 +17723,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
17741
17723
|
in: {};
|
|
17742
17724
|
}>;
|
|
17743
17725
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
17744
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17745
17726
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17727
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17728
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17746
17729
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17747
17730
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17748
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17749
17731
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
17750
17732
|
[x: string]: unknown;
|
|
17751
17733
|
type: "object";
|
|
@@ -18178,11 +18160,11 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18178
18160
|
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18179
18161
|
}, z.core.$strip>;
|
|
18180
18162
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18181
|
-
name: z.ZodString;
|
|
18182
18163
|
id: z.ZodString;
|
|
18164
|
+
name: z.ZodString;
|
|
18165
|
+
description: z.ZodString;
|
|
18183
18166
|
createdAt: z.ZodString;
|
|
18184
18167
|
updatedAt: z.ZodString;
|
|
18185
|
-
description: z.ZodString;
|
|
18186
18168
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18187
18169
|
content: z.ZodString;
|
|
18188
18170
|
subAgentSkillId: z.ZodString;
|
|
@@ -18205,25 +18187,25 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
18205
18187
|
in: {};
|
|
18206
18188
|
}>;
|
|
18207
18189
|
declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
18208
|
-
name: z.ZodString;
|
|
18209
18190
|
id: z.ZodString;
|
|
18210
|
-
|
|
18211
|
-
tenantId: z.ZodString;
|
|
18191
|
+
name: z.ZodString;
|
|
18212
18192
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18213
|
-
|
|
18193
|
+
tenantId: z.ZodString;
|
|
18194
|
+
projectId: z.ZodString;
|
|
18214
18195
|
baseUrl: z.ZodURL;
|
|
18196
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18215
18197
|
}, {
|
|
18216
18198
|
out: {};
|
|
18217
18199
|
in: {};
|
|
18218
18200
|
}>;
|
|
18219
18201
|
declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
18220
|
-
name: z.ZodOptional<z.ZodString>;
|
|
18221
18202
|
id: z.ZodOptional<z.ZodString>;
|
|
18222
|
-
|
|
18223
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
18203
|
+
name: z.ZodOptional<z.ZodString>;
|
|
18224
18204
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18225
|
-
|
|
18205
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
18206
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
18226
18207
|
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
18208
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18227
18209
|
}, {
|
|
18228
18210
|
out: {};
|
|
18229
18211
|
in: {};
|
|
@@ -18240,27 +18222,27 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18240
18222
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18241
18223
|
}>, z.core.$strip>;
|
|
18242
18224
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
18243
|
-
name: z.ZodString;
|
|
18244
18225
|
id: z.ZodString;
|
|
18245
|
-
|
|
18246
|
-
tenantId: z.ZodString;
|
|
18226
|
+
name: z.ZodString;
|
|
18247
18227
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18248
|
-
|
|
18228
|
+
tenantId: z.ZodString;
|
|
18229
|
+
projectId: z.ZodString;
|
|
18249
18230
|
baseUrl: z.ZodURL;
|
|
18231
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18250
18232
|
}>, z.core.$strip>;
|
|
18251
18233
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18252
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18253
18234
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18235
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18254
18236
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18255
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18256
18237
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
18238
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18257
18239
|
}, z.core.$strip>;
|
|
18258
18240
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18259
|
-
name: z.ZodString;
|
|
18260
18241
|
id: z.ZodString;
|
|
18261
|
-
|
|
18262
|
-
updatedAt: z.ZodString;
|
|
18242
|
+
name: z.ZodString;
|
|
18263
18243
|
description: z.ZodNullable<z.ZodString>;
|
|
18244
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18245
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18264
18246
|
models: z.ZodNullable<z.ZodType<{
|
|
18265
18247
|
base?: {
|
|
18266
18248
|
model?: string | undefined;
|
|
@@ -18314,7 +18296,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18314
18296
|
providerOptions?: Record<string, any> | undefined;
|
|
18315
18297
|
} | undefined;
|
|
18316
18298
|
}>>>;
|
|
18317
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18318
18299
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
18319
18300
|
stepCountIs?: number | undefined;
|
|
18320
18301
|
}, {
|
|
@@ -18324,16 +18305,17 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18324
18305
|
}, {
|
|
18325
18306
|
stepCountIs?: number | undefined;
|
|
18326
18307
|
}>>>;
|
|
18327
|
-
|
|
18308
|
+
createdAt: z.ZodString;
|
|
18309
|
+
updatedAt: z.ZodString;
|
|
18328
18310
|
type: z.ZodLiteral<"internal">;
|
|
18329
18311
|
}, z.core.$strip>, z.ZodObject<{
|
|
18330
|
-
name: z.ZodString;
|
|
18331
18312
|
id: z.ZodString;
|
|
18313
|
+
name: z.ZodString;
|
|
18314
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18332
18315
|
createdAt: z.ZodString;
|
|
18333
18316
|
updatedAt: z.ZodString;
|
|
18334
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18335
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18336
18317
|
baseUrl: z.ZodString;
|
|
18318
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18337
18319
|
type: z.ZodLiteral<"external">;
|
|
18338
18320
|
}, z.core.$strip>], "type">;
|
|
18339
18321
|
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -18798,23 +18780,23 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
18798
18780
|
}>;
|
|
18799
18781
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
18800
18782
|
name: z.ZodOptional<z.ZodString>;
|
|
18801
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18802
18783
|
agentId: z.ZodOptional<z.ZodString>;
|
|
18784
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18803
18785
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18804
18786
|
}, {
|
|
18805
18787
|
out: {};
|
|
18806
18788
|
in: {};
|
|
18807
18789
|
}>;
|
|
18808
18790
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
18809
|
-
name: z.ZodNullable<z.ZodString>;
|
|
18810
18791
|
id: z.ZodString;
|
|
18792
|
+
name: z.ZodNullable<z.ZodString>;
|
|
18793
|
+
agentId: z.ZodString;
|
|
18811
18794
|
createdAt: z.ZodString;
|
|
18812
18795
|
updatedAt: z.ZodString;
|
|
18813
|
-
agentId: z.ZodString;
|
|
18814
18796
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18797
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18815
18798
|
publicId: z.ZodString;
|
|
18816
18799
|
keyPrefix: z.ZodString;
|
|
18817
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18818
18800
|
}, {
|
|
18819
18801
|
out: {};
|
|
18820
18802
|
in: {};
|
|
@@ -18822,15 +18804,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
18822
18804
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
18823
18805
|
data: z.ZodObject<{
|
|
18824
18806
|
apiKey: z.ZodObject<{
|
|
18825
|
-
name: z.ZodNullable<z.ZodString>;
|
|
18826
18807
|
id: z.ZodString;
|
|
18808
|
+
name: z.ZodNullable<z.ZodString>;
|
|
18809
|
+
agentId: z.ZodString;
|
|
18827
18810
|
createdAt: z.ZodString;
|
|
18828
18811
|
updatedAt: z.ZodString;
|
|
18829
|
-
agentId: z.ZodString;
|
|
18830
18812
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
18813
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18831
18814
|
publicId: z.ZodString;
|
|
18832
18815
|
keyPrefix: z.ZodString;
|
|
18833
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18834
18816
|
}, {
|
|
18835
18817
|
out: {};
|
|
18836
18818
|
in: {};
|
|
@@ -18840,9 +18822,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
18840
18822
|
}, z.core.$strip>;
|
|
18841
18823
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
18842
18824
|
name: z.ZodString;
|
|
18825
|
+
agentId: z.ZodString;
|
|
18843
18826
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18844
18827
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18845
|
-
agentId: z.ZodString;
|
|
18846
18828
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18847
18829
|
}, {
|
|
18848
18830
|
out: {};
|
|
@@ -18850,8 +18832,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
18850
18832
|
}>;
|
|
18851
18833
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
18852
18834
|
name: z.ZodOptional<z.ZodString>;
|
|
18853
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18854
18835
|
agentId: z.ZodOptional<z.ZodString>;
|
|
18836
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18855
18837
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18856
18838
|
}, {
|
|
18857
18839
|
out: {};
|
|
@@ -19434,10 +19416,10 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
19434
19416
|
}>;
|
|
19435
19417
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
19436
19418
|
name: z.ZodOptional<z.ZodString>;
|
|
19437
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19438
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19439
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19440
19419
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19420
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19421
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19422
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19441
19423
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
19442
19424
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19443
19425
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -19448,9 +19430,9 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
19448
19430
|
type: z.ZodLiteral<"api">;
|
|
19449
19431
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
19450
19432
|
}, z.core.$strip>], "type">>;
|
|
19451
|
-
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19452
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19453
19433
|
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19434
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19435
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19454
19436
|
}, {
|
|
19455
19437
|
out: {};
|
|
19456
19438
|
in: {};
|
|
@@ -19967,18 +19949,18 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
19967
19949
|
}, {}, {}>;
|
|
19968
19950
|
}, undefined>, undefined>;
|
|
19969
19951
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
19970
|
-
type: z.ZodString;
|
|
19971
|
-
name: z.ZodString;
|
|
19972
19952
|
id: z.ZodString;
|
|
19953
|
+
name: z.ZodString;
|
|
19954
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19955
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
19956
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
19957
|
+
type: z.ZodString;
|
|
19973
19958
|
createdAt: z.ZodString;
|
|
19974
19959
|
updatedAt: z.ZodString;
|
|
19975
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
19976
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
19977
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19978
19960
|
enabled: z.ZodBoolean;
|
|
19979
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19980
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19981
19961
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
19962
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
19963
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19982
19964
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
19983
19965
|
type: z.ZodLiteral<"web_client">;
|
|
19984
19966
|
webClient: z.ZodObject<{
|
|
@@ -19993,16 +19975,16 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
19993
19975
|
in: {};
|
|
19994
19976
|
}>;
|
|
19995
19977
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
19978
|
+
name: z.ZodString;
|
|
19979
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19980
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19981
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19996
19982
|
type: z.ZodEnum<{
|
|
19997
19983
|
web_client: "web_client";
|
|
19998
19984
|
api: "api";
|
|
19999
19985
|
}>;
|
|
20000
|
-
name: z.ZodString;
|
|
20001
19986
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20002
19987
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20003
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20004
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20005
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20006
19988
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
20007
19989
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20008
19990
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -20013,18 +19995,18 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
20013
19995
|
type: z.ZodLiteral<"api">;
|
|
20014
19996
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
20015
19997
|
}, z.core.$strip>], "type">;
|
|
20016
|
-
defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20017
19998
|
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19999
|
+
defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20018
20000
|
}, {
|
|
20019
20001
|
out: {};
|
|
20020
20002
|
in: {};
|
|
20021
20003
|
}>;
|
|
20022
20004
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
20023
20005
|
name: z.ZodOptional<z.ZodString>;
|
|
20024
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20025
|
-
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20026
|
-
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20027
20006
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20007
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20008
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20009
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20028
20010
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
20029
20011
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20030
20012
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -20035,9 +20017,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
20035
20017
|
type: z.ZodLiteral<"api">;
|
|
20036
20018
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
20037
20019
|
}, z.core.$strip>], "type">>;
|
|
20038
|
-
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20039
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20040
20020
|
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20021
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20022
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20041
20023
|
}, {
|
|
20042
20024
|
out: {};
|
|
20043
20025
|
in: {};
|
|
@@ -20045,18 +20027,18 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
20045
20027
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
20046
20028
|
data: z.ZodObject<{
|
|
20047
20029
|
app: z.ZodObject<{
|
|
20048
|
-
type: z.ZodString;
|
|
20049
|
-
name: z.ZodString;
|
|
20050
20030
|
id: z.ZodString;
|
|
20031
|
+
name: z.ZodString;
|
|
20032
|
+
description: z.ZodNullable<z.ZodString>;
|
|
20033
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
20034
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
20035
|
+
type: z.ZodString;
|
|
20051
20036
|
createdAt: z.ZodString;
|
|
20052
20037
|
updatedAt: z.ZodString;
|
|
20053
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
20054
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
20055
|
-
description: z.ZodNullable<z.ZodString>;
|
|
20056
20038
|
enabled: z.ZodBoolean;
|
|
20057
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
20058
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
20059
20039
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
20040
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
20041
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
20060
20042
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
20061
20043
|
type: z.ZodLiteral<"web_client">;
|
|
20062
20044
|
webClient: z.ZodObject<{
|
|
@@ -20524,11 +20506,11 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
20524
20506
|
}>;
|
|
20525
20507
|
}, undefined>, undefined>;
|
|
20526
20508
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
20527
|
-
type: z.ZodString;
|
|
20528
|
-
name: z.ZodString;
|
|
20529
20509
|
id: z.ZodString;
|
|
20530
|
-
|
|
20510
|
+
name: z.ZodString;
|
|
20531
20511
|
tenantId: z.ZodString;
|
|
20512
|
+
projectId: z.ZodString;
|
|
20513
|
+
type: z.ZodString;
|
|
20532
20514
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20533
20515
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20534
20516
|
credentialStoreId: z.ZodString;
|
|
@@ -20539,11 +20521,11 @@ declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
|
20539
20521
|
in: {};
|
|
20540
20522
|
}>;
|
|
20541
20523
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
20542
|
-
type: z.ZodOptional<z.ZodString>;
|
|
20543
|
-
name: z.ZodOptional<z.ZodString>;
|
|
20544
20524
|
id: z.ZodOptional<z.ZodString>;
|
|
20545
|
-
|
|
20525
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20546
20526
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20527
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20528
|
+
type: z.ZodOptional<z.ZodString>;
|
|
20547
20529
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20548
20530
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20549
20531
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
@@ -20554,8 +20536,8 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
20554
20536
|
in: {};
|
|
20555
20537
|
}>;
|
|
20556
20538
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
20557
|
-
name: z.ZodString;
|
|
20558
20539
|
id: z.ZodString;
|
|
20540
|
+
name: z.ZodString;
|
|
20559
20541
|
createdAt: z.ZodString;
|
|
20560
20542
|
updatedAt: z.ZodString;
|
|
20561
20543
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -21145,8 +21127,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
21145
21127
|
}>>>;
|
|
21146
21128
|
}, z.core.$strip>;
|
|
21147
21129
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
21148
|
-
name: z.ZodString;
|
|
21149
21130
|
id: z.ZodString;
|
|
21131
|
+
name: z.ZodString;
|
|
21150
21132
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21151
21133
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21152
21134
|
credentialStoreId: z.ZodString;
|
|
@@ -21159,8 +21141,8 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
21159
21141
|
}>;
|
|
21160
21142
|
}, z.core.$strip>;
|
|
21161
21143
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
21162
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21163
21144
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21145
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21164
21146
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21165
21147
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21166
21148
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21227,11 +21209,11 @@ declare const OAuthCallbackQuerySchema: z.ZodObject<{
|
|
|
21227
21209
|
error_description: z.ZodOptional<z.ZodString>;
|
|
21228
21210
|
}, z.core.$strip>;
|
|
21229
21211
|
declare const McpToolSchema: z.ZodObject<{
|
|
21230
|
-
name: z.ZodString;
|
|
21231
21212
|
id: z.ZodString;
|
|
21232
|
-
|
|
21233
|
-
tenantId: z.ZodString;
|
|
21213
|
+
name: z.ZodString;
|
|
21234
21214
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21215
|
+
tenantId: z.ZodString;
|
|
21216
|
+
projectId: z.ZodString;
|
|
21235
21217
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
21236
21218
|
config: z.ZodObject<{
|
|
21237
21219
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21286,22 +21268,22 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
21286
21268
|
in: {};
|
|
21287
21269
|
}>;
|
|
21288
21270
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
21289
|
-
name: z.ZodString;
|
|
21290
21271
|
id: z.ZodString;
|
|
21272
|
+
name: z.ZodString;
|
|
21291
21273
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
21292
21274
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
21275
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
21293
21276
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
21294
21277
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
21295
21278
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
21296
21279
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21297
21280
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
21298
|
-
|
|
21281
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21299
21282
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21300
21283
|
name: z.ZodString;
|
|
21301
21284
|
description: z.ZodOptional<z.ZodString>;
|
|
21302
21285
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
21303
21286
|
}, z.core.$strip>>>;
|
|
21304
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21305
21287
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21306
21288
|
projectId: z.ZodOptional<z.ZodString>;
|
|
21307
21289
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -21322,8 +21304,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21322
21304
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
21323
21305
|
}, z.core.$strip>>;
|
|
21324
21306
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21325
|
-
name: z.ZodString;
|
|
21326
21307
|
id: z.ZodString;
|
|
21308
|
+
name: z.ZodString;
|
|
21327
21309
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21328
21310
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21329
21311
|
credentialStoreId: z.ZodString;
|
|
@@ -21347,11 +21329,11 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
21347
21329
|
in: {};
|
|
21348
21330
|
}>;
|
|
21349
21331
|
declare const ToolUpdateSchema: z.ZodObject<{
|
|
21350
|
-
name: z.ZodOptional<z.ZodString>;
|
|
21351
21332
|
id: z.ZodOptional<z.ZodString>;
|
|
21352
|
-
|
|
21353
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
21333
|
+
name: z.ZodOptional<z.ZodString>;
|
|
21354
21334
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21335
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21336
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
21355
21337
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
|
|
21356
21338
|
config: z.ZodOptional<z.ZodObject<{
|
|
21357
21339
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21419,11 +21401,11 @@ declare const ToolApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21419
21401
|
id: z.ZodString;
|
|
21420
21402
|
}>, z.core.$strip>;
|
|
21421
21403
|
declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
21422
|
-
name: z.ZodString;
|
|
21423
21404
|
id: z.ZodString;
|
|
21424
|
-
|
|
21425
|
-
tenantId: z.ZodString;
|
|
21405
|
+
name: z.ZodString;
|
|
21426
21406
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21407
|
+
tenantId: z.ZodString;
|
|
21408
|
+
projectId: z.ZodString;
|
|
21427
21409
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
21428
21410
|
config: z.ZodObject<{
|
|
21429
21411
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21459,8 +21441,8 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21459
21441
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
21460
21442
|
}>, z.core.$strip>;
|
|
21461
21443
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
21462
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21463
21444
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21445
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21464
21446
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21465
21447
|
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>>>>>>>;
|
|
21466
21448
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -21830,53 +21812,53 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21830
21812
|
}>;
|
|
21831
21813
|
}, undefined>, undefined>;
|
|
21832
21814
|
declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
21833
|
-
name: z.ZodString;
|
|
21834
21815
|
id: z.ZodString;
|
|
21835
|
-
|
|
21836
|
-
projectId: z.ZodString;
|
|
21837
|
-
tenantId: z.ZodString;
|
|
21816
|
+
name: z.ZodString;
|
|
21838
21817
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21818
|
+
tenantId: z.ZodString;
|
|
21819
|
+
projectId: z.ZodString;
|
|
21820
|
+
agentId: z.ZodString;
|
|
21839
21821
|
functionId: z.ZodString;
|
|
21840
21822
|
}, {
|
|
21841
21823
|
out: {};
|
|
21842
21824
|
in: {};
|
|
21843
21825
|
}>;
|
|
21844
21826
|
declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
21845
|
-
name: z.ZodOptional<z.ZodString>;
|
|
21846
21827
|
id: z.ZodOptional<z.ZodString>;
|
|
21847
|
-
|
|
21848
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
21849
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
21828
|
+
name: z.ZodOptional<z.ZodString>;
|
|
21850
21829
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21830
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21831
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
21832
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
21851
21833
|
functionId: z.ZodOptional<z.ZodString>;
|
|
21852
21834
|
}, {
|
|
21853
21835
|
out: {};
|
|
21854
21836
|
in: {};
|
|
21855
21837
|
}>;
|
|
21856
21838
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21857
|
-
name: z.ZodString;
|
|
21858
21839
|
id: z.ZodString;
|
|
21840
|
+
name: z.ZodString;
|
|
21841
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21842
|
+
agentId: z.ZodString;
|
|
21859
21843
|
createdAt: z.ZodString;
|
|
21860
21844
|
updatedAt: z.ZodString;
|
|
21861
|
-
agentId: z.ZodString;
|
|
21862
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21863
21845
|
functionId: z.ZodString;
|
|
21864
21846
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21865
21847
|
}, z.core.$strip>;
|
|
21866
21848
|
declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
21867
|
-
name: z.ZodString;
|
|
21868
21849
|
id: z.ZodString;
|
|
21869
|
-
|
|
21870
|
-
projectId: z.ZodString;
|
|
21871
|
-
tenantId: z.ZodString;
|
|
21850
|
+
name: z.ZodString;
|
|
21872
21851
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21852
|
+
tenantId: z.ZodString;
|
|
21853
|
+
projectId: z.ZodString;
|
|
21854
|
+
agentId: z.ZodString;
|
|
21873
21855
|
functionId: z.ZodString;
|
|
21874
21856
|
}>, z.core.$strip>;
|
|
21875
21857
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21876
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21877
21858
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21878
|
-
|
|
21859
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21879
21860
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21861
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21880
21862
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21881
21863
|
}, z.core.$strip>;
|
|
21882
21864
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -22642,8 +22624,8 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22642
22624
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
22643
22625
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
22644
22626
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22645
|
-
name: z.ZodString;
|
|
22646
22627
|
id: z.ZodString;
|
|
22628
|
+
name: z.ZodString;
|
|
22647
22629
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22648
22630
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22649
22631
|
credentialStoreId: z.ZodString;
|
|
@@ -22671,32 +22653,32 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22671
22653
|
}>;
|
|
22672
22654
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22673
22655
|
id: z.ZodOptional<z.ZodString>;
|
|
22656
|
+
tenantId: z.ZodString;
|
|
22657
|
+
projectId: z.ZodString;
|
|
22658
|
+
agentId: z.ZodString;
|
|
22674
22659
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22675
22660
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22676
|
-
agentId: z.ZodString;
|
|
22677
|
-
projectId: z.ZodString;
|
|
22678
|
-
tenantId: z.ZodString;
|
|
22679
22661
|
}, {
|
|
22680
22662
|
out: {};
|
|
22681
22663
|
in: {};
|
|
22682
22664
|
}>;
|
|
22683
22665
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22684
22666
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22667
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22668
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22669
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22685
22670
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22686
22671
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22687
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22688
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22689
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22690
22672
|
}, {
|
|
22691
22673
|
out: {};
|
|
22692
22674
|
in: {};
|
|
22693
22675
|
}>;
|
|
22694
22676
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
22695
22677
|
id: z.ZodString;
|
|
22696
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
22697
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
22698
22678
|
createdAt: z.ZodString;
|
|
22699
22679
|
updatedAt: z.ZodString;
|
|
22680
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
22681
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
22700
22682
|
}, z.core.$strip>;
|
|
22701
22683
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
22702
22684
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -25326,7 +25308,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
25326
25308
|
}, {}, {
|
|
25327
25309
|
length: 256;
|
|
25328
25310
|
}>;
|
|
25329
|
-
}, "
|
|
25311
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "toolCallId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
25330
25312
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
25331
25313
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25332
25314
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -25391,12 +25373,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
25391
25373
|
id: z.ZodString;
|
|
25392
25374
|
}>, z.core.$strip>;
|
|
25393
25375
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
25394
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25395
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25396
25376
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25377
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25378
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25379
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25397
25380
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25398
25381
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
25399
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
25400
25382
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
25401
25383
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25402
25384
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -25471,11 +25453,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
25471
25453
|
description: z.ZodString;
|
|
25472
25454
|
}, z.core.$strip>;
|
|
25473
25455
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
25474
|
-
name: z.ZodString;
|
|
25475
25456
|
id: z.ZodString;
|
|
25476
|
-
|
|
25477
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25457
|
+
name: z.ZodString;
|
|
25478
25458
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25459
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25479
25460
|
models: z.ZodOptional<z.ZodObject<{
|
|
25480
25461
|
base: z.ZodOptional<z.ZodObject<{
|
|
25481
25462
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25490,7 +25471,8 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
25490
25471
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25491
25472
|
}, z.core.$strip>>;
|
|
25492
25473
|
}, z.core.$strip>>;
|
|
25493
|
-
|
|
25474
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25475
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25494
25476
|
type: z.ZodLiteral<"internal">;
|
|
25495
25477
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25496
25478
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25524,17 +25506,16 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
25524
25506
|
}, z.core.$strip>>;
|
|
25525
25507
|
}, z.core.$strip>;
|
|
25526
25508
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
25527
|
-
name: z.ZodString;
|
|
25528
25509
|
id: z.ZodString;
|
|
25510
|
+
name: z.ZodString;
|
|
25529
25511
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25530
25512
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25531
25513
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25532
25514
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25533
|
-
name: z.ZodString;
|
|
25534
25515
|
id: z.ZodString;
|
|
25535
|
-
|
|
25536
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25516
|
+
name: z.ZodString;
|
|
25537
25517
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25518
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25538
25519
|
models: z.ZodOptional<z.ZodObject<{
|
|
25539
25520
|
base: z.ZodOptional<z.ZodObject<{
|
|
25540
25521
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25549,7 +25530,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25549
25530
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25550
25531
|
}, z.core.$strip>>;
|
|
25551
25532
|
}, z.core.$strip>>;
|
|
25552
|
-
|
|
25533
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25534
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25553
25535
|
type: z.ZodLiteral<"internal">;
|
|
25554
25536
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25555
25537
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25583,11 +25565,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25583
25565
|
}, z.core.$strip>>;
|
|
25584
25566
|
}, z.core.$strip>>;
|
|
25585
25567
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25586
|
-
name: z.ZodString;
|
|
25587
25568
|
id: z.ZodString;
|
|
25588
|
-
|
|
25589
|
-
tenantId: z.ZodString;
|
|
25569
|
+
name: z.ZodString;
|
|
25590
25570
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25571
|
+
tenantId: z.ZodString;
|
|
25572
|
+
projectId: z.ZodString;
|
|
25591
25573
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
25592
25574
|
config: z.ZodObject<{
|
|
25593
25575
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -25623,13 +25605,13 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25623
25605
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
25624
25606
|
}>, z.core.$strip>>>;
|
|
25625
25607
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25626
|
-
name: z.ZodString;
|
|
25627
25608
|
id: z.ZodString;
|
|
25628
|
-
|
|
25629
|
-
tenantId: z.ZodString;
|
|
25609
|
+
name: z.ZodString;
|
|
25630
25610
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25631
|
-
|
|
25611
|
+
tenantId: z.ZodString;
|
|
25612
|
+
projectId: z.ZodString;
|
|
25632
25613
|
baseUrl: z.ZodURL;
|
|
25614
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25633
25615
|
}>, z.core.$strip>>>;
|
|
25634
25616
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25635
25617
|
id: z.ZodString;
|
|
@@ -25637,12 +25619,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25637
25619
|
description: z.ZodString;
|
|
25638
25620
|
}, z.core.$strip>>>;
|
|
25639
25621
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
25640
|
-
name: z.ZodString;
|
|
25641
25622
|
id: z.ZodString;
|
|
25642
|
-
|
|
25643
|
-
projectId: z.ZodString;
|
|
25644
|
-
tenantId: z.ZodString;
|
|
25623
|
+
name: z.ZodString;
|
|
25645
25624
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25625
|
+
tenantId: z.ZodString;
|
|
25626
|
+
projectId: z.ZodString;
|
|
25627
|
+
agentId: z.ZodString;
|
|
25646
25628
|
functionId: z.ZodString;
|
|
25647
25629
|
}>, z.core.$strip>>>;
|
|
25648
25630
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25652,8 +25634,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25652
25634
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
25653
25635
|
}, z.core.$strip>>>;
|
|
25654
25636
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25655
|
-
name: z.ZodString;
|
|
25656
25637
|
id: z.ZodOptional<z.ZodString>;
|
|
25638
|
+
name: z.ZodString;
|
|
25657
25639
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25658
25640
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25659
25641
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25780,10 +25762,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25780
25762
|
in: {};
|
|
25781
25763
|
}>;
|
|
25782
25764
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25783
|
-
name: z.ZodString;
|
|
25784
25765
|
id: z.ZodString;
|
|
25785
|
-
|
|
25766
|
+
name: z.ZodString;
|
|
25786
25767
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25768
|
+
tenantId: z.ZodString;
|
|
25787
25769
|
models: z.ZodObject<{
|
|
25788
25770
|
base: z.ZodObject<{
|
|
25789
25771
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25832,10 +25814,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25832
25814
|
in: {};
|
|
25833
25815
|
}>;
|
|
25834
25816
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25835
|
-
name: z.ZodString;
|
|
25836
25817
|
id: z.ZodString;
|
|
25837
|
-
|
|
25838
|
-
updatedAt: z.ZodString;
|
|
25818
|
+
name: z.ZodString;
|
|
25839
25819
|
description: z.ZodNullable<z.ZodString>;
|
|
25840
25820
|
models: z.ZodNullable<z.ZodObject<{
|
|
25841
25821
|
base: z.ZodObject<{
|
|
@@ -25855,13 +25835,15 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25855
25835
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25856
25836
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25857
25837
|
}, z.core.$strip>>;
|
|
25838
|
+
createdAt: z.ZodString;
|
|
25839
|
+
updatedAt: z.ZodString;
|
|
25858
25840
|
}, {
|
|
25859
25841
|
out: {};
|
|
25860
25842
|
in: {};
|
|
25861
25843
|
}>;
|
|
25862
25844
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
25863
|
-
name: z.ZodString;
|
|
25864
25845
|
id: z.ZodString;
|
|
25846
|
+
name: z.ZodString;
|
|
25865
25847
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25866
25848
|
models: z.ZodObject<{
|
|
25867
25849
|
base: z.ZodObject<{
|
|
@@ -25911,8 +25893,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
25911
25893
|
in: {};
|
|
25912
25894
|
}>;
|
|
25913
25895
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
25914
|
-
name: z.ZodString;
|
|
25915
25896
|
id: z.ZodString;
|
|
25897
|
+
name: z.ZodString;
|
|
25916
25898
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25917
25899
|
models: z.ZodObject<{
|
|
25918
25900
|
base: z.ZodObject<{
|
|
@@ -25933,17 +25915,16 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25933
25915
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25934
25916
|
}, z.core.$strip>>;
|
|
25935
25917
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25936
|
-
name: z.ZodString;
|
|
25937
25918
|
id: z.ZodString;
|
|
25919
|
+
name: z.ZodString;
|
|
25938
25920
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25939
25921
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25940
25922
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25941
25923
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25942
|
-
name: z.ZodString;
|
|
25943
25924
|
id: z.ZodString;
|
|
25944
|
-
|
|
25945
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25925
|
+
name: z.ZodString;
|
|
25946
25926
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25927
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25947
25928
|
models: z.ZodOptional<z.ZodObject<{
|
|
25948
25929
|
base: z.ZodOptional<z.ZodObject<{
|
|
25949
25930
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25958,7 +25939,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25958
25939
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25959
25940
|
}, z.core.$strip>>;
|
|
25960
25941
|
}, z.core.$strip>>;
|
|
25961
|
-
|
|
25942
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25943
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25962
25944
|
type: z.ZodLiteral<"internal">;
|
|
25963
25945
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25964
25946
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25992,11 +25974,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25992
25974
|
}, z.core.$strip>>;
|
|
25993
25975
|
}, z.core.$strip>>;
|
|
25994
25976
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25995
|
-
name: z.ZodString;
|
|
25996
25977
|
id: z.ZodString;
|
|
25997
|
-
|
|
25998
|
-
tenantId: z.ZodString;
|
|
25978
|
+
name: z.ZodString;
|
|
25999
25979
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25980
|
+
tenantId: z.ZodString;
|
|
25981
|
+
projectId: z.ZodString;
|
|
26000
25982
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
26001
25983
|
config: z.ZodObject<{
|
|
26002
25984
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -26032,13 +26014,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26032
26014
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
26033
26015
|
}>, z.core.$strip>>>;
|
|
26034
26016
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26035
|
-
name: z.ZodString;
|
|
26036
26017
|
id: z.ZodString;
|
|
26037
|
-
|
|
26038
|
-
tenantId: z.ZodString;
|
|
26018
|
+
name: z.ZodString;
|
|
26039
26019
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26040
|
-
|
|
26020
|
+
tenantId: z.ZodString;
|
|
26021
|
+
projectId: z.ZodString;
|
|
26041
26022
|
baseUrl: z.ZodURL;
|
|
26023
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26042
26024
|
}>, z.core.$strip>>>;
|
|
26043
26025
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26044
26026
|
id: z.ZodString;
|
|
@@ -26046,12 +26028,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26046
26028
|
description: z.ZodString;
|
|
26047
26029
|
}, z.core.$strip>>>;
|
|
26048
26030
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
26049
|
-
name: z.ZodString;
|
|
26050
26031
|
id: z.ZodString;
|
|
26051
|
-
|
|
26052
|
-
projectId: z.ZodString;
|
|
26053
|
-
tenantId: z.ZodString;
|
|
26032
|
+
name: z.ZodString;
|
|
26054
26033
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26034
|
+
tenantId: z.ZodString;
|
|
26035
|
+
projectId: z.ZodString;
|
|
26036
|
+
agentId: z.ZodString;
|
|
26055
26037
|
functionId: z.ZodString;
|
|
26056
26038
|
}>, z.core.$strip>>>;
|
|
26057
26039
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -26061,8 +26043,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26061
26043
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
26062
26044
|
}, z.core.$strip>>>;
|
|
26063
26045
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26064
|
-
name: z.ZodString;
|
|
26065
26046
|
id: z.ZodOptional<z.ZodString>;
|
|
26047
|
+
name: z.ZodString;
|
|
26066
26048
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26067
26049
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
26068
26050
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -26130,11 +26112,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26130
26112
|
prompt: z.ZodOptional<z.ZodString>;
|
|
26131
26113
|
}, z.core.$strip>>;
|
|
26132
26114
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26133
|
-
name: z.ZodString;
|
|
26134
26115
|
id: z.ZodString;
|
|
26135
|
-
|
|
26136
|
-
tenantId: z.ZodString;
|
|
26116
|
+
name: z.ZodString;
|
|
26137
26117
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26118
|
+
tenantId: z.ZodString;
|
|
26119
|
+
projectId: z.ZodString;
|
|
26138
26120
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
26139
26121
|
config: z.ZodObject<{
|
|
26140
26122
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -26170,12 +26152,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26170
26152
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
26171
26153
|
}>, z.core.$strip>>;
|
|
26172
26154
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
26173
|
-
name: z.ZodString;
|
|
26174
26155
|
id: z.ZodString;
|
|
26175
|
-
|
|
26176
|
-
projectId: z.ZodString;
|
|
26177
|
-
tenantId: z.ZodString;
|
|
26156
|
+
name: z.ZodString;
|
|
26178
26157
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26158
|
+
tenantId: z.ZodString;
|
|
26159
|
+
projectId: z.ZodString;
|
|
26160
|
+
agentId: z.ZodString;
|
|
26179
26161
|
functionId: z.ZodString;
|
|
26180
26162
|
}>, z.core.$strip>>>;
|
|
26181
26163
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -26186,9 +26168,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26186
26168
|
}, z.core.$strip>>>;
|
|
26187
26169
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26188
26170
|
name: z.ZodString;
|
|
26189
|
-
projectId: z.ZodString;
|
|
26190
|
-
tenantId: z.ZodString;
|
|
26191
26171
|
description: z.ZodString;
|
|
26172
|
+
tenantId: z.ZodString;
|
|
26173
|
+
projectId: z.ZodString;
|
|
26192
26174
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
26193
26175
|
content: z.ZodString;
|
|
26194
26176
|
}>, z.core.$strip>>>;
|
|
@@ -26246,13 +26228,13 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26246
26228
|
in: {};
|
|
26247
26229
|
}>>>;
|
|
26248
26230
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26249
|
-
name: z.ZodString;
|
|
26250
26231
|
id: z.ZodString;
|
|
26251
|
-
|
|
26252
|
-
tenantId: z.ZodString;
|
|
26232
|
+
name: z.ZodString;
|
|
26253
26233
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26254
|
-
|
|
26234
|
+
tenantId: z.ZodString;
|
|
26235
|
+
projectId: z.ZodString;
|
|
26255
26236
|
baseUrl: z.ZodURL;
|
|
26237
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26256
26238
|
}>, z.core.$strip>>>;
|
|
26257
26239
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
26258
26240
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26270,8 +26252,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26270
26252
|
}, z.core.$strip>>>;
|
|
26271
26253
|
}, z.core.$strip>>;
|
|
26272
26254
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26273
|
-
name: z.ZodString;
|
|
26274
26255
|
id: z.ZodString;
|
|
26256
|
+
name: z.ZodString;
|
|
26275
26257
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26276
26258
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26277
26259
|
credentialStoreId: z.ZodString;
|
|
@@ -26290,11 +26272,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
26290
26272
|
in: {};
|
|
26291
26273
|
}>;
|
|
26292
26274
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
26293
|
-
name: z.ZodString;
|
|
26294
26275
|
id: z.ZodString;
|
|
26295
|
-
|
|
26296
|
-
updatedAt: z.ZodString;
|
|
26276
|
+
name: z.ZodString;
|
|
26297
26277
|
description: z.ZodNullable<z.ZodString>;
|
|
26278
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26298
26279
|
models: z.ZodNullable<z.ZodType<{
|
|
26299
26280
|
base?: {
|
|
26300
26281
|
model?: string | undefined;
|
|
@@ -26357,7 +26338,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26357
26338
|
}, {
|
|
26358
26339
|
stepCountIs?: number | undefined;
|
|
26359
26340
|
}>>>;
|
|
26360
|
-
|
|
26341
|
+
createdAt: z.ZodString;
|
|
26342
|
+
updatedAt: z.ZodString;
|
|
26361
26343
|
type: z.ZodLiteral<"internal">;
|
|
26362
26344
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26363
26345
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26383,11 +26365,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
26383
26365
|
}, z.core.$strip>]>>>;
|
|
26384
26366
|
}, z.core.$strip>;
|
|
26385
26367
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26386
|
-
name: z.ZodString;
|
|
26387
26368
|
id: z.ZodString;
|
|
26388
|
-
|
|
26389
|
-
updatedAt: z.ZodString;
|
|
26369
|
+
name: z.ZodString;
|
|
26390
26370
|
description: z.ZodNullable<z.ZodString>;
|
|
26371
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26391
26372
|
models: z.ZodNullable<z.ZodType<{
|
|
26392
26373
|
base?: {
|
|
26393
26374
|
model?: string | undefined;
|
|
@@ -26450,7 +26431,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26450
26431
|
}, {
|
|
26451
26432
|
stepCountIs?: number | undefined;
|
|
26452
26433
|
}>>>;
|
|
26453
|
-
|
|
26434
|
+
createdAt: z.ZodString;
|
|
26435
|
+
updatedAt: z.ZodString;
|
|
26454
26436
|
type: z.ZodLiteral<"internal">;
|
|
26455
26437
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26456
26438
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26482,19 +26464,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26482
26464
|
}, z.core.$strip>]>>>;
|
|
26483
26465
|
}, z.core.$strip>;
|
|
26484
26466
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
26485
|
-
name: z.ZodString;
|
|
26486
26467
|
id: z.ZodString;
|
|
26487
|
-
|
|
26488
|
-
updatedAt: z.ZodString;
|
|
26468
|
+
name: z.ZodString;
|
|
26489
26469
|
description: z.ZodNullable<z.ZodString>;
|
|
26490
26470
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26471
|
+
createdAt: z.ZodString;
|
|
26472
|
+
updatedAt: z.ZodString;
|
|
26491
26473
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26492
26474
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26493
|
-
name: z.ZodString;
|
|
26494
26475
|
id: z.ZodString;
|
|
26495
|
-
|
|
26496
|
-
updatedAt: z.ZodString;
|
|
26476
|
+
name: z.ZodString;
|
|
26497
26477
|
description: z.ZodNullable<z.ZodString>;
|
|
26478
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26498
26479
|
models: z.ZodNullable<z.ZodType<{
|
|
26499
26480
|
base?: {
|
|
26500
26481
|
model?: string | undefined;
|
|
@@ -26557,7 +26538,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26557
26538
|
}, {
|
|
26558
26539
|
stepCountIs?: number | undefined;
|
|
26559
26540
|
}>>>;
|
|
26560
|
-
|
|
26541
|
+
createdAt: z.ZodString;
|
|
26542
|
+
updatedAt: z.ZodString;
|
|
26561
26543
|
type: z.ZodLiteral<"internal">;
|
|
26562
26544
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26563
26545
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26628,12 +26610,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26628
26610
|
description: z.ZodString;
|
|
26629
26611
|
}, z.core.$strip>>>;
|
|
26630
26612
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26631
|
-
name: z.ZodString;
|
|
26632
26613
|
id: z.ZodString;
|
|
26614
|
+
name: z.ZodString;
|
|
26615
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26616
|
+
agentId: z.ZodString;
|
|
26633
26617
|
createdAt: z.ZodString;
|
|
26634
26618
|
updatedAt: z.ZodString;
|
|
26635
|
-
agentId: z.ZodString;
|
|
26636
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26637
26619
|
functionId: z.ZodString;
|
|
26638
26620
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26639
26621
|
}, z.core.$strip>>>;
|
|
@@ -26670,10 +26652,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26670
26652
|
}>, z.core.$strip>>>;
|
|
26671
26653
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26672
26654
|
id: z.ZodString;
|
|
26673
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26674
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26675
26655
|
createdAt: z.ZodString;
|
|
26676
26656
|
updatedAt: z.ZodString;
|
|
26657
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26658
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26677
26659
|
}, z.core.$strip>>;
|
|
26678
26660
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26679
26661
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26710,12 +26692,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26710
26692
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26711
26693
|
}, z.core.$strip>;
|
|
26712
26694
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26713
|
-
name: z.ZodString;
|
|
26714
26695
|
id: z.ZodString;
|
|
26715
|
-
|
|
26716
|
-
updatedAt: z.ZodString;
|
|
26696
|
+
name: z.ZodString;
|
|
26717
26697
|
description: z.ZodNullable<z.ZodString>;
|
|
26718
26698
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26699
|
+
createdAt: z.ZodString;
|
|
26700
|
+
updatedAt: z.ZodString;
|
|
26719
26701
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26720
26702
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26721
26703
|
createdAt: z.ZodString;
|
|
@@ -26763,12 +26745,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26763
26745
|
description: z.ZodString;
|
|
26764
26746
|
}, z.core.$strip>>>;
|
|
26765
26747
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26766
|
-
name: z.ZodString;
|
|
26767
26748
|
id: z.ZodString;
|
|
26749
|
+
name: z.ZodString;
|
|
26750
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26751
|
+
agentId: z.ZodString;
|
|
26768
26752
|
createdAt: z.ZodString;
|
|
26769
26753
|
updatedAt: z.ZodString;
|
|
26770
|
-
agentId: z.ZodString;
|
|
26771
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26772
26754
|
functionId: z.ZodString;
|
|
26773
26755
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26774
26756
|
}, z.core.$strip>>>;
|
|
@@ -26805,10 +26787,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26805
26787
|
}>, z.core.$strip>>>;
|
|
26806
26788
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26807
26789
|
id: z.ZodString;
|
|
26808
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26809
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26810
26790
|
createdAt: z.ZodString;
|
|
26811
26791
|
updatedAt: z.ZodString;
|
|
26792
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26793
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26812
26794
|
}, z.core.$strip>>;
|
|
26813
26795
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26814
26796
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26844,11 +26826,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26844
26826
|
}, z.core.$strip>>;
|
|
26845
26827
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26846
26828
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26847
|
-
name: z.ZodString;
|
|
26848
26829
|
id: z.ZodString;
|
|
26849
|
-
|
|
26850
|
-
updatedAt: z.ZodString;
|
|
26830
|
+
name: z.ZodString;
|
|
26851
26831
|
description: z.ZodNullable<z.ZodString>;
|
|
26832
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26852
26833
|
models: z.ZodNullable<z.ZodType<{
|
|
26853
26834
|
base?: {
|
|
26854
26835
|
model?: string | undefined;
|
|
@@ -26911,7 +26892,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26911
26892
|
}, {
|
|
26912
26893
|
stepCountIs?: number | undefined;
|
|
26913
26894
|
}>>>;
|
|
26914
|
-
|
|
26895
|
+
createdAt: z.ZodString;
|
|
26896
|
+
updatedAt: z.ZodString;
|
|
26915
26897
|
type: z.ZodLiteral<"internal">;
|
|
26916
26898
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26917
26899
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26944,10 +26926,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26944
26926
|
}, z.core.$strip>>;
|
|
26945
26927
|
}, z.core.$strip>;
|
|
26946
26928
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26947
|
-
name: z.ZodString;
|
|
26948
26929
|
id: z.ZodString;
|
|
26949
|
-
|
|
26950
|
-
updatedAt: z.ZodString;
|
|
26930
|
+
name: z.ZodString;
|
|
26951
26931
|
description: z.ZodNullable<z.ZodString>;
|
|
26952
26932
|
models: z.ZodNullable<z.ZodObject<{
|
|
26953
26933
|
base: z.ZodObject<{
|
|
@@ -26967,20 +26947,21 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26967
26947
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26968
26948
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26969
26949
|
}, z.core.$strip>>;
|
|
26950
|
+
createdAt: z.ZodString;
|
|
26951
|
+
updatedAt: z.ZodString;
|
|
26970
26952
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26971
|
-
name: z.ZodString;
|
|
26972
26953
|
id: z.ZodString;
|
|
26973
|
-
|
|
26974
|
-
updatedAt: z.ZodString;
|
|
26954
|
+
name: z.ZodString;
|
|
26975
26955
|
description: z.ZodNullable<z.ZodString>;
|
|
26976
26956
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26957
|
+
createdAt: z.ZodString;
|
|
26958
|
+
updatedAt: z.ZodString;
|
|
26977
26959
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26978
26960
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26979
|
-
name: z.ZodString;
|
|
26980
26961
|
id: z.ZodString;
|
|
26981
|
-
|
|
26982
|
-
updatedAt: z.ZodString;
|
|
26962
|
+
name: z.ZodString;
|
|
26983
26963
|
description: z.ZodNullable<z.ZodString>;
|
|
26964
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26984
26965
|
models: z.ZodNullable<z.ZodType<{
|
|
26985
26966
|
base?: {
|
|
26986
26967
|
model?: string | undefined;
|
|
@@ -27043,7 +27024,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27043
27024
|
}, {
|
|
27044
27025
|
stepCountIs?: number | undefined;
|
|
27045
27026
|
}>>>;
|
|
27046
|
-
|
|
27027
|
+
createdAt: z.ZodString;
|
|
27028
|
+
updatedAt: z.ZodString;
|
|
27047
27029
|
type: z.ZodLiteral<"internal">;
|
|
27048
27030
|
canUse: z.ZodArray<z.ZodObject<{
|
|
27049
27031
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -27114,12 +27096,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27114
27096
|
description: z.ZodString;
|
|
27115
27097
|
}, z.core.$strip>>>;
|
|
27116
27098
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27117
|
-
name: z.ZodString;
|
|
27118
27099
|
id: z.ZodString;
|
|
27100
|
+
name: z.ZodString;
|
|
27101
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27102
|
+
agentId: z.ZodString;
|
|
27119
27103
|
createdAt: z.ZodString;
|
|
27120
27104
|
updatedAt: z.ZodString;
|
|
27121
|
-
agentId: z.ZodString;
|
|
27122
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27123
27105
|
functionId: z.ZodString;
|
|
27124
27106
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27125
27107
|
}, z.core.$strip>>>;
|
|
@@ -27156,10 +27138,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27156
27138
|
}>, z.core.$strip>>>;
|
|
27157
27139
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27158
27140
|
id: z.ZodString;
|
|
27159
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
27160
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
27161
27141
|
createdAt: z.ZodString;
|
|
27162
27142
|
updatedAt: z.ZodString;
|
|
27143
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
27144
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
27163
27145
|
}, z.core.$strip>>;
|
|
27164
27146
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
27165
27147
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27225,12 +27207,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27225
27207
|
id: z.ZodString;
|
|
27226
27208
|
}>, z.core.$strip>>;
|
|
27227
27209
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27228
|
-
name: z.ZodString;
|
|
27229
27210
|
id: z.ZodString;
|
|
27211
|
+
name: z.ZodString;
|
|
27212
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27213
|
+
agentId: z.ZodString;
|
|
27230
27214
|
createdAt: z.ZodString;
|
|
27231
27215
|
updatedAt: z.ZodString;
|
|
27232
|
-
agentId: z.ZodString;
|
|
27233
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27234
27216
|
functionId: z.ZodString;
|
|
27235
27217
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27236
27218
|
}, z.core.$strip>>>;
|
|
@@ -27373,8 +27355,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27373
27355
|
}, z.core.$strip>>>;
|
|
27374
27356
|
}, z.core.$strip>>;
|
|
27375
27357
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27376
|
-
name: z.ZodString;
|
|
27377
27358
|
id: z.ZodString;
|
|
27359
|
+
name: z.ZodString;
|
|
27378
27360
|
createdAt: z.ZodString;
|
|
27379
27361
|
updatedAt: z.ZodString;
|
|
27380
27362
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -27968,10 +27950,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27968
27950
|
in: {};
|
|
27969
27951
|
}>;
|
|
27970
27952
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27971
|
-
name: z.ZodString;
|
|
27972
27953
|
id: z.ZodString;
|
|
27973
|
-
|
|
27974
|
-
updatedAt: z.ZodString;
|
|
27954
|
+
name: z.ZodString;
|
|
27975
27955
|
description: z.ZodNullable<z.ZodString>;
|
|
27976
27956
|
models: z.ZodNullable<z.ZodObject<{
|
|
27977
27957
|
base: z.ZodObject<{
|
|
@@ -27991,6 +27971,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27991
27971
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27992
27972
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27993
27973
|
}, z.core.$strip>>;
|
|
27974
|
+
createdAt: z.ZodString;
|
|
27975
|
+
updatedAt: z.ZodString;
|
|
27994
27976
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
27995
27977
|
createdAt: z.ZodString;
|
|
27996
27978
|
updatedAt: z.ZodString;
|
|
@@ -28021,12 +28003,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28021
28003
|
id: z.ZodString;
|
|
28022
28004
|
}>, z.core.$strip>>;
|
|
28023
28005
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28024
|
-
name: z.ZodString;
|
|
28025
28006
|
id: z.ZodString;
|
|
28007
|
+
name: z.ZodString;
|
|
28008
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28009
|
+
agentId: z.ZodString;
|
|
28026
28010
|
createdAt: z.ZodString;
|
|
28027
28011
|
updatedAt: z.ZodString;
|
|
28028
|
-
agentId: z.ZodString;
|
|
28029
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28030
28012
|
functionId: z.ZodString;
|
|
28031
28013
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28032
28014
|
}, z.core.$strip>>>;
|
|
@@ -28169,8 +28151,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28169
28151
|
}, z.core.$strip>>>;
|
|
28170
28152
|
}, z.core.$strip>>;
|
|
28171
28153
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28172
|
-
name: z.ZodString;
|
|
28173
28154
|
id: z.ZodString;
|
|
28155
|
+
name: z.ZodString;
|
|
28174
28156
|
createdAt: z.ZodString;
|
|
28175
28157
|
updatedAt: z.ZodString;
|
|
28176
28158
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -28760,12 +28742,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28760
28742
|
}>>>;
|
|
28761
28743
|
}, z.core.$strip>>>;
|
|
28762
28744
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28763
|
-
name: z.ZodString;
|
|
28764
28745
|
id: z.ZodString;
|
|
28765
|
-
|
|
28766
|
-
updatedAt: z.ZodString;
|
|
28746
|
+
name: z.ZodString;
|
|
28767
28747
|
description: z.ZodNullable<z.ZodString>;
|
|
28768
28748
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28749
|
+
createdAt: z.ZodString;
|
|
28750
|
+
updatedAt: z.ZodString;
|
|
28769
28751
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28770
28752
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28771
28753
|
createdAt: z.ZodString;
|
|
@@ -28813,12 +28795,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28813
28795
|
description: z.ZodString;
|
|
28814
28796
|
}, z.core.$strip>>>;
|
|
28815
28797
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28816
|
-
name: z.ZodString;
|
|
28817
28798
|
id: z.ZodString;
|
|
28799
|
+
name: z.ZodString;
|
|
28800
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28801
|
+
agentId: z.ZodString;
|
|
28818
28802
|
createdAt: z.ZodString;
|
|
28819
28803
|
updatedAt: z.ZodString;
|
|
28820
|
-
agentId: z.ZodString;
|
|
28821
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28822
28804
|
functionId: z.ZodString;
|
|
28823
28805
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28824
28806
|
}, z.core.$strip>>>;
|
|
@@ -28855,10 +28837,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28855
28837
|
}>, z.core.$strip>>>;
|
|
28856
28838
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28857
28839
|
id: z.ZodString;
|
|
28858
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28859
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28860
28840
|
createdAt: z.ZodString;
|
|
28861
28841
|
updatedAt: z.ZodString;
|
|
28842
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28843
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28862
28844
|
}, z.core.$strip>>;
|
|
28863
28845
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28864
28846
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28894,11 +28876,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28894
28876
|
}, z.core.$strip>>;
|
|
28895
28877
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28896
28878
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28897
|
-
name: z.ZodString;
|
|
28898
28879
|
id: z.ZodString;
|
|
28899
|
-
|
|
28900
|
-
updatedAt: z.ZodString;
|
|
28880
|
+
name: z.ZodString;
|
|
28901
28881
|
description: z.ZodNullable<z.ZodString>;
|
|
28882
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28902
28883
|
models: z.ZodNullable<z.ZodType<{
|
|
28903
28884
|
base?: {
|
|
28904
28885
|
model?: string | undefined;
|
|
@@ -28961,7 +28942,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28961
28942
|
}, {
|
|
28962
28943
|
stepCountIs?: number | undefined;
|
|
28963
28944
|
}>>>;
|
|
28964
|
-
|
|
28945
|
+
createdAt: z.ZodString;
|
|
28946
|
+
updatedAt: z.ZodString;
|
|
28965
28947
|
type: z.ZodLiteral<"internal">;
|
|
28966
28948
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28967
28949
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28999,10 +28981,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28999
28981
|
}>;
|
|
29000
28982
|
declare const ProjectResponse: z.ZodObject<{
|
|
29001
28983
|
data: z.ZodObject<{
|
|
29002
|
-
name: z.ZodString;
|
|
29003
28984
|
id: z.ZodString;
|
|
29004
|
-
|
|
29005
|
-
updatedAt: z.ZodString;
|
|
28985
|
+
name: z.ZodString;
|
|
29006
28986
|
description: z.ZodNullable<z.ZodString>;
|
|
29007
28987
|
models: z.ZodNullable<z.ZodObject<{
|
|
29008
28988
|
base: z.ZodObject<{
|
|
@@ -29022,6 +29002,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
29022
29002
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29023
29003
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29024
29004
|
}, z.core.$strip>>;
|
|
29005
|
+
createdAt: z.ZodString;
|
|
29006
|
+
updatedAt: z.ZodString;
|
|
29025
29007
|
}, {
|
|
29026
29008
|
out: {};
|
|
29027
29009
|
in: {};
|
|
@@ -29252,23 +29234,23 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
29252
29234
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
29253
29235
|
data: z.ZodObject<{
|
|
29254
29236
|
id: z.ZodString;
|
|
29255
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
29256
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
29257
29237
|
createdAt: z.ZodString;
|
|
29258
29238
|
updatedAt: z.ZodString;
|
|
29239
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
29240
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
29259
29241
|
}, z.core.$strip>;
|
|
29260
29242
|
}, z.core.$strip>;
|
|
29261
29243
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
29262
29244
|
data: z.ZodObject<{
|
|
29263
|
-
name: z.ZodNullable<z.ZodString>;
|
|
29264
29245
|
id: z.ZodString;
|
|
29246
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29247
|
+
agentId: z.ZodString;
|
|
29265
29248
|
createdAt: z.ZodString;
|
|
29266
29249
|
updatedAt: z.ZodString;
|
|
29267
|
-
agentId: z.ZodString;
|
|
29268
29250
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29251
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29269
29252
|
publicId: z.ZodString;
|
|
29270
29253
|
keyPrefix: z.ZodString;
|
|
29271
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29272
29254
|
}, {
|
|
29273
29255
|
out: {};
|
|
29274
29256
|
in: {};
|
|
@@ -29276,8 +29258,8 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
29276
29258
|
}, z.core.$strip>;
|
|
29277
29259
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
29278
29260
|
data: z.ZodObject<{
|
|
29279
|
-
name: z.ZodString;
|
|
29280
29261
|
id: z.ZodString;
|
|
29262
|
+
name: z.ZodString;
|
|
29281
29263
|
createdAt: z.ZodString;
|
|
29282
29264
|
updatedAt: z.ZodString;
|
|
29283
29265
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -29881,12 +29863,12 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29881
29863
|
}, z.core.$strip>;
|
|
29882
29864
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29883
29865
|
data: z.ZodObject<{
|
|
29884
|
-
name: z.ZodString;
|
|
29885
29866
|
id: z.ZodString;
|
|
29867
|
+
name: z.ZodString;
|
|
29868
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29869
|
+
agentId: z.ZodString;
|
|
29886
29870
|
createdAt: z.ZodString;
|
|
29887
29871
|
updatedAt: z.ZodString;
|
|
29888
|
-
agentId: z.ZodString;
|
|
29889
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29890
29872
|
functionId: z.ZodString;
|
|
29891
29873
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29892
29874
|
}, z.core.$strip>;
|
|
@@ -30069,8 +30051,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30069
30051
|
signature: z.ZodObject<{
|
|
30070
30052
|
source: z.ZodEnum<{
|
|
30071
30053
|
query: "query";
|
|
30072
|
-
body: "body";
|
|
30073
30054
|
header: "header";
|
|
30055
|
+
body: "body";
|
|
30074
30056
|
}>;
|
|
30075
30057
|
key: z.ZodString;
|
|
30076
30058
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30079,8 +30061,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
30079
30061
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30080
30062
|
source: z.ZodEnum<{
|
|
30081
30063
|
literal: "literal";
|
|
30082
|
-
body: "body";
|
|
30083
30064
|
header: "header";
|
|
30065
|
+
body: "body";
|
|
30084
30066
|
}>;
|
|
30085
30067
|
key: z.ZodOptional<z.ZodString>;
|
|
30086
30068
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30120,10 +30102,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
30120
30102
|
}, z.core.$strip>;
|
|
30121
30103
|
declare const ProjectListResponse: z.ZodObject<{
|
|
30122
30104
|
data: z.ZodArray<z.ZodObject<{
|
|
30123
|
-
name: z.ZodString;
|
|
30124
30105
|
id: z.ZodString;
|
|
30125
|
-
|
|
30126
|
-
updatedAt: z.ZodString;
|
|
30106
|
+
name: z.ZodString;
|
|
30127
30107
|
description: z.ZodNullable<z.ZodString>;
|
|
30128
30108
|
models: z.ZodNullable<z.ZodObject<{
|
|
30129
30109
|
base: z.ZodObject<{
|
|
@@ -30143,6 +30123,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
30143
30123
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
30144
30124
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
30145
30125
|
}, z.core.$strip>>;
|
|
30126
|
+
createdAt: z.ZodString;
|
|
30127
|
+
updatedAt: z.ZodString;
|
|
30146
30128
|
}, {
|
|
30147
30129
|
out: {};
|
|
30148
30130
|
in: {};
|
|
@@ -30397,10 +30379,10 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
30397
30379
|
declare const ContextConfigListResponse: z.ZodObject<{
|
|
30398
30380
|
data: z.ZodArray<z.ZodObject<{
|
|
30399
30381
|
id: z.ZodString;
|
|
30400
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
30401
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
30402
30382
|
createdAt: z.ZodString;
|
|
30403
30383
|
updatedAt: z.ZodString;
|
|
30384
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
30385
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
30404
30386
|
}, z.core.$strip>>;
|
|
30405
30387
|
pagination: z.ZodObject<{
|
|
30406
30388
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30411,15 +30393,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
30411
30393
|
}, z.core.$strip>;
|
|
30412
30394
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
30413
30395
|
data: z.ZodArray<z.ZodObject<{
|
|
30414
|
-
name: z.ZodNullable<z.ZodString>;
|
|
30415
30396
|
id: z.ZodString;
|
|
30397
|
+
name: z.ZodNullable<z.ZodString>;
|
|
30398
|
+
agentId: z.ZodString;
|
|
30416
30399
|
createdAt: z.ZodString;
|
|
30417
30400
|
updatedAt: z.ZodString;
|
|
30418
|
-
agentId: z.ZodString;
|
|
30419
30401
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
30402
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30420
30403
|
publicId: z.ZodString;
|
|
30421
30404
|
keyPrefix: z.ZodString;
|
|
30422
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30423
30405
|
}, {
|
|
30424
30406
|
out: {};
|
|
30425
30407
|
in: {};
|
|
@@ -30433,18 +30415,18 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
30433
30415
|
}, z.core.$strip>;
|
|
30434
30416
|
declare const AppResponse: z.ZodObject<{
|
|
30435
30417
|
data: z.ZodObject<{
|
|
30436
|
-
type: z.ZodString;
|
|
30437
|
-
name: z.ZodString;
|
|
30438
30418
|
id: z.ZodString;
|
|
30419
|
+
name: z.ZodString;
|
|
30420
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30421
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
30422
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
30423
|
+
type: z.ZodString;
|
|
30439
30424
|
createdAt: z.ZodString;
|
|
30440
30425
|
updatedAt: z.ZodString;
|
|
30441
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
30442
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
30443
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30444
30426
|
enabled: z.ZodBoolean;
|
|
30445
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30446
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30447
30427
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
30428
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30429
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30448
30430
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
30449
30431
|
type: z.ZodLiteral<"web_client">;
|
|
30450
30432
|
webClient: z.ZodObject<{
|
|
@@ -30461,18 +30443,18 @@ declare const AppResponse: z.ZodObject<{
|
|
|
30461
30443
|
}, z.core.$strip>;
|
|
30462
30444
|
declare const AppListResponse: z.ZodObject<{
|
|
30463
30445
|
data: z.ZodArray<z.ZodObject<{
|
|
30464
|
-
type: z.ZodString;
|
|
30465
|
-
name: z.ZodString;
|
|
30466
30446
|
id: z.ZodString;
|
|
30447
|
+
name: z.ZodString;
|
|
30448
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30449
|
+
tenantId: z.ZodNullable<z.ZodString>;
|
|
30450
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
30451
|
+
type: z.ZodString;
|
|
30467
30452
|
createdAt: z.ZodString;
|
|
30468
30453
|
updatedAt: z.ZodString;
|
|
30469
|
-
projectId: z.ZodNullable<z.ZodString>;
|
|
30470
|
-
tenantId: z.ZodNullable<z.ZodString>;
|
|
30471
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30472
30454
|
enabled: z.ZodBoolean;
|
|
30473
|
-
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30474
|
-
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30475
30455
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
30456
|
+
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
30457
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
30476
30458
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
30477
30459
|
type: z.ZodLiteral<"web_client">;
|
|
30478
30460
|
webClient: z.ZodObject<{
|
|
@@ -30495,8 +30477,8 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
30495
30477
|
}, z.core.$strip>;
|
|
30496
30478
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
30497
30479
|
data: z.ZodArray<z.ZodObject<{
|
|
30498
|
-
name: z.ZodString;
|
|
30499
30480
|
id: z.ZodString;
|
|
30481
|
+
name: z.ZodString;
|
|
30500
30482
|
createdAt: z.ZodString;
|
|
30501
30483
|
updatedAt: z.ZodString;
|
|
30502
30484
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -31112,12 +31094,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
31112
31094
|
}, z.core.$strip>;
|
|
31113
31095
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
31114
31096
|
data: z.ZodArray<z.ZodObject<{
|
|
31115
|
-
name: z.ZodString;
|
|
31116
31097
|
id: z.ZodString;
|
|
31098
|
+
name: z.ZodString;
|
|
31099
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31100
|
+
agentId: z.ZodString;
|
|
31117
31101
|
createdAt: z.ZodString;
|
|
31118
31102
|
updatedAt: z.ZodString;
|
|
31119
|
-
agentId: z.ZodString;
|
|
31120
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31121
31103
|
functionId: z.ZodString;
|
|
31122
31104
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31123
31105
|
}, z.core.$strip>>;
|
|
@@ -31368,8 +31350,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31368
31350
|
signature: z.ZodObject<{
|
|
31369
31351
|
source: z.ZodEnum<{
|
|
31370
31352
|
query: "query";
|
|
31371
|
-
body: "body";
|
|
31372
31353
|
header: "header";
|
|
31354
|
+
body: "body";
|
|
31373
31355
|
}>;
|
|
31374
31356
|
key: z.ZodString;
|
|
31375
31357
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31378,8 +31360,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
31378
31360
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31379
31361
|
source: z.ZodEnum<{
|
|
31380
31362
|
literal: "literal";
|
|
31381
|
-
body: "body";
|
|
31382
31363
|
header: "header";
|
|
31364
|
+
body: "body";
|
|
31383
31365
|
}>;
|
|
31384
31366
|
key: z.ZodOptional<z.ZodString>;
|
|
31385
31367
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31431,11 +31413,11 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
31431
31413
|
}, z.core.$strip>;
|
|
31432
31414
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
31433
31415
|
data: z.ZodObject<{
|
|
31434
|
-
name: z.ZodString;
|
|
31435
31416
|
id: z.ZodString;
|
|
31417
|
+
name: z.ZodString;
|
|
31418
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31436
31419
|
createdAt: z.ZodString;
|
|
31437
31420
|
updatedAt: z.ZodString;
|
|
31438
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31439
31421
|
enabled: z.ZodBoolean;
|
|
31440
31422
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31441
31423
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -31458,8 +31440,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31458
31440
|
signature: z.ZodObject<{
|
|
31459
31441
|
source: z.ZodEnum<{
|
|
31460
31442
|
query: "query";
|
|
31461
|
-
body: "body";
|
|
31462
31443
|
header: "header";
|
|
31444
|
+
body: "body";
|
|
31463
31445
|
}>;
|
|
31464
31446
|
key: z.ZodString;
|
|
31465
31447
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31468,8 +31450,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31468
31450
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31469
31451
|
source: z.ZodEnum<{
|
|
31470
31452
|
literal: "literal";
|
|
31471
|
-
body: "body";
|
|
31472
31453
|
header: "header";
|
|
31454
|
+
body: "body";
|
|
31473
31455
|
}>;
|
|
31474
31456
|
key: z.ZodOptional<z.ZodString>;
|
|
31475
31457
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31494,11 +31476,11 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
31494
31476
|
}, z.core.$strip>;
|
|
31495
31477
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
31496
31478
|
data: z.ZodObject<{
|
|
31497
|
-
name: z.ZodString;
|
|
31498
31479
|
id: z.ZodString;
|
|
31480
|
+
name: z.ZodString;
|
|
31481
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31499
31482
|
createdAt: z.ZodString;
|
|
31500
31483
|
updatedAt: z.ZodString;
|
|
31501
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31502
31484
|
enabled: z.ZodBoolean;
|
|
31503
31485
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31504
31486
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -31521,8 +31503,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31521
31503
|
signature: z.ZodObject<{
|
|
31522
31504
|
source: z.ZodEnum<{
|
|
31523
31505
|
query: "query";
|
|
31524
|
-
body: "body";
|
|
31525
31506
|
header: "header";
|
|
31507
|
+
body: "body";
|
|
31526
31508
|
}>;
|
|
31527
31509
|
key: z.ZodString;
|
|
31528
31510
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31531,8 +31513,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31531
31513
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31532
31514
|
source: z.ZodEnum<{
|
|
31533
31515
|
literal: "literal";
|
|
31534
|
-
body: "body";
|
|
31535
31516
|
header: "header";
|
|
31517
|
+
body: "body";
|
|
31536
31518
|
}>;
|
|
31537
31519
|
key: z.ZodOptional<z.ZodString>;
|
|
31538
31520
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31558,11 +31540,11 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31558
31540
|
}, z.core.$strip>;
|
|
31559
31541
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
31560
31542
|
data: z.ZodArray<z.ZodObject<{
|
|
31561
|
-
name: z.ZodString;
|
|
31562
31543
|
id: z.ZodString;
|
|
31544
|
+
name: z.ZodString;
|
|
31545
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31563
31546
|
createdAt: z.ZodString;
|
|
31564
31547
|
updatedAt: z.ZodString;
|
|
31565
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31566
31548
|
enabled: z.ZodBoolean;
|
|
31567
31549
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31568
31550
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -31585,8 +31567,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31585
31567
|
signature: z.ZodObject<{
|
|
31586
31568
|
source: z.ZodEnum<{
|
|
31587
31569
|
query: "query";
|
|
31588
|
-
body: "body";
|
|
31589
31570
|
header: "header";
|
|
31571
|
+
body: "body";
|
|
31590
31572
|
}>;
|
|
31591
31573
|
key: z.ZodString;
|
|
31592
31574
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31595,8 +31577,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31595
31577
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31596
31578
|
source: z.ZodEnum<{
|
|
31597
31579
|
literal: "literal";
|
|
31598
|
-
body: "body";
|
|
31599
31580
|
header: "header";
|
|
31581
|
+
body: "body";
|
|
31600
31582
|
}>;
|
|
31601
31583
|
key: z.ZodOptional<z.ZodString>;
|
|
31602
31584
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31626,11 +31608,11 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31626
31608
|
}, z.core.$strip>;
|
|
31627
31609
|
}, z.core.$strip>;
|
|
31628
31610
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
31629
|
-
name: z.ZodString;
|
|
31630
31611
|
id: z.ZodString;
|
|
31612
|
+
name: z.ZodString;
|
|
31613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31631
31614
|
createdAt: z.ZodString;
|
|
31632
31615
|
updatedAt: z.ZodString;
|
|
31633
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31634
31616
|
enabled: z.ZodBoolean;
|
|
31635
31617
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31636
31618
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31644,8 +31626,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
31644
31626
|
timeoutSeconds: z.ZodNumber;
|
|
31645
31627
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
31646
31628
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
31647
|
-
completed: "completed";
|
|
31648
31629
|
failed: "failed";
|
|
31630
|
+
completed: "completed";
|
|
31649
31631
|
}>>;
|
|
31650
31632
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
31651
31633
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -31705,11 +31687,11 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
31705
31687
|
}, z.core.$strip>;
|
|
31706
31688
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
31707
31689
|
data: z.ZodArray<z.ZodObject<{
|
|
31708
|
-
name: z.ZodString;
|
|
31709
31690
|
id: z.ZodString;
|
|
31691
|
+
name: z.ZodString;
|
|
31692
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31710
31693
|
createdAt: z.ZodString;
|
|
31711
31694
|
updatedAt: z.ZodString;
|
|
31712
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31713
31695
|
enabled: z.ZodBoolean;
|
|
31714
31696
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
31715
31697
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
@@ -31723,8 +31705,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
31723
31705
|
timeoutSeconds: z.ZodNumber;
|
|
31724
31706
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
31725
31707
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
31726
|
-
completed: "completed";
|
|
31727
31708
|
failed: "failed";
|
|
31709
|
+
completed: "completed";
|
|
31728
31710
|
}>>;
|
|
31729
31711
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
31730
31712
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -31753,9 +31735,9 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31753
31735
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31754
31736
|
status: z.ZodEnum<{
|
|
31755
31737
|
pending: "pending";
|
|
31738
|
+
failed: "failed";
|
|
31756
31739
|
running: "running";
|
|
31757
31740
|
completed: "completed";
|
|
31758
|
-
failed: "failed";
|
|
31759
31741
|
cancelled: "cancelled";
|
|
31760
31742
|
}>;
|
|
31761
31743
|
}>, z.core.$strip>;
|
|
@@ -31777,9 +31759,9 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31777
31759
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31778
31760
|
status: z.ZodEnum<{
|
|
31779
31761
|
pending: "pending";
|
|
31762
|
+
failed: "failed";
|
|
31780
31763
|
running: "running";
|
|
31781
31764
|
completed: "completed";
|
|
31782
|
-
failed: "failed";
|
|
31783
31765
|
cancelled: "cancelled";
|
|
31784
31766
|
}>;
|
|
31785
31767
|
}>, z.core.$strip>>;
|
|
@@ -31864,11 +31846,11 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
31864
31846
|
}, z.core.$strip>;
|
|
31865
31847
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
31866
31848
|
data: z.ZodArray<z.ZodObject<{
|
|
31867
|
-
name: z.ZodString;
|
|
31868
31849
|
id: z.ZodString;
|
|
31850
|
+
name: z.ZodString;
|
|
31851
|
+
description: z.ZodString;
|
|
31869
31852
|
createdAt: z.ZodString;
|
|
31870
31853
|
updatedAt: z.ZodString;
|
|
31871
|
-
description: z.ZodString;
|
|
31872
31854
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31873
31855
|
content: z.ZodString;
|
|
31874
31856
|
subAgentSkillId: z.ZodString;
|
|
@@ -31879,8 +31861,8 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
31879
31861
|
}, z.core.$strip>;
|
|
31880
31862
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
31881
31863
|
data: z.ZodObject<{
|
|
31882
|
-
name: z.ZodString;
|
|
31883
31864
|
id: z.ZodString;
|
|
31865
|
+
name: z.ZodString;
|
|
31884
31866
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31885
31867
|
models: z.ZodObject<{
|
|
31886
31868
|
base: z.ZodObject<{
|
|
@@ -31901,17 +31883,16 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31901
31883
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31902
31884
|
}, z.core.$strip>>;
|
|
31903
31885
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31904
|
-
name: z.ZodString;
|
|
31905
31886
|
id: z.ZodString;
|
|
31887
|
+
name: z.ZodString;
|
|
31906
31888
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31907
31889
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31908
31890
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31909
31891
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31910
|
-
name: z.ZodString;
|
|
31911
31892
|
id: z.ZodString;
|
|
31912
|
-
|
|
31913
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31893
|
+
name: z.ZodString;
|
|
31914
31894
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31895
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31915
31896
|
models: z.ZodOptional<z.ZodObject<{
|
|
31916
31897
|
base: z.ZodOptional<z.ZodObject<{
|
|
31917
31898
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31926,7 +31907,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31926
31907
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31927
31908
|
}, z.core.$strip>>;
|
|
31928
31909
|
}, z.core.$strip>>;
|
|
31929
|
-
|
|
31910
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31911
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31930
31912
|
type: z.ZodLiteral<"internal">;
|
|
31931
31913
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31932
31914
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31960,11 +31942,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31960
31942
|
}, z.core.$strip>>;
|
|
31961
31943
|
}, z.core.$strip>>;
|
|
31962
31944
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31963
|
-
name: z.ZodString;
|
|
31964
31945
|
id: z.ZodString;
|
|
31965
|
-
|
|
31966
|
-
tenantId: z.ZodString;
|
|
31946
|
+
name: z.ZodString;
|
|
31967
31947
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31948
|
+
tenantId: z.ZodString;
|
|
31949
|
+
projectId: z.ZodString;
|
|
31968
31950
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
31969
31951
|
config: z.ZodObject<{
|
|
31970
31952
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -32000,13 +31982,13 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32000
31982
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
32001
31983
|
}>, z.core.$strip>>>;
|
|
32002
31984
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32003
|
-
name: z.ZodString;
|
|
32004
31985
|
id: z.ZodString;
|
|
32005
|
-
|
|
32006
|
-
tenantId: z.ZodString;
|
|
31986
|
+
name: z.ZodString;
|
|
32007
31987
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32008
|
-
|
|
31988
|
+
tenantId: z.ZodString;
|
|
31989
|
+
projectId: z.ZodString;
|
|
32009
31990
|
baseUrl: z.ZodURL;
|
|
31991
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32010
31992
|
}>, z.core.$strip>>>;
|
|
32011
31993
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32012
31994
|
id: z.ZodString;
|
|
@@ -32014,12 +31996,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32014
31996
|
description: z.ZodString;
|
|
32015
31997
|
}, z.core.$strip>>>;
|
|
32016
31998
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
32017
|
-
name: z.ZodString;
|
|
32018
31999
|
id: z.ZodString;
|
|
32019
|
-
|
|
32020
|
-
projectId: z.ZodString;
|
|
32021
|
-
tenantId: z.ZodString;
|
|
32000
|
+
name: z.ZodString;
|
|
32022
32001
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32002
|
+
tenantId: z.ZodString;
|
|
32003
|
+
projectId: z.ZodString;
|
|
32004
|
+
agentId: z.ZodString;
|
|
32023
32005
|
functionId: z.ZodString;
|
|
32024
32006
|
}>, z.core.$strip>>>;
|
|
32025
32007
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -32029,8 +32011,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32029
32011
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
32030
32012
|
}, z.core.$strip>>>;
|
|
32031
32013
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32032
|
-
name: z.ZodString;
|
|
32033
32014
|
id: z.ZodOptional<z.ZodString>;
|
|
32015
|
+
name: z.ZodString;
|
|
32034
32016
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32035
32017
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32036
32018
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32098,11 +32080,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32098
32080
|
prompt: z.ZodOptional<z.ZodString>;
|
|
32099
32081
|
}, z.core.$strip>>;
|
|
32100
32082
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32101
|
-
name: z.ZodString;
|
|
32102
32083
|
id: z.ZodString;
|
|
32103
|
-
|
|
32104
|
-
tenantId: z.ZodString;
|
|
32084
|
+
name: z.ZodString;
|
|
32105
32085
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32086
|
+
tenantId: z.ZodString;
|
|
32087
|
+
projectId: z.ZodString;
|
|
32106
32088
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
32107
32089
|
config: z.ZodObject<{
|
|
32108
32090
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -32138,12 +32120,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32138
32120
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
32139
32121
|
}>, z.core.$strip>>;
|
|
32140
32122
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
32141
|
-
name: z.ZodString;
|
|
32142
32123
|
id: z.ZodString;
|
|
32143
|
-
|
|
32144
|
-
projectId: z.ZodString;
|
|
32145
|
-
tenantId: z.ZodString;
|
|
32124
|
+
name: z.ZodString;
|
|
32146
32125
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32126
|
+
tenantId: z.ZodString;
|
|
32127
|
+
projectId: z.ZodString;
|
|
32128
|
+
agentId: z.ZodString;
|
|
32147
32129
|
functionId: z.ZodString;
|
|
32148
32130
|
}>, z.core.$strip>>>;
|
|
32149
32131
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -32154,9 +32136,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32154
32136
|
}, z.core.$strip>>>;
|
|
32155
32137
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32156
32138
|
name: z.ZodString;
|
|
32157
|
-
projectId: z.ZodString;
|
|
32158
|
-
tenantId: z.ZodString;
|
|
32159
32139
|
description: z.ZodString;
|
|
32140
|
+
tenantId: z.ZodString;
|
|
32141
|
+
projectId: z.ZodString;
|
|
32160
32142
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
32161
32143
|
content: z.ZodString;
|
|
32162
32144
|
}>, z.core.$strip>>>;
|
|
@@ -32214,13 +32196,13 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32214
32196
|
in: {};
|
|
32215
32197
|
}>>>;
|
|
32216
32198
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32217
|
-
name: z.ZodString;
|
|
32218
32199
|
id: z.ZodString;
|
|
32219
|
-
|
|
32220
|
-
tenantId: z.ZodString;
|
|
32200
|
+
name: z.ZodString;
|
|
32221
32201
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32222
|
-
|
|
32202
|
+
tenantId: z.ZodString;
|
|
32203
|
+
projectId: z.ZodString;
|
|
32223
32204
|
baseUrl: z.ZodURL;
|
|
32205
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32224
32206
|
}>, z.core.$strip>>>;
|
|
32225
32207
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
32226
32208
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32238,8 +32220,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32238
32220
|
}, z.core.$strip>>>;
|
|
32239
32221
|
}, z.core.$strip>>;
|
|
32240
32222
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32241
|
-
name: z.ZodString;
|
|
32242
32223
|
id: z.ZodString;
|
|
32224
|
+
name: z.ZodString;
|
|
32243
32225
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32244
32226
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32245
32227
|
credentialStoreId: z.ZodString;
|
|
@@ -32260,10 +32242,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
32260
32242
|
}, z.core.$strip>;
|
|
32261
32243
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
32262
32244
|
data: z.ZodObject<{
|
|
32263
|
-
name: z.ZodString;
|
|
32264
32245
|
id: z.ZodString;
|
|
32265
|
-
|
|
32266
|
-
updatedAt: z.ZodString;
|
|
32246
|
+
name: z.ZodString;
|
|
32267
32247
|
description: z.ZodNullable<z.ZodString>;
|
|
32268
32248
|
models: z.ZodNullable<z.ZodObject<{
|
|
32269
32249
|
base: z.ZodObject<{
|
|
@@ -32283,20 +32263,21 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32283
32263
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32284
32264
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32285
32265
|
}, z.core.$strip>>;
|
|
32266
|
+
createdAt: z.ZodString;
|
|
32267
|
+
updatedAt: z.ZodString;
|
|
32286
32268
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32287
|
-
name: z.ZodString;
|
|
32288
32269
|
id: z.ZodString;
|
|
32289
|
-
|
|
32290
|
-
updatedAt: z.ZodString;
|
|
32270
|
+
name: z.ZodString;
|
|
32291
32271
|
description: z.ZodNullable<z.ZodString>;
|
|
32292
32272
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32273
|
+
createdAt: z.ZodString;
|
|
32274
|
+
updatedAt: z.ZodString;
|
|
32293
32275
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32294
32276
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32295
|
-
name: z.ZodString;
|
|
32296
32277
|
id: z.ZodString;
|
|
32297
|
-
|
|
32298
|
-
updatedAt: z.ZodString;
|
|
32278
|
+
name: z.ZodString;
|
|
32299
32279
|
description: z.ZodNullable<z.ZodString>;
|
|
32280
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
32300
32281
|
models: z.ZodNullable<z.ZodType<{
|
|
32301
32282
|
base?: {
|
|
32302
32283
|
model?: string | undefined;
|
|
@@ -32359,7 +32340,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32359
32340
|
}, {
|
|
32360
32341
|
stepCountIs?: number | undefined;
|
|
32361
32342
|
}>>>;
|
|
32362
|
-
|
|
32343
|
+
createdAt: z.ZodString;
|
|
32344
|
+
updatedAt: z.ZodString;
|
|
32363
32345
|
type: z.ZodLiteral<"internal">;
|
|
32364
32346
|
canUse: z.ZodArray<z.ZodObject<{
|
|
32365
32347
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -32430,12 +32412,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32430
32412
|
description: z.ZodString;
|
|
32431
32413
|
}, z.core.$strip>>>;
|
|
32432
32414
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32433
|
-
name: z.ZodString;
|
|
32434
32415
|
id: z.ZodString;
|
|
32416
|
+
name: z.ZodString;
|
|
32417
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32418
|
+
agentId: z.ZodString;
|
|
32435
32419
|
createdAt: z.ZodString;
|
|
32436
32420
|
updatedAt: z.ZodString;
|
|
32437
|
-
agentId: z.ZodString;
|
|
32438
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32439
32421
|
functionId: z.ZodString;
|
|
32440
32422
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32441
32423
|
}, z.core.$strip>>>;
|
|
@@ -32472,10 +32454,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32472
32454
|
}>, z.core.$strip>>>;
|
|
32473
32455
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
32474
32456
|
id: z.ZodString;
|
|
32475
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
32476
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
32477
32457
|
createdAt: z.ZodString;
|
|
32478
32458
|
updatedAt: z.ZodString;
|
|
32459
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
32460
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
32479
32461
|
}, z.core.$strip>>;
|
|
32480
32462
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
32481
32463
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32541,12 +32523,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32541
32523
|
id: z.ZodString;
|
|
32542
32524
|
}>, z.core.$strip>>;
|
|
32543
32525
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32544
|
-
name: z.ZodString;
|
|
32545
32526
|
id: z.ZodString;
|
|
32527
|
+
name: z.ZodString;
|
|
32528
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32529
|
+
agentId: z.ZodString;
|
|
32546
32530
|
createdAt: z.ZodString;
|
|
32547
32531
|
updatedAt: z.ZodString;
|
|
32548
|
-
agentId: z.ZodString;
|
|
32549
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32550
32532
|
functionId: z.ZodString;
|
|
32551
32533
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32552
32534
|
}, z.core.$strip>>>;
|
|
@@ -32689,8 +32671,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32689
32671
|
}, z.core.$strip>>>;
|
|
32690
32672
|
}, z.core.$strip>>;
|
|
32691
32673
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32692
|
-
name: z.ZodString;
|
|
32693
32674
|
id: z.ZodString;
|
|
32675
|
+
name: z.ZodString;
|
|
32694
32676
|
createdAt: z.ZodString;
|
|
32695
32677
|
updatedAt: z.ZodString;
|
|
32696
32678
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -33286,10 +33268,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
33286
33268
|
}, z.core.$strip>;
|
|
33287
33269
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
33288
33270
|
data: z.ZodObject<{
|
|
33289
|
-
name: z.ZodString;
|
|
33290
33271
|
id: z.ZodString;
|
|
33291
|
-
|
|
33292
|
-
updatedAt: z.ZodString;
|
|
33272
|
+
name: z.ZodString;
|
|
33293
33273
|
description: z.ZodNullable<z.ZodString>;
|
|
33294
33274
|
models: z.ZodNullable<z.ZodObject<{
|
|
33295
33275
|
base: z.ZodObject<{
|
|
@@ -33309,6 +33289,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33309
33289
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
33310
33290
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
33311
33291
|
}, z.core.$strip>>;
|
|
33292
|
+
createdAt: z.ZodString;
|
|
33293
|
+
updatedAt: z.ZodString;
|
|
33312
33294
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33313
33295
|
createdAt: z.ZodString;
|
|
33314
33296
|
updatedAt: z.ZodString;
|
|
@@ -33339,12 +33321,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33339
33321
|
id: z.ZodString;
|
|
33340
33322
|
}>, z.core.$strip>>;
|
|
33341
33323
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33342
|
-
name: z.ZodString;
|
|
33343
33324
|
id: z.ZodString;
|
|
33325
|
+
name: z.ZodString;
|
|
33326
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33327
|
+
agentId: z.ZodString;
|
|
33344
33328
|
createdAt: z.ZodString;
|
|
33345
33329
|
updatedAt: z.ZodString;
|
|
33346
|
-
agentId: z.ZodString;
|
|
33347
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33348
33330
|
functionId: z.ZodString;
|
|
33349
33331
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33350
33332
|
}, z.core.$strip>>>;
|
|
@@ -33487,8 +33469,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33487
33469
|
}, z.core.$strip>>>;
|
|
33488
33470
|
}, z.core.$strip>>;
|
|
33489
33471
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33490
|
-
name: z.ZodString;
|
|
33491
33472
|
id: z.ZodString;
|
|
33473
|
+
name: z.ZodString;
|
|
33492
33474
|
createdAt: z.ZodString;
|
|
33493
33475
|
updatedAt: z.ZodString;
|
|
33494
33476
|
toolId: z.ZodNullable<z.ZodString>;
|
|
@@ -34078,12 +34060,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34078
34060
|
}>>>;
|
|
34079
34061
|
}, z.core.$strip>>>;
|
|
34080
34062
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34081
|
-
name: z.ZodString;
|
|
34082
34063
|
id: z.ZodString;
|
|
34083
|
-
|
|
34084
|
-
updatedAt: z.ZodString;
|
|
34064
|
+
name: z.ZodString;
|
|
34085
34065
|
description: z.ZodNullable<z.ZodString>;
|
|
34086
34066
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34067
|
+
createdAt: z.ZodString;
|
|
34068
|
+
updatedAt: z.ZodString;
|
|
34087
34069
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34088
34070
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
34089
34071
|
createdAt: z.ZodString;
|
|
@@ -34131,12 +34113,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34131
34113
|
description: z.ZodString;
|
|
34132
34114
|
}, z.core.$strip>>>;
|
|
34133
34115
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34134
|
-
name: z.ZodString;
|
|
34135
34116
|
id: z.ZodString;
|
|
34117
|
+
name: z.ZodString;
|
|
34118
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34119
|
+
agentId: z.ZodString;
|
|
34136
34120
|
createdAt: z.ZodString;
|
|
34137
34121
|
updatedAt: z.ZodString;
|
|
34138
|
-
agentId: z.ZodString;
|
|
34139
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34140
34122
|
functionId: z.ZodString;
|
|
34141
34123
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34142
34124
|
}, z.core.$strip>>>;
|
|
@@ -34173,10 +34155,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34173
34155
|
}>, z.core.$strip>>>;
|
|
34174
34156
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34175
34157
|
id: z.ZodString;
|
|
34176
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
34177
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
34178
34158
|
createdAt: z.ZodString;
|
|
34179
34159
|
updatedAt: z.ZodString;
|
|
34160
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
34161
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
34180
34162
|
}, z.core.$strip>>;
|
|
34181
34163
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
34182
34164
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34212,11 +34194,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34212
34194
|
}, z.core.$strip>>;
|
|
34213
34195
|
prompt: z.ZodNullable<z.ZodString>;
|
|
34214
34196
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34215
|
-
name: z.ZodString;
|
|
34216
34197
|
id: z.ZodString;
|
|
34217
|
-
|
|
34218
|
-
updatedAt: z.ZodString;
|
|
34198
|
+
name: z.ZodString;
|
|
34219
34199
|
description: z.ZodNullable<z.ZodString>;
|
|
34200
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34220
34201
|
models: z.ZodNullable<z.ZodType<{
|
|
34221
34202
|
base?: {
|
|
34222
34203
|
model?: string | undefined;
|
|
@@ -34279,7 +34260,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34279
34260
|
}, {
|
|
34280
34261
|
stepCountIs?: number | undefined;
|
|
34281
34262
|
}>>>;
|
|
34282
|
-
|
|
34263
|
+
createdAt: z.ZodString;
|
|
34264
|
+
updatedAt: z.ZodString;
|
|
34283
34265
|
type: z.ZodLiteral<"internal">;
|
|
34284
34266
|
canUse: z.ZodArray<z.ZodObject<{
|
|
34285
34267
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34318,17 +34300,16 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
34318
34300
|
}, z.core.$strip>;
|
|
34319
34301
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
34320
34302
|
data: z.ZodObject<{
|
|
34321
|
-
name: z.ZodString;
|
|
34322
34303
|
id: z.ZodString;
|
|
34304
|
+
name: z.ZodString;
|
|
34323
34305
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34324
34306
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34325
34307
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34326
34308
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34327
|
-
name: z.ZodString;
|
|
34328
34309
|
id: z.ZodString;
|
|
34329
|
-
|
|
34330
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
34310
|
+
name: z.ZodString;
|
|
34331
34311
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34312
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
34332
34313
|
models: z.ZodOptional<z.ZodObject<{
|
|
34333
34314
|
base: z.ZodOptional<z.ZodObject<{
|
|
34334
34315
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -34343,7 +34324,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34343
34324
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
34344
34325
|
}, z.core.$strip>>;
|
|
34345
34326
|
}, z.core.$strip>>;
|
|
34346
|
-
|
|
34327
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
34328
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
34347
34329
|
type: z.ZodLiteral<"internal">;
|
|
34348
34330
|
canUse: z.ZodArray<z.ZodObject<{
|
|
34349
34331
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34377,11 +34359,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34377
34359
|
}, z.core.$strip>>;
|
|
34378
34360
|
}, z.core.$strip>>;
|
|
34379
34361
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
34380
|
-
name: z.ZodString;
|
|
34381
34362
|
id: z.ZodString;
|
|
34382
|
-
|
|
34383
|
-
tenantId: z.ZodString;
|
|
34363
|
+
name: z.ZodString;
|
|
34384
34364
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34365
|
+
tenantId: z.ZodString;
|
|
34366
|
+
projectId: z.ZodString;
|
|
34385
34367
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
34386
34368
|
config: z.ZodObject<{
|
|
34387
34369
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -34417,13 +34399,13 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34417
34399
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
34418
34400
|
}>, z.core.$strip>>>;
|
|
34419
34401
|
externalAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
34420
|
-
name: z.ZodString;
|
|
34421
34402
|
id: z.ZodString;
|
|
34422
|
-
|
|
34423
|
-
tenantId: z.ZodString;
|
|
34403
|
+
name: z.ZodString;
|
|
34424
34404
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34425
|
-
|
|
34405
|
+
tenantId: z.ZodString;
|
|
34406
|
+
projectId: z.ZodString;
|
|
34426
34407
|
baseUrl: z.ZodURL;
|
|
34408
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34427
34409
|
}>, z.core.$strip>>>;
|
|
34428
34410
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34429
34411
|
id: z.ZodString;
|
|
@@ -34431,12 +34413,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34431
34413
|
description: z.ZodString;
|
|
34432
34414
|
}, z.core.$strip>>>;
|
|
34433
34415
|
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitAgentScope<{
|
|
34434
|
-
name: z.ZodString;
|
|
34435
34416
|
id: z.ZodString;
|
|
34436
|
-
|
|
34437
|
-
projectId: z.ZodString;
|
|
34438
|
-
tenantId: z.ZodString;
|
|
34417
|
+
name: z.ZodString;
|
|
34439
34418
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34419
|
+
tenantId: z.ZodString;
|
|
34420
|
+
projectId: z.ZodString;
|
|
34421
|
+
agentId: z.ZodString;
|
|
34440
34422
|
functionId: z.ZodString;
|
|
34441
34423
|
}>, z.core.$strip>>>;
|
|
34442
34424
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -34446,8 +34428,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34446
34428
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
34447
34429
|
}, z.core.$strip>>>;
|
|
34448
34430
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34449
|
-
name: z.ZodString;
|
|
34450
34431
|
id: z.ZodOptional<z.ZodString>;
|
|
34432
|
+
name: z.ZodString;
|
|
34451
34433
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34452
34434
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
34453
34435
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34517,19 +34499,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34517
34499
|
}, z.core.$strip>;
|
|
34518
34500
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
34519
34501
|
data: z.ZodObject<{
|
|
34520
|
-
name: z.ZodString;
|
|
34521
34502
|
id: z.ZodString;
|
|
34522
|
-
|
|
34523
|
-
updatedAt: z.ZodString;
|
|
34503
|
+
name: z.ZodString;
|
|
34524
34504
|
description: z.ZodNullable<z.ZodString>;
|
|
34525
34505
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34506
|
+
createdAt: z.ZodString;
|
|
34507
|
+
updatedAt: z.ZodString;
|
|
34526
34508
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34527
34509
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34528
|
-
name: z.ZodString;
|
|
34529
34510
|
id: z.ZodString;
|
|
34530
|
-
|
|
34531
|
-
updatedAt: z.ZodString;
|
|
34511
|
+
name: z.ZodString;
|
|
34532
34512
|
description: z.ZodNullable<z.ZodString>;
|
|
34513
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34533
34514
|
models: z.ZodNullable<z.ZodType<{
|
|
34534
34515
|
base?: {
|
|
34535
34516
|
model?: string | undefined;
|
|
@@ -34592,7 +34573,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34592
34573
|
}, {
|
|
34593
34574
|
stepCountIs?: number | undefined;
|
|
34594
34575
|
}>>>;
|
|
34595
|
-
|
|
34576
|
+
createdAt: z.ZodString;
|
|
34577
|
+
updatedAt: z.ZodString;
|
|
34596
34578
|
type: z.ZodLiteral<"internal">;
|
|
34597
34579
|
canUse: z.ZodArray<z.ZodObject<{
|
|
34598
34580
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34663,12 +34645,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34663
34645
|
description: z.ZodString;
|
|
34664
34646
|
}, z.core.$strip>>>;
|
|
34665
34647
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34666
|
-
name: z.ZodString;
|
|
34667
34648
|
id: z.ZodString;
|
|
34649
|
+
name: z.ZodString;
|
|
34650
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34651
|
+
agentId: z.ZodString;
|
|
34668
34652
|
createdAt: z.ZodString;
|
|
34669
34653
|
updatedAt: z.ZodString;
|
|
34670
|
-
agentId: z.ZodString;
|
|
34671
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34672
34654
|
functionId: z.ZodString;
|
|
34673
34655
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34674
34656
|
}, z.core.$strip>>>;
|
|
@@ -34705,10 +34687,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34705
34687
|
}>, z.core.$strip>>>;
|
|
34706
34688
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34707
34689
|
id: z.ZodString;
|
|
34708
|
-
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
34709
|
-
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
34710
34690
|
createdAt: z.ZodString;
|
|
34711
34691
|
updatedAt: z.ZodString;
|
|
34692
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
34693
|
+
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
34712
34694
|
}, z.core.$strip>>;
|
|
34713
34695
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
34714
34696
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34766,11 +34748,11 @@ declare const ComponentAssociationListResponse: z.ZodObject<{
|
|
|
34766
34748
|
}, z.core.$strip>;
|
|
34767
34749
|
declare const McpToolResponse: z.ZodObject<{
|
|
34768
34750
|
data: z.ZodObject<{
|
|
34769
|
-
name: z.ZodString;
|
|
34770
34751
|
id: z.ZodString;
|
|
34771
|
-
|
|
34772
|
-
tenantId: z.ZodString;
|
|
34752
|
+
name: z.ZodString;
|
|
34773
34753
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34754
|
+
tenantId: z.ZodString;
|
|
34755
|
+
projectId: z.ZodString;
|
|
34774
34756
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
34775
34757
|
config: z.ZodObject<{
|
|
34776
34758
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -34827,11 +34809,11 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34827
34809
|
}, z.core.$strip>;
|
|
34828
34810
|
declare const McpToolListResponse: z.ZodObject<{
|
|
34829
34811
|
data: z.ZodArray<z.ZodObject<{
|
|
34830
|
-
name: z.ZodString;
|
|
34831
34812
|
id: z.ZodString;
|
|
34832
|
-
|
|
34833
|
-
tenantId: z.ZodString;
|
|
34813
|
+
name: z.ZodString;
|
|
34834
34814
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34815
|
+
tenantId: z.ZodString;
|
|
34816
|
+
projectId: z.ZodString;
|
|
34835
34817
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
34836
34818
|
config: z.ZodObject<{
|
|
34837
34819
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -37945,16 +37927,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
37945
37927
|
}, {}, {}>;
|
|
37946
37928
|
}, undefined>, undefined>;
|
|
37947
37929
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
37948
|
-
agentId: z.ZodString;
|
|
37949
37930
|
projectId: z.ZodString;
|
|
37931
|
+
agentId: z.ZodString;
|
|
37950
37932
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37951
37933
|
}, {
|
|
37952
37934
|
out: {};
|
|
37953
37935
|
in: {};
|
|
37954
37936
|
}>;
|
|
37955
37937
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
37956
|
-
agentId: z.ZodString;
|
|
37957
37938
|
projectId: z.ZodString;
|
|
37939
|
+
agentId: z.ZodString;
|
|
37958
37940
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37959
37941
|
agentName: z.ZodString;
|
|
37960
37942
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -37970,8 +37952,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
37970
37952
|
selected: "selected";
|
|
37971
37953
|
}>;
|
|
37972
37954
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
37973
|
-
projectId: z.ZodString;
|
|
37974
37955
|
tenantId: z.ZodString;
|
|
37956
|
+
projectId: z.ZodString;
|
|
37975
37957
|
toolId: z.ZodString;
|
|
37976
37958
|
channelAccessMode: z.ZodEnum<{
|
|
37977
37959
|
all: "all";
|