@inkeep/agents-core 0.58.4 → 0.58.6
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/otel-attributes.d.ts +22 -0
- package/dist/constants/otel-attributes.js +22 -0
- 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 +20 -20
- package/dist/data-access/manage/skills.d.ts +17 -17
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgents.d.ts +24 -24
- package/dist/data-access/manage/tools.d.ts +27 -27
- 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/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/schemas.d.ts +381 -381
- package/package.json +3 -3
|
@@ -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
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
825
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
826
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
825
827
|
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,6 +839,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
839
839
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
840
840
|
}, z.core.$strip>>;
|
|
841
841
|
}, z.core.$strip>>>>;
|
|
842
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
842
843
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
843
844
|
stepCountIs?: number | undefined;
|
|
844
845
|
}, {
|
|
@@ -848,8 +849,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
848
849
|
}, {
|
|
849
850
|
stepCountIs?: number | undefined;
|
|
850
851
|
}>>>>>>;
|
|
851
|
-
|
|
852
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
852
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
853
853
|
}, z.core.$strip>;
|
|
854
854
|
declare const SubAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
855
855
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
@@ -2483,7 +2483,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
2483
2483
|
}, {}, {
|
|
2484
2484
|
length: 256;
|
|
2485
2485
|
}>;
|
|
2486
|
-
}, "
|
|
2486
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "description" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, undefined>, undefined>;
|
|
2487
2487
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2488
2488
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2489
2489
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2751,9 +2751,11 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2751
2751
|
}>, z.core.$strip>;
|
|
2752
2752
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2753
2753
|
name: z.ZodString;
|
|
2754
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2755
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2754
2756
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2755
2757
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
|
-
|
|
2758
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2757
2759
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2758
2760
|
base?: {
|
|
2759
2761
|
model?: string | undefined;
|
|
@@ -2807,18 +2809,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2807
2809
|
providerOptions?: Record<string, any> | undefined;
|
|
2808
2810
|
} | undefined;
|
|
2809
2811
|
}>>>>;
|
|
2810
|
-
|
|
2811
|
-
transferCountIs?: number | undefined;
|
|
2812
|
-
}, {
|
|
2813
|
-
transferCountIs?: number | undefined;
|
|
2814
|
-
}, z.core.$ZodTypeInternals<{
|
|
2815
|
-
transferCountIs?: number | undefined;
|
|
2816
|
-
}, {
|
|
2817
|
-
transferCountIs?: number | undefined;
|
|
2818
|
-
}>>>>;
|
|
2819
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2820
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2821
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2812
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2822
2813
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2823
2814
|
enabled?: boolean | undefined;
|
|
2824
2815
|
numEvents?: number | undefined;
|
|
@@ -2876,14 +2867,25 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2876
2867
|
} | undefined;
|
|
2877
2868
|
}[] | undefined;
|
|
2878
2869
|
}>>>>;
|
|
2870
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2871
|
+
transferCountIs?: number | undefined;
|
|
2872
|
+
}, {
|
|
2873
|
+
transferCountIs?: number | undefined;
|
|
2874
|
+
}, z.core.$ZodTypeInternals<{
|
|
2875
|
+
transferCountIs?: number | undefined;
|
|
2876
|
+
}, {
|
|
2877
|
+
transferCountIs?: number | undefined;
|
|
2878
|
+
}>>>>;
|
|
2879
2879
|
id: z.ZodString;
|
|
2880
2880
|
}, z.core.$strip>;
|
|
2881
2881
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2882
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
2882
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2884
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2885
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2884
2886
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2885
2887
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2886
|
-
|
|
2888
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2887
2889
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2888
2890
|
base?: {
|
|
2889
2891
|
model?: string | undefined;
|
|
@@ -2937,18 +2939,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2937
2939
|
providerOptions?: Record<string, any> | undefined;
|
|
2938
2940
|
} | undefined;
|
|
2939
2941
|
}>>>>>>;
|
|
2940
|
-
|
|
2941
|
-
transferCountIs?: number | undefined;
|
|
2942
|
-
}, {
|
|
2943
|
-
transferCountIs?: number | undefined;
|
|
2944
|
-
}, z.core.$ZodTypeInternals<{
|
|
2945
|
-
transferCountIs?: number | undefined;
|
|
2946
|
-
}, {
|
|
2947
|
-
transferCountIs?: number | undefined;
|
|
2948
|
-
}>>>>>>;
|
|
2949
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2950
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2951
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2942
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2952
2943
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2953
2944
|
enabled?: boolean | undefined;
|
|
2954
2945
|
numEvents?: number | undefined;
|
|
@@ -3006,6 +2997,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3006
2997
|
} | undefined;
|
|
3007
2998
|
}[] | undefined;
|
|
3008
2999
|
}>>>>>>;
|
|
3000
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3001
|
+
transferCountIs?: number | undefined;
|
|
3002
|
+
}, {
|
|
3003
|
+
transferCountIs?: number | undefined;
|
|
3004
|
+
}, z.core.$ZodTypeInternals<{
|
|
3005
|
+
transferCountIs?: number | undefined;
|
|
3006
|
+
}, {
|
|
3007
|
+
transferCountIs?: number | undefined;
|
|
3008
|
+
}>>>>>>;
|
|
3009
3009
|
}, z.core.$strip>;
|
|
3010
3010
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
3011
3011
|
name: z.ZodString;
|
|
@@ -3072,8 +3072,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3072
3072
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3073
3073
|
source: z.ZodEnum<{
|
|
3074
3074
|
query: "query";
|
|
3075
|
-
body: "body";
|
|
3076
3075
|
header: "header";
|
|
3076
|
+
body: "body";
|
|
3077
3077
|
}>;
|
|
3078
3078
|
key: z.ZodString;
|
|
3079
3079
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3102,8 +3102,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3102
3102
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3103
3103
|
source: z.ZodEnum<{
|
|
3104
3104
|
literal: "literal";
|
|
3105
|
-
body: "body";
|
|
3106
3105
|
header: "header";
|
|
3106
|
+
body: "body";
|
|
3107
3107
|
}>;
|
|
3108
3108
|
key: z.ZodOptional<z.ZodString>;
|
|
3109
3109
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3212,8 +3212,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3212
3212
|
signature: z.ZodObject<{
|
|
3213
3213
|
source: z.ZodEnum<{
|
|
3214
3214
|
query: "query";
|
|
3215
|
-
body: "body";
|
|
3216
3215
|
header: "header";
|
|
3216
|
+
body: "body";
|
|
3217
3217
|
}>;
|
|
3218
3218
|
key: z.ZodString;
|
|
3219
3219
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3222,8 +3222,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3222
3222
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3223
3223
|
source: z.ZodEnum<{
|
|
3224
3224
|
literal: "literal";
|
|
3225
|
-
body: "body";
|
|
3226
3225
|
header: "header";
|
|
3226
|
+
body: "body";
|
|
3227
3227
|
}>;
|
|
3228
3228
|
key: z.ZodOptional<z.ZodString>;
|
|
3229
3229
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3308,8 +3308,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3308
3308
|
signature: z.ZodObject<{
|
|
3309
3309
|
source: z.ZodEnum<{
|
|
3310
3310
|
query: "query";
|
|
3311
|
-
body: "body";
|
|
3312
3311
|
header: "header";
|
|
3312
|
+
body: "body";
|
|
3313
3313
|
}>;
|
|
3314
3314
|
key: z.ZodString;
|
|
3315
3315
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3318,8 +3318,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3318
3318
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3319
3319
|
source: z.ZodEnum<{
|
|
3320
3320
|
literal: "literal";
|
|
3321
|
-
body: "body";
|
|
3322
3321
|
header: "header";
|
|
3322
|
+
body: "body";
|
|
3323
3323
|
}>;
|
|
3324
3324
|
key: z.ZodOptional<z.ZodString>;
|
|
3325
3325
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3504,13 +3504,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3504
3504
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3505
3505
|
encoding: "hex" | "base64";
|
|
3506
3506
|
signature: {
|
|
3507
|
-
source: "query" | "
|
|
3507
|
+
source: "query" | "header" | "body";
|
|
3508
3508
|
key: string;
|
|
3509
3509
|
prefix?: string | undefined;
|
|
3510
3510
|
regex?: string | undefined;
|
|
3511
3511
|
};
|
|
3512
3512
|
signedComponents: {
|
|
3513
|
-
source: "literal" | "
|
|
3513
|
+
source: "literal" | "header" | "body";
|
|
3514
3514
|
required: boolean;
|
|
3515
3515
|
key?: string | undefined;
|
|
3516
3516
|
value?: string | undefined;
|
|
@@ -3541,13 +3541,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3541
3541
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3542
3542
|
encoding: "hex" | "base64";
|
|
3543
3543
|
signature: {
|
|
3544
|
-
source: "query" | "
|
|
3544
|
+
source: "query" | "header" | "body";
|
|
3545
3545
|
key: string;
|
|
3546
3546
|
prefix?: string | undefined;
|
|
3547
3547
|
regex?: string | undefined;
|
|
3548
3548
|
};
|
|
3549
3549
|
signedComponents: {
|
|
3550
|
-
source: "literal" | "
|
|
3550
|
+
source: "literal" | "header" | "body";
|
|
3551
3551
|
required: boolean;
|
|
3552
3552
|
key?: string | undefined;
|
|
3553
3553
|
value?: string | undefined;
|
|
@@ -3874,13 +3874,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3874
3874
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3875
3875
|
encoding: "hex" | "base64";
|
|
3876
3876
|
signature: {
|
|
3877
|
-
source: "query" | "
|
|
3877
|
+
source: "query" | "header" | "body";
|
|
3878
3878
|
key: string;
|
|
3879
3879
|
prefix?: string | undefined;
|
|
3880
3880
|
regex?: string | undefined;
|
|
3881
3881
|
};
|
|
3882
3882
|
signedComponents: {
|
|
3883
|
-
source: "literal" | "
|
|
3883
|
+
source: "literal" | "header" | "body";
|
|
3884
3884
|
required: boolean;
|
|
3885
3885
|
key?: string | undefined;
|
|
3886
3886
|
value?: string | undefined;
|
|
@@ -3911,13 +3911,13 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
3911
3911
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3912
3912
|
encoding: "hex" | "base64";
|
|
3913
3913
|
signature: {
|
|
3914
|
-
source: "query" | "
|
|
3914
|
+
source: "query" | "header" | "body";
|
|
3915
3915
|
key: string;
|
|
3916
3916
|
prefix?: string | undefined;
|
|
3917
3917
|
regex?: string | undefined;
|
|
3918
3918
|
};
|
|
3919
3919
|
signedComponents: {
|
|
3920
|
-
source: "literal" | "
|
|
3920
|
+
source: "literal" | "header" | "body";
|
|
3921
3921
|
required: boolean;
|
|
3922
3922
|
key?: string | undefined;
|
|
3923
3923
|
value?: string | undefined;
|
|
@@ -4084,7 +4084,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4084
4084
|
}, {}, {
|
|
4085
4085
|
length: 256;
|
|
4086
4086
|
}>;
|
|
4087
|
-
}, "
|
|
4087
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId" | "createdBy">, undefined>, undefined>;
|
|
4088
4088
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4089
4089
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4090
4090
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4137,8 +4137,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4137
4137
|
signature: z.ZodObject<{
|
|
4138
4138
|
source: z.ZodEnum<{
|
|
4139
4139
|
query: "query";
|
|
4140
|
-
body: "body";
|
|
4141
4140
|
header: "header";
|
|
4141
|
+
body: "body";
|
|
4142
4142
|
}>;
|
|
4143
4143
|
key: z.ZodString;
|
|
4144
4144
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4147,8 +4147,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4147
4147
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4148
4148
|
source: z.ZodEnum<{
|
|
4149
4149
|
literal: "literal";
|
|
4150
|
-
body: "body";
|
|
4151
4150
|
header: "header";
|
|
4151
|
+
body: "body";
|
|
4152
4152
|
}>;
|
|
4153
4153
|
key: z.ZodOptional<z.ZodString>;
|
|
4154
4154
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4172,9 +4172,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4172
4172
|
}>, z.core.$strip>;
|
|
4173
4173
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4174
4174
|
name: z.ZodString;
|
|
4175
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4176
4175
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4177
4176
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4177
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4178
4178
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4179
4179
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4180
4180
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -4209,11 +4209,11 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4209
4209
|
in: {};
|
|
4210
4210
|
}>;
|
|
4211
4211
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4212
|
-
id: z.ZodString;
|
|
4213
4212
|
name: z.ZodString;
|
|
4214
|
-
|
|
4213
|
+
id: z.ZodString;
|
|
4215
4214
|
createdAt: z.ZodString;
|
|
4216
4215
|
updatedAt: z.ZodString;
|
|
4216
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4217
4217
|
enabled: z.ZodBoolean;
|
|
4218
4218
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
4219
4219
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -4235,8 +4235,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4235
4235
|
signature: z.ZodObject<{
|
|
4236
4236
|
source: z.ZodEnum<{
|
|
4237
4237
|
query: "query";
|
|
4238
|
-
body: "body";
|
|
4239
4238
|
header: "header";
|
|
4239
|
+
body: "body";
|
|
4240
4240
|
}>;
|
|
4241
4241
|
key: z.ZodString;
|
|
4242
4242
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4245,8 +4245,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4245
4245
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4246
4246
|
source: z.ZodEnum<{
|
|
4247
4247
|
literal: "literal";
|
|
4248
|
-
body: "body";
|
|
4249
4248
|
header: "header";
|
|
4249
|
+
body: "body";
|
|
4250
4250
|
}>;
|
|
4251
4251
|
key: z.ZodOptional<z.ZodString>;
|
|
4252
4252
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -5078,7 +5078,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
5078
5078
|
}, {}, {
|
|
5079
5079
|
length: 256;
|
|
5080
5080
|
}>;
|
|
5081
|
-
}, "id" | "
|
|
5081
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5082
5082
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5083
5083
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
5084
5084
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5841,7 +5841,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
5841
5841
|
}, {}, {
|
|
5842
5842
|
length: 256;
|
|
5843
5843
|
}>;
|
|
5844
|
-
}, "
|
|
5844
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "messageTemplate" | "runAsUserId" | "createdBy" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
|
|
5845
5845
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5846
5846
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5847
5847
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5889,9 +5889,9 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5889
5889
|
}>, z.core.$strip>;
|
|
5890
5890
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5891
5891
|
name: z.ZodString;
|
|
5892
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5893
5892
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5894
5893
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5894
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5895
5895
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5896
5896
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5897
5897
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5907,9 +5907,9 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5907
5907
|
}, z.core.$strip>;
|
|
5908
5908
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5909
5909
|
name: z.ZodString;
|
|
5910
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5911
5910
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5912
5911
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5912
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5913
5913
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5914
5914
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5915
5915
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6770,7 +6770,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
6770
6770
|
}, {}, {
|
|
6771
6771
|
length: 256;
|
|
6772
6772
|
}>;
|
|
6773
|
-
}, "
|
|
6773
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6774
6774
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6775
6775
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6776
6776
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6802,9 +6802,9 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
6802
6802
|
}>, z.core.$strip>;
|
|
6803
6803
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
6804
6804
|
name: z.ZodString;
|
|
6805
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6806
6805
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6807
6806
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6807
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6808
6808
|
status: z.ZodOptional<z.ZodString>;
|
|
6809
6809
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6810
6810
|
scheduledTriggerId: z.ZodString;
|
|
@@ -7377,7 +7377,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
|
|
|
7377
7377
|
}, {}, {
|
|
7378
7378
|
length: 256;
|
|
7379
7379
|
}>;
|
|
7380
|
-
}, "id" | "
|
|
7380
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7381
7381
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7382
7382
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7383
7383
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -7981,9 +7981,9 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7981
7981
|
}>, z.core.$strip>;
|
|
7982
7982
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7983
7983
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7984
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7985
7984
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7986
7985
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7986
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7987
7987
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7988
7988
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7989
7989
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9546,11 +9546,11 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9546
9546
|
}>, z.core.$strip>;
|
|
9547
9547
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
9548
9548
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9549
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9550
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9551
9549
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9552
9550
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9551
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9553
9552
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9553
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9554
9554
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9555
9555
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9556
9556
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -10462,7 +10462,6 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
10462
10462
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10463
10463
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
10464
10464
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10465
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10466
10465
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10467
10466
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10468
10467
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10470,6 +10469,7 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
10470
10469
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10471
10470
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10472
10471
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10472
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10473
10473
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10474
10474
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10475
10475
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -11085,8 +11085,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
11085
11085
|
}, z.core.$strip>;
|
|
11086
11086
|
}>, z.core.$strip>;
|
|
11087
11087
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
11088
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11089
11088
|
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
11089
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11090
11090
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11091
11091
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11092
11092
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -12144,17 +12144,17 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12144
12144
|
id: z.ZodString;
|
|
12145
12145
|
}>, z.core.$strip>;
|
|
12146
12146
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
12147
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
12148
12147
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12149
12148
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12149
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
12150
12150
|
conversationId: z.ZodString;
|
|
12151
12151
|
evaluatorId: z.ZodString;
|
|
12152
12152
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12153
12153
|
}, z.core.$strip>;
|
|
12154
12154
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
12155
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
12156
12155
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12157
12156
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12157
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
12158
12158
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12159
12159
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12160
12160
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -12786,26 +12786,26 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12786
12786
|
}>, z.core.$strip>;
|
|
12787
12787
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
12788
12788
|
name: z.ZodString;
|
|
12789
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12790
12789
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12791
12790
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12791
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12792
12792
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12793
12793
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12794
12794
|
}, z.core.$strip>;
|
|
12795
12795
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
12796
12796
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12797
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12798
12797
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12799
12798
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12799
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12800
12800
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
12801
12801
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12802
12802
|
}, z.core.$strip>;
|
|
12803
12803
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12804
|
-
id: z.ZodString;
|
|
12805
12804
|
name: z.ZodString;
|
|
12806
|
-
|
|
12805
|
+
id: z.ZodString;
|
|
12807
12806
|
createdAt: z.ZodString;
|
|
12808
12807
|
updatedAt: z.ZodString;
|
|
12808
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12809
12809
|
isActive: z.ZodBoolean;
|
|
12810
12810
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12811
12811
|
}, z.core.$strip>;
|
|
@@ -14963,8 +14963,9 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14963
14963
|
}>, z.core.$strip>;
|
|
14964
14964
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14965
14965
|
name: z.ZodString;
|
|
14966
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
14967
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14966
14968
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14967
|
-
prompt: z.ZodString;
|
|
14968
14969
|
model: z.ZodType<{
|
|
14969
14970
|
model?: string | undefined;
|
|
14970
14971
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14978,15 +14979,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14978
14979
|
model?: string | undefined;
|
|
14979
14980
|
providerOptions?: Record<string, any> | undefined;
|
|
14980
14981
|
}>>;
|
|
14981
|
-
|
|
14982
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14982
|
+
prompt: z.ZodString;
|
|
14983
14983
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14984
14984
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14985
14985
|
}, z.core.$strip>;
|
|
14986
14986
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14987
14987
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14988
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14989
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14988
14990
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14989
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14990
14991
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14991
14992
|
model?: string | undefined;
|
|
14992
14993
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -15000,8 +15001,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
15000
15001
|
model?: string | undefined;
|
|
15001
15002
|
providerOptions?: Record<string, any> | undefined;
|
|
15002
15003
|
}>>>>;
|
|
15003
|
-
|
|
15004
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15004
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15005
15005
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
15006
15006
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
15007
15007
|
}, z.core.$strip>;
|
|
@@ -15805,9 +15805,9 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
15805
15805
|
id: z.ZodString;
|
|
15806
15806
|
}>, z.core.$strip>;
|
|
15807
15807
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
15808
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
15809
15808
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15810
15809
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15810
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
15811
15811
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15812
15812
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15813
15813
|
prompt: string;
|
|
@@ -15852,9 +15852,9 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
15852
15852
|
}>>>>;
|
|
15853
15853
|
}, z.core.$strip>;
|
|
15854
15854
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
15855
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
15856
15855
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15857
15856
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15857
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
15858
15858
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
15859
15859
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15860
15860
|
prompt: string;
|
|
@@ -16360,16 +16360,16 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16360
16360
|
}>, z.core.$strip>;
|
|
16361
16361
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
16362
16362
|
name: z.ZodString;
|
|
16363
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16364
16363
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16365
16364
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16365
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16366
16366
|
datasetId: z.ZodString;
|
|
16367
16367
|
}, z.core.$strip>;
|
|
16368
16368
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
16369
16369
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16370
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16371
16370
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16372
16371
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16372
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16373
16373
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16374
16374
|
}, z.core.$strip>;
|
|
16375
16375
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -16678,9 +16678,9 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
16678
16678
|
}>;
|
|
16679
16679
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
16680
16680
|
name: z.ZodString;
|
|
16681
|
-
description: z.ZodString;
|
|
16682
|
-
tenantId: z.ZodString;
|
|
16683
16681
|
projectId: z.ZodString;
|
|
16682
|
+
tenantId: z.ZodString;
|
|
16683
|
+
description: z.ZodString;
|
|
16684
16684
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16685
16685
|
content: z.ZodString;
|
|
16686
16686
|
}, {
|
|
@@ -16688,9 +16688,9 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
16688
16688
|
in: {};
|
|
16689
16689
|
}>;
|
|
16690
16690
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16691
|
-
description: z.ZodOptional<z.ZodString>;
|
|
16692
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16693
16691
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16692
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16693
|
+
description: z.ZodOptional<z.ZodString>;
|
|
16694
16694
|
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16695
16695
|
content: z.ZodOptional<z.ZodString>;
|
|
16696
16696
|
}, {
|
|
@@ -16710,9 +16710,9 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16710
16710
|
}>, z.core.$strip>;
|
|
16711
16711
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16712
16712
|
name: z.ZodString;
|
|
16713
|
-
description: z.ZodString;
|
|
16714
|
-
tenantId: z.ZodString;
|
|
16715
16713
|
projectId: z.ZodString;
|
|
16714
|
+
tenantId: z.ZodString;
|
|
16715
|
+
description: z.ZodString;
|
|
16716
16716
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16717
16717
|
content: z.ZodString;
|
|
16718
16718
|
}>, z.core.$strip>;
|
|
@@ -17836,7 +17836,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod3.BuildSchema<"inser
|
|
|
17836
17836
|
}, {}, {
|
|
17837
17837
|
length: 256;
|
|
17838
17838
|
}>;
|
|
17839
|
-
}, "id" | "
|
|
17839
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17840
17840
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17841
17841
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17842
17842
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18433,11 +18433,11 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
18433
18433
|
in: {};
|
|
18434
18434
|
}>;
|
|
18435
18435
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
18436
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18437
18436
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18438
|
-
|
|
18437
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18439
18438
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18440
18439
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18440
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18441
18441
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
18442
18442
|
[x: string]: unknown;
|
|
18443
18443
|
type: "object";
|
|
@@ -18852,10 +18852,10 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18852
18852
|
}>, z.core.$strip>;
|
|
18853
18853
|
declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
|
|
18854
18854
|
agentId: z.ZodString;
|
|
18855
|
-
index: z.ZodInt;
|
|
18856
|
-
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18857
18855
|
subAgentId: z.ZodString;
|
|
18858
18856
|
skillId: z.ZodString;
|
|
18857
|
+
index: z.ZodInt;
|
|
18858
|
+
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18859
18859
|
}, {
|
|
18860
18860
|
out: {};
|
|
18861
18861
|
in: {};
|
|
@@ -18864,17 +18864,17 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18864
18864
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18865
18865
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18866
18866
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18867
|
-
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
18868
|
-
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18869
18867
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18870
18868
|
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18869
|
+
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
18870
|
+
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18871
18871
|
}, z.core.$strip>;
|
|
18872
18872
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18873
|
-
id: z.ZodString;
|
|
18874
18873
|
name: z.ZodString;
|
|
18875
|
-
|
|
18874
|
+
id: z.ZodString;
|
|
18876
18875
|
createdAt: z.ZodString;
|
|
18877
18876
|
updatedAt: z.ZodString;
|
|
18877
|
+
description: z.ZodString;
|
|
18878
18878
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18879
18879
|
content: z.ZodString;
|
|
18880
18880
|
subAgentSkillId: z.ZodString;
|
|
@@ -18947,20 +18947,20 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18947
18947
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18948
18948
|
}>, z.core.$strip>;
|
|
18949
18949
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18950
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18951
18950
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18952
|
-
|
|
18951
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18953
18952
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18954
18953
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18954
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18955
18955
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18956
18956
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
18957
18957
|
}, z.core.$strip>;
|
|
18958
18958
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18959
|
-
id: z.ZodString;
|
|
18960
18959
|
name: z.ZodString;
|
|
18960
|
+
id: z.ZodString;
|
|
18961
|
+
createdAt: z.ZodString;
|
|
18962
|
+
updatedAt: z.ZodString;
|
|
18961
18963
|
description: z.ZodNullable<z.ZodString>;
|
|
18962
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18963
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18964
18964
|
models: z.ZodNullable<z.ZodType<{
|
|
18965
18965
|
base?: {
|
|
18966
18966
|
model?: string | undefined;
|
|
@@ -19014,6 +19014,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19014
19014
|
providerOptions?: Record<string, any> | undefined;
|
|
19015
19015
|
} | undefined;
|
|
19016
19016
|
}>>>;
|
|
19017
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
19017
19018
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
19018
19019
|
stepCountIs?: number | undefined;
|
|
19019
19020
|
}, {
|
|
@@ -19023,15 +19024,14 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19023
19024
|
}, {
|
|
19024
19025
|
stepCountIs?: number | undefined;
|
|
19025
19026
|
}>>>;
|
|
19026
|
-
|
|
19027
|
-
updatedAt: z.ZodString;
|
|
19027
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
19028
19028
|
type: z.ZodLiteral<"internal">;
|
|
19029
19029
|
}, z.core.$strip>, z.ZodObject<{
|
|
19030
|
-
id: z.ZodString;
|
|
19031
19030
|
name: z.ZodString;
|
|
19032
|
-
|
|
19031
|
+
id: z.ZodString;
|
|
19033
19032
|
createdAt: z.ZodString;
|
|
19034
19033
|
updatedAt: z.ZodString;
|
|
19034
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19035
19035
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19036
19036
|
baseUrl: z.ZodString;
|
|
19037
19037
|
type: z.ZodLiteral<"external">;
|
|
@@ -19498,23 +19498,23 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19498
19498
|
}>;
|
|
19499
19499
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19500
19500
|
name: z.ZodOptional<z.ZodString>;
|
|
19501
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19502
19501
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19502
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19503
19503
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19504
19504
|
}, {
|
|
19505
19505
|
out: {};
|
|
19506
19506
|
in: {};
|
|
19507
19507
|
}>;
|
|
19508
19508
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19509
|
-
id: z.ZodString;
|
|
19510
19509
|
name: z.ZodNullable<z.ZodString>;
|
|
19511
|
-
|
|
19510
|
+
id: z.ZodString;
|
|
19512
19511
|
createdAt: z.ZodString;
|
|
19513
19512
|
updatedAt: z.ZodString;
|
|
19514
|
-
|
|
19513
|
+
agentId: z.ZodString;
|
|
19515
19514
|
publicId: z.ZodString;
|
|
19516
19515
|
keyPrefix: z.ZodString;
|
|
19517
19516
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19517
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19518
19518
|
}, {
|
|
19519
19519
|
out: {};
|
|
19520
19520
|
in: {};
|
|
@@ -19522,15 +19522,15 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
19522
19522
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
19523
19523
|
data: z.ZodObject<{
|
|
19524
19524
|
apiKey: z.ZodObject<{
|
|
19525
|
-
id: z.ZodString;
|
|
19526
19525
|
name: z.ZodNullable<z.ZodString>;
|
|
19527
|
-
|
|
19526
|
+
id: z.ZodString;
|
|
19528
19527
|
createdAt: z.ZodString;
|
|
19529
19528
|
updatedAt: z.ZodString;
|
|
19530
|
-
|
|
19529
|
+
agentId: z.ZodString;
|
|
19531
19530
|
publicId: z.ZodString;
|
|
19532
19531
|
keyPrefix: z.ZodString;
|
|
19533
19532
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
19533
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19534
19534
|
}, {
|
|
19535
19535
|
out: {};
|
|
19536
19536
|
in: {};
|
|
@@ -19540,9 +19540,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19540
19540
|
}, z.core.$strip>;
|
|
19541
19541
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
19542
19542
|
name: z.ZodString;
|
|
19543
|
-
agentId: z.ZodString;
|
|
19544
19543
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19545
19544
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19545
|
+
agentId: z.ZodString;
|
|
19546
19546
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19547
19547
|
}, {
|
|
19548
19548
|
out: {};
|
|
@@ -19550,8 +19550,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19550
19550
|
}>;
|
|
19551
19551
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19552
19552
|
name: z.ZodOptional<z.ZodString>;
|
|
19553
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19554
19553
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19554
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19555
19555
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19556
19556
|
}, {
|
|
19557
19557
|
out: {};
|
|
@@ -20043,15 +20043,15 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
20043
20043
|
in: {};
|
|
20044
20044
|
}>;
|
|
20045
20045
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
20046
|
-
id: z.ZodString;
|
|
20047
20046
|
name: z.ZodString;
|
|
20047
|
+
id: z.ZodString;
|
|
20048
20048
|
createdAt: z.ZodString;
|
|
20049
20049
|
updatedAt: z.ZodString;
|
|
20050
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
20051
20050
|
userId: z.ZodNullable<z.ZodString>;
|
|
20052
20051
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
20053
20052
|
credentialStoreId: z.ZodString;
|
|
20054
20053
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20054
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
20055
20055
|
type: z.ZodEnum<{
|
|
20056
20056
|
readonly memory: "memory";
|
|
20057
20057
|
readonly keychain: "keychain";
|
|
@@ -20634,15 +20634,15 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20634
20634
|
}>>>;
|
|
20635
20635
|
}, z.core.$strip>;
|
|
20636
20636
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20637
|
-
id: z.ZodString;
|
|
20638
20637
|
name: z.ZodString;
|
|
20638
|
+
id: z.ZodString;
|
|
20639
20639
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20640
20640
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20641
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20642
20641
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20643
20642
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20644
20643
|
credentialStoreId: z.ZodString;
|
|
20645
20644
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20645
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20646
20646
|
type: z.ZodEnum<{
|
|
20647
20647
|
readonly memory: "memory";
|
|
20648
20648
|
readonly keychain: "keychain";
|
|
@@ -20650,15 +20650,15 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20650
20650
|
}>;
|
|
20651
20651
|
}, z.core.$strip>;
|
|
20652
20652
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20653
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20654
20653
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20654
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20655
20655
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20656
20656
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20657
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20658
20657
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20659
20658
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20660
20659
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20661
20660
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20661
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20662
20662
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20663
20663
|
readonly memory: "memory";
|
|
20664
20664
|
readonly keychain: "keychain";
|
|
@@ -20781,16 +20781,16 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20781
20781
|
in: {};
|
|
20782
20782
|
}>;
|
|
20783
20783
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
20784
|
-
id: z.ZodString;
|
|
20785
20784
|
name: z.ZodString;
|
|
20785
|
+
id: z.ZodString;
|
|
20786
20786
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20787
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20788
20787
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
20789
20788
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20790
20789
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20791
20790
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20792
20791
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20793
20792
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20793
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20794
20794
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20795
20795
|
name: z.ZodString;
|
|
20796
20796
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20817,15 +20817,15 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20817
20817
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
20818
20818
|
}, z.core.$strip>>;
|
|
20819
20819
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20820
|
-
id: z.ZodString;
|
|
20821
20820
|
name: z.ZodString;
|
|
20821
|
+
id: z.ZodString;
|
|
20822
20822
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20823
20823
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20824
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20825
20824
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20826
20825
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20827
20826
|
credentialStoreId: z.ZodString;
|
|
20828
20827
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20828
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20829
20829
|
type: z.ZodEnum<{
|
|
20830
20830
|
readonly memory: "memory";
|
|
20831
20831
|
readonly keychain: "keychain";
|
|
@@ -20960,11 +20960,11 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20960
20960
|
}, z.core.$strip>;
|
|
20961
20961
|
}>, z.core.$strip>;
|
|
20962
20962
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20963
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20964
20963
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20965
|
-
|
|
20964
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20966
20965
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20967
20966
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20967
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20968
20968
|
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>>>>>>>;
|
|
20969
20969
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20970
20970
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21361,12 +21361,12 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21361
21361
|
in: {};
|
|
21362
21362
|
}>;
|
|
21363
21363
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21364
|
-
id: z.ZodString;
|
|
21365
21364
|
name: z.ZodString;
|
|
21366
|
-
|
|
21367
|
-
agentId: z.ZodString;
|
|
21365
|
+
id: z.ZodString;
|
|
21368
21366
|
createdAt: z.ZodString;
|
|
21369
21367
|
updatedAt: z.ZodString;
|
|
21368
|
+
agentId: z.ZodString;
|
|
21369
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21370
21370
|
functionId: z.ZodString;
|
|
21371
21371
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21372
21372
|
}, z.core.$strip>;
|
|
@@ -21382,12 +21382,12 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21382
21382
|
id: z.ZodString;
|
|
21383
21383
|
}>, z.core.$strip>;
|
|
21384
21384
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21385
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21386
21385
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21387
|
-
|
|
21388
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21386
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21389
21387
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21390
21388
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21389
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21390
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21391
21391
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21392
21392
|
}, z.core.$strip>;
|
|
21393
21393
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -21761,9 +21761,9 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
21761
21761
|
id: z.ZodString;
|
|
21762
21762
|
}>, z.core.$strip>;
|
|
21763
21763
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21764
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
21765
21764
|
subAgentId: z.ZodString;
|
|
21766
21765
|
functionToolId: z.ZodString;
|
|
21766
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
21767
21767
|
}, {
|
|
21768
21768
|
out: {};
|
|
21769
21769
|
in: {};
|
|
@@ -22155,15 +22155,15 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22155
22155
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
22156
22156
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
22157
22157
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22158
|
-
id: z.ZodString;
|
|
22159
22158
|
name: z.ZodString;
|
|
22159
|
+
id: z.ZodString;
|
|
22160
22160
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22161
22161
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22162
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22163
22162
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22164
22163
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22165
22164
|
credentialStoreId: z.ZodString;
|
|
22166
22165
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22166
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22167
22167
|
type: z.ZodEnum<{
|
|
22168
22168
|
readonly memory: "memory";
|
|
22169
22169
|
readonly keychain: "keychain";
|
|
@@ -22186,32 +22186,32 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22186
22186
|
}>;
|
|
22187
22187
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22188
22188
|
id: z.ZodOptional<z.ZodString>;
|
|
22189
|
-
tenantId: z.ZodString;
|
|
22190
|
-
projectId: z.ZodString;
|
|
22191
|
-
agentId: z.ZodString;
|
|
22192
22189
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22193
22190
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22191
|
+
agentId: z.ZodString;
|
|
22192
|
+
projectId: z.ZodString;
|
|
22193
|
+
tenantId: z.ZodString;
|
|
22194
22194
|
}, {
|
|
22195
22195
|
out: {};
|
|
22196
22196
|
in: {};
|
|
22197
22197
|
}>;
|
|
22198
22198
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22199
22199
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22200
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22201
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22202
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22203
22200
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22204
22201
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22202
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22203
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22204
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22205
22205
|
}, {
|
|
22206
22206
|
out: {};
|
|
22207
22207
|
in: {};
|
|
22208
22208
|
}>;
|
|
22209
22209
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
22210
22210
|
id: z.ZodString;
|
|
22211
|
-
createdAt: z.ZodString;
|
|
22212
|
-
updatedAt: z.ZodString;
|
|
22213
22211
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
22214
22212
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
22213
|
+
createdAt: z.ZodString;
|
|
22214
|
+
updatedAt: z.ZodString;
|
|
22215
22215
|
}, z.core.$strip>;
|
|
22216
22216
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
22217
22217
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22712,12 +22712,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22712
22712
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22713
22713
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22714
22714
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22715
|
-
|
|
22715
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22716
22716
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22717
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22717
22718
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22718
22719
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22719
22720
|
}, z.core.$strip>>>>>>;
|
|
22720
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22721
22721
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22722
22722
|
}, z.core.$strip>;
|
|
22723
22723
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -23106,9 +23106,9 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23106
23106
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23107
23107
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23108
23108
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23109
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23109
23110
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23110
23111
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23111
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23112
23112
|
}, z.core.$strip>;
|
|
23113
23113
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
23114
23114
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
@@ -23496,8 +23496,8 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23496
23496
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23497
23497
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23498
23498
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23499
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23500
23499
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23500
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23501
23501
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23502
23502
|
}, z.core.$strip>;
|
|
23503
23503
|
declare const LedgerArtifactSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -24841,7 +24841,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
24841
24841
|
}, {}, {
|
|
24842
24842
|
length: 256;
|
|
24843
24843
|
}>;
|
|
24844
|
-
}, "
|
|
24844
|
+
}, "name" | "id" | "createdAt" | "updatedAt" | "projectId" | "tenantId" | "description" | "type" | "metadata" | "toolCallId" | "taskId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24845
24845
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24846
24846
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24847
24847
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24906,17 +24906,17 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24906
24906
|
id: z.ZodString;
|
|
24907
24907
|
}>, z.core.$strip>;
|
|
24908
24908
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24909
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24910
24909
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24911
|
-
|
|
24912
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24910
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24913
24911
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24914
24912
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24913
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24914
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24915
24915
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
24916
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24916
24917
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24917
24918
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24918
24919
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24919
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24920
24920
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
24921
24921
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24922
24922
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
@@ -24986,10 +24986,11 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24986
24986
|
description: z.ZodString;
|
|
24987
24987
|
}, z.core.$strip>;
|
|
24988
24988
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24989
|
-
id: z.ZodString;
|
|
24990
24989
|
name: z.ZodString;
|
|
24990
|
+
id: z.ZodString;
|
|
24991
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24992
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24991
24993
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24992
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24993
24994
|
models: z.ZodOptional<z.ZodObject<{
|
|
24994
24995
|
base: z.ZodOptional<z.ZodObject<{
|
|
24995
24996
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25004,8 +25005,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
25004
25005
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25005
25006
|
}, z.core.$strip>>;
|
|
25006
25007
|
}, z.core.$strip>>;
|
|
25007
|
-
|
|
25008
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25008
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25009
25009
|
type: z.ZodLiteral<"internal">;
|
|
25010
25010
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25011
25011
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25040,17 +25040,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
25040
25040
|
}, z.core.$strip>;
|
|
25041
25041
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
25042
25042
|
name: z.ZodString;
|
|
25043
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25044
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25045
25043
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25046
25044
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25045
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25046
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25047
25047
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25048
25048
|
id: z.ZodString;
|
|
25049
25049
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25050
|
-
id: z.ZodString;
|
|
25051
25050
|
name: z.ZodString;
|
|
25051
|
+
id: z.ZodString;
|
|
25052
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25053
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25052
25054
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25053
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25054
25055
|
models: z.ZodOptional<z.ZodObject<{
|
|
25055
25056
|
base: z.ZodOptional<z.ZodObject<{
|
|
25056
25057
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25065,8 +25066,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25065
25066
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25066
25067
|
}, z.core.$strip>>;
|
|
25067
25068
|
}, z.core.$strip>>;
|
|
25068
|
-
|
|
25069
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25069
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25070
25070
|
type: z.ZodLiteral<"internal">;
|
|
25071
25071
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25072
25072
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25178,9 +25178,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25178
25178
|
}, z.core.$strip>>>;
|
|
25179
25179
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25180
25180
|
name: z.ZodString;
|
|
25181
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25182
25181
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25183
25182
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25183
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25184
25184
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25185
25185
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25186
25186
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -25194,9 +25194,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25194
25194
|
}, z.core.$strip>>>;
|
|
25195
25195
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25196
25196
|
name: z.ZodString;
|
|
25197
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25198
25197
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25199
25198
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25199
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25200
25200
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25201
25201
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25202
25202
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25309,10 +25309,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25309
25309
|
in: {};
|
|
25310
25310
|
}>;
|
|
25311
25311
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25312
|
-
id: z.ZodString;
|
|
25313
25312
|
name: z.ZodString;
|
|
25314
|
-
|
|
25313
|
+
id: z.ZodString;
|
|
25315
25314
|
tenantId: z.ZodString;
|
|
25315
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25316
25316
|
models: z.ZodObject<{
|
|
25317
25317
|
base: z.ZodObject<{
|
|
25318
25318
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25361,8 +25361,10 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25361
25361
|
in: {};
|
|
25362
25362
|
}>;
|
|
25363
25363
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25364
|
-
id: z.ZodString;
|
|
25365
25364
|
name: z.ZodString;
|
|
25365
|
+
id: z.ZodString;
|
|
25366
|
+
createdAt: z.ZodString;
|
|
25367
|
+
updatedAt: z.ZodString;
|
|
25366
25368
|
description: z.ZodNullable<z.ZodString>;
|
|
25367
25369
|
models: z.ZodNullable<z.ZodObject<{
|
|
25368
25370
|
base: z.ZodObject<{
|
|
@@ -25382,15 +25384,13 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25382
25384
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25383
25385
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25384
25386
|
}, z.core.$strip>>;
|
|
25385
|
-
createdAt: z.ZodString;
|
|
25386
|
-
updatedAt: z.ZodString;
|
|
25387
25387
|
}, {
|
|
25388
25388
|
out: {};
|
|
25389
25389
|
in: {};
|
|
25390
25390
|
}>;
|
|
25391
25391
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
25392
|
-
id: z.ZodString;
|
|
25393
25392
|
name: z.ZodString;
|
|
25393
|
+
id: z.ZodString;
|
|
25394
25394
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25395
25395
|
models: z.ZodObject<{
|
|
25396
25396
|
base: z.ZodObject<{
|
|
@@ -25440,8 +25440,8 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
25440
25440
|
in: {};
|
|
25441
25441
|
}>;
|
|
25442
25442
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
25443
|
-
id: z.ZodString;
|
|
25444
25443
|
name: z.ZodString;
|
|
25444
|
+
id: z.ZodString;
|
|
25445
25445
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25446
25446
|
models: z.ZodObject<{
|
|
25447
25447
|
base: z.ZodObject<{
|
|
@@ -25463,17 +25463,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25463
25463
|
}, z.core.$strip>>;
|
|
25464
25464
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25465
25465
|
name: z.ZodString;
|
|
25466
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25467
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25468
25466
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25469
25467
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25468
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25469
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25470
25470
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25471
25471
|
id: z.ZodString;
|
|
25472
25472
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25473
|
-
id: z.ZodString;
|
|
25474
25473
|
name: z.ZodString;
|
|
25474
|
+
id: z.ZodString;
|
|
25475
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25476
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25475
25477
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25476
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25477
25478
|
models: z.ZodOptional<z.ZodObject<{
|
|
25478
25479
|
base: z.ZodOptional<z.ZodObject<{
|
|
25479
25480
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25488,8 +25489,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25488
25489
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25489
25490
|
}, z.core.$strip>>;
|
|
25490
25491
|
}, z.core.$strip>>;
|
|
25491
|
-
|
|
25492
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25492
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25493
25493
|
type: z.ZodLiteral<"internal">;
|
|
25494
25494
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25495
25495
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25601,9 +25601,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25601
25601
|
}, z.core.$strip>>>;
|
|
25602
25602
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25603
25603
|
name: z.ZodString;
|
|
25604
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25605
25604
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25606
25605
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25606
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25607
25607
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25608
25608
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25609
25609
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -25617,9 +25617,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25617
25617
|
}, z.core.$strip>>>;
|
|
25618
25618
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25619
25619
|
name: z.ZodString;
|
|
25620
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25621
25620
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25622
25621
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25622
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25623
25623
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25624
25624
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25625
25625
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25735,9 +25735,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25735
25735
|
}, z.core.$strip>>>;
|
|
25736
25736
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25737
25737
|
name: z.ZodString;
|
|
25738
|
-
description: z.ZodString;
|
|
25739
|
-
tenantId: z.ZodString;
|
|
25740
25738
|
projectId: z.ZodString;
|
|
25739
|
+
tenantId: z.ZodString;
|
|
25740
|
+
description: z.ZodString;
|
|
25741
25741
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25742
25742
|
content: z.ZodString;
|
|
25743
25743
|
}>, z.core.$strip>>>;
|
|
@@ -25823,15 +25823,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25823
25823
|
}, z.core.$strip>>>;
|
|
25824
25824
|
}, z.core.$strip>>;
|
|
25825
25825
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25826
|
-
id: z.ZodString;
|
|
25827
25826
|
name: z.ZodString;
|
|
25827
|
+
id: z.ZodString;
|
|
25828
25828
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25829
25829
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25830
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25831
25830
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25832
25831
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25833
25832
|
credentialStoreId: z.ZodString;
|
|
25834
25833
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25834
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25835
25835
|
type: z.ZodEnum<{
|
|
25836
25836
|
readonly memory: "memory";
|
|
25837
25837
|
readonly keychain: "keychain";
|
|
@@ -25845,10 +25845,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25845
25845
|
in: {};
|
|
25846
25846
|
}>;
|
|
25847
25847
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25848
|
-
id: z.ZodString;
|
|
25849
25848
|
name: z.ZodString;
|
|
25849
|
+
id: z.ZodString;
|
|
25850
|
+
createdAt: z.ZodString;
|
|
25851
|
+
updatedAt: z.ZodString;
|
|
25850
25852
|
description: z.ZodNullable<z.ZodString>;
|
|
25851
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25852
25853
|
models: z.ZodNullable<z.ZodType<{
|
|
25853
25854
|
base?: {
|
|
25854
25855
|
model?: string | undefined;
|
|
@@ -25911,8 +25912,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25911
25912
|
}, {
|
|
25912
25913
|
stepCountIs?: number | undefined;
|
|
25913
25914
|
}>>>;
|
|
25914
|
-
|
|
25915
|
-
updatedAt: z.ZodString;
|
|
25915
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25916
25916
|
type: z.ZodLiteral<"internal">;
|
|
25917
25917
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25918
25918
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25938,10 +25938,11 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25938
25938
|
}, z.core.$strip>]>>>;
|
|
25939
25939
|
}, z.core.$strip>;
|
|
25940
25940
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25941
|
-
id: z.ZodString;
|
|
25942
25941
|
name: z.ZodString;
|
|
25942
|
+
id: z.ZodString;
|
|
25943
|
+
createdAt: z.ZodString;
|
|
25944
|
+
updatedAt: z.ZodString;
|
|
25943
25945
|
description: z.ZodNullable<z.ZodString>;
|
|
25944
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25945
25946
|
models: z.ZodNullable<z.ZodType<{
|
|
25946
25947
|
base?: {
|
|
25947
25948
|
model?: string | undefined;
|
|
@@ -26004,8 +26005,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26004
26005
|
}, {
|
|
26005
26006
|
stepCountIs?: number | undefined;
|
|
26006
26007
|
}>>>;
|
|
26007
|
-
|
|
26008
|
-
updatedAt: z.ZodString;
|
|
26008
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26009
26009
|
type: z.ZodLiteral<"internal">;
|
|
26010
26010
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26011
26011
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26037,18 +26037,19 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26037
26037
|
}, z.core.$strip>]>>>;
|
|
26038
26038
|
}, z.core.$strip>;
|
|
26039
26039
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
26040
|
-
id: z.ZodString;
|
|
26041
26040
|
name: z.ZodString;
|
|
26042
|
-
|
|
26043
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26041
|
+
id: z.ZodString;
|
|
26044
26042
|
createdAt: z.ZodString;
|
|
26045
26043
|
updatedAt: z.ZodString;
|
|
26044
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26045
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26046
26046
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26047
26047
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26048
|
-
id: z.ZodString;
|
|
26049
26048
|
name: z.ZodString;
|
|
26049
|
+
id: z.ZodString;
|
|
26050
|
+
createdAt: z.ZodString;
|
|
26051
|
+
updatedAt: z.ZodString;
|
|
26050
26052
|
description: z.ZodNullable<z.ZodString>;
|
|
26051
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26052
26053
|
models: z.ZodNullable<z.ZodType<{
|
|
26053
26054
|
base?: {
|
|
26054
26055
|
model?: string | undefined;
|
|
@@ -26111,8 +26112,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26111
26112
|
}, {
|
|
26112
26113
|
stepCountIs?: number | undefined;
|
|
26113
26114
|
}>>>;
|
|
26114
|
-
|
|
26115
|
-
updatedAt: z.ZodString;
|
|
26115
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26116
26116
|
type: z.ZodLiteral<"internal">;
|
|
26117
26117
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26118
26118
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26183,12 +26183,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26183
26183
|
description: z.ZodString;
|
|
26184
26184
|
}, z.core.$strip>>>;
|
|
26185
26185
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26186
|
-
id: z.ZodString;
|
|
26187
26186
|
name: z.ZodString;
|
|
26188
|
-
|
|
26189
|
-
agentId: z.ZodString;
|
|
26187
|
+
id: z.ZodString;
|
|
26190
26188
|
createdAt: z.ZodString;
|
|
26191
26189
|
updatedAt: z.ZodString;
|
|
26190
|
+
agentId: z.ZodString;
|
|
26191
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26192
26192
|
functionId: z.ZodString;
|
|
26193
26193
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26194
26194
|
}, z.core.$strip>>>;
|
|
@@ -26225,10 +26225,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26225
26225
|
}>, z.core.$strip>>>;
|
|
26226
26226
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26227
26227
|
id: z.ZodString;
|
|
26228
|
-
createdAt: z.ZodString;
|
|
26229
|
-
updatedAt: z.ZodString;
|
|
26230
26228
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26231
26229
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26230
|
+
createdAt: z.ZodString;
|
|
26231
|
+
updatedAt: z.ZodString;
|
|
26232
26232
|
}, z.core.$strip>>;
|
|
26233
26233
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26234
26234
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26265,12 +26265,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26265
26265
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26266
26266
|
}, z.core.$strip>;
|
|
26267
26267
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26268
|
-
id: z.ZodString;
|
|
26269
26268
|
name: z.ZodString;
|
|
26270
|
-
|
|
26271
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26269
|
+
id: z.ZodString;
|
|
26272
26270
|
createdAt: z.ZodString;
|
|
26273
26271
|
updatedAt: z.ZodString;
|
|
26272
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26273
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26274
26274
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26275
26275
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26276
26276
|
createdAt: z.ZodString;
|
|
@@ -26318,12 +26318,12 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26318
26318
|
description: z.ZodString;
|
|
26319
26319
|
}, z.core.$strip>>>;
|
|
26320
26320
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26321
|
-
id: z.ZodString;
|
|
26322
26321
|
name: z.ZodString;
|
|
26323
|
-
|
|
26324
|
-
agentId: z.ZodString;
|
|
26322
|
+
id: z.ZodString;
|
|
26325
26323
|
createdAt: z.ZodString;
|
|
26326
26324
|
updatedAt: z.ZodString;
|
|
26325
|
+
agentId: z.ZodString;
|
|
26326
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26327
26327
|
functionId: z.ZodString;
|
|
26328
26328
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26329
26329
|
}, z.core.$strip>>>;
|
|
@@ -26360,10 +26360,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26360
26360
|
}>, z.core.$strip>>>;
|
|
26361
26361
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26362
26362
|
id: z.ZodString;
|
|
26363
|
-
createdAt: z.ZodString;
|
|
26364
|
-
updatedAt: z.ZodString;
|
|
26365
26363
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26366
26364
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26365
|
+
createdAt: z.ZodString;
|
|
26366
|
+
updatedAt: z.ZodString;
|
|
26367
26367
|
}, z.core.$strip>>;
|
|
26368
26368
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26369
26369
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26399,10 +26399,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26399
26399
|
}, z.core.$strip>>;
|
|
26400
26400
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26401
26401
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26402
|
-
id: z.ZodString;
|
|
26403
26402
|
name: z.ZodString;
|
|
26403
|
+
id: z.ZodString;
|
|
26404
|
+
createdAt: z.ZodString;
|
|
26405
|
+
updatedAt: z.ZodString;
|
|
26404
26406
|
description: z.ZodNullable<z.ZodString>;
|
|
26405
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26406
26407
|
models: z.ZodNullable<z.ZodType<{
|
|
26407
26408
|
base?: {
|
|
26408
26409
|
model?: string | undefined;
|
|
@@ -26465,8 +26466,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26465
26466
|
}, {
|
|
26466
26467
|
stepCountIs?: number | undefined;
|
|
26467
26468
|
}>>>;
|
|
26468
|
-
|
|
26469
|
-
updatedAt: z.ZodString;
|
|
26469
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26470
26470
|
type: z.ZodLiteral<"internal">;
|
|
26471
26471
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26472
26472
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26499,8 +26499,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26499
26499
|
}, z.core.$strip>>;
|
|
26500
26500
|
}, z.core.$strip>;
|
|
26501
26501
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26502
|
-
id: z.ZodString;
|
|
26503
26502
|
name: z.ZodString;
|
|
26503
|
+
id: z.ZodString;
|
|
26504
|
+
createdAt: z.ZodString;
|
|
26505
|
+
updatedAt: z.ZodString;
|
|
26504
26506
|
description: z.ZodNullable<z.ZodString>;
|
|
26505
26507
|
models: z.ZodNullable<z.ZodObject<{
|
|
26506
26508
|
base: z.ZodObject<{
|
|
@@ -26520,21 +26522,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26520
26522
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26521
26523
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26522
26524
|
}, z.core.$strip>>;
|
|
26523
|
-
createdAt: z.ZodString;
|
|
26524
|
-
updatedAt: z.ZodString;
|
|
26525
26525
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26526
|
-
id: z.ZodString;
|
|
26527
26526
|
name: z.ZodString;
|
|
26528
|
-
|
|
26529
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26527
|
+
id: z.ZodString;
|
|
26530
26528
|
createdAt: z.ZodString;
|
|
26531
26529
|
updatedAt: z.ZodString;
|
|
26530
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26531
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26532
26532
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26533
26533
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26534
|
-
id: z.ZodString;
|
|
26535
26534
|
name: z.ZodString;
|
|
26535
|
+
id: z.ZodString;
|
|
26536
|
+
createdAt: z.ZodString;
|
|
26537
|
+
updatedAt: z.ZodString;
|
|
26536
26538
|
description: z.ZodNullable<z.ZodString>;
|
|
26537
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26538
26539
|
models: z.ZodNullable<z.ZodType<{
|
|
26539
26540
|
base?: {
|
|
26540
26541
|
model?: string | undefined;
|
|
@@ -26597,8 +26598,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26597
26598
|
}, {
|
|
26598
26599
|
stepCountIs?: number | undefined;
|
|
26599
26600
|
}>>>;
|
|
26600
|
-
|
|
26601
|
-
updatedAt: z.ZodString;
|
|
26601
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26602
26602
|
type: z.ZodLiteral<"internal">;
|
|
26603
26603
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26604
26604
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26669,12 +26669,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26669
26669
|
description: z.ZodString;
|
|
26670
26670
|
}, z.core.$strip>>>;
|
|
26671
26671
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26672
|
-
id: z.ZodString;
|
|
26673
26672
|
name: z.ZodString;
|
|
26674
|
-
|
|
26675
|
-
agentId: z.ZodString;
|
|
26673
|
+
id: z.ZodString;
|
|
26676
26674
|
createdAt: z.ZodString;
|
|
26677
26675
|
updatedAt: z.ZodString;
|
|
26676
|
+
agentId: z.ZodString;
|
|
26677
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26678
26678
|
functionId: z.ZodString;
|
|
26679
26679
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26680
26680
|
}, z.core.$strip>>>;
|
|
@@ -26711,10 +26711,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26711
26711
|
}>, z.core.$strip>>>;
|
|
26712
26712
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26713
26713
|
id: z.ZodString;
|
|
26714
|
-
createdAt: z.ZodString;
|
|
26715
|
-
updatedAt: z.ZodString;
|
|
26716
26714
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26717
26715
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26716
|
+
createdAt: z.ZodString;
|
|
26717
|
+
updatedAt: z.ZodString;
|
|
26718
26718
|
}, z.core.$strip>>;
|
|
26719
26719
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26720
26720
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26780,12 +26780,12 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26780
26780
|
id: z.ZodString;
|
|
26781
26781
|
}>, z.core.$strip>>;
|
|
26782
26782
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26783
|
-
id: z.ZodString;
|
|
26784
26783
|
name: z.ZodString;
|
|
26785
|
-
|
|
26786
|
-
agentId: z.ZodString;
|
|
26784
|
+
id: z.ZodString;
|
|
26787
26785
|
createdAt: z.ZodString;
|
|
26788
26786
|
updatedAt: z.ZodString;
|
|
26787
|
+
agentId: z.ZodString;
|
|
26788
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26789
26789
|
functionId: z.ZodString;
|
|
26790
26790
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26791
26791
|
}, z.core.$strip>>>;
|
|
@@ -26928,15 +26928,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26928
26928
|
}, z.core.$strip>>>;
|
|
26929
26929
|
}, z.core.$strip>>;
|
|
26930
26930
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26931
|
-
id: z.ZodString;
|
|
26932
26931
|
name: z.ZodString;
|
|
26932
|
+
id: z.ZodString;
|
|
26933
26933
|
createdAt: z.ZodString;
|
|
26934
26934
|
updatedAt: z.ZodString;
|
|
26935
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26936
26935
|
userId: z.ZodNullable<z.ZodString>;
|
|
26937
26936
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26938
26937
|
credentialStoreId: z.ZodString;
|
|
26939
26938
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26939
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26940
26940
|
type: z.ZodEnum<{
|
|
26941
26941
|
readonly memory: "memory";
|
|
26942
26942
|
readonly keychain: "keychain";
|
|
@@ -27523,8 +27523,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27523
27523
|
in: {};
|
|
27524
27524
|
}>;
|
|
27525
27525
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27526
|
-
id: z.ZodString;
|
|
27527
27526
|
name: z.ZodString;
|
|
27527
|
+
id: z.ZodString;
|
|
27528
|
+
createdAt: z.ZodString;
|
|
27529
|
+
updatedAt: z.ZodString;
|
|
27528
27530
|
description: z.ZodNullable<z.ZodString>;
|
|
27529
27531
|
models: z.ZodNullable<z.ZodObject<{
|
|
27530
27532
|
base: z.ZodObject<{
|
|
@@ -27544,8 +27546,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27544
27546
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27545
27547
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27546
27548
|
}, z.core.$strip>>;
|
|
27547
|
-
createdAt: z.ZodString;
|
|
27548
|
-
updatedAt: z.ZodString;
|
|
27549
27549
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
27550
27550
|
createdAt: z.ZodString;
|
|
27551
27551
|
updatedAt: z.ZodString;
|
|
@@ -27576,12 +27576,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27576
27576
|
id: z.ZodString;
|
|
27577
27577
|
}>, z.core.$strip>>;
|
|
27578
27578
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27579
|
-
id: z.ZodString;
|
|
27580
27579
|
name: z.ZodString;
|
|
27581
|
-
|
|
27582
|
-
agentId: z.ZodString;
|
|
27580
|
+
id: z.ZodString;
|
|
27583
27581
|
createdAt: z.ZodString;
|
|
27584
27582
|
updatedAt: z.ZodString;
|
|
27583
|
+
agentId: z.ZodString;
|
|
27584
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27585
27585
|
functionId: z.ZodString;
|
|
27586
27586
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27587
27587
|
}, z.core.$strip>>>;
|
|
@@ -27724,15 +27724,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27724
27724
|
}, z.core.$strip>>>;
|
|
27725
27725
|
}, z.core.$strip>>;
|
|
27726
27726
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27727
|
-
id: z.ZodString;
|
|
27728
27727
|
name: z.ZodString;
|
|
27728
|
+
id: z.ZodString;
|
|
27729
27729
|
createdAt: z.ZodString;
|
|
27730
27730
|
updatedAt: z.ZodString;
|
|
27731
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27732
27731
|
userId: z.ZodNullable<z.ZodString>;
|
|
27733
27732
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27734
27733
|
credentialStoreId: z.ZodString;
|
|
27735
27734
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27735
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27736
27736
|
type: z.ZodEnum<{
|
|
27737
27737
|
readonly memory: "memory";
|
|
27738
27738
|
readonly keychain: "keychain";
|
|
@@ -28315,12 +28315,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28315
28315
|
}>>>;
|
|
28316
28316
|
}, z.core.$strip>>>;
|
|
28317
28317
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28318
|
-
id: z.ZodString;
|
|
28319
28318
|
name: z.ZodString;
|
|
28320
|
-
|
|
28321
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28319
|
+
id: z.ZodString;
|
|
28322
28320
|
createdAt: z.ZodString;
|
|
28323
28321
|
updatedAt: z.ZodString;
|
|
28322
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28323
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28324
28324
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28325
28325
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28326
28326
|
createdAt: z.ZodString;
|
|
@@ -28368,12 +28368,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28368
28368
|
description: z.ZodString;
|
|
28369
28369
|
}, z.core.$strip>>>;
|
|
28370
28370
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28371
|
-
id: z.ZodString;
|
|
28372
28371
|
name: z.ZodString;
|
|
28373
|
-
|
|
28374
|
-
agentId: z.ZodString;
|
|
28372
|
+
id: z.ZodString;
|
|
28375
28373
|
createdAt: z.ZodString;
|
|
28376
28374
|
updatedAt: z.ZodString;
|
|
28375
|
+
agentId: z.ZodString;
|
|
28376
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28377
28377
|
functionId: z.ZodString;
|
|
28378
28378
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28379
28379
|
}, z.core.$strip>>>;
|
|
@@ -28410,10 +28410,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28410
28410
|
}>, z.core.$strip>>>;
|
|
28411
28411
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28412
28412
|
id: z.ZodString;
|
|
28413
|
-
createdAt: z.ZodString;
|
|
28414
|
-
updatedAt: z.ZodString;
|
|
28415
28413
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28416
28414
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28415
|
+
createdAt: z.ZodString;
|
|
28416
|
+
updatedAt: z.ZodString;
|
|
28417
28417
|
}, z.core.$strip>>;
|
|
28418
28418
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28419
28419
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28449,10 +28449,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28449
28449
|
}, z.core.$strip>>;
|
|
28450
28450
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28451
28451
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28452
|
-
id: z.ZodString;
|
|
28453
28452
|
name: z.ZodString;
|
|
28453
|
+
id: z.ZodString;
|
|
28454
|
+
createdAt: z.ZodString;
|
|
28455
|
+
updatedAt: z.ZodString;
|
|
28454
28456
|
description: z.ZodNullable<z.ZodString>;
|
|
28455
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28456
28457
|
models: z.ZodNullable<z.ZodType<{
|
|
28457
28458
|
base?: {
|
|
28458
28459
|
model?: string | undefined;
|
|
@@ -28515,8 +28516,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28515
28516
|
}, {
|
|
28516
28517
|
stepCountIs?: number | undefined;
|
|
28517
28518
|
}>>>;
|
|
28518
|
-
|
|
28519
|
-
updatedAt: z.ZodString;
|
|
28519
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28520
28520
|
type: z.ZodLiteral<"internal">;
|
|
28521
28521
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28522
28522
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28554,8 +28554,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28554
28554
|
}>;
|
|
28555
28555
|
declare const ProjectResponse: z.ZodObject<{
|
|
28556
28556
|
data: z.ZodObject<{
|
|
28557
|
-
id: z.ZodString;
|
|
28558
28557
|
name: z.ZodString;
|
|
28558
|
+
id: z.ZodString;
|
|
28559
|
+
createdAt: z.ZodString;
|
|
28560
|
+
updatedAt: z.ZodString;
|
|
28559
28561
|
description: z.ZodNullable<z.ZodString>;
|
|
28560
28562
|
models: z.ZodNullable<z.ZodObject<{
|
|
28561
28563
|
base: z.ZodObject<{
|
|
@@ -28575,8 +28577,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28575
28577
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28576
28578
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28577
28579
|
}, z.core.$strip>>;
|
|
28578
|
-
createdAt: z.ZodString;
|
|
28579
|
-
updatedAt: z.ZodString;
|
|
28580
28580
|
}, {
|
|
28581
28581
|
out: {};
|
|
28582
28582
|
in: {};
|
|
@@ -28807,23 +28807,23 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
28807
28807
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
28808
28808
|
data: z.ZodObject<{
|
|
28809
28809
|
id: z.ZodString;
|
|
28810
|
-
createdAt: z.ZodString;
|
|
28811
|
-
updatedAt: z.ZodString;
|
|
28812
28810
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28813
28811
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28812
|
+
createdAt: z.ZodString;
|
|
28813
|
+
updatedAt: z.ZodString;
|
|
28814
28814
|
}, z.core.$strip>;
|
|
28815
28815
|
}, z.core.$strip>;
|
|
28816
28816
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28817
28817
|
data: z.ZodObject<{
|
|
28818
|
-
id: z.ZodString;
|
|
28819
28818
|
name: z.ZodNullable<z.ZodString>;
|
|
28820
|
-
|
|
28819
|
+
id: z.ZodString;
|
|
28821
28820
|
createdAt: z.ZodString;
|
|
28822
28821
|
updatedAt: z.ZodString;
|
|
28823
|
-
|
|
28822
|
+
agentId: z.ZodString;
|
|
28824
28823
|
publicId: z.ZodString;
|
|
28825
28824
|
keyPrefix: z.ZodString;
|
|
28826
28825
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28826
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28827
28827
|
}, {
|
|
28828
28828
|
out: {};
|
|
28829
28829
|
in: {};
|
|
@@ -28831,15 +28831,15 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28831
28831
|
}, z.core.$strip>;
|
|
28832
28832
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28833
28833
|
data: z.ZodObject<{
|
|
28834
|
-
id: z.ZodString;
|
|
28835
28834
|
name: z.ZodString;
|
|
28835
|
+
id: z.ZodString;
|
|
28836
28836
|
createdAt: z.ZodString;
|
|
28837
28837
|
updatedAt: z.ZodString;
|
|
28838
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28839
28838
|
userId: z.ZodNullable<z.ZodString>;
|
|
28840
28839
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28841
28840
|
credentialStoreId: z.ZodString;
|
|
28842
28841
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28842
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28843
28843
|
type: z.ZodEnum<{
|
|
28844
28844
|
readonly memory: "memory";
|
|
28845
28845
|
readonly keychain: "keychain";
|
|
@@ -29436,12 +29436,12 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29436
29436
|
}, z.core.$strip>;
|
|
29437
29437
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29438
29438
|
data: z.ZodObject<{
|
|
29439
|
-
id: z.ZodString;
|
|
29440
29439
|
name: z.ZodString;
|
|
29441
|
-
|
|
29442
|
-
agentId: z.ZodString;
|
|
29440
|
+
id: z.ZodString;
|
|
29443
29441
|
createdAt: z.ZodString;
|
|
29444
29442
|
updatedAt: z.ZodString;
|
|
29443
|
+
agentId: z.ZodString;
|
|
29444
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29445
29445
|
functionId: z.ZodString;
|
|
29446
29446
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29447
29447
|
}, z.core.$strip>;
|
|
@@ -29624,8 +29624,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29624
29624
|
signature: z.ZodObject<{
|
|
29625
29625
|
source: z.ZodEnum<{
|
|
29626
29626
|
query: "query";
|
|
29627
|
-
body: "body";
|
|
29628
29627
|
header: "header";
|
|
29628
|
+
body: "body";
|
|
29629
29629
|
}>;
|
|
29630
29630
|
key: z.ZodString;
|
|
29631
29631
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29634,8 +29634,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29634
29634
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29635
29635
|
source: z.ZodEnum<{
|
|
29636
29636
|
literal: "literal";
|
|
29637
|
-
body: "body";
|
|
29638
29637
|
header: "header";
|
|
29638
|
+
body: "body";
|
|
29639
29639
|
}>;
|
|
29640
29640
|
key: z.ZodOptional<z.ZodString>;
|
|
29641
29641
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29675,8 +29675,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29675
29675
|
}, z.core.$strip>;
|
|
29676
29676
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29677
29677
|
data: z.ZodArray<z.ZodObject<{
|
|
29678
|
-
id: z.ZodString;
|
|
29679
29678
|
name: z.ZodString;
|
|
29679
|
+
id: z.ZodString;
|
|
29680
|
+
createdAt: z.ZodString;
|
|
29681
|
+
updatedAt: z.ZodString;
|
|
29680
29682
|
description: z.ZodNullable<z.ZodString>;
|
|
29681
29683
|
models: z.ZodNullable<z.ZodObject<{
|
|
29682
29684
|
base: z.ZodObject<{
|
|
@@ -29696,8 +29698,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29696
29698
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29697
29699
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29698
29700
|
}, z.core.$strip>>;
|
|
29699
|
-
createdAt: z.ZodString;
|
|
29700
|
-
updatedAt: z.ZodString;
|
|
29701
29701
|
}, {
|
|
29702
29702
|
out: {};
|
|
29703
29703
|
in: {};
|
|
@@ -29952,10 +29952,10 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
29952
29952
|
declare const ContextConfigListResponse: z.ZodObject<{
|
|
29953
29953
|
data: z.ZodArray<z.ZodObject<{
|
|
29954
29954
|
id: z.ZodString;
|
|
29955
|
-
createdAt: z.ZodString;
|
|
29956
|
-
updatedAt: z.ZodString;
|
|
29957
29955
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
29958
29956
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
29957
|
+
createdAt: z.ZodString;
|
|
29958
|
+
updatedAt: z.ZodString;
|
|
29959
29959
|
}, z.core.$strip>>;
|
|
29960
29960
|
pagination: z.ZodObject<{
|
|
29961
29961
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29966,15 +29966,15 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29966
29966
|
}, z.core.$strip>;
|
|
29967
29967
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29968
29968
|
data: z.ZodArray<z.ZodObject<{
|
|
29969
|
-
id: z.ZodString;
|
|
29970
29969
|
name: z.ZodNullable<z.ZodString>;
|
|
29971
|
-
|
|
29970
|
+
id: z.ZodString;
|
|
29972
29971
|
createdAt: z.ZodString;
|
|
29973
29972
|
updatedAt: z.ZodString;
|
|
29974
|
-
|
|
29973
|
+
agentId: z.ZodString;
|
|
29975
29974
|
publicId: z.ZodString;
|
|
29976
29975
|
keyPrefix: z.ZodString;
|
|
29977
29976
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
29977
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29978
29978
|
}, {
|
|
29979
29979
|
out: {};
|
|
29980
29980
|
in: {};
|
|
@@ -29988,15 +29988,15 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29988
29988
|
}, z.core.$strip>;
|
|
29989
29989
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29990
29990
|
data: z.ZodArray<z.ZodObject<{
|
|
29991
|
-
id: z.ZodString;
|
|
29992
29991
|
name: z.ZodString;
|
|
29992
|
+
id: z.ZodString;
|
|
29993
29993
|
createdAt: z.ZodString;
|
|
29994
29994
|
updatedAt: z.ZodString;
|
|
29995
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29996
29995
|
userId: z.ZodNullable<z.ZodString>;
|
|
29997
29996
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29998
29997
|
credentialStoreId: z.ZodString;
|
|
29999
29998
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29999
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
30000
30000
|
type: z.ZodEnum<{
|
|
30001
30001
|
readonly memory: "memory";
|
|
30002
30002
|
readonly keychain: "keychain";
|
|
@@ -30605,12 +30605,12 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30605
30605
|
}, z.core.$strip>;
|
|
30606
30606
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30607
30607
|
data: z.ZodArray<z.ZodObject<{
|
|
30608
|
-
id: z.ZodString;
|
|
30609
30608
|
name: z.ZodString;
|
|
30610
|
-
|
|
30611
|
-
agentId: z.ZodString;
|
|
30609
|
+
id: z.ZodString;
|
|
30612
30610
|
createdAt: z.ZodString;
|
|
30613
30611
|
updatedAt: z.ZodString;
|
|
30612
|
+
agentId: z.ZodString;
|
|
30613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30614
30614
|
functionId: z.ZodString;
|
|
30615
30615
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30616
30616
|
}, z.core.$strip>>;
|
|
@@ -30861,8 +30861,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30861
30861
|
signature: z.ZodObject<{
|
|
30862
30862
|
source: z.ZodEnum<{
|
|
30863
30863
|
query: "query";
|
|
30864
|
-
body: "body";
|
|
30865
30864
|
header: "header";
|
|
30865
|
+
body: "body";
|
|
30866
30866
|
}>;
|
|
30867
30867
|
key: z.ZodString;
|
|
30868
30868
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30871,8 +30871,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30871
30871
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30872
30872
|
source: z.ZodEnum<{
|
|
30873
30873
|
literal: "literal";
|
|
30874
|
-
body: "body";
|
|
30875
30874
|
header: "header";
|
|
30875
|
+
body: "body";
|
|
30876
30876
|
}>;
|
|
30877
30877
|
key: z.ZodOptional<z.ZodString>;
|
|
30878
30878
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30924,11 +30924,11 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30924
30924
|
}, z.core.$strip>;
|
|
30925
30925
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30926
30926
|
data: z.ZodObject<{
|
|
30927
|
-
id: z.ZodString;
|
|
30928
30927
|
name: z.ZodString;
|
|
30929
|
-
|
|
30928
|
+
id: z.ZodString;
|
|
30930
30929
|
createdAt: z.ZodString;
|
|
30931
30930
|
updatedAt: z.ZodString;
|
|
30931
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30932
30932
|
enabled: z.ZodBoolean;
|
|
30933
30933
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30934
30934
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30950,8 +30950,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30950
30950
|
signature: z.ZodObject<{
|
|
30951
30951
|
source: z.ZodEnum<{
|
|
30952
30952
|
query: "query";
|
|
30953
|
-
body: "body";
|
|
30954
30953
|
header: "header";
|
|
30954
|
+
body: "body";
|
|
30955
30955
|
}>;
|
|
30956
30956
|
key: z.ZodString;
|
|
30957
30957
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30960,8 +30960,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30960
30960
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30961
30961
|
source: z.ZodEnum<{
|
|
30962
30962
|
literal: "literal";
|
|
30963
|
-
body: "body";
|
|
30964
30963
|
header: "header";
|
|
30964
|
+
body: "body";
|
|
30965
30965
|
}>;
|
|
30966
30966
|
key: z.ZodOptional<z.ZodString>;
|
|
30967
30967
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30987,11 +30987,11 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30987
30987
|
}, z.core.$strip>;
|
|
30988
30988
|
declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
30989
30989
|
data: z.ZodObject<{
|
|
30990
|
-
id: z.ZodString;
|
|
30991
30990
|
name: z.ZodString;
|
|
30992
|
-
|
|
30991
|
+
id: z.ZodString;
|
|
30993
30992
|
createdAt: z.ZodString;
|
|
30994
30993
|
updatedAt: z.ZodString;
|
|
30994
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30995
30995
|
enabled: z.ZodBoolean;
|
|
30996
30996
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30997
30997
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -31013,8 +31013,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31013
31013
|
signature: z.ZodObject<{
|
|
31014
31014
|
source: z.ZodEnum<{
|
|
31015
31015
|
query: "query";
|
|
31016
|
-
body: "body";
|
|
31017
31016
|
header: "header";
|
|
31017
|
+
body: "body";
|
|
31018
31018
|
}>;
|
|
31019
31019
|
key: z.ZodString;
|
|
31020
31020
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31023,8 +31023,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31023
31023
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31024
31024
|
source: z.ZodEnum<{
|
|
31025
31025
|
literal: "literal";
|
|
31026
|
-
body: "body";
|
|
31027
31026
|
header: "header";
|
|
31027
|
+
body: "body";
|
|
31028
31028
|
}>;
|
|
31029
31029
|
key: z.ZodOptional<z.ZodString>;
|
|
31030
31030
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31051,11 +31051,11 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
31051
31051
|
}, z.core.$strip>;
|
|
31052
31052
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
31053
31053
|
data: z.ZodArray<z.ZodObject<{
|
|
31054
|
-
id: z.ZodString;
|
|
31055
31054
|
name: z.ZodString;
|
|
31056
|
-
|
|
31055
|
+
id: z.ZodString;
|
|
31057
31056
|
createdAt: z.ZodString;
|
|
31058
31057
|
updatedAt: z.ZodString;
|
|
31058
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31059
31059
|
enabled: z.ZodBoolean;
|
|
31060
31060
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
31061
31061
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -31077,8 +31077,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31077
31077
|
signature: z.ZodObject<{
|
|
31078
31078
|
source: z.ZodEnum<{
|
|
31079
31079
|
query: "query";
|
|
31080
|
-
body: "body";
|
|
31081
31080
|
header: "header";
|
|
31081
|
+
body: "body";
|
|
31082
31082
|
}>;
|
|
31083
31083
|
key: z.ZodString;
|
|
31084
31084
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -31087,8 +31087,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31087
31087
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
31088
31088
|
source: z.ZodEnum<{
|
|
31089
31089
|
literal: "literal";
|
|
31090
|
-
body: "body";
|
|
31091
31090
|
header: "header";
|
|
31091
|
+
body: "body";
|
|
31092
31092
|
}>;
|
|
31093
31093
|
key: z.ZodOptional<z.ZodString>;
|
|
31094
31094
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -31119,11 +31119,11 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31119
31119
|
}, z.core.$strip>;
|
|
31120
31120
|
}, z.core.$strip>;
|
|
31121
31121
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
31122
|
-
id: z.ZodString;
|
|
31123
31122
|
name: z.ZodString;
|
|
31124
|
-
|
|
31123
|
+
id: z.ZodString;
|
|
31125
31124
|
createdAt: z.ZodString;
|
|
31126
31125
|
updatedAt: z.ZodString;
|
|
31126
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31127
31127
|
enabled: z.ZodBoolean;
|
|
31128
31128
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31129
31129
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -31198,11 +31198,11 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
31198
31198
|
}, z.core.$strip>;
|
|
31199
31199
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
31200
31200
|
data: z.ZodArray<z.ZodObject<{
|
|
31201
|
-
id: z.ZodString;
|
|
31202
31201
|
name: z.ZodString;
|
|
31203
|
-
|
|
31202
|
+
id: z.ZodString;
|
|
31204
31203
|
createdAt: z.ZodString;
|
|
31205
31204
|
updatedAt: z.ZodString;
|
|
31205
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31206
31206
|
enabled: z.ZodBoolean;
|
|
31207
31207
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31208
31208
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
@@ -31357,11 +31357,11 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
31357
31357
|
}, z.core.$strip>;
|
|
31358
31358
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
31359
31359
|
data: z.ZodArray<z.ZodObject<{
|
|
31360
|
-
id: z.ZodString;
|
|
31361
31360
|
name: z.ZodString;
|
|
31362
|
-
|
|
31361
|
+
id: z.ZodString;
|
|
31363
31362
|
createdAt: z.ZodString;
|
|
31364
31363
|
updatedAt: z.ZodString;
|
|
31364
|
+
description: z.ZodString;
|
|
31365
31365
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31366
31366
|
content: z.ZodString;
|
|
31367
31367
|
subAgentSkillId: z.ZodString;
|
|
@@ -31372,8 +31372,8 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
31372
31372
|
}, z.core.$strip>;
|
|
31373
31373
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
31374
31374
|
data: z.ZodObject<{
|
|
31375
|
-
id: z.ZodString;
|
|
31376
31375
|
name: z.ZodString;
|
|
31376
|
+
id: z.ZodString;
|
|
31377
31377
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31378
31378
|
models: z.ZodObject<{
|
|
31379
31379
|
base: z.ZodObject<{
|
|
@@ -31395,17 +31395,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31395
31395
|
}, z.core.$strip>>;
|
|
31396
31396
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31397
31397
|
name: z.ZodString;
|
|
31398
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31399
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31400
31398
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31401
31399
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31400
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31401
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31402
31402
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31403
31403
|
id: z.ZodString;
|
|
31404
31404
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31405
|
-
id: z.ZodString;
|
|
31406
31405
|
name: z.ZodString;
|
|
31406
|
+
id: z.ZodString;
|
|
31407
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31408
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31407
31409
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31408
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31409
31410
|
models: z.ZodOptional<z.ZodObject<{
|
|
31410
31411
|
base: z.ZodOptional<z.ZodObject<{
|
|
31411
31412
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31420,8 +31421,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31420
31421
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31421
31422
|
}, z.core.$strip>>;
|
|
31422
31423
|
}, z.core.$strip>>;
|
|
31423
|
-
|
|
31424
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31424
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31425
31425
|
type: z.ZodLiteral<"internal">;
|
|
31426
31426
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31427
31427
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31533,9 +31533,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31533
31533
|
}, z.core.$strip>>>;
|
|
31534
31534
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31535
31535
|
name: z.ZodString;
|
|
31536
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31537
31536
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31538
31537
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31538
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31539
31539
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31540
31540
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
31541
31541
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -31549,9 +31549,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31549
31549
|
}, z.core.$strip>>>;
|
|
31550
31550
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31551
31551
|
name: z.ZodString;
|
|
31552
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31553
31552
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31554
31553
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31554
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31555
31555
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31556
31556
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31557
31557
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31667,9 +31667,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31667
31667
|
}, z.core.$strip>>>;
|
|
31668
31668
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31669
31669
|
name: z.ZodString;
|
|
31670
|
-
description: z.ZodString;
|
|
31671
|
-
tenantId: z.ZodString;
|
|
31672
31670
|
projectId: z.ZodString;
|
|
31671
|
+
tenantId: z.ZodString;
|
|
31672
|
+
description: z.ZodString;
|
|
31673
31673
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31674
31674
|
content: z.ZodString;
|
|
31675
31675
|
}>, z.core.$strip>>>;
|
|
@@ -31755,15 +31755,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31755
31755
|
}, z.core.$strip>>>;
|
|
31756
31756
|
}, z.core.$strip>>;
|
|
31757
31757
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31758
|
-
id: z.ZodString;
|
|
31759
31758
|
name: z.ZodString;
|
|
31759
|
+
id: z.ZodString;
|
|
31760
31760
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31761
31761
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31762
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31763
31762
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31764
31763
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31765
31764
|
credentialStoreId: z.ZodString;
|
|
31766
31765
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31766
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31767
31767
|
type: z.ZodEnum<{
|
|
31768
31768
|
readonly memory: "memory";
|
|
31769
31769
|
readonly keychain: "keychain";
|
|
@@ -31779,8 +31779,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31779
31779
|
}, z.core.$strip>;
|
|
31780
31780
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31781
31781
|
data: z.ZodObject<{
|
|
31782
|
-
id: z.ZodString;
|
|
31783
31782
|
name: z.ZodString;
|
|
31783
|
+
id: z.ZodString;
|
|
31784
|
+
createdAt: z.ZodString;
|
|
31785
|
+
updatedAt: z.ZodString;
|
|
31784
31786
|
description: z.ZodNullable<z.ZodString>;
|
|
31785
31787
|
models: z.ZodNullable<z.ZodObject<{
|
|
31786
31788
|
base: z.ZodObject<{
|
|
@@ -31800,21 +31802,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31800
31802
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31801
31803
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31802
31804
|
}, z.core.$strip>>;
|
|
31803
|
-
createdAt: z.ZodString;
|
|
31804
|
-
updatedAt: z.ZodString;
|
|
31805
31805
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31806
|
-
id: z.ZodString;
|
|
31807
31806
|
name: z.ZodString;
|
|
31808
|
-
|
|
31809
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31807
|
+
id: z.ZodString;
|
|
31810
31808
|
createdAt: z.ZodString;
|
|
31811
31809
|
updatedAt: z.ZodString;
|
|
31810
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31811
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31812
31812
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31813
31813
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31814
|
-
id: z.ZodString;
|
|
31815
31814
|
name: z.ZodString;
|
|
31815
|
+
id: z.ZodString;
|
|
31816
|
+
createdAt: z.ZodString;
|
|
31817
|
+
updatedAt: z.ZodString;
|
|
31816
31818
|
description: z.ZodNullable<z.ZodString>;
|
|
31817
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31818
31819
|
models: z.ZodNullable<z.ZodType<{
|
|
31819
31820
|
base?: {
|
|
31820
31821
|
model?: string | undefined;
|
|
@@ -31877,8 +31878,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31877
31878
|
}, {
|
|
31878
31879
|
stepCountIs?: number | undefined;
|
|
31879
31880
|
}>>>;
|
|
31880
|
-
|
|
31881
|
-
updatedAt: z.ZodString;
|
|
31881
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31882
31882
|
type: z.ZodLiteral<"internal">;
|
|
31883
31883
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31884
31884
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31949,12 +31949,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31949
31949
|
description: z.ZodString;
|
|
31950
31950
|
}, z.core.$strip>>>;
|
|
31951
31951
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31952
|
-
id: z.ZodString;
|
|
31953
31952
|
name: z.ZodString;
|
|
31954
|
-
|
|
31955
|
-
agentId: z.ZodString;
|
|
31953
|
+
id: z.ZodString;
|
|
31956
31954
|
createdAt: z.ZodString;
|
|
31957
31955
|
updatedAt: z.ZodString;
|
|
31956
|
+
agentId: z.ZodString;
|
|
31957
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31958
31958
|
functionId: z.ZodString;
|
|
31959
31959
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31960
31960
|
}, z.core.$strip>>>;
|
|
@@ -31991,10 +31991,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31991
31991
|
}>, z.core.$strip>>>;
|
|
31992
31992
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
31993
31993
|
id: z.ZodString;
|
|
31994
|
-
createdAt: z.ZodString;
|
|
31995
|
-
updatedAt: z.ZodString;
|
|
31996
31994
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
31997
31995
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
31996
|
+
createdAt: z.ZodString;
|
|
31997
|
+
updatedAt: z.ZodString;
|
|
31998
31998
|
}, z.core.$strip>>;
|
|
31999
31999
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
32000
32000
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32060,12 +32060,12 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32060
32060
|
id: z.ZodString;
|
|
32061
32061
|
}>, z.core.$strip>>;
|
|
32062
32062
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32063
|
-
id: z.ZodString;
|
|
32064
32063
|
name: z.ZodString;
|
|
32065
|
-
|
|
32066
|
-
agentId: z.ZodString;
|
|
32064
|
+
id: z.ZodString;
|
|
32067
32065
|
createdAt: z.ZodString;
|
|
32068
32066
|
updatedAt: z.ZodString;
|
|
32067
|
+
agentId: z.ZodString;
|
|
32068
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32069
32069
|
functionId: z.ZodString;
|
|
32070
32070
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32071
32071
|
}, z.core.$strip>>>;
|
|
@@ -32208,15 +32208,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32208
32208
|
}, z.core.$strip>>>;
|
|
32209
32209
|
}, z.core.$strip>>;
|
|
32210
32210
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32211
|
-
id: z.ZodString;
|
|
32212
32211
|
name: z.ZodString;
|
|
32212
|
+
id: z.ZodString;
|
|
32213
32213
|
createdAt: z.ZodString;
|
|
32214
32214
|
updatedAt: z.ZodString;
|
|
32215
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32216
32215
|
userId: z.ZodNullable<z.ZodString>;
|
|
32217
32216
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32218
32217
|
credentialStoreId: z.ZodString;
|
|
32219
32218
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32219
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32220
32220
|
type: z.ZodEnum<{
|
|
32221
32221
|
readonly memory: "memory";
|
|
32222
32222
|
readonly keychain: "keychain";
|
|
@@ -32805,8 +32805,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32805
32805
|
}, z.core.$strip>;
|
|
32806
32806
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32807
32807
|
data: z.ZodObject<{
|
|
32808
|
-
id: z.ZodString;
|
|
32809
32808
|
name: z.ZodString;
|
|
32809
|
+
id: z.ZodString;
|
|
32810
|
+
createdAt: z.ZodString;
|
|
32811
|
+
updatedAt: z.ZodString;
|
|
32810
32812
|
description: z.ZodNullable<z.ZodString>;
|
|
32811
32813
|
models: z.ZodNullable<z.ZodObject<{
|
|
32812
32814
|
base: z.ZodObject<{
|
|
@@ -32826,8 +32828,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32826
32828
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32827
32829
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32828
32830
|
}, z.core.$strip>>;
|
|
32829
|
-
createdAt: z.ZodString;
|
|
32830
|
-
updatedAt: z.ZodString;
|
|
32831
32831
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32832
32832
|
createdAt: z.ZodString;
|
|
32833
32833
|
updatedAt: z.ZodString;
|
|
@@ -32858,12 +32858,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32858
32858
|
id: z.ZodString;
|
|
32859
32859
|
}>, z.core.$strip>>;
|
|
32860
32860
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32861
|
-
id: z.ZodString;
|
|
32862
32861
|
name: z.ZodString;
|
|
32863
|
-
|
|
32864
|
-
agentId: z.ZodString;
|
|
32862
|
+
id: z.ZodString;
|
|
32865
32863
|
createdAt: z.ZodString;
|
|
32866
32864
|
updatedAt: z.ZodString;
|
|
32865
|
+
agentId: z.ZodString;
|
|
32866
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32867
32867
|
functionId: z.ZodString;
|
|
32868
32868
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32869
32869
|
}, z.core.$strip>>>;
|
|
@@ -33006,15 +33006,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33006
33006
|
}, z.core.$strip>>>;
|
|
33007
33007
|
}, z.core.$strip>>;
|
|
33008
33008
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33009
|
-
id: z.ZodString;
|
|
33010
33009
|
name: z.ZodString;
|
|
33010
|
+
id: z.ZodString;
|
|
33011
33011
|
createdAt: z.ZodString;
|
|
33012
33012
|
updatedAt: z.ZodString;
|
|
33013
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
33014
33013
|
userId: z.ZodNullable<z.ZodString>;
|
|
33015
33014
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
33016
33015
|
credentialStoreId: z.ZodString;
|
|
33017
33016
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33017
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
33018
33018
|
type: z.ZodEnum<{
|
|
33019
33019
|
readonly memory: "memory";
|
|
33020
33020
|
readonly keychain: "keychain";
|
|
@@ -33597,12 +33597,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33597
33597
|
}>>>;
|
|
33598
33598
|
}, z.core.$strip>>>;
|
|
33599
33599
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33600
|
-
id: z.ZodString;
|
|
33601
33600
|
name: z.ZodString;
|
|
33602
|
-
|
|
33603
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33601
|
+
id: z.ZodString;
|
|
33604
33602
|
createdAt: z.ZodString;
|
|
33605
33603
|
updatedAt: z.ZodString;
|
|
33604
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33605
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33606
33606
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33607
33607
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33608
33608
|
createdAt: z.ZodString;
|
|
@@ -33650,12 +33650,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33650
33650
|
description: z.ZodString;
|
|
33651
33651
|
}, z.core.$strip>>>;
|
|
33652
33652
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33653
|
-
id: z.ZodString;
|
|
33654
33653
|
name: z.ZodString;
|
|
33655
|
-
|
|
33656
|
-
agentId: z.ZodString;
|
|
33654
|
+
id: z.ZodString;
|
|
33657
33655
|
createdAt: z.ZodString;
|
|
33658
33656
|
updatedAt: z.ZodString;
|
|
33657
|
+
agentId: z.ZodString;
|
|
33658
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33659
33659
|
functionId: z.ZodString;
|
|
33660
33660
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33661
33661
|
}, z.core.$strip>>>;
|
|
@@ -33692,10 +33692,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33692
33692
|
}>, z.core.$strip>>>;
|
|
33693
33693
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33694
33694
|
id: z.ZodString;
|
|
33695
|
-
createdAt: z.ZodString;
|
|
33696
|
-
updatedAt: z.ZodString;
|
|
33697
33695
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
33698
33696
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
33697
|
+
createdAt: z.ZodString;
|
|
33698
|
+
updatedAt: z.ZodString;
|
|
33699
33699
|
}, z.core.$strip>>;
|
|
33700
33700
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33701
33701
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33731,10 +33731,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33731
33731
|
}, z.core.$strip>>;
|
|
33732
33732
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33733
33733
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33734
|
-
id: z.ZodString;
|
|
33735
33734
|
name: z.ZodString;
|
|
33735
|
+
id: z.ZodString;
|
|
33736
|
+
createdAt: z.ZodString;
|
|
33737
|
+
updatedAt: z.ZodString;
|
|
33736
33738
|
description: z.ZodNullable<z.ZodString>;
|
|
33737
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33738
33739
|
models: z.ZodNullable<z.ZodType<{
|
|
33739
33740
|
base?: {
|
|
33740
33741
|
model?: string | undefined;
|
|
@@ -33797,8 +33798,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33797
33798
|
}, {
|
|
33798
33799
|
stepCountIs?: number | undefined;
|
|
33799
33800
|
}>>>;
|
|
33800
|
-
|
|
33801
|
-
updatedAt: z.ZodString;
|
|
33801
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33802
33802
|
type: z.ZodLiteral<"internal">;
|
|
33803
33803
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33804
33804
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33838,17 +33838,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33838
33838
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33839
33839
|
data: z.ZodObject<{
|
|
33840
33840
|
name: z.ZodString;
|
|
33841
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33842
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33843
33841
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33844
33842
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33843
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33844
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33845
33845
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33846
33846
|
id: z.ZodString;
|
|
33847
33847
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33848
|
-
id: z.ZodString;
|
|
33849
33848
|
name: z.ZodString;
|
|
33849
|
+
id: z.ZodString;
|
|
33850
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
33851
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33850
33852
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33851
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33852
33853
|
models: z.ZodOptional<z.ZodObject<{
|
|
33853
33854
|
base: z.ZodOptional<z.ZodObject<{
|
|
33854
33855
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33863,8 +33864,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33863
33864
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
33864
33865
|
}, z.core.$strip>>;
|
|
33865
33866
|
}, z.core.$strip>>;
|
|
33866
|
-
|
|
33867
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33867
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33868
33868
|
type: z.ZodLiteral<"internal">;
|
|
33869
33869
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33870
33870
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33976,9 +33976,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33976
33976
|
}, z.core.$strip>>>;
|
|
33977
33977
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33978
33978
|
name: z.ZodString;
|
|
33979
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33980
33979
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33981
33980
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33981
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33982
33982
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33983
33983
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
33984
33984
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -33992,9 +33992,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33992
33992
|
}, z.core.$strip>>>;
|
|
33993
33993
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33994
33994
|
name: z.ZodString;
|
|
33995
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33996
33995
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33997
33996
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33997
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33998
33998
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33999
33999
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34000
34000
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34050,18 +34050,19 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
34050
34050
|
}, z.core.$strip>;
|
|
34051
34051
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
34052
34052
|
data: z.ZodObject<{
|
|
34053
|
-
id: z.ZodString;
|
|
34054
34053
|
name: z.ZodString;
|
|
34055
|
-
|
|
34056
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34054
|
+
id: z.ZodString;
|
|
34057
34055
|
createdAt: z.ZodString;
|
|
34058
34056
|
updatedAt: z.ZodString;
|
|
34057
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34058
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
34059
34059
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
34060
34060
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34061
|
-
id: z.ZodString;
|
|
34062
34061
|
name: z.ZodString;
|
|
34062
|
+
id: z.ZodString;
|
|
34063
|
+
createdAt: z.ZodString;
|
|
34064
|
+
updatedAt: z.ZodString;
|
|
34063
34065
|
description: z.ZodNullable<z.ZodString>;
|
|
34064
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34065
34066
|
models: z.ZodNullable<z.ZodType<{
|
|
34066
34067
|
base?: {
|
|
34067
34068
|
model?: string | undefined;
|
|
@@ -34124,8 +34125,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34124
34125
|
}, {
|
|
34125
34126
|
stepCountIs?: number | undefined;
|
|
34126
34127
|
}>>>;
|
|
34127
|
-
|
|
34128
|
-
updatedAt: z.ZodString;
|
|
34128
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
34129
34129
|
type: z.ZodLiteral<"internal">;
|
|
34130
34130
|
canUse: z.ZodArray<z.ZodObject<{
|
|
34131
34131
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34196,12 +34196,12 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34196
34196
|
description: z.ZodString;
|
|
34197
34197
|
}, z.core.$strip>>>;
|
|
34198
34198
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34199
|
-
id: z.ZodString;
|
|
34200
34199
|
name: z.ZodString;
|
|
34201
|
-
|
|
34202
|
-
agentId: z.ZodString;
|
|
34200
|
+
id: z.ZodString;
|
|
34203
34201
|
createdAt: z.ZodString;
|
|
34204
34202
|
updatedAt: z.ZodString;
|
|
34203
|
+
agentId: z.ZodString;
|
|
34204
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34205
34205
|
functionId: z.ZodString;
|
|
34206
34206
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34207
34207
|
}, z.core.$strip>>>;
|
|
@@ -34238,10 +34238,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34238
34238
|
}>, z.core.$strip>>>;
|
|
34239
34239
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34240
34240
|
id: z.ZodString;
|
|
34241
|
-
createdAt: z.ZodString;
|
|
34242
|
-
updatedAt: z.ZodString;
|
|
34243
34241
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
34244
34242
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
34243
|
+
createdAt: z.ZodString;
|
|
34244
|
+
updatedAt: z.ZodString;
|
|
34245
34245
|
}, z.core.$strip>>;
|
|
34246
34246
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
34247
34247
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37482,16 +37482,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod3.BuildSchema<"selec
|
|
|
37482
37482
|
}, {}, {}>;
|
|
37483
37483
|
}, undefined>, undefined>;
|
|
37484
37484
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
37485
|
-
projectId: z.ZodString;
|
|
37486
37485
|
agentId: z.ZodString;
|
|
37486
|
+
projectId: z.ZodString;
|
|
37487
37487
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37488
37488
|
}, {
|
|
37489
37489
|
out: {};
|
|
37490
37490
|
in: {};
|
|
37491
37491
|
}>;
|
|
37492
37492
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
37493
|
-
projectId: z.ZodString;
|
|
37494
37493
|
agentId: z.ZodString;
|
|
37494
|
+
projectId: z.ZodString;
|
|
37495
37495
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37496
37496
|
agentName: z.ZodString;
|
|
37497
37497
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -37507,8 +37507,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
37507
37507
|
selected: "selected";
|
|
37508
37508
|
}>;
|
|
37509
37509
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
37510
|
-
tenantId: z.ZodString;
|
|
37511
37510
|
projectId: z.ZodString;
|
|
37511
|
+
tenantId: z.ZodString;
|
|
37512
37512
|
toolId: z.ZodString;
|
|
37513
37513
|
channelAccessMode: z.ZodEnum<{
|
|
37514
37514
|
all: "all";
|