@inkeep/agents-core 0.48.2 → 0.48.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +18 -18
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/agents.d.ts +21 -21
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +8 -8
- package/dist/data-access/manage/skills.d.ts +8 -8
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +16 -16
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -2
- package/dist/types/@vercel__functions/index.d.ts +11 -0
- package/dist/utils/index.d.ts +4 -2
- package/dist/utils/index.js +4 -2
- package/dist/utils/mock-provider.d.ts +41 -0
- package/dist/utils/mock-provider.js +117 -0
- package/dist/utils/model-factory.js +5 -2
- package/dist/utils/tracer-factory.d.ts +13 -1
- package/dist/utils/tracer-factory.js +21 -1
- package/dist/utils/wait-until.d.ts +22 -0
- package/dist/utils/wait-until.js +40 -0
- package/dist/validation/schemas.d.ts +150 -150
- package/package.json +7 -5
|
@@ -822,8 +822,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
822
822
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
823
823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
824
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
825
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
826
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
827
825
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
828
826
|
base: z.ZodOptional<z.ZodObject<{
|
|
829
827
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -849,6 +847,8 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
849
847
|
}>>>>>>;
|
|
850
848
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
851
849
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
850
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
851
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
852
852
|
}, z.core.$strip>;
|
|
853
853
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
854
854
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2482
2482
|
}, {}, {
|
|
2483
2483
|
length: 256;
|
|
2484
2484
|
}>;
|
|
2485
|
-
}, "id" | "name" | "description" | "
|
|
2485
|
+
}, "id" | "name" | "description" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates">, undefined>, undefined>;
|
|
2486
2486
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2487
2487
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2488
2488
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2751,8 +2751,6 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2751
2751
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2752
2752
|
name: z.ZodString;
|
|
2753
2753
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2755
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
2754
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2757
2755
|
base?: {
|
|
2758
2756
|
model?: string | undefined;
|
|
@@ -2817,7 +2815,9 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2817
2815
|
}>>>>;
|
|
2818
2816
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2819
2817
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2818
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2820
2819
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2820
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2821
2821
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2822
2822
|
enabled?: boolean | undefined;
|
|
2823
2823
|
numEvents?: number | undefined;
|
|
@@ -2881,8 +2881,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2881
2881
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
2882
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
2883
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
|
-
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2885
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2886
2884
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2887
2885
|
base?: {
|
|
2888
2886
|
model?: string | undefined;
|
|
@@ -2947,7 +2945,9 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2947
2945
|
}>>>>>>;
|
|
2948
2946
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2949
2947
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2948
|
+
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2950
2949
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2950
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2951
2951
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2952
2952
|
enabled?: boolean | undefined;
|
|
2953
2953
|
numEvents?: number | undefined;
|
|
@@ -3071,8 +3071,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3071
3071
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3072
3072
|
source: z.ZodEnum<{
|
|
3073
3073
|
query: "query";
|
|
3074
|
-
body: "body";
|
|
3075
3074
|
header: "header";
|
|
3075
|
+
body: "body";
|
|
3076
3076
|
}>;
|
|
3077
3077
|
key: z.ZodString;
|
|
3078
3078
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3101,8 +3101,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3101
3101
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3102
3102
|
source: z.ZodEnum<{
|
|
3103
3103
|
literal: "literal";
|
|
3104
|
-
body: "body";
|
|
3105
3104
|
header: "header";
|
|
3105
|
+
body: "body";
|
|
3106
3106
|
}>;
|
|
3107
3107
|
key: z.ZodOptional<z.ZodString>;
|
|
3108
3108
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3211,8 +3211,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3211
3211
|
signature: z.ZodObject<{
|
|
3212
3212
|
source: z.ZodEnum<{
|
|
3213
3213
|
query: "query";
|
|
3214
|
-
body: "body";
|
|
3215
3214
|
header: "header";
|
|
3215
|
+
body: "body";
|
|
3216
3216
|
}>;
|
|
3217
3217
|
key: z.ZodString;
|
|
3218
3218
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3221,8 +3221,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3221
3221
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3222
3222
|
source: z.ZodEnum<{
|
|
3223
3223
|
literal: "literal";
|
|
3224
|
-
body: "body";
|
|
3225
3224
|
header: "header";
|
|
3225
|
+
body: "body";
|
|
3226
3226
|
}>;
|
|
3227
3227
|
key: z.ZodOptional<z.ZodString>;
|
|
3228
3228
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3307,8 +3307,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3307
3307
|
signature: z.ZodObject<{
|
|
3308
3308
|
source: z.ZodEnum<{
|
|
3309
3309
|
query: "query";
|
|
3310
|
-
body: "body";
|
|
3311
3310
|
header: "header";
|
|
3311
|
+
body: "body";
|
|
3312
3312
|
}>;
|
|
3313
3313
|
key: z.ZodString;
|
|
3314
3314
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3317,8 +3317,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3317
3317
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3318
3318
|
source: z.ZodEnum<{
|
|
3319
3319
|
literal: "literal";
|
|
3320
|
-
body: "body";
|
|
3321
3320
|
header: "header";
|
|
3321
|
+
body: "body";
|
|
3322
3322
|
}>;
|
|
3323
3323
|
key: z.ZodOptional<z.ZodString>;
|
|
3324
3324
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3501,13 +3501,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3501
3501
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3502
3502
|
encoding: "hex" | "base64";
|
|
3503
3503
|
signature: {
|
|
3504
|
-
source: "query" | "
|
|
3504
|
+
source: "query" | "header" | "body";
|
|
3505
3505
|
key: string;
|
|
3506
3506
|
prefix?: string | undefined;
|
|
3507
3507
|
regex?: string | undefined;
|
|
3508
3508
|
};
|
|
3509
3509
|
signedComponents: {
|
|
3510
|
-
source: "literal" | "
|
|
3510
|
+
source: "literal" | "header" | "body";
|
|
3511
3511
|
required: boolean;
|
|
3512
3512
|
key?: string | undefined;
|
|
3513
3513
|
value?: string | undefined;
|
|
@@ -3538,13 +3538,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3538
3538
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3539
3539
|
encoding: "hex" | "base64";
|
|
3540
3540
|
signature: {
|
|
3541
|
-
source: "query" | "
|
|
3541
|
+
source: "query" | "header" | "body";
|
|
3542
3542
|
key: string;
|
|
3543
3543
|
prefix?: string | undefined;
|
|
3544
3544
|
regex?: string | undefined;
|
|
3545
3545
|
};
|
|
3546
3546
|
signedComponents: {
|
|
3547
|
-
source: "literal" | "
|
|
3547
|
+
source: "literal" | "header" | "body";
|
|
3548
3548
|
required: boolean;
|
|
3549
3549
|
key?: string | undefined;
|
|
3550
3550
|
value?: string | undefined;
|
|
@@ -3833,13 +3833,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3833
3833
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3834
3834
|
encoding: "hex" | "base64";
|
|
3835
3835
|
signature: {
|
|
3836
|
-
source: "query" | "
|
|
3836
|
+
source: "query" | "header" | "body";
|
|
3837
3837
|
key: string;
|
|
3838
3838
|
prefix?: string | undefined;
|
|
3839
3839
|
regex?: string | undefined;
|
|
3840
3840
|
};
|
|
3841
3841
|
signedComponents: {
|
|
3842
|
-
source: "literal" | "
|
|
3842
|
+
source: "literal" | "header" | "body";
|
|
3843
3843
|
required: boolean;
|
|
3844
3844
|
key?: string | undefined;
|
|
3845
3845
|
value?: string | undefined;
|
|
@@ -3870,13 +3870,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3870
3870
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3871
3871
|
encoding: "hex" | "base64";
|
|
3872
3872
|
signature: {
|
|
3873
|
-
source: "query" | "
|
|
3873
|
+
source: "query" | "header" | "body";
|
|
3874
3874
|
key: string;
|
|
3875
3875
|
prefix?: string | undefined;
|
|
3876
3876
|
regex?: string | undefined;
|
|
3877
3877
|
};
|
|
3878
3878
|
signedComponents: {
|
|
3879
|
-
source: "literal" | "
|
|
3879
|
+
source: "literal" | "header" | "body";
|
|
3880
3880
|
required: boolean;
|
|
3881
3881
|
key?: string | undefined;
|
|
3882
3882
|
value?: string | undefined;
|
|
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4005
4005
|
}, {}, {
|
|
4006
4006
|
length: 256;
|
|
4007
4007
|
}>;
|
|
4008
|
-
}, "id" | "name" | "description" | "
|
|
4008
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "agentId" | "inputSchema" | "messageTemplate" | "outputTransform" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
4009
4009
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4010
4010
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4011
4011
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4056,8 +4056,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4056
4056
|
signature: z.ZodObject<{
|
|
4057
4057
|
source: z.ZodEnum<{
|
|
4058
4058
|
query: "query";
|
|
4059
|
-
body: "body";
|
|
4060
4059
|
header: "header";
|
|
4060
|
+
body: "body";
|
|
4061
4061
|
}>;
|
|
4062
4062
|
key: z.ZodString;
|
|
4063
4063
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4066,8 +4066,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4066
4066
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4067
4067
|
source: z.ZodEnum<{
|
|
4068
4068
|
literal: "literal";
|
|
4069
|
-
body: "body";
|
|
4070
4069
|
header: "header";
|
|
4070
|
+
body: "body";
|
|
4071
4071
|
}>;
|
|
4072
4072
|
key: z.ZodOptional<z.ZodString>;
|
|
4073
4073
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4094,8 +4094,8 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4094
4094
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4095
4095
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4096
4096
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4097
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4098
4097
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4098
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4099
4099
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4100
4100
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4101
4101
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -4129,8 +4129,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4129
4129
|
updatedAt: z.ZodString;
|
|
4130
4130
|
enabled: z.ZodBoolean;
|
|
4131
4131
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4132
|
-
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4133
4132
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4133
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4134
4134
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4135
4135
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4136
4136
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4148,8 +4148,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4148
4148
|
signature: z.ZodObject<{
|
|
4149
4149
|
source: z.ZodEnum<{
|
|
4150
4150
|
query: "query";
|
|
4151
|
-
body: "body";
|
|
4152
4151
|
header: "header";
|
|
4152
|
+
body: "body";
|
|
4153
4153
|
}>;
|
|
4154
4154
|
key: z.ZodString;
|
|
4155
4155
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4158,8 +4158,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4158
4158
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4159
4159
|
source: z.ZodEnum<{
|
|
4160
4160
|
literal: "literal";
|
|
4161
|
-
body: "body";
|
|
4162
4161
|
header: "header";
|
|
4162
|
+
body: "body";
|
|
4163
4163
|
}>;
|
|
4164
4164
|
key: z.ZodOptional<z.ZodString>;
|
|
4165
4165
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "id" | "
|
|
4992
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4993
4993
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4994
4994
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4995
4995
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5674,7 +5674,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5674
5674
|
}, {}, {
|
|
5675
5675
|
length: 256;
|
|
5676
5676
|
}>;
|
|
5677
|
-
}, "id" | "name" | "description" | "
|
|
5677
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "enabled" | "agentId" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "messageTemplate" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
|
|
5678
5678
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5679
5679
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5680
5680
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5722,11 +5722,11 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5722
5722
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5723
5723
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5724
5724
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5725
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5726
5725
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5727
5726
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5728
5727
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5729
5728
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5729
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5730
5730
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5731
5731
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5732
5732
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5738,11 +5738,11 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5738
5738
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5739
5739
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5740
5740
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5741
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5742
5741
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5743
5742
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5744
5743
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5745
5744
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5745
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5746
5746
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
5747
5747
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
5748
5748
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6593,7 +6593,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
6593
6593
|
}, {}, {
|
|
6594
6594
|
length: 256;
|
|
6595
6595
|
}>;
|
|
6596
|
-
}, "id" | "name" | "description" | "
|
|
6596
|
+
}, "id" | "name" | "description" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "agentId" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6597
6597
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6598
6598
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6599
6599
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7200,7 +7200,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
7200
7200
|
}, {}, {
|
|
7201
7201
|
length: 256;
|
|
7202
7202
|
}>;
|
|
7203
|
-
}, "id" | "
|
|
7203
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7204
7204
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7205
7205
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7206
7206
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -7804,10 +7804,12 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7804
7804
|
}>, z.core.$strip>;
|
|
7805
7805
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7806
7806
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7807
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7808
7807
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7809
7808
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7810
7809
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7810
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7811
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7812
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7811
7813
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7812
7814
|
type: z.ZodEnum<{
|
|
7813
7815
|
commit: "commit";
|
|
@@ -7817,8 +7819,6 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7817
7819
|
name: z.ZodString;
|
|
7818
7820
|
hash: z.ZodString;
|
|
7819
7821
|
}, z.core.$strip>>>;
|
|
7820
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7821
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7822
7822
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7823
7823
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7824
7824
|
}, z.core.$strip>;
|
|
@@ -9369,12 +9369,13 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9369
9369
|
}>, z.core.$strip>;
|
|
9370
9370
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
9371
9371
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9372
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9373
9372
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9374
9373
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9375
9374
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9376
9375
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9377
9376
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9377
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9378
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9378
9379
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9379
9380
|
type: z.ZodEnum<{
|
|
9380
9381
|
commit: "commit";
|
|
@@ -9384,7 +9385,6 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9384
9385
|
name: z.ZodString;
|
|
9385
9386
|
hash: z.ZodString;
|
|
9386
9387
|
}, z.core.$strip>>>;
|
|
9387
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9388
9388
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9389
9389
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9390
9390
|
}, z.core.$strip>;
|
|
@@ -14787,7 +14787,6 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14787
14787
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14788
14788
|
name: z.ZodString;
|
|
14789
14789
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14790
|
-
prompt: z.ZodString;
|
|
14791
14790
|
model: z.ZodType<{
|
|
14792
14791
|
model?: string | undefined;
|
|
14793
14792
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14804,12 +14803,12 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14804
14803
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14805
14804
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14806
14805
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14806
|
+
prompt: z.ZodString;
|
|
14807
14807
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14808
14808
|
}, z.core.$strip>;
|
|
14809
14809
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14810
14810
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14811
14811
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14812
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14813
14812
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14814
14813
|
model?: string | undefined;
|
|
14815
14814
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14826,6 +14825,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14826
14825
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14827
14826
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14828
14827
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14828
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14829
14829
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14830
14830
|
}, z.core.$strip>;
|
|
14831
14831
|
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -17659,7 +17659,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
17659
17659
|
}, {}, {
|
|
17660
17660
|
length: 256;
|
|
17661
17661
|
}>;
|
|
17662
|
-
}, "id" | "
|
|
17662
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "agentId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17663
17663
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17664
17664
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17665
17665
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18782,8 +18782,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18782
18782
|
id: z.ZodString;
|
|
18783
18783
|
name: z.ZodString;
|
|
18784
18784
|
description: z.ZodNullable<z.ZodString>;
|
|
18785
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18786
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18787
18785
|
models: z.ZodNullable<z.ZodType<{
|
|
18788
18786
|
base?: {
|
|
18789
18787
|
model?: string | undefined;
|
|
@@ -18848,6 +18846,8 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18848
18846
|
}>>>;
|
|
18849
18847
|
createdAt: z.ZodString;
|
|
18850
18848
|
updatedAt: z.ZodString;
|
|
18849
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18850
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18851
18851
|
type: z.ZodLiteral<"internal">;
|
|
18852
18852
|
}, z.core.$strip>, z.ZodObject<{
|
|
18853
18853
|
id: z.ZodString;
|
|
@@ -19321,8 +19321,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19321
19321
|
}>;
|
|
19322
19322
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19323
19323
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19324
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19325
19324
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19325
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19326
19326
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19327
19327
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19328
19328
|
}, {
|
|
@@ -19332,9 +19332,9 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
19332
19332
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19333
19333
|
id: z.ZodString;
|
|
19334
19334
|
name: z.ZodNullable<z.ZodString>;
|
|
19335
|
-
agentId: z.ZodString;
|
|
19336
19335
|
createdAt: z.ZodString;
|
|
19337
19336
|
updatedAt: z.ZodString;
|
|
19337
|
+
agentId: z.ZodString;
|
|
19338
19338
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19339
19339
|
publicId: z.ZodString;
|
|
19340
19340
|
keyPrefix: z.ZodString;
|
|
@@ -19348,9 +19348,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19348
19348
|
apiKey: z.ZodObject<{
|
|
19349
19349
|
id: z.ZodString;
|
|
19350
19350
|
name: z.ZodNullable<z.ZodString>;
|
|
19351
|
-
agentId: z.ZodString;
|
|
19352
19351
|
createdAt: z.ZodString;
|
|
19353
19352
|
updatedAt: z.ZodString;
|
|
19353
|
+
agentId: z.ZodString;
|
|
19354
19354
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19355
19355
|
publicId: z.ZodString;
|
|
19356
19356
|
keyPrefix: z.ZodString;
|
|
@@ -19364,9 +19364,9 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19364
19364
|
}, z.core.$strip>;
|
|
19365
19365
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
19366
19366
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19367
|
-
agentId: z.ZodString;
|
|
19368
19367
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19369
19368
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19369
|
+
agentId: z.ZodString;
|
|
19370
19370
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19371
19371
|
}, {
|
|
19372
19372
|
out: {};
|
|
@@ -19374,8 +19374,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19374
19374
|
}>;
|
|
19375
19375
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19376
19376
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19377
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19378
19377
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19378
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19379
19379
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19380
19380
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19381
19381
|
}, {
|
|
@@ -19873,10 +19873,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19873
19873
|
createdAt: z.ZodString;
|
|
19874
19874
|
updatedAt: z.ZodString;
|
|
19875
19875
|
toolId: z.ZodNullable<z.ZodString>;
|
|
19876
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
19877
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
19878
19876
|
credentialStoreId: z.ZodString;
|
|
19879
19877
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19878
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
19879
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
19880
19880
|
type: z.ZodEnum<{
|
|
19881
19881
|
readonly memory: "memory";
|
|
19882
19882
|
readonly keychain: "keychain";
|
|
@@ -20464,10 +20464,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20464
20464
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20465
20465
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20466
20466
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20467
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20468
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20469
20467
|
credentialStoreId: z.ZodString;
|
|
20470
20468
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20469
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20470
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20471
20471
|
type: z.ZodEnum<{
|
|
20472
20472
|
readonly memory: "memory";
|
|
20473
20473
|
readonly keychain: "keychain";
|
|
@@ -20480,10 +20480,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
20480
20480
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20481
20481
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20482
20482
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20483
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20484
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20485
20483
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20486
20484
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20485
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20486
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20487
20487
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20488
20488
|
readonly memory: "memory";
|
|
20489
20489
|
readonly keychain: "keychain";
|
|
@@ -20609,19 +20609,19 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20609
20609
|
id: z.ZodString;
|
|
20610
20610
|
name: z.ZodString;
|
|
20611
20611
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20612
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20613
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
20614
20612
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20615
20613
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20616
20614
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20617
20615
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20618
20616
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20617
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
20618
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20619
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20619
20620
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20620
20621
|
name: z.ZodString;
|
|
20621
20622
|
description: z.ZodOptional<z.ZodString>;
|
|
20622
20623
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20623
20624
|
}, z.core.$strip>>>;
|
|
20624
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20625
20625
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20626
20626
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20627
20627
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20647,10 +20647,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20647
20647
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20648
20648
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20649
20649
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20650
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20651
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20652
20650
|
credentialStoreId: z.ZodString;
|
|
20653
20651
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20652
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20653
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20654
20654
|
type: z.ZodEnum<{
|
|
20655
20655
|
readonly memory: "memory";
|
|
20656
20656
|
readonly keychain: "keychain";
|
|
@@ -21189,9 +21189,9 @@ declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
|
21189
21189
|
id: z.ZodString;
|
|
21190
21190
|
name: z.ZodString;
|
|
21191
21191
|
description: z.ZodNullable<z.ZodString>;
|
|
21192
|
-
agentId: z.ZodString;
|
|
21193
21192
|
createdAt: z.ZodString;
|
|
21194
21193
|
updatedAt: z.ZodString;
|
|
21194
|
+
agentId: z.ZodString;
|
|
21195
21195
|
functionId: z.ZodString;
|
|
21196
21196
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21197
21197
|
}, z.core.$strip>;
|
|
@@ -21210,9 +21210,9 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
21210
21210
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21211
21211
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21212
21212
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21213
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21214
21213
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21215
21214
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21215
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21216
21216
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21217
21217
|
}, z.core.$strip>;
|
|
21218
21218
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -21937,8 +21937,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
|
21937
21937
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21938
21938
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21939
21939
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
21940
|
-
dependencies: 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>>>>>>>;
|
|
21941
21940
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21941
|
+
dependencies: 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>>>>>>>;
|
|
21942
21942
|
}, z.core.$strip>;
|
|
21943
21943
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
21944
21944
|
url: z.ZodString;
|
|
@@ -21985,10 +21985,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21985
21985
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21986
21986
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21987
21987
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21988
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21989
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21990
21988
|
credentialStoreId: z.ZodString;
|
|
21991
21989
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21990
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21991
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21992
21992
|
type: z.ZodEnum<{
|
|
21993
21993
|
readonly memory: "memory";
|
|
21994
21994
|
readonly keychain: "keychain";
|
|
@@ -24666,7 +24666,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24666
24666
|
}, {}, {
|
|
24667
24667
|
length: 256;
|
|
24668
24668
|
}>;
|
|
24669
|
-
}, "id" | "name" | "description" | "
|
|
24669
|
+
}, "id" | "name" | "description" | "type" | "createdAt" | "updatedAt" | "tenantId" | "projectId" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24670
24670
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24671
24671
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24672
24672
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24814,7 +24814,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24814
24814
|
id: z.ZodString;
|
|
24815
24815
|
name: z.ZodString;
|
|
24816
24816
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24817
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24818
24817
|
models: z.ZodOptional<z.ZodObject<{
|
|
24819
24818
|
base: z.ZodOptional<z.ZodObject<{
|
|
24820
24819
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24840,6 +24839,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24840
24839
|
}>>>>;
|
|
24841
24840
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24842
24841
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24842
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24843
24843
|
type: z.ZodLiteral<"internal">;
|
|
24844
24844
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24845
24845
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24872,16 +24872,15 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24872
24872
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24873
24873
|
name: z.ZodString;
|
|
24874
24874
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24875
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24876
24875
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24877
24876
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24877
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24878
24878
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24879
24879
|
id: z.ZodString;
|
|
24880
24880
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24881
24881
|
id: z.ZodString;
|
|
24882
24882
|
name: z.ZodString;
|
|
24883
24883
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24884
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24885
24884
|
models: z.ZodOptional<z.ZodObject<{
|
|
24886
24885
|
base: z.ZodOptional<z.ZodObject<{
|
|
24887
24886
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24907,6 +24906,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24907
24906
|
}>>>>;
|
|
24908
24907
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24909
24908
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24909
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24910
24910
|
type: z.ZodLiteral<"internal">;
|
|
24911
24911
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24912
24912
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25020,8 +25020,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25020
25020
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25021
25021
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25022
25022
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25023
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25024
25023
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25024
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25025
25025
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25026
25026
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25027
25027
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -25033,11 +25033,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25033
25033
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25034
25034
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25035
25035
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25036
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25037
25036
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25038
25037
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25039
25038
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25040
25039
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25040
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25041
25041
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
25042
25042
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
25043
25043
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25145,7 +25145,6 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
25145
25145
|
id: z.ZodString;
|
|
25146
25146
|
name: z.ZodString;
|
|
25147
25147
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25148
|
-
tenantId: z.ZodString;
|
|
25149
25148
|
models: z.ZodObject<{
|
|
25150
25149
|
base: z.ZodObject<{
|
|
25151
25150
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25164,6 +25163,7 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
25164
25163
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25165
25164
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25166
25165
|
}, z.core.$strip>>;
|
|
25166
|
+
tenantId: z.ZodString;
|
|
25167
25167
|
}, {
|
|
25168
25168
|
out: {};
|
|
25169
25169
|
in: {};
|
|
@@ -25297,16 +25297,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25297
25297
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25298
25298
|
name: z.ZodString;
|
|
25299
25299
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25300
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25301
25300
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25302
25301
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25302
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25303
25303
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25304
|
id: z.ZodString;
|
|
25305
25305
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25306
25306
|
id: z.ZodString;
|
|
25307
25307
|
name: z.ZodString;
|
|
25308
25308
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25309
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25310
25309
|
models: z.ZodOptional<z.ZodObject<{
|
|
25311
25310
|
base: z.ZodOptional<z.ZodObject<{
|
|
25312
25311
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25332,6 +25331,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25332
25331
|
}>>>>;
|
|
25333
25332
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25334
25333
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25334
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25335
25335
|
type: z.ZodLiteral<"internal">;
|
|
25336
25336
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25337
25337
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25445,8 +25445,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25445
25445
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25446
25446
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25447
25447
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25448
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25449
25448
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25449
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25450
25450
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25451
25451
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25452
25452
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -25458,11 +25458,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25458
25458
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25459
25459
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25460
25460
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25461
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25462
25461
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25463
25462
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25464
25463
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25465
25464
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25465
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25466
25466
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
25467
25467
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
25468
25468
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25663,10 +25663,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25663
25663
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25664
25664
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25665
25665
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25666
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25667
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25668
25666
|
credentialStoreId: z.ZodString;
|
|
25669
25667
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25668
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25669
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25670
25670
|
type: z.ZodEnum<{
|
|
25671
25671
|
readonly memory: "memory";
|
|
25672
25672
|
readonly keychain: "keychain";
|
|
@@ -25683,7 +25683,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25683
25683
|
id: z.ZodString;
|
|
25684
25684
|
name: z.ZodString;
|
|
25685
25685
|
description: z.ZodNullable<z.ZodString>;
|
|
25686
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25687
25686
|
models: z.ZodNullable<z.ZodType<{
|
|
25688
25687
|
base?: {
|
|
25689
25688
|
model?: string | undefined;
|
|
@@ -25748,6 +25747,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25748
25747
|
}>>>;
|
|
25749
25748
|
createdAt: z.ZodString;
|
|
25750
25749
|
updatedAt: z.ZodString;
|
|
25750
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25751
25751
|
type: z.ZodLiteral<"internal">;
|
|
25752
25752
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25753
25753
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25776,7 +25776,6 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25776
25776
|
id: z.ZodString;
|
|
25777
25777
|
name: z.ZodString;
|
|
25778
25778
|
description: z.ZodNullable<z.ZodString>;
|
|
25779
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25780
25779
|
models: z.ZodNullable<z.ZodType<{
|
|
25781
25780
|
base?: {
|
|
25782
25781
|
model?: string | undefined;
|
|
@@ -25841,6 +25840,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25841
25840
|
}>>>;
|
|
25842
25841
|
createdAt: z.ZodString;
|
|
25843
25842
|
updatedAt: z.ZodString;
|
|
25843
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25844
25844
|
type: z.ZodLiteral<"internal">;
|
|
25845
25845
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25846
25846
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25875,15 +25875,14 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25875
25875
|
id: z.ZodString;
|
|
25876
25876
|
name: z.ZodString;
|
|
25877
25877
|
description: z.ZodNullable<z.ZodString>;
|
|
25878
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25879
25878
|
createdAt: z.ZodString;
|
|
25880
25879
|
updatedAt: z.ZodString;
|
|
25880
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25881
25881
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25882
25882
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25883
25883
|
id: z.ZodString;
|
|
25884
25884
|
name: z.ZodString;
|
|
25885
25885
|
description: z.ZodNullable<z.ZodString>;
|
|
25886
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25887
25886
|
models: z.ZodNullable<z.ZodType<{
|
|
25888
25887
|
base?: {
|
|
25889
25888
|
model?: string | undefined;
|
|
@@ -25948,6 +25947,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25948
25947
|
}>>>;
|
|
25949
25948
|
createdAt: z.ZodString;
|
|
25950
25949
|
updatedAt: z.ZodString;
|
|
25950
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25951
25951
|
type: z.ZodLiteral<"internal">;
|
|
25952
25952
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25953
25953
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26021,9 +26021,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26021
26021
|
id: z.ZodString;
|
|
26022
26022
|
name: z.ZodString;
|
|
26023
26023
|
description: z.ZodNullable<z.ZodString>;
|
|
26024
|
-
agentId: z.ZodString;
|
|
26025
26024
|
createdAt: z.ZodString;
|
|
26026
26025
|
updatedAt: z.ZodString;
|
|
26026
|
+
agentId: z.ZodString;
|
|
26027
26027
|
functionId: z.ZodString;
|
|
26028
26028
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26029
26029
|
}, z.core.$strip>>>;
|
|
@@ -26101,9 +26101,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26101
26101
|
id: z.ZodString;
|
|
26102
26102
|
name: z.ZodString;
|
|
26103
26103
|
description: z.ZodNullable<z.ZodString>;
|
|
26104
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26105
26104
|
createdAt: z.ZodString;
|
|
26106
26105
|
updatedAt: z.ZodString;
|
|
26106
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26107
26107
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26108
26108
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26109
26109
|
createdAt: z.ZodString;
|
|
@@ -26154,9 +26154,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26154
26154
|
id: z.ZodString;
|
|
26155
26155
|
name: z.ZodString;
|
|
26156
26156
|
description: z.ZodNullable<z.ZodString>;
|
|
26157
|
-
agentId: z.ZodString;
|
|
26158
26157
|
createdAt: z.ZodString;
|
|
26159
26158
|
updatedAt: z.ZodString;
|
|
26159
|
+
agentId: z.ZodString;
|
|
26160
26160
|
functionId: z.ZodString;
|
|
26161
26161
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26162
26162
|
}, z.core.$strip>>>;
|
|
@@ -26233,7 +26233,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26233
26233
|
id: z.ZodString;
|
|
26234
26234
|
name: z.ZodString;
|
|
26235
26235
|
description: z.ZodNullable<z.ZodString>;
|
|
26236
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26237
26236
|
models: z.ZodNullable<z.ZodType<{
|
|
26238
26237
|
base?: {
|
|
26239
26238
|
model?: string | undefined;
|
|
@@ -26298,6 +26297,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26298
26297
|
}>>>;
|
|
26299
26298
|
createdAt: z.ZodString;
|
|
26300
26299
|
updatedAt: z.ZodString;
|
|
26300
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26301
26301
|
type: z.ZodLiteral<"internal">;
|
|
26302
26302
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26303
26303
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26357,15 +26357,14 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26357
26357
|
id: z.ZodString;
|
|
26358
26358
|
name: z.ZodString;
|
|
26359
26359
|
description: z.ZodNullable<z.ZodString>;
|
|
26360
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26361
26360
|
createdAt: z.ZodString;
|
|
26362
26361
|
updatedAt: z.ZodString;
|
|
26362
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26363
26363
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26364
26364
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26365
26365
|
id: z.ZodString;
|
|
26366
26366
|
name: z.ZodString;
|
|
26367
26367
|
description: z.ZodNullable<z.ZodString>;
|
|
26368
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26369
26368
|
models: z.ZodNullable<z.ZodType<{
|
|
26370
26369
|
base?: {
|
|
26371
26370
|
model?: string | undefined;
|
|
@@ -26430,6 +26429,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26430
26429
|
}>>>;
|
|
26431
26430
|
createdAt: z.ZodString;
|
|
26432
26431
|
updatedAt: z.ZodString;
|
|
26432
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26433
26433
|
type: z.ZodLiteral<"internal">;
|
|
26434
26434
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26435
26435
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26503,9 +26503,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26503
26503
|
id: z.ZodString;
|
|
26504
26504
|
name: z.ZodString;
|
|
26505
26505
|
description: z.ZodNullable<z.ZodString>;
|
|
26506
|
-
agentId: z.ZodString;
|
|
26507
26506
|
createdAt: z.ZodString;
|
|
26508
26507
|
updatedAt: z.ZodString;
|
|
26508
|
+
agentId: z.ZodString;
|
|
26509
26509
|
functionId: z.ZodString;
|
|
26510
26510
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26511
26511
|
}, z.core.$strip>>>;
|
|
@@ -26612,9 +26612,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26612
26612
|
id: z.ZodString;
|
|
26613
26613
|
name: z.ZodString;
|
|
26614
26614
|
description: z.ZodNullable<z.ZodString>;
|
|
26615
|
-
agentId: z.ZodString;
|
|
26616
26615
|
createdAt: z.ZodString;
|
|
26617
26616
|
updatedAt: z.ZodString;
|
|
26617
|
+
agentId: z.ZodString;
|
|
26618
26618
|
functionId: z.ZodString;
|
|
26619
26619
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26620
26620
|
}, z.core.$strip>>>;
|
|
@@ -26762,10 +26762,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26762
26762
|
createdAt: z.ZodString;
|
|
26763
26763
|
updatedAt: z.ZodString;
|
|
26764
26764
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26765
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26766
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26767
26765
|
credentialStoreId: z.ZodString;
|
|
26768
26766
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26767
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26768
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26769
26769
|
type: z.ZodEnum<{
|
|
26770
26770
|
readonly memory: "memory";
|
|
26771
26771
|
readonly keychain: "keychain";
|
|
@@ -27408,9 +27408,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27408
27408
|
id: z.ZodString;
|
|
27409
27409
|
name: z.ZodString;
|
|
27410
27410
|
description: z.ZodNullable<z.ZodString>;
|
|
27411
|
-
agentId: z.ZodString;
|
|
27412
27411
|
createdAt: z.ZodString;
|
|
27413
27412
|
updatedAt: z.ZodString;
|
|
27413
|
+
agentId: z.ZodString;
|
|
27414
27414
|
functionId: z.ZodString;
|
|
27415
27415
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27416
27416
|
}, z.core.$strip>>>;
|
|
@@ -27558,10 +27558,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27558
27558
|
createdAt: z.ZodString;
|
|
27559
27559
|
updatedAt: z.ZodString;
|
|
27560
27560
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27561
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27562
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27563
27561
|
credentialStoreId: z.ZodString;
|
|
27564
27562
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27563
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27564
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27565
27565
|
type: z.ZodEnum<{
|
|
27566
27566
|
readonly memory: "memory";
|
|
27567
27567
|
readonly keychain: "keychain";
|
|
@@ -28147,9 +28147,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28147
28147
|
id: z.ZodString;
|
|
28148
28148
|
name: z.ZodString;
|
|
28149
28149
|
description: z.ZodNullable<z.ZodString>;
|
|
28150
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28151
28150
|
createdAt: z.ZodString;
|
|
28152
28151
|
updatedAt: z.ZodString;
|
|
28152
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28153
28153
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28154
28154
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28155
28155
|
createdAt: z.ZodString;
|
|
@@ -28200,9 +28200,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28200
28200
|
id: z.ZodString;
|
|
28201
28201
|
name: z.ZodString;
|
|
28202
28202
|
description: z.ZodNullable<z.ZodString>;
|
|
28203
|
-
agentId: z.ZodString;
|
|
28204
28203
|
createdAt: z.ZodString;
|
|
28205
28204
|
updatedAt: z.ZodString;
|
|
28205
|
+
agentId: z.ZodString;
|
|
28206
28206
|
functionId: z.ZodString;
|
|
28207
28207
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28208
28208
|
}, z.core.$strip>>>;
|
|
@@ -28279,7 +28279,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28279
28279
|
id: z.ZodString;
|
|
28280
28280
|
name: z.ZodString;
|
|
28281
28281
|
description: z.ZodNullable<z.ZodString>;
|
|
28282
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28283
28282
|
models: z.ZodNullable<z.ZodType<{
|
|
28284
28283
|
base?: {
|
|
28285
28284
|
model?: string | undefined;
|
|
@@ -28344,6 +28343,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28344
28343
|
}>>>;
|
|
28345
28344
|
createdAt: z.ZodString;
|
|
28346
28345
|
updatedAt: z.ZodString;
|
|
28346
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28347
28347
|
type: z.ZodLiteral<"internal">;
|
|
28348
28348
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28349
28349
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28644,9 +28644,9 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28644
28644
|
data: z.ZodObject<{
|
|
28645
28645
|
id: z.ZodString;
|
|
28646
28646
|
name: z.ZodNullable<z.ZodString>;
|
|
28647
|
-
agentId: z.ZodString;
|
|
28648
28647
|
createdAt: z.ZodString;
|
|
28649
28648
|
updatedAt: z.ZodString;
|
|
28649
|
+
agentId: z.ZodString;
|
|
28650
28650
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28651
28651
|
publicId: z.ZodString;
|
|
28652
28652
|
keyPrefix: z.ZodString;
|
|
@@ -28663,10 +28663,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28663
28663
|
createdAt: z.ZodString;
|
|
28664
28664
|
updatedAt: z.ZodString;
|
|
28665
28665
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28666
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28667
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28668
28666
|
credentialStoreId: z.ZodString;
|
|
28669
28667
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28668
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28669
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28670
28670
|
type: z.ZodEnum<{
|
|
28671
28671
|
readonly memory: "memory";
|
|
28672
28672
|
readonly keychain: "keychain";
|
|
@@ -29266,9 +29266,9 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
29266
29266
|
id: z.ZodString;
|
|
29267
29267
|
name: z.ZodString;
|
|
29268
29268
|
description: z.ZodNullable<z.ZodString>;
|
|
29269
|
-
agentId: z.ZodString;
|
|
29270
29269
|
createdAt: z.ZodString;
|
|
29271
29270
|
updatedAt: z.ZodString;
|
|
29271
|
+
agentId: z.ZodString;
|
|
29272
29272
|
functionId: z.ZodString;
|
|
29273
29273
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29274
29274
|
}, z.core.$strip>;
|
|
@@ -29451,8 +29451,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29451
29451
|
signature: z.ZodObject<{
|
|
29452
29452
|
source: z.ZodEnum<{
|
|
29453
29453
|
query: "query";
|
|
29454
|
-
body: "body";
|
|
29455
29454
|
header: "header";
|
|
29455
|
+
body: "body";
|
|
29456
29456
|
}>;
|
|
29457
29457
|
key: z.ZodString;
|
|
29458
29458
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29461,8 +29461,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29461
29461
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29462
29462
|
source: z.ZodEnum<{
|
|
29463
29463
|
literal: "literal";
|
|
29464
|
-
body: "body";
|
|
29465
29464
|
header: "header";
|
|
29465
|
+
body: "body";
|
|
29466
29466
|
}>;
|
|
29467
29467
|
key: z.ZodOptional<z.ZodString>;
|
|
29468
29468
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29793,9 +29793,9 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29793
29793
|
data: z.ZodArray<z.ZodObject<{
|
|
29794
29794
|
id: z.ZodString;
|
|
29795
29795
|
name: z.ZodNullable<z.ZodString>;
|
|
29796
|
-
agentId: z.ZodString;
|
|
29797
29796
|
createdAt: z.ZodString;
|
|
29798
29797
|
updatedAt: z.ZodString;
|
|
29798
|
+
agentId: z.ZodString;
|
|
29799
29799
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29800
29800
|
publicId: z.ZodString;
|
|
29801
29801
|
keyPrefix: z.ZodString;
|
|
@@ -29818,10 +29818,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29818
29818
|
createdAt: z.ZodString;
|
|
29819
29819
|
updatedAt: z.ZodString;
|
|
29820
29820
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29821
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29822
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29823
29821
|
credentialStoreId: z.ZodString;
|
|
29824
29822
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29823
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29824
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29825
29825
|
type: z.ZodEnum<{
|
|
29826
29826
|
readonly memory: "memory";
|
|
29827
29827
|
readonly keychain: "keychain";
|
|
@@ -30433,9 +30433,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
30433
30433
|
id: z.ZodString;
|
|
30434
30434
|
name: z.ZodString;
|
|
30435
30435
|
description: z.ZodNullable<z.ZodString>;
|
|
30436
|
-
agentId: z.ZodString;
|
|
30437
30436
|
createdAt: z.ZodString;
|
|
30438
30437
|
updatedAt: z.ZodString;
|
|
30438
|
+
agentId: z.ZodString;
|
|
30439
30439
|
functionId: z.ZodString;
|
|
30440
30440
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30441
30441
|
}, z.core.$strip>>;
|
|
@@ -30686,8 +30686,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30686
30686
|
signature: z.ZodObject<{
|
|
30687
30687
|
source: z.ZodEnum<{
|
|
30688
30688
|
query: "query";
|
|
30689
|
-
body: "body";
|
|
30690
30689
|
header: "header";
|
|
30690
|
+
body: "body";
|
|
30691
30691
|
}>;
|
|
30692
30692
|
key: z.ZodString;
|
|
30693
30693
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30696,8 +30696,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30696
30696
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30697
30697
|
source: z.ZodEnum<{
|
|
30698
30698
|
literal: "literal";
|
|
30699
|
-
body: "body";
|
|
30700
30699
|
header: "header";
|
|
30700
|
+
body: "body";
|
|
30701
30701
|
}>;
|
|
30702
30702
|
key: z.ZodOptional<z.ZodString>;
|
|
30703
30703
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30754,8 +30754,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30754
30754
|
updatedAt: z.ZodString;
|
|
30755
30755
|
enabled: z.ZodBoolean;
|
|
30756
30756
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30757
|
-
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30758
30757
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30758
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30759
30759
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30760
30760
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30761
30761
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -30773,8 +30773,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30773
30773
|
signature: z.ZodObject<{
|
|
30774
30774
|
source: z.ZodEnum<{
|
|
30775
30775
|
query: "query";
|
|
30776
|
-
body: "body";
|
|
30777
30776
|
header: "header";
|
|
30777
|
+
body: "body";
|
|
30778
30778
|
}>;
|
|
30779
30779
|
key: z.ZodString;
|
|
30780
30780
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30783,8 +30783,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30783
30783
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30784
30784
|
source: z.ZodEnum<{
|
|
30785
30785
|
literal: "literal";
|
|
30786
|
-
body: "body";
|
|
30787
30786
|
header: "header";
|
|
30787
|
+
body: "body";
|
|
30788
30788
|
}>;
|
|
30789
30789
|
key: z.ZodOptional<z.ZodString>;
|
|
30790
30790
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30815,8 +30815,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30815
30815
|
updatedAt: z.ZodString;
|
|
30816
30816
|
enabled: z.ZodBoolean;
|
|
30817
30817
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30818
|
-
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30819
30818
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30819
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30820
30820
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30821
30821
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30822
30822
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -30834,8 +30834,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30834
30834
|
signature: z.ZodObject<{
|
|
30835
30835
|
source: z.ZodEnum<{
|
|
30836
30836
|
query: "query";
|
|
30837
|
-
body: "body";
|
|
30838
30837
|
header: "header";
|
|
30838
|
+
body: "body";
|
|
30839
30839
|
}>;
|
|
30840
30840
|
key: z.ZodString;
|
|
30841
30841
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30844,8 +30844,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30844
30844
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30845
30845
|
source: z.ZodEnum<{
|
|
30846
30846
|
literal: "literal";
|
|
30847
|
-
body: "body";
|
|
30848
30847
|
header: "header";
|
|
30848
|
+
body: "body";
|
|
30849
30849
|
}>;
|
|
30850
30850
|
key: z.ZodOptional<z.ZodString>;
|
|
30851
30851
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30880,11 +30880,11 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30880
30880
|
createdAt: z.ZodString;
|
|
30881
30881
|
updatedAt: z.ZodString;
|
|
30882
30882
|
enabled: z.ZodBoolean;
|
|
30883
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30884
30883
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30885
30884
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30886
30885
|
runAt: z.ZodNullable<z.ZodString>;
|
|
30887
30886
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30887
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30888
30888
|
maxRetries: z.ZodNumber;
|
|
30889
30889
|
retryDelaySeconds: z.ZodNumber;
|
|
30890
30890
|
timeoutSeconds: z.ZodNumber;
|
|
@@ -30953,11 +30953,11 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30953
30953
|
createdAt: z.ZodString;
|
|
30954
30954
|
updatedAt: z.ZodString;
|
|
30955
30955
|
enabled: z.ZodBoolean;
|
|
30956
|
-
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30957
30956
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30958
30957
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30959
30958
|
runAt: z.ZodNullable<z.ZodString>;
|
|
30960
30959
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30960
|
+
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30961
30961
|
maxRetries: z.ZodNumber;
|
|
30962
30962
|
retryDelaySeconds: z.ZodNumber;
|
|
30963
30963
|
timeoutSeconds: z.ZodNumber;
|
|
@@ -31143,16 +31143,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31143
31143
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31144
31144
|
name: z.ZodString;
|
|
31145
31145
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31146
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31147
31146
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31148
31147
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31148
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31149
31149
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31150
31150
|
id: z.ZodString;
|
|
31151
31151
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31152
31152
|
id: z.ZodString;
|
|
31153
31153
|
name: z.ZodString;
|
|
31154
31154
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31155
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31156
31155
|
models: z.ZodOptional<z.ZodObject<{
|
|
31157
31156
|
base: z.ZodOptional<z.ZodObject<{
|
|
31158
31157
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31178,6 +31177,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31178
31177
|
}>>>>;
|
|
31179
31178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31180
31179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31180
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31181
31181
|
type: z.ZodLiteral<"internal">;
|
|
31182
31182
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31183
31183
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31291,8 +31291,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31291
31291
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31292
31292
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31293
31293
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31294
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31295
31294
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31295
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31296
31296
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31297
31297
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31298
31298
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -31304,11 +31304,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31304
31304
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31305
31305
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31306
31306
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31307
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31308
31307
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31309
31308
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31310
31309
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31311
31310
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31311
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31312
31312
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
31313
31313
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
31314
31314
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -31509,10 +31509,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31509
31509
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31510
31510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31511
31511
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31512
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31513
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31514
31512
|
credentialStoreId: z.ZodString;
|
|
31515
31513
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31514
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31515
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31516
31516
|
type: z.ZodEnum<{
|
|
31517
31517
|
readonly memory: "memory";
|
|
31518
31518
|
readonly keychain: "keychain";
|
|
@@ -31555,15 +31555,14 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31555
31555
|
id: z.ZodString;
|
|
31556
31556
|
name: z.ZodString;
|
|
31557
31557
|
description: z.ZodNullable<z.ZodString>;
|
|
31558
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31559
31558
|
createdAt: z.ZodString;
|
|
31560
31559
|
updatedAt: z.ZodString;
|
|
31560
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31561
31561
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31562
31562
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31563
31563
|
id: z.ZodString;
|
|
31564
31564
|
name: z.ZodString;
|
|
31565
31565
|
description: z.ZodNullable<z.ZodString>;
|
|
31566
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31567
31566
|
models: z.ZodNullable<z.ZodType<{
|
|
31568
31567
|
base?: {
|
|
31569
31568
|
model?: string | undefined;
|
|
@@ -31628,6 +31627,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31628
31627
|
}>>>;
|
|
31629
31628
|
createdAt: z.ZodString;
|
|
31630
31629
|
updatedAt: z.ZodString;
|
|
31630
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31631
31631
|
type: z.ZodLiteral<"internal">;
|
|
31632
31632
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31633
31633
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31701,9 +31701,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31701
31701
|
id: z.ZodString;
|
|
31702
31702
|
name: z.ZodString;
|
|
31703
31703
|
description: z.ZodNullable<z.ZodString>;
|
|
31704
|
-
agentId: z.ZodString;
|
|
31705
31704
|
createdAt: z.ZodString;
|
|
31706
31705
|
updatedAt: z.ZodString;
|
|
31706
|
+
agentId: z.ZodString;
|
|
31707
31707
|
functionId: z.ZodString;
|
|
31708
31708
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31709
31709
|
}, z.core.$strip>>>;
|
|
@@ -31810,9 +31810,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31810
31810
|
id: z.ZodString;
|
|
31811
31811
|
name: z.ZodString;
|
|
31812
31812
|
description: z.ZodNullable<z.ZodString>;
|
|
31813
|
-
agentId: z.ZodString;
|
|
31814
31813
|
createdAt: z.ZodString;
|
|
31815
31814
|
updatedAt: z.ZodString;
|
|
31815
|
+
agentId: z.ZodString;
|
|
31816
31816
|
functionId: z.ZodString;
|
|
31817
31817
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31818
31818
|
}, z.core.$strip>>>;
|
|
@@ -31960,10 +31960,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31960
31960
|
createdAt: z.ZodString;
|
|
31961
31961
|
updatedAt: z.ZodString;
|
|
31962
31962
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31963
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
31964
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31965
31963
|
credentialStoreId: z.ZodString;
|
|
31966
31964
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31965
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
31966
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31967
31967
|
type: z.ZodEnum<{
|
|
31968
31968
|
readonly memory: "memory";
|
|
31969
31969
|
readonly keychain: "keychain";
|
|
@@ -32608,9 +32608,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32608
32608
|
id: z.ZodString;
|
|
32609
32609
|
name: z.ZodString;
|
|
32610
32610
|
description: z.ZodNullable<z.ZodString>;
|
|
32611
|
-
agentId: z.ZodString;
|
|
32612
32611
|
createdAt: z.ZodString;
|
|
32613
32612
|
updatedAt: z.ZodString;
|
|
32613
|
+
agentId: z.ZodString;
|
|
32614
32614
|
functionId: z.ZodString;
|
|
32615
32615
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32616
32616
|
}, z.core.$strip>>>;
|
|
@@ -32758,10 +32758,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32758
32758
|
createdAt: z.ZodString;
|
|
32759
32759
|
updatedAt: z.ZodString;
|
|
32760
32760
|
toolId: z.ZodNullable<z.ZodString>;
|
|
32761
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32762
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32763
32761
|
credentialStoreId: z.ZodString;
|
|
32764
32762
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32763
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32764
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32765
32765
|
type: z.ZodEnum<{
|
|
32766
32766
|
readonly memory: "memory";
|
|
32767
32767
|
readonly keychain: "keychain";
|
|
@@ -33347,9 +33347,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33347
33347
|
id: z.ZodString;
|
|
33348
33348
|
name: z.ZodString;
|
|
33349
33349
|
description: z.ZodNullable<z.ZodString>;
|
|
33350
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33351
33350
|
createdAt: z.ZodString;
|
|
33352
33351
|
updatedAt: z.ZodString;
|
|
33352
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33353
33353
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33354
33354
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33355
33355
|
createdAt: z.ZodString;
|
|
@@ -33400,9 +33400,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33400
33400
|
id: z.ZodString;
|
|
33401
33401
|
name: z.ZodString;
|
|
33402
33402
|
description: z.ZodNullable<z.ZodString>;
|
|
33403
|
-
agentId: z.ZodString;
|
|
33404
33403
|
createdAt: z.ZodString;
|
|
33405
33404
|
updatedAt: z.ZodString;
|
|
33405
|
+
agentId: z.ZodString;
|
|
33406
33406
|
functionId: z.ZodString;
|
|
33407
33407
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33408
33408
|
}, z.core.$strip>>>;
|
|
@@ -33479,7 +33479,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33479
33479
|
id: z.ZodString;
|
|
33480
33480
|
name: z.ZodString;
|
|
33481
33481
|
description: z.ZodNullable<z.ZodString>;
|
|
33482
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33483
33482
|
models: z.ZodNullable<z.ZodType<{
|
|
33484
33483
|
base?: {
|
|
33485
33484
|
model?: string | undefined;
|
|
@@ -33544,6 +33543,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33544
33543
|
}>>>;
|
|
33545
33544
|
createdAt: z.ZodString;
|
|
33546
33545
|
updatedAt: z.ZodString;
|
|
33546
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33547
33547
|
type: z.ZodLiteral<"internal">;
|
|
33548
33548
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33549
33549
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33584,16 +33584,15 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33584
33584
|
data: z.ZodObject<{
|
|
33585
33585
|
name: z.ZodString;
|
|
33586
33586
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33587
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33588
33587
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33589
33588
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33589
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33590
33590
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33591
33591
|
id: z.ZodString;
|
|
33592
33592
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33593
33593
|
id: z.ZodString;
|
|
33594
33594
|
name: z.ZodString;
|
|
33595
33595
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33596
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33597
33596
|
models: z.ZodOptional<z.ZodObject<{
|
|
33598
33597
|
base: z.ZodOptional<z.ZodObject<{
|
|
33599
33598
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33619,6 +33618,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33619
33618
|
}>>>>;
|
|
33620
33619
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33621
33620
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33621
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33622
33622
|
type: z.ZodLiteral<"internal">;
|
|
33623
33623
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33624
33624
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33732,8 +33732,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33732
33732
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33733
33733
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33734
33734
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33735
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33736
33735
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33736
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33737
33737
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33738
33738
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33739
33739
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -33745,11 +33745,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33745
33745
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33746
33746
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33747
33747
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33748
|
-
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33749
33748
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33750
33749
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33751
33750
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33752
33751
|
payload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33752
|
+
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33753
33753
|
maxRetries: z.ZodOptional<z.ZodNumber>;
|
|
33754
33754
|
retryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
33755
33755
|
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -33800,15 +33800,14 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33800
33800
|
id: z.ZodString;
|
|
33801
33801
|
name: z.ZodString;
|
|
33802
33802
|
description: z.ZodNullable<z.ZodString>;
|
|
33803
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33804
33803
|
createdAt: z.ZodString;
|
|
33805
33804
|
updatedAt: z.ZodString;
|
|
33805
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33806
33806
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33807
33807
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33808
33808
|
id: z.ZodString;
|
|
33809
33809
|
name: z.ZodString;
|
|
33810
33810
|
description: z.ZodNullable<z.ZodString>;
|
|
33811
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33812
33811
|
models: z.ZodNullable<z.ZodType<{
|
|
33813
33812
|
base?: {
|
|
33814
33813
|
model?: string | undefined;
|
|
@@ -33873,6 +33872,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33873
33872
|
}>>>;
|
|
33874
33873
|
createdAt: z.ZodString;
|
|
33875
33874
|
updatedAt: z.ZodString;
|
|
33875
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33876
33876
|
type: z.ZodLiteral<"internal">;
|
|
33877
33877
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33878
33878
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33946,9 +33946,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33946
33946
|
id: z.ZodString;
|
|
33947
33947
|
name: z.ZodString;
|
|
33948
33948
|
description: z.ZodNullable<z.ZodString>;
|
|
33949
|
-
agentId: z.ZodString;
|
|
33950
33949
|
createdAt: z.ZodString;
|
|
33951
33950
|
updatedAt: z.ZodString;
|
|
33951
|
+
agentId: z.ZodString;
|
|
33952
33952
|
functionId: z.ZodString;
|
|
33953
33953
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33954
33954
|
}, z.core.$strip>>>;
|
|
@@ -34656,8 +34656,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
34656
34656
|
disconnected: "disconnected";
|
|
34657
34657
|
}>;
|
|
34658
34658
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
34659
|
-
Organization: "Organization";
|
|
34660
34659
|
User: "User";
|
|
34660
|
+
Organization: "Organization";
|
|
34661
34661
|
}>;
|
|
34662
34662
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34663
34663
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -34752,7 +34752,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34752
34752
|
tableName: "work_app_github_installations";
|
|
34753
34753
|
dataType: "string";
|
|
34754
34754
|
columnType: "PgVarchar";
|
|
34755
|
-
data: "
|
|
34755
|
+
data: "User" | "Organization";
|
|
34756
34756
|
driverParam: string;
|
|
34757
34757
|
notNull: true;
|
|
34758
34758
|
hasDefault: false;
|
|
@@ -34765,7 +34765,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34765
34765
|
generated: undefined;
|
|
34766
34766
|
}, {}, {
|
|
34767
34767
|
length: 20;
|
|
34768
|
-
$type: "
|
|
34768
|
+
$type: "User" | "Organization";
|
|
34769
34769
|
}>;
|
|
34770
34770
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
34771
34771
|
name: "status";
|
|
@@ -34918,7 +34918,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34918
34918
|
tableName: "work_app_github_installations";
|
|
34919
34919
|
dataType: "string";
|
|
34920
34920
|
columnType: "PgVarchar";
|
|
34921
|
-
data: "
|
|
34921
|
+
data: "User" | "Organization";
|
|
34922
34922
|
driverParam: string;
|
|
34923
34923
|
notNull: true;
|
|
34924
34924
|
hasDefault: false;
|
|
@@ -34931,7 +34931,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34931
34931
|
generated: undefined;
|
|
34932
34932
|
}, {}, {
|
|
34933
34933
|
length: 20;
|
|
34934
|
-
$type: "
|
|
34934
|
+
$type: "User" | "Organization";
|
|
34935
34935
|
}>;
|
|
34936
34936
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
34937
34937
|
name: "status";
|
|
@@ -34999,8 +34999,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
34999
34999
|
installationId: z.ZodString;
|
|
35000
35000
|
accountLogin: z.ZodString;
|
|
35001
35001
|
accountType: z.ZodEnum<{
|
|
35002
|
-
Organization: "Organization";
|
|
35003
35002
|
User: "User";
|
|
35003
|
+
Organization: "Organization";
|
|
35004
35004
|
}>;
|
|
35005
35005
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35006
35006
|
pending: "pending";
|
|
@@ -35030,8 +35030,8 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
35030
35030
|
installationId: z.ZodString;
|
|
35031
35031
|
accountLogin: z.ZodString;
|
|
35032
35032
|
accountType: z.ZodEnum<{
|
|
35033
|
-
Organization: "Organization";
|
|
35034
35033
|
User: "User";
|
|
35034
|
+
Organization: "Organization";
|
|
35035
35035
|
}>;
|
|
35036
35036
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35037
35037
|
pending: "pending";
|