@inkeep/agents-core 0.54.0 → 0.55.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +85 -85
- package/dist/auth/auth-validation-schemas.d.ts +135 -135
- package/dist/data-access/manage/agents.d.ts +42 -42
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +18 -18
- package/dist/data-access/manage/skills.d.ts +14 -14
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +24 -24
- package/dist/data-access/manage/tools.js +23 -11
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +2 -2
- package/dist/middleware/inherited-auth.d.ts +2 -2
- package/dist/middleware/inherited-auth.js +3 -3
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/types/utility.d.ts +1 -0
- package/dist/utils/mcp-client.d.ts +1 -0
- package/dist/utils/mcp-client.js +3 -0
- package/dist/validation/schemas.d.ts +263 -263
- package/package.json +1 -1
|
@@ -821,9 +821,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
821
821
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
822
822
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
823
823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
825
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
824
826
|
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
827
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
828
828
|
base: z.ZodOptional<z.ZodObject<{
|
|
829
829
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -838,6 +838,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
838
838
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
839
839
|
}, z.core.$strip>>;
|
|
840
840
|
}, z.core.$strip>>>>;
|
|
841
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
841
842
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
842
843
|
stepCountIs?: number | undefined;
|
|
843
844
|
}, {
|
|
@@ -847,8 +848,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
847
848
|
}, {
|
|
848
849
|
stepCountIs?: number | undefined;
|
|
849
850
|
}>>>>>>;
|
|
850
|
-
|
|
851
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<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_zod15.BuildSchema<"select", {
|
|
854
854
|
createdAt: drizzle_orm_pg_core217.PgColumn<{
|
|
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2482
2482
|
}, {}, {
|
|
2483
2483
|
length: 256;
|
|
2484
2484
|
}>;
|
|
2485
|
-
}, "id" | "name" | "
|
|
2485
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "projectId" | "tenantId" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, 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>>;
|
|
@@ -2750,9 +2750,11 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2750
2750
|
}>, z.core.$strip>;
|
|
2751
2751
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2752
2752
|
name: z.ZodString;
|
|
2753
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2754
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2753
2755
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
2756
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2755
|
-
|
|
2757
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
2758
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2757
2759
|
base?: {
|
|
2758
2760
|
model?: string | undefined;
|
|
@@ -2806,18 +2808,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2806
2808
|
providerOptions?: Record<string, any> | undefined;
|
|
2807
2809
|
} | undefined;
|
|
2808
2810
|
}>>>>;
|
|
2809
|
-
|
|
2810
|
-
transferCountIs?: number | undefined;
|
|
2811
|
-
}, {
|
|
2812
|
-
transferCountIs?: number | undefined;
|
|
2813
|
-
}, z.core.$ZodTypeInternals<{
|
|
2814
|
-
transferCountIs?: number | undefined;
|
|
2815
|
-
}, {
|
|
2816
|
-
transferCountIs?: number | undefined;
|
|
2817
|
-
}>>>>;
|
|
2818
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2819
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2820
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2811
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2821
2812
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2822
2813
|
enabled?: boolean | undefined;
|
|
2823
2814
|
numEvents?: number | undefined;
|
|
@@ -2875,14 +2866,25 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2875
2866
|
} | undefined;
|
|
2876
2867
|
}[] | undefined;
|
|
2877
2868
|
}>>>>;
|
|
2869
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2870
|
+
transferCountIs?: number | undefined;
|
|
2871
|
+
}, {
|
|
2872
|
+
transferCountIs?: number | undefined;
|
|
2873
|
+
}, z.core.$ZodTypeInternals<{
|
|
2874
|
+
transferCountIs?: number | undefined;
|
|
2875
|
+
}, {
|
|
2876
|
+
transferCountIs?: number | undefined;
|
|
2877
|
+
}>>>>;
|
|
2878
2878
|
id: z.ZodString;
|
|
2879
2879
|
}, z.core.$strip>;
|
|
2880
2880
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2881
2881
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
2882
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2884
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2883
2885
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
2886
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2885
|
-
|
|
2887
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2886
2888
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2887
2889
|
base?: {
|
|
2888
2890
|
model?: string | undefined;
|
|
@@ -2936,18 +2938,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2936
2938
|
providerOptions?: Record<string, any> | undefined;
|
|
2937
2939
|
} | undefined;
|
|
2938
2940
|
}>>>>>>;
|
|
2939
|
-
|
|
2940
|
-
transferCountIs?: number | undefined;
|
|
2941
|
-
}, {
|
|
2942
|
-
transferCountIs?: number | undefined;
|
|
2943
|
-
}, z.core.$ZodTypeInternals<{
|
|
2944
|
-
transferCountIs?: number | undefined;
|
|
2945
|
-
}, {
|
|
2946
|
-
transferCountIs?: number | undefined;
|
|
2947
|
-
}>>>>>>;
|
|
2948
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2949
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2950
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2941
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2951
2942
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2952
2943
|
enabled?: boolean | undefined;
|
|
2953
2944
|
numEvents?: number | undefined;
|
|
@@ -3005,6 +2996,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3005
2996
|
} | undefined;
|
|
3006
2997
|
}[] | undefined;
|
|
3007
2998
|
}>>>>>>;
|
|
2999
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3000
|
+
transferCountIs?: number | undefined;
|
|
3001
|
+
}, {
|
|
3002
|
+
transferCountIs?: number | undefined;
|
|
3003
|
+
}, z.core.$ZodTypeInternals<{
|
|
3004
|
+
transferCountIs?: number | undefined;
|
|
3005
|
+
}, {
|
|
3006
|
+
transferCountIs?: number | undefined;
|
|
3007
|
+
}>>>>>>;
|
|
3008
3008
|
}, z.core.$strip>;
|
|
3009
3009
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
3010
3010
|
name: z.ZodString;
|
|
@@ -3100,9 +3100,9 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3100
3100
|
*/
|
|
3101
3101
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3102
3102
|
source: z.ZodEnum<{
|
|
3103
|
-
literal: "literal";
|
|
3104
3103
|
body: "body";
|
|
3105
3104
|
header: "header";
|
|
3105
|
+
literal: "literal";
|
|
3106
3106
|
}>;
|
|
3107
3107
|
key: z.ZodOptional<z.ZodString>;
|
|
3108
3108
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3220,9 +3220,9 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3220
3220
|
}, z.core.$strip>;
|
|
3221
3221
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3222
3222
|
source: z.ZodEnum<{
|
|
3223
|
-
literal: "literal";
|
|
3224
3223
|
body: "body";
|
|
3225
3224
|
header: "header";
|
|
3225
|
+
literal: "literal";
|
|
3226
3226
|
}>;
|
|
3227
3227
|
key: z.ZodOptional<z.ZodString>;
|
|
3228
3228
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3273,8 +3273,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3273
3273
|
*/
|
|
3274
3274
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3275
3275
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3276
|
-
success: "success";
|
|
3277
3276
|
pending: "pending";
|
|
3277
|
+
success: "success";
|
|
3278
3278
|
failed: "failed";
|
|
3279
3279
|
}>;
|
|
3280
3280
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
@@ -3316,9 +3316,9 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3316
3316
|
}, z.core.$strip>;
|
|
3317
3317
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3318
3318
|
source: z.ZodEnum<{
|
|
3319
|
-
literal: "literal";
|
|
3320
3319
|
body: "body";
|
|
3321
3320
|
header: "header";
|
|
3321
|
+
literal: "literal";
|
|
3322
3322
|
}>;
|
|
3323
3323
|
key: z.ZodOptional<z.ZodString>;
|
|
3324
3324
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3507,7 +3507,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3507
3507
|
regex?: string | undefined;
|
|
3508
3508
|
};
|
|
3509
3509
|
signedComponents: {
|
|
3510
|
-
source: "
|
|
3510
|
+
source: "body" | "header" | "literal";
|
|
3511
3511
|
required: boolean;
|
|
3512
3512
|
key?: string | undefined;
|
|
3513
3513
|
value?: string | undefined;
|
|
@@ -3544,7 +3544,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3544
3544
|
regex?: string | undefined;
|
|
3545
3545
|
};
|
|
3546
3546
|
signedComponents: {
|
|
3547
|
-
source: "
|
|
3547
|
+
source: "body" | "header" | "literal";
|
|
3548
3548
|
required: boolean;
|
|
3549
3549
|
key?: string | undefined;
|
|
3550
3550
|
value?: string | undefined;
|
|
@@ -3839,7 +3839,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3839
3839
|
regex?: string | undefined;
|
|
3840
3840
|
};
|
|
3841
3841
|
signedComponents: {
|
|
3842
|
-
source: "
|
|
3842
|
+
source: "body" | "header" | "literal";
|
|
3843
3843
|
required: boolean;
|
|
3844
3844
|
key?: string | undefined;
|
|
3845
3845
|
value?: string | undefined;
|
|
@@ -3876,7 +3876,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3876
3876
|
regex?: string | undefined;
|
|
3877
3877
|
};
|
|
3878
3878
|
signedComponents: {
|
|
3879
|
-
source: "
|
|
3879
|
+
source: "body" | "header" | "literal";
|
|
3880
3880
|
required: boolean;
|
|
3881
3881
|
key?: string | undefined;
|
|
3882
3882
|
value?: string | undefined;
|
|
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4005
4005
|
}, {}, {
|
|
4006
4006
|
length: 256;
|
|
4007
4007
|
}>;
|
|
4008
|
-
}, "id" | "name" | "
|
|
4008
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "agentId" | "projectId" | "tenantId" | "inputSchema" | "outputTransform" | "messageTemplate" | "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>>;
|
|
@@ -4065,9 +4065,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4065
4065
|
}, z.core.$strip>;
|
|
4066
4066
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4067
4067
|
source: z.ZodEnum<{
|
|
4068
|
-
literal: "literal";
|
|
4069
4068
|
body: "body";
|
|
4070
4069
|
header: "header";
|
|
4070
|
+
literal: "literal";
|
|
4071
4071
|
}>;
|
|
4072
4072
|
key: z.ZodOptional<z.ZodString>;
|
|
4073
4073
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4089,9 +4089,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4089
4089
|
}>, z.core.$strip>;
|
|
4090
4090
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4091
4091
|
name: z.ZodString;
|
|
4092
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4093
4092
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4094
4093
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4094
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4095
4095
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4096
4096
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4097
4097
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -4124,9 +4124,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4124
4124
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4125
4125
|
id: z.ZodString;
|
|
4126
4126
|
name: z.ZodString;
|
|
4127
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4128
4127
|
createdAt: z.ZodString;
|
|
4129
4128
|
updatedAt: z.ZodString;
|
|
4129
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4130
4130
|
enabled: z.ZodBoolean;
|
|
4131
4131
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4132
4132
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -4157,9 +4157,9 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4157
4157
|
}, z.core.$strip>;
|
|
4158
4158
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4159
4159
|
source: z.ZodEnum<{
|
|
4160
|
-
literal: "literal";
|
|
4161
4160
|
body: "body";
|
|
4162
4161
|
header: "header";
|
|
4162
|
+
literal: "literal";
|
|
4163
4163
|
}>;
|
|
4164
4164
|
key: z.ZodOptional<z.ZodString>;
|
|
4165
4165
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "id" | "
|
|
4992
|
+
}, "id" | "createdAt" | "status" | "agentId" | "projectId" | "tenantId" | "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>>>;
|
|
@@ -5752,7 +5752,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5752
5752
|
}, {}, {
|
|
5753
5753
|
length: 256;
|
|
5754
5754
|
}>;
|
|
5755
|
-
}, "id" | "name" | "
|
|
5755
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "agentId" | "projectId" | "tenantId" | "messageTemplate" | "createdBy" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds" | "runAsUserId">, undefined>, undefined>;
|
|
5756
5756
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5757
5757
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5758
5758
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5800,9 +5800,9 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5800
5800
|
}>, z.core.$strip>;
|
|
5801
5801
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5802
5802
|
name: z.ZodString;
|
|
5803
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5804
5803
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5805
5804
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5805
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5806
5806
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5807
5807
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5808
5808
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5818,9 +5818,9 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5818
5818
|
}, z.core.$strip>;
|
|
5819
5819
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5820
5820
|
name: z.ZodString;
|
|
5821
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5822
5821
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5823
5822
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5823
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5824
5824
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5825
5825
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5826
5826
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6681,7 +6681,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
6681
6681
|
}, {}, {
|
|
6682
6682
|
length: 256;
|
|
6683
6683
|
}>;
|
|
6684
|
-
}, "id" | "name" | "
|
|
6684
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "status" | "description" | "agentId" | "projectId" | "tenantId" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6685
6685
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6686
6686
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6687
6687
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6713,10 +6713,10 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
6713
6713
|
}>, z.core.$strip>;
|
|
6714
6714
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
6715
6715
|
name: z.ZodString;
|
|
6716
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6717
6716
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6718
6717
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6719
6718
|
status: z.ZodOptional<z.ZodString>;
|
|
6719
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6720
6720
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6721
6721
|
scheduledTriggerId: z.ZodString;
|
|
6722
6722
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7288,7 +7288,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
7288
7288
|
}, {}, {
|
|
7289
7289
|
length: 256;
|
|
7290
7290
|
}>;
|
|
7291
|
-
}, "id" | "
|
|
7291
|
+
}, "id" | "createdAt" | "status" | "agentId" | "projectId" | "tenantId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7292
7292
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7293
7293
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7294
7294
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -7892,10 +7892,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7892
7892
|
}>, z.core.$strip>;
|
|
7893
7893
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7894
7894
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7895
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7896
7895
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7897
7896
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7898
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7899
7897
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7900
7898
|
type: z.ZodEnum<{
|
|
7901
7899
|
tag: "tag";
|
|
@@ -7905,7 +7903,9 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7905
7903
|
name: z.ZodString;
|
|
7906
7904
|
hash: z.ZodString;
|
|
7907
7905
|
}, z.core.$strip>>>;
|
|
7906
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7908
7907
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7908
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7909
7909
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7910
7910
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7911
7911
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9457,12 +9457,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9457
9457
|
}>, z.core.$strip>;
|
|
9458
9458
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
9459
9459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9460
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9461
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9462
9460
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9463
9461
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9464
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9465
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9466
9462
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9467
9463
|
type: z.ZodEnum<{
|
|
9468
9464
|
tag: "tag";
|
|
@@ -9473,6 +9469,10 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9473
9469
|
hash: z.ZodString;
|
|
9474
9470
|
}, z.core.$strip>>>;
|
|
9475
9471
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9472
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9473
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9474
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9475
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9476
9476
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9477
9477
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9478
9478
|
}, z.core.$strip>;
|
|
@@ -10372,8 +10372,8 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
10372
10372
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10373
10373
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10374
10374
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
10375
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10376
10375
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10376
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10377
10377
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10378
10378
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10379
10379
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10997,10 +10997,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10997
10997
|
}>, z.core.$strip>;
|
|
10998
10998
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
10999
10999
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11000
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
11001
11000
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11002
11001
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11003
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11004
11002
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
11005
11003
|
type: z.ZodEnum<{
|
|
11006
11004
|
tag: "tag";
|
|
@@ -11010,6 +11008,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
11010
11008
|
name: z.ZodString;
|
|
11011
11009
|
hash: z.ZodString;
|
|
11012
11010
|
}, z.core.$strip>>>;
|
|
11011
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
11012
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11013
11013
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11014
11014
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11015
11015
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -12697,26 +12697,26 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12697
12697
|
}>, z.core.$strip>;
|
|
12698
12698
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
12699
12699
|
name: z.ZodString;
|
|
12700
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12701
12700
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12702
12701
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12702
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12703
12703
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12704
12704
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12705
12705
|
}, z.core.$strip>;
|
|
12706
12706
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
12707
12707
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12708
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12709
12708
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12710
12709
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12710
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12711
12711
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
12712
12712
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12713
12713
|
}, z.core.$strip>;
|
|
12714
12714
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12715
12715
|
id: z.ZodString;
|
|
12716
12716
|
name: z.ZodString;
|
|
12717
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12718
12717
|
createdAt: z.ZodString;
|
|
12719
12718
|
updatedAt: z.ZodString;
|
|
12719
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12720
12720
|
isActive: z.ZodBoolean;
|
|
12721
12721
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12722
12722
|
}, z.core.$strip>;
|
|
@@ -14874,8 +14874,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14874
14874
|
}>, z.core.$strip>;
|
|
14875
14875
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14876
14876
|
name: z.ZodString;
|
|
14877
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
14878
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14879
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14877
14880
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14878
|
-
prompt: z.ZodString;
|
|
14879
14881
|
model: z.ZodType<{
|
|
14880
14882
|
model?: string | undefined;
|
|
14881
14883
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14889,15 +14891,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14889
14891
|
model?: string | undefined;
|
|
14890
14892
|
providerOptions?: Record<string, any> | undefined;
|
|
14891
14893
|
}>>;
|
|
14892
|
-
|
|
14893
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14894
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14894
|
+
prompt: z.ZodString;
|
|
14895
14895
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14896
14896
|
}, z.core.$strip>;
|
|
14897
14897
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14898
14898
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14899
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14900
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14901
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14899
14902
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14900
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14901
14903
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14902
14904
|
model?: string | undefined;
|
|
14903
14905
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14911,9 +14913,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14911
14913
|
model?: string | undefined;
|
|
14912
14914
|
providerOptions?: Record<string, any> | undefined;
|
|
14913
14915
|
}>>>>;
|
|
14914
|
-
|
|
14915
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14916
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14916
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14917
14917
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14918
14918
|
}, z.core.$strip>;
|
|
14919
14919
|
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -15810,8 +15810,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
15810
15810
|
}>>>>>>;
|
|
15811
15811
|
}, z.core.$strip>;
|
|
15812
15812
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
15813
|
-
id: z.ZodOptional<z.ZodString>;
|
|
15814
15813
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15814
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15815
15815
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15816
15816
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15817
15817
|
prompt: string;
|
|
@@ -15859,8 +15859,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
15859
15859
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
15860
15860
|
datasetRunId: z.ZodString;
|
|
15861
15861
|
items: z.ZodArray<z.ZodObject<{
|
|
15862
|
-
id: z.ZodOptional<z.ZodString>;
|
|
15863
15862
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15863
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15864
15864
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15865
15865
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15866
15866
|
prompt: string;
|
|
@@ -16271,16 +16271,16 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16271
16271
|
}>, z.core.$strip>;
|
|
16272
16272
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
16273
16273
|
name: z.ZodString;
|
|
16274
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16275
16274
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16276
16275
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16276
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16277
16277
|
datasetId: z.ZodString;
|
|
16278
16278
|
}, z.core.$strip>;
|
|
16279
16279
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
16280
16280
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16281
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16282
16281
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16283
16282
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16283
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16284
16284
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16285
16285
|
}, z.core.$strip>;
|
|
16286
16286
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -16589,20 +16589,20 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
16589
16589
|
}>;
|
|
16590
16590
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
16591
16591
|
name: z.ZodString;
|
|
16592
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16592
16593
|
description: z.ZodString;
|
|
16593
|
-
tenantId: z.ZodString;
|
|
16594
16594
|
projectId: z.ZodString;
|
|
16595
|
-
|
|
16595
|
+
tenantId: z.ZodString;
|
|
16596
16596
|
content: z.ZodString;
|
|
16597
16597
|
}, {
|
|
16598
16598
|
out: {};
|
|
16599
16599
|
in: {};
|
|
16600
16600
|
}>;
|
|
16601
16601
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16602
|
+
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16602
16603
|
description: z.ZodOptional<z.ZodString>;
|
|
16603
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16604
16604
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16605
|
-
|
|
16605
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16606
16606
|
content: z.ZodOptional<z.ZodString>;
|
|
16607
16607
|
}, {
|
|
16608
16608
|
out: {};
|
|
@@ -16621,15 +16621,15 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16621
16621
|
}>, z.core.$strip>;
|
|
16622
16622
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16623
16623
|
name: z.ZodString;
|
|
16624
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16624
16625
|
description: z.ZodString;
|
|
16625
|
-
tenantId: z.ZodString;
|
|
16626
16626
|
projectId: z.ZodString;
|
|
16627
|
-
|
|
16627
|
+
tenantId: z.ZodString;
|
|
16628
16628
|
content: z.ZodString;
|
|
16629
16629
|
}>, z.core.$strip>;
|
|
16630
16630
|
declare const SkillApiUpdateSchema: z.ZodObject<{
|
|
16631
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16632
16631
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>>;
|
|
16632
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16633
16633
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16634
16634
|
}, z.core.$strip>;
|
|
16635
16635
|
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -17747,7 +17747,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
17747
17747
|
}, {}, {
|
|
17748
17748
|
length: 256;
|
|
17749
17749
|
}>;
|
|
17750
|
-
}, "id" | "
|
|
17750
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17751
17751
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17752
17752
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17753
17753
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18346,9 +18346,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
18346
18346
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
18347
18347
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18348
18348
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18349
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18350
18349
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18351
18350
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18351
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18352
18352
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
18353
18353
|
[x: string]: unknown;
|
|
18354
18354
|
type: "object";
|
|
@@ -18763,10 +18763,10 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18763
18763
|
}>, z.core.$strip>;
|
|
18764
18764
|
declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
|
|
18765
18765
|
agentId: z.ZodString;
|
|
18766
|
-
index: z.ZodInt;
|
|
18767
|
-
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18768
18766
|
subAgentId: z.ZodString;
|
|
18769
18767
|
skillId: z.ZodString;
|
|
18768
|
+
index: z.ZodInt;
|
|
18769
|
+
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18770
18770
|
}, {
|
|
18771
18771
|
out: {};
|
|
18772
18772
|
in: {};
|
|
@@ -18775,18 +18775,18 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18775
18775
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18776
18776
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18777
18777
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18778
|
-
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
18779
|
-
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18780
18778
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18781
18779
|
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18780
|
+
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
18781
|
+
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18782
18782
|
}, z.core.$strip>;
|
|
18783
18783
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18784
18784
|
id: z.ZodString;
|
|
18785
18785
|
name: z.ZodString;
|
|
18786
|
-
description: z.ZodString;
|
|
18787
18786
|
createdAt: z.ZodString;
|
|
18788
18787
|
updatedAt: z.ZodString;
|
|
18789
18788
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18789
|
+
description: z.ZodString;
|
|
18790
18790
|
content: z.ZodString;
|
|
18791
18791
|
subAgentSkillId: z.ZodString;
|
|
18792
18792
|
subAgentId: z.ZodString;
|
|
@@ -18860,18 +18860,18 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18860
18860
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18861
18861
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18862
18862
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18863
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18864
18863
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18865
18864
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18865
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18866
18866
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18867
18867
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
18868
18868
|
}, z.core.$strip>;
|
|
18869
18869
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18870
18870
|
id: z.ZodString;
|
|
18871
18871
|
name: z.ZodString;
|
|
18872
|
+
createdAt: z.ZodString;
|
|
18873
|
+
updatedAt: z.ZodString;
|
|
18872
18874
|
description: z.ZodNullable<z.ZodString>;
|
|
18873
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18874
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18875
18875
|
models: z.ZodNullable<z.ZodType<{
|
|
18876
18876
|
base?: {
|
|
18877
18877
|
model?: string | undefined;
|
|
@@ -18925,6 +18925,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18925
18925
|
providerOptions?: Record<string, any> | undefined;
|
|
18926
18926
|
} | undefined;
|
|
18927
18927
|
}>>>;
|
|
18928
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18928
18929
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
18929
18930
|
stepCountIs?: number | undefined;
|
|
18930
18931
|
}, {
|
|
@@ -18934,15 +18935,14 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18934
18935
|
}, {
|
|
18935
18936
|
stepCountIs?: number | undefined;
|
|
18936
18937
|
}>>>;
|
|
18937
|
-
|
|
18938
|
-
updatedAt: z.ZodString;
|
|
18938
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18939
18939
|
type: z.ZodLiteral<"internal">;
|
|
18940
18940
|
}, z.core.$strip>, z.ZodObject<{
|
|
18941
18941
|
id: z.ZodString;
|
|
18942
18942
|
name: z.ZodString;
|
|
18943
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18944
18943
|
createdAt: z.ZodString;
|
|
18945
18944
|
updatedAt: z.ZodString;
|
|
18945
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18946
18946
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18947
18947
|
baseUrl: z.ZodString;
|
|
18948
18948
|
type: z.ZodLiteral<"external">;
|
|
@@ -19409,9 +19409,9 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19409
19409
|
}>;
|
|
19410
19410
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19411
19411
|
name: z.ZodOptional<z.ZodString>;
|
|
19412
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19413
19412
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19414
19413
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19414
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19415
19415
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19416
19416
|
}, {
|
|
19417
19417
|
out: {};
|
|
@@ -19420,10 +19420,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
19420
19420
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19421
19421
|
id: z.ZodString;
|
|
19422
19422
|
name: z.ZodNullable<z.ZodString>;
|
|
19423
|
-
agentId: z.ZodString;
|
|
19424
19423
|
createdAt: z.ZodString;
|
|
19425
19424
|
updatedAt: z.ZodString;
|
|
19426
19425
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19426
|
+
agentId: z.ZodString;
|
|
19427
19427
|
publicId: z.ZodString;
|
|
19428
19428
|
keyPrefix: z.ZodString;
|
|
19429
19429
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19436,10 +19436,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19436
19436
|
apiKey: z.ZodObject<{
|
|
19437
19437
|
id: z.ZodString;
|
|
19438
19438
|
name: z.ZodNullable<z.ZodString>;
|
|
19439
|
-
agentId: z.ZodString;
|
|
19440
19439
|
createdAt: z.ZodString;
|
|
19441
19440
|
updatedAt: z.ZodString;
|
|
19442
19441
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19442
|
+
agentId: z.ZodString;
|
|
19443
19443
|
publicId: z.ZodString;
|
|
19444
19444
|
keyPrefix: z.ZodString;
|
|
19445
19445
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -19452,19 +19452,19 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19452
19452
|
}, z.core.$strip>;
|
|
19453
19453
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
19454
19454
|
name: z.ZodString;
|
|
19455
|
-
agentId: z.ZodString;
|
|
19456
19455
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19457
19456
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19458
19457
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19458
|
+
agentId: z.ZodString;
|
|
19459
19459
|
}, {
|
|
19460
19460
|
out: {};
|
|
19461
19461
|
in: {};
|
|
19462
19462
|
}>;
|
|
19463
19463
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19464
19464
|
name: z.ZodOptional<z.ZodString>;
|
|
19465
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19466
19465
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19467
19466
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19467
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19468
19468
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19469
19469
|
}, {
|
|
19470
19470
|
out: {};
|
|
@@ -19960,10 +19960,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19960
19960
|
name: z.ZodString;
|
|
19961
19961
|
createdAt: z.ZodString;
|
|
19962
19962
|
updatedAt: z.ZodString;
|
|
19963
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
19964
19963
|
userId: z.ZodNullable<z.ZodString>;
|
|
19965
19964
|
credentialStoreId: z.ZodString;
|
|
19966
19965
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19966
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19967
19967
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
19968
19968
|
type: z.ZodEnum<{
|
|
19969
19969
|
readonly memory: "memory";
|
|
@@ -20551,10 +20551,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20551
20551
|
name: z.ZodString;
|
|
20552
20552
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20553
20553
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20554
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20555
20554
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20556
20555
|
credentialStoreId: z.ZodString;
|
|
20557
20556
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20557
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20558
20558
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20559
20559
|
type: z.ZodEnum<{
|
|
20560
20560
|
readonly memory: "memory";
|
|
@@ -20567,10 +20567,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
20567
20567
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20568
20568
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20569
20569
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20570
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20571
20570
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20572
20571
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20573
20572
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20573
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20574
20574
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20575
20575
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20576
20576
|
readonly memory: "memory";
|
|
@@ -20696,8 +20696,8 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20696
20696
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
20697
20697
|
id: z.ZodString;
|
|
20698
20698
|
name: z.ZodString;
|
|
20699
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20700
20699
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20700
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20701
20701
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
20702
20702
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20703
20703
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -20734,10 +20734,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20734
20734
|
name: z.ZodString;
|
|
20735
20735
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20736
20736
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20737
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20738
20737
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20739
20738
|
credentialStoreId: z.ZodString;
|
|
20740
20739
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20740
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20741
20741
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20742
20742
|
type: z.ZodEnum<{
|
|
20743
20743
|
readonly memory: "memory";
|
|
@@ -20875,9 +20875,9 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20875
20875
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20876
20876
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20877
20877
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20878
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20879
20878
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20880
20879
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20880
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20881
20881
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
20882
20882
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20883
20883
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21276,10 +21276,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21276
21276
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21277
21277
|
id: z.ZodString;
|
|
21278
21278
|
name: z.ZodString;
|
|
21279
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21280
|
-
agentId: z.ZodString;
|
|
21281
21279
|
createdAt: z.ZodString;
|
|
21282
21280
|
updatedAt: z.ZodString;
|
|
21281
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21282
|
+
agentId: z.ZodString;
|
|
21283
21283
|
functionId: z.ZodString;
|
|
21284
21284
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21285
21285
|
}, z.core.$strip>;
|
|
@@ -21297,10 +21297,10 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21297
21297
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21298
21298
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21299
21299
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21300
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21301
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21302
21300
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21303
21301
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21302
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21303
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21304
21304
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21305
21305
|
}, z.core.$strip>;
|
|
21306
21306
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -21674,9 +21674,9 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
21674
21674
|
id: z.ZodString;
|
|
21675
21675
|
}>, z.core.$strip>;
|
|
21676
21676
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21677
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21678
21677
|
subAgentId: z.ZodString;
|
|
21679
21678
|
functionToolId: z.ZodString;
|
|
21679
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21680
21680
|
}, {
|
|
21681
21681
|
out: {};
|
|
21682
21682
|
in: {};
|
|
@@ -22072,10 +22072,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22072
22072
|
name: z.ZodString;
|
|
22073
22073
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22074
22074
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22075
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22076
22075
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22077
22076
|
credentialStoreId: z.ZodString;
|
|
22078
22077
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22078
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22079
22079
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22080
22080
|
type: z.ZodEnum<{
|
|
22081
22081
|
readonly memory: "memory";
|
|
@@ -22099,22 +22099,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22099
22099
|
}>;
|
|
22100
22100
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22101
22101
|
id: z.ZodOptional<z.ZodString>;
|
|
22102
|
-
tenantId: z.ZodString;
|
|
22103
|
-
projectId: z.ZodString;
|
|
22104
|
-
agentId: z.ZodString;
|
|
22105
22102
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22106
22103
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22104
|
+
agentId: z.ZodString;
|
|
22105
|
+
projectId: z.ZodString;
|
|
22106
|
+
tenantId: z.ZodString;
|
|
22107
22107
|
}, {
|
|
22108
22108
|
out: {};
|
|
22109
22109
|
in: {};
|
|
22110
22110
|
}>;
|
|
22111
22111
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22112
22112
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22113
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22114
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22115
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22116
22113
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22117
22114
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22115
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22116
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22117
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22118
22118
|
}, {
|
|
22119
22119
|
out: {};
|
|
22120
22120
|
in: {};
|
|
@@ -22625,12 +22625,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22625
22625
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22626
22626
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22627
22627
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22628
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22629
22628
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22629
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22630
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22630
22631
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22631
22632
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22632
22633
|
}, z.core.$strip>>>>>>;
|
|
22633
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22634
22634
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22635
22635
|
}, z.core.$strip>;
|
|
22636
22636
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -23020,8 +23020,8 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23020
23020
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23021
23021
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23022
23022
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23023
|
-
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23024
23023
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23024
|
+
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23025
23025
|
}, z.core.$strip>;
|
|
23026
23026
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
23027
23027
|
createdAt: drizzle_orm_pg_core217.PgColumn<{
|
|
@@ -24754,7 +24754,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
24754
24754
|
}, {}, {
|
|
24755
24755
|
length: 256;
|
|
24756
24756
|
}>;
|
|
24757
|
-
}, "
|
|
24757
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "projectId" | "tenantId" | "toolCallId" | "contextId" | "visibility" | "taskId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24758
24758
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24759
24759
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24760
24760
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24819,13 +24819,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24819
24819
|
id: z.ZodString;
|
|
24820
24820
|
}>, z.core.$strip>;
|
|
24821
24821
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24822
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24822
24823
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24823
24824
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24824
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24825
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24826
24825
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24827
24826
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24828
24827
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24828
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24829
24829
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24830
24830
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24831
24831
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -24901,8 +24901,9 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24901
24901
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24902
24902
|
id: z.ZodString;
|
|
24903
24903
|
name: z.ZodString;
|
|
24904
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24905
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24904
24906
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24905
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24906
24907
|
models: z.ZodOptional<z.ZodObject<{
|
|
24907
24908
|
base: z.ZodOptional<z.ZodObject<{
|
|
24908
24909
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24917,8 +24918,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24917
24918
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
24918
24919
|
}, z.core.$strip>>;
|
|
24919
24920
|
}, z.core.$strip>>;
|
|
24920
|
-
|
|
24921
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24921
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24922
24922
|
type: z.ZodLiteral<"internal">;
|
|
24923
24923
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24924
24924
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24953,17 +24953,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24953
24953
|
}, z.core.$strip>;
|
|
24954
24954
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24955
24955
|
name: z.ZodString;
|
|
24956
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24957
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24958
24956
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24959
24957
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24958
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24959
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24960
24960
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24961
24961
|
id: z.ZodString;
|
|
24962
24962
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24963
24963
|
id: z.ZodString;
|
|
24964
24964
|
name: z.ZodString;
|
|
24965
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24966
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24965
24967
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24966
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24967
24968
|
models: z.ZodOptional<z.ZodObject<{
|
|
24968
24969
|
base: z.ZodOptional<z.ZodObject<{
|
|
24969
24970
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24978,8 +24979,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24978
24979
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
24979
24980
|
}, z.core.$strip>>;
|
|
24980
24981
|
}, z.core.$strip>>;
|
|
24981
|
-
|
|
24982
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24982
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24983
24983
|
type: z.ZodLiteral<"internal">;
|
|
24984
24984
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24985
24985
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25091,9 +25091,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25091
25091
|
}, z.core.$strip>>>;
|
|
25092
25092
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25093
25093
|
name: z.ZodString;
|
|
25094
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25095
25094
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25096
25095
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25096
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25097
25097
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25098
25098
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25099
25099
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -25105,9 +25105,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25105
25105
|
}, z.core.$strip>>>;
|
|
25106
25106
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25107
25107
|
name: z.ZodString;
|
|
25108
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25109
25108
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25110
25109
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25110
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25111
25111
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25112
25112
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25113
25113
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25274,6 +25274,8 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25274
25274
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25275
25275
|
id: z.ZodString;
|
|
25276
25276
|
name: z.ZodString;
|
|
25277
|
+
createdAt: z.ZodString;
|
|
25278
|
+
updatedAt: z.ZodString;
|
|
25277
25279
|
description: z.ZodNullable<z.ZodString>;
|
|
25278
25280
|
models: z.ZodNullable<z.ZodObject<{
|
|
25279
25281
|
base: z.ZodObject<{
|
|
@@ -25293,8 +25295,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25293
25295
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25294
25296
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25295
25297
|
}, z.core.$strip>>;
|
|
25296
|
-
createdAt: z.ZodString;
|
|
25297
|
-
updatedAt: z.ZodString;
|
|
25298
25298
|
}, {
|
|
25299
25299
|
out: {};
|
|
25300
25300
|
in: {};
|
|
@@ -25374,17 +25374,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25374
25374
|
}, z.core.$strip>>;
|
|
25375
25375
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25376
25376
|
name: z.ZodString;
|
|
25377
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25378
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25379
25377
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25380
25378
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25379
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25380
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25381
25381
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25382
25382
|
id: z.ZodString;
|
|
25383
25383
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25384
25384
|
id: z.ZodString;
|
|
25385
25385
|
name: z.ZodString;
|
|
25386
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25387
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25386
25388
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25387
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25388
25389
|
models: z.ZodOptional<z.ZodObject<{
|
|
25389
25390
|
base: z.ZodOptional<z.ZodObject<{
|
|
25390
25391
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25399,8 +25400,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25399
25400
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25400
25401
|
}, z.core.$strip>>;
|
|
25401
25402
|
}, z.core.$strip>>;
|
|
25402
|
-
|
|
25403
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25403
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25404
25404
|
type: z.ZodLiteral<"internal">;
|
|
25405
25405
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25406
25406
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25512,9 +25512,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25512
25512
|
}, z.core.$strip>>>;
|
|
25513
25513
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25514
25514
|
name: z.ZodString;
|
|
25515
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25516
25515
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25517
25516
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25517
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25518
25518
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25519
25519
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25520
25520
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -25526,9 +25526,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25526
25526
|
}, z.core.$strip>>>;
|
|
25527
25527
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25528
25528
|
name: z.ZodString;
|
|
25529
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25530
25529
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25531
25530
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25531
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25532
25532
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25533
25533
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25534
25534
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25644,10 +25644,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25644
25644
|
}, z.core.$strip>>>;
|
|
25645
25645
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25646
25646
|
name: z.ZodString;
|
|
25647
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25647
25648
|
description: z.ZodString;
|
|
25648
|
-
tenantId: z.ZodString;
|
|
25649
25649
|
projectId: z.ZodString;
|
|
25650
|
-
|
|
25650
|
+
tenantId: z.ZodString;
|
|
25651
25651
|
content: z.ZodString;
|
|
25652
25652
|
}>, z.core.$strip>>>;
|
|
25653
25653
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -25736,10 +25736,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25736
25736
|
name: z.ZodString;
|
|
25737
25737
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25738
25738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25739
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25740
25739
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25741
25740
|
credentialStoreId: z.ZodString;
|
|
25742
25741
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25742
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25743
25743
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25744
25744
|
type: z.ZodEnum<{
|
|
25745
25745
|
readonly memory: "memory";
|
|
@@ -25756,8 +25756,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25756
25756
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25757
25757
|
id: z.ZodString;
|
|
25758
25758
|
name: z.ZodString;
|
|
25759
|
+
createdAt: z.ZodString;
|
|
25760
|
+
updatedAt: z.ZodString;
|
|
25759
25761
|
description: z.ZodNullable<z.ZodString>;
|
|
25760
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25761
25762
|
models: z.ZodNullable<z.ZodType<{
|
|
25762
25763
|
base?: {
|
|
25763
25764
|
model?: string | undefined;
|
|
@@ -25820,8 +25821,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25820
25821
|
}, {
|
|
25821
25822
|
stepCountIs?: number | undefined;
|
|
25822
25823
|
}>>>;
|
|
25823
|
-
|
|
25824
|
-
updatedAt: z.ZodString;
|
|
25824
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25825
25825
|
type: z.ZodLiteral<"internal">;
|
|
25826
25826
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25827
25827
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25849,8 +25849,9 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25849
25849
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25850
25850
|
id: z.ZodString;
|
|
25851
25851
|
name: z.ZodString;
|
|
25852
|
+
createdAt: z.ZodString;
|
|
25853
|
+
updatedAt: z.ZodString;
|
|
25852
25854
|
description: z.ZodNullable<z.ZodString>;
|
|
25853
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25854
25855
|
models: z.ZodNullable<z.ZodType<{
|
|
25855
25856
|
base?: {
|
|
25856
25857
|
model?: string | undefined;
|
|
@@ -25913,8 +25914,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25913
25914
|
}, {
|
|
25914
25915
|
stepCountIs?: number | undefined;
|
|
25915
25916
|
}>>>;
|
|
25916
|
-
|
|
25917
|
-
updatedAt: z.ZodString;
|
|
25917
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25918
25918
|
type: z.ZodLiteral<"internal">;
|
|
25919
25919
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25920
25920
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25948,16 +25948,17 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25948
25948
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25949
25949
|
id: z.ZodString;
|
|
25950
25950
|
name: z.ZodString;
|
|
25951
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25952
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25953
25951
|
createdAt: z.ZodString;
|
|
25954
25952
|
updatedAt: z.ZodString;
|
|
25953
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25954
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25955
25955
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25956
25956
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25957
25957
|
id: z.ZodString;
|
|
25958
25958
|
name: z.ZodString;
|
|
25959
|
+
createdAt: z.ZodString;
|
|
25960
|
+
updatedAt: z.ZodString;
|
|
25959
25961
|
description: z.ZodNullable<z.ZodString>;
|
|
25960
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25961
25962
|
models: z.ZodNullable<z.ZodType<{
|
|
25962
25963
|
base?: {
|
|
25963
25964
|
model?: string | undefined;
|
|
@@ -26020,8 +26021,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26020
26021
|
}, {
|
|
26021
26022
|
stepCountIs?: number | undefined;
|
|
26022
26023
|
}>>>;
|
|
26023
|
-
|
|
26024
|
-
updatedAt: z.ZodString;
|
|
26024
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26025
26025
|
type: z.ZodLiteral<"internal">;
|
|
26026
26026
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26027
26027
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26094,10 +26094,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26094
26094
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26095
26095
|
id: z.ZodString;
|
|
26096
26096
|
name: z.ZodString;
|
|
26097
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26098
|
-
agentId: z.ZodString;
|
|
26099
26097
|
createdAt: z.ZodString;
|
|
26100
26098
|
updatedAt: z.ZodString;
|
|
26099
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26100
|
+
agentId: z.ZodString;
|
|
26101
26101
|
functionId: z.ZodString;
|
|
26102
26102
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26103
26103
|
}, z.core.$strip>>>;
|
|
@@ -26176,10 +26176,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26176
26176
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26177
26177
|
id: z.ZodString;
|
|
26178
26178
|
name: z.ZodString;
|
|
26179
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26180
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26181
26179
|
createdAt: z.ZodString;
|
|
26182
26180
|
updatedAt: z.ZodString;
|
|
26181
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26182
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26183
26183
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26184
26184
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26185
26185
|
createdAt: z.ZodString;
|
|
@@ -26229,10 +26229,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26229
26229
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26230
26230
|
id: z.ZodString;
|
|
26231
26231
|
name: z.ZodString;
|
|
26232
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26233
|
-
agentId: z.ZodString;
|
|
26234
26232
|
createdAt: z.ZodString;
|
|
26235
26233
|
updatedAt: z.ZodString;
|
|
26234
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26235
|
+
agentId: z.ZodString;
|
|
26236
26236
|
functionId: z.ZodString;
|
|
26237
26237
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26238
26238
|
}, z.core.$strip>>>;
|
|
@@ -26310,8 +26310,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26310
26310
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26311
26311
|
id: z.ZodString;
|
|
26312
26312
|
name: z.ZodString;
|
|
26313
|
+
createdAt: z.ZodString;
|
|
26314
|
+
updatedAt: z.ZodString;
|
|
26313
26315
|
description: z.ZodNullable<z.ZodString>;
|
|
26314
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26315
26316
|
models: z.ZodNullable<z.ZodType<{
|
|
26316
26317
|
base?: {
|
|
26317
26318
|
model?: string | undefined;
|
|
@@ -26374,8 +26375,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26374
26375
|
}, {
|
|
26375
26376
|
stepCountIs?: number | undefined;
|
|
26376
26377
|
}>>>;
|
|
26377
|
-
|
|
26378
|
-
updatedAt: z.ZodString;
|
|
26378
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26379
26379
|
type: z.ZodLiteral<"internal">;
|
|
26380
26380
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26381
26381
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26410,6 +26410,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26410
26410
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26411
26411
|
id: z.ZodString;
|
|
26412
26412
|
name: z.ZodString;
|
|
26413
|
+
createdAt: z.ZodString;
|
|
26414
|
+
updatedAt: z.ZodString;
|
|
26413
26415
|
description: z.ZodNullable<z.ZodString>;
|
|
26414
26416
|
models: z.ZodNullable<z.ZodObject<{
|
|
26415
26417
|
base: z.ZodObject<{
|
|
@@ -26429,21 +26431,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26429
26431
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26430
26432
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26431
26433
|
}, z.core.$strip>>;
|
|
26432
|
-
createdAt: z.ZodString;
|
|
26433
|
-
updatedAt: z.ZodString;
|
|
26434
26434
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26435
26435
|
id: z.ZodString;
|
|
26436
26436
|
name: z.ZodString;
|
|
26437
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26438
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26439
26437
|
createdAt: z.ZodString;
|
|
26440
26438
|
updatedAt: z.ZodString;
|
|
26439
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26440
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26441
26441
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26442
26442
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26443
26443
|
id: z.ZodString;
|
|
26444
26444
|
name: z.ZodString;
|
|
26445
|
+
createdAt: z.ZodString;
|
|
26446
|
+
updatedAt: z.ZodString;
|
|
26445
26447
|
description: z.ZodNullable<z.ZodString>;
|
|
26446
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26447
26448
|
models: z.ZodNullable<z.ZodType<{
|
|
26448
26449
|
base?: {
|
|
26449
26450
|
model?: string | undefined;
|
|
@@ -26506,8 +26507,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26506
26507
|
}, {
|
|
26507
26508
|
stepCountIs?: number | undefined;
|
|
26508
26509
|
}>>>;
|
|
26509
|
-
|
|
26510
|
-
updatedAt: z.ZodString;
|
|
26510
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26511
26511
|
type: z.ZodLiteral<"internal">;
|
|
26512
26512
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26513
26513
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26580,10 +26580,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26580
26580
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26581
26581
|
id: z.ZodString;
|
|
26582
26582
|
name: z.ZodString;
|
|
26583
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26584
|
-
agentId: z.ZodString;
|
|
26585
26583
|
createdAt: z.ZodString;
|
|
26586
26584
|
updatedAt: z.ZodString;
|
|
26585
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26586
|
+
agentId: z.ZodString;
|
|
26587
26587
|
functionId: z.ZodString;
|
|
26588
26588
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26589
26589
|
}, z.core.$strip>>>;
|
|
@@ -26691,10 +26691,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26691
26691
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26692
26692
|
id: z.ZodString;
|
|
26693
26693
|
name: z.ZodString;
|
|
26694
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26695
|
-
agentId: z.ZodString;
|
|
26696
26694
|
createdAt: z.ZodString;
|
|
26697
26695
|
updatedAt: z.ZodString;
|
|
26696
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26697
|
+
agentId: z.ZodString;
|
|
26698
26698
|
functionId: z.ZodString;
|
|
26699
26699
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26700
26700
|
}, z.core.$strip>>>;
|
|
@@ -26841,10 +26841,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26841
26841
|
name: z.ZodString;
|
|
26842
26842
|
createdAt: z.ZodString;
|
|
26843
26843
|
updatedAt: z.ZodString;
|
|
26844
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26845
26844
|
userId: z.ZodNullable<z.ZodString>;
|
|
26846
26845
|
credentialStoreId: z.ZodString;
|
|
26847
26846
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26847
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26848
26848
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26849
26849
|
type: z.ZodEnum<{
|
|
26850
26850
|
readonly memory: "memory";
|
|
@@ -27434,6 +27434,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27434
27434
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27435
27435
|
id: z.ZodString;
|
|
27436
27436
|
name: z.ZodString;
|
|
27437
|
+
createdAt: z.ZodString;
|
|
27438
|
+
updatedAt: z.ZodString;
|
|
27437
27439
|
description: z.ZodNullable<z.ZodString>;
|
|
27438
27440
|
models: z.ZodNullable<z.ZodObject<{
|
|
27439
27441
|
base: z.ZodObject<{
|
|
@@ -27453,8 +27455,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27453
27455
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27454
27456
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27455
27457
|
}, z.core.$strip>>;
|
|
27456
|
-
createdAt: z.ZodString;
|
|
27457
|
-
updatedAt: z.ZodString;
|
|
27458
27458
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
27459
27459
|
createdAt: z.ZodString;
|
|
27460
27460
|
updatedAt: z.ZodString;
|
|
@@ -27487,10 +27487,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27487
27487
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27488
27488
|
id: z.ZodString;
|
|
27489
27489
|
name: z.ZodString;
|
|
27490
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27491
|
-
agentId: z.ZodString;
|
|
27492
27490
|
createdAt: z.ZodString;
|
|
27493
27491
|
updatedAt: z.ZodString;
|
|
27492
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27493
|
+
agentId: z.ZodString;
|
|
27494
27494
|
functionId: z.ZodString;
|
|
27495
27495
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27496
27496
|
}, z.core.$strip>>>;
|
|
@@ -27637,10 +27637,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27637
27637
|
name: z.ZodString;
|
|
27638
27638
|
createdAt: z.ZodString;
|
|
27639
27639
|
updatedAt: z.ZodString;
|
|
27640
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27641
27640
|
userId: z.ZodNullable<z.ZodString>;
|
|
27642
27641
|
credentialStoreId: z.ZodString;
|
|
27643
27642
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27643
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27644
27644
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27645
27645
|
type: z.ZodEnum<{
|
|
27646
27646
|
readonly memory: "memory";
|
|
@@ -28226,10 +28226,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28226
28226
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28227
28227
|
id: z.ZodString;
|
|
28228
28228
|
name: z.ZodString;
|
|
28229
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28230
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28231
28229
|
createdAt: z.ZodString;
|
|
28232
28230
|
updatedAt: z.ZodString;
|
|
28231
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28232
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28233
28233
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28234
28234
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28235
28235
|
createdAt: z.ZodString;
|
|
@@ -28279,10 +28279,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28279
28279
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28280
28280
|
id: z.ZodString;
|
|
28281
28281
|
name: z.ZodString;
|
|
28282
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28283
|
-
agentId: z.ZodString;
|
|
28284
28282
|
createdAt: z.ZodString;
|
|
28285
28283
|
updatedAt: z.ZodString;
|
|
28284
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28285
|
+
agentId: z.ZodString;
|
|
28286
28286
|
functionId: z.ZodString;
|
|
28287
28287
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28288
28288
|
}, z.core.$strip>>>;
|
|
@@ -28360,8 +28360,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28360
28360
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28361
28361
|
id: z.ZodString;
|
|
28362
28362
|
name: z.ZodString;
|
|
28363
|
+
createdAt: z.ZodString;
|
|
28364
|
+
updatedAt: z.ZodString;
|
|
28363
28365
|
description: z.ZodNullable<z.ZodString>;
|
|
28364
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28365
28366
|
models: z.ZodNullable<z.ZodType<{
|
|
28366
28367
|
base?: {
|
|
28367
28368
|
model?: string | undefined;
|
|
@@ -28424,8 +28425,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28424
28425
|
}, {
|
|
28425
28426
|
stepCountIs?: number | undefined;
|
|
28426
28427
|
}>>>;
|
|
28427
|
-
|
|
28428
|
-
updatedAt: z.ZodString;
|
|
28428
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28429
28429
|
type: z.ZodLiteral<"internal">;
|
|
28430
28430
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28431
28431
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28465,6 +28465,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28465
28465
|
data: z.ZodObject<{
|
|
28466
28466
|
id: z.ZodString;
|
|
28467
28467
|
name: z.ZodString;
|
|
28468
|
+
createdAt: z.ZodString;
|
|
28469
|
+
updatedAt: z.ZodString;
|
|
28468
28470
|
description: z.ZodNullable<z.ZodString>;
|
|
28469
28471
|
models: z.ZodNullable<z.ZodObject<{
|
|
28470
28472
|
base: z.ZodObject<{
|
|
@@ -28484,8 +28486,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28484
28486
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28485
28487
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28486
28488
|
}, z.core.$strip>>;
|
|
28487
|
-
createdAt: z.ZodString;
|
|
28488
|
-
updatedAt: z.ZodString;
|
|
28489
28489
|
}, {
|
|
28490
28490
|
out: {};
|
|
28491
28491
|
in: {};
|
|
@@ -28726,10 +28726,10 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28726
28726
|
data: z.ZodObject<{
|
|
28727
28727
|
id: z.ZodString;
|
|
28728
28728
|
name: z.ZodNullable<z.ZodString>;
|
|
28729
|
-
agentId: z.ZodString;
|
|
28730
28729
|
createdAt: z.ZodString;
|
|
28731
28730
|
updatedAt: z.ZodString;
|
|
28732
28731
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28732
|
+
agentId: z.ZodString;
|
|
28733
28733
|
publicId: z.ZodString;
|
|
28734
28734
|
keyPrefix: z.ZodString;
|
|
28735
28735
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -28744,10 +28744,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28744
28744
|
name: z.ZodString;
|
|
28745
28745
|
createdAt: z.ZodString;
|
|
28746
28746
|
updatedAt: z.ZodString;
|
|
28747
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28748
28747
|
userId: z.ZodNullable<z.ZodString>;
|
|
28749
28748
|
credentialStoreId: z.ZodString;
|
|
28750
28749
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28750
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28751
28751
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28752
28752
|
type: z.ZodEnum<{
|
|
28753
28753
|
readonly memory: "memory";
|
|
@@ -29347,10 +29347,10 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
29347
29347
|
data: z.ZodObject<{
|
|
29348
29348
|
id: z.ZodString;
|
|
29349
29349
|
name: z.ZodString;
|
|
29350
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29351
|
-
agentId: z.ZodString;
|
|
29352
29350
|
createdAt: z.ZodString;
|
|
29353
29351
|
updatedAt: z.ZodString;
|
|
29352
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29353
|
+
agentId: z.ZodString;
|
|
29354
29354
|
functionId: z.ZodString;
|
|
29355
29355
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29356
29356
|
}, z.core.$strip>;
|
|
@@ -29542,9 +29542,9 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29542
29542
|
}, z.core.$strip>;
|
|
29543
29543
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29544
29544
|
source: z.ZodEnum<{
|
|
29545
|
-
literal: "literal";
|
|
29546
29545
|
body: "body";
|
|
29547
29546
|
header: "header";
|
|
29547
|
+
literal: "literal";
|
|
29548
29548
|
}>;
|
|
29549
29549
|
key: z.ZodOptional<z.ZodString>;
|
|
29550
29550
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29584,6 +29584,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29584
29584
|
data: z.ZodArray<z.ZodObject<{
|
|
29585
29585
|
id: z.ZodString;
|
|
29586
29586
|
name: z.ZodString;
|
|
29587
|
+
createdAt: z.ZodString;
|
|
29588
|
+
updatedAt: z.ZodString;
|
|
29587
29589
|
description: z.ZodNullable<z.ZodString>;
|
|
29588
29590
|
models: z.ZodNullable<z.ZodObject<{
|
|
29589
29591
|
base: z.ZodObject<{
|
|
@@ -29603,8 +29605,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29603
29605
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29604
29606
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29605
29607
|
}, z.core.$strip>>;
|
|
29606
|
-
createdAt: z.ZodString;
|
|
29607
|
-
updatedAt: z.ZodString;
|
|
29608
29608
|
}, {
|
|
29609
29609
|
out: {};
|
|
29610
29610
|
in: {};
|
|
@@ -29875,10 +29875,10 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29875
29875
|
data: z.ZodArray<z.ZodObject<{
|
|
29876
29876
|
id: z.ZodString;
|
|
29877
29877
|
name: z.ZodNullable<z.ZodString>;
|
|
29878
|
-
agentId: z.ZodString;
|
|
29879
29878
|
createdAt: z.ZodString;
|
|
29880
29879
|
updatedAt: z.ZodString;
|
|
29881
29880
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29881
|
+
agentId: z.ZodString;
|
|
29882
29882
|
publicId: z.ZodString;
|
|
29883
29883
|
keyPrefix: z.ZodString;
|
|
29884
29884
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29899,10 +29899,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29899
29899
|
name: z.ZodString;
|
|
29900
29900
|
createdAt: z.ZodString;
|
|
29901
29901
|
updatedAt: z.ZodString;
|
|
29902
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29903
29902
|
userId: z.ZodNullable<z.ZodString>;
|
|
29904
29903
|
credentialStoreId: z.ZodString;
|
|
29905
29904
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29905
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29906
29906
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29907
29907
|
type: z.ZodEnum<{
|
|
29908
29908
|
readonly memory: "memory";
|
|
@@ -30514,10 +30514,10 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
30514
30514
|
data: z.ZodArray<z.ZodObject<{
|
|
30515
30515
|
id: z.ZodString;
|
|
30516
30516
|
name: z.ZodString;
|
|
30517
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30518
|
-
agentId: z.ZodString;
|
|
30519
30517
|
createdAt: z.ZodString;
|
|
30520
30518
|
updatedAt: z.ZodString;
|
|
30519
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30520
|
+
agentId: z.ZodString;
|
|
30521
30521
|
functionId: z.ZodString;
|
|
30522
30522
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30523
30523
|
}, z.core.$strip>>;
|
|
@@ -30777,9 +30777,9 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30777
30777
|
}, z.core.$strip>;
|
|
30778
30778
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30779
30779
|
source: z.ZodEnum<{
|
|
30780
|
-
literal: "literal";
|
|
30781
30780
|
body: "body";
|
|
30782
30781
|
header: "header";
|
|
30782
|
+
literal: "literal";
|
|
30783
30783
|
}>;
|
|
30784
30784
|
key: z.ZodOptional<z.ZodString>;
|
|
30785
30785
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30831,9 +30831,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30831
30831
|
data: z.ZodObject<{
|
|
30832
30832
|
id: z.ZodString;
|
|
30833
30833
|
name: z.ZodString;
|
|
30834
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30835
30834
|
createdAt: z.ZodString;
|
|
30836
30835
|
updatedAt: z.ZodString;
|
|
30836
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30837
30837
|
enabled: z.ZodBoolean;
|
|
30838
30838
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30839
30839
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -30864,9 +30864,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30864
30864
|
}, z.core.$strip>;
|
|
30865
30865
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30866
30866
|
source: z.ZodEnum<{
|
|
30867
|
-
literal: "literal";
|
|
30868
30867
|
body: "body";
|
|
30869
30868
|
header: "header";
|
|
30869
|
+
literal: "literal";
|
|
30870
30870
|
}>;
|
|
30871
30871
|
key: z.ZodOptional<z.ZodString>;
|
|
30872
30872
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30892,9 +30892,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30892
30892
|
data: z.ZodArray<z.ZodObject<{
|
|
30893
30893
|
id: z.ZodString;
|
|
30894
30894
|
name: z.ZodString;
|
|
30895
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30896
30895
|
createdAt: z.ZodString;
|
|
30897
30896
|
updatedAt: z.ZodString;
|
|
30897
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30898
30898
|
enabled: z.ZodBoolean;
|
|
30899
30899
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30900
30900
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -30925,9 +30925,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30925
30925
|
}, z.core.$strip>;
|
|
30926
30926
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30927
30927
|
source: z.ZodEnum<{
|
|
30928
|
-
literal: "literal";
|
|
30929
30928
|
body: "body";
|
|
30930
30929
|
header: "header";
|
|
30930
|
+
literal: "literal";
|
|
30931
30931
|
}>;
|
|
30932
30932
|
key: z.ZodOptional<z.ZodString>;
|
|
30933
30933
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30958,9 +30958,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30958
30958
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30959
30959
|
id: z.ZodString;
|
|
30960
30960
|
name: z.ZodString;
|
|
30961
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30962
30961
|
createdAt: z.ZodString;
|
|
30963
30962
|
updatedAt: z.ZodString;
|
|
30963
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30964
30964
|
enabled: z.ZodBoolean;
|
|
30965
30965
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30966
30966
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -31037,9 +31037,9 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
31037
31037
|
data: z.ZodArray<z.ZodObject<{
|
|
31038
31038
|
id: z.ZodString;
|
|
31039
31039
|
name: z.ZodString;
|
|
31040
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31041
31040
|
createdAt: z.ZodString;
|
|
31042
31041
|
updatedAt: z.ZodString;
|
|
31042
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31043
31043
|
enabled: z.ZodBoolean;
|
|
31044
31044
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31045
31045
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -31196,10 +31196,10 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
31196
31196
|
data: z.ZodArray<z.ZodObject<{
|
|
31197
31197
|
id: z.ZodString;
|
|
31198
31198
|
name: z.ZodString;
|
|
31199
|
-
description: z.ZodString;
|
|
31200
31199
|
createdAt: z.ZodString;
|
|
31201
31200
|
updatedAt: z.ZodString;
|
|
31202
31201
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31202
|
+
description: z.ZodString;
|
|
31203
31203
|
content: z.ZodString;
|
|
31204
31204
|
subAgentSkillId: z.ZodString;
|
|
31205
31205
|
subAgentId: z.ZodString;
|
|
@@ -31232,17 +31232,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31232
31232
|
}, z.core.$strip>>;
|
|
31233
31233
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31234
31234
|
name: z.ZodString;
|
|
31235
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31236
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31237
31235
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31238
31236
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31237
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31238
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31239
31239
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31240
31240
|
id: z.ZodString;
|
|
31241
31241
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31242
31242
|
id: z.ZodString;
|
|
31243
31243
|
name: z.ZodString;
|
|
31244
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31245
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31244
31246
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31245
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31246
31247
|
models: z.ZodOptional<z.ZodObject<{
|
|
31247
31248
|
base: z.ZodOptional<z.ZodObject<{
|
|
31248
31249
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31257,8 +31258,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31257
31258
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31258
31259
|
}, z.core.$strip>>;
|
|
31259
31260
|
}, z.core.$strip>>;
|
|
31260
|
-
|
|
31261
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31261
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31262
31262
|
type: z.ZodLiteral<"internal">;
|
|
31263
31263
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31264
31264
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31370,9 +31370,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31370
31370
|
}, z.core.$strip>>>;
|
|
31371
31371
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31372
31372
|
name: z.ZodString;
|
|
31373
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31374
31373
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31375
31374
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31375
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31376
31376
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31377
31377
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31378
31378
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -31384,9 +31384,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31384
31384
|
}, z.core.$strip>>>;
|
|
31385
31385
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31386
31386
|
name: z.ZodString;
|
|
31387
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31388
31387
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31389
31388
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31389
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31390
31390
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31391
31391
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31392
31392
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31502,10 +31502,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31502
31502
|
}, z.core.$strip>>>;
|
|
31503
31503
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31504
31504
|
name: z.ZodString;
|
|
31505
|
+
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31505
31506
|
description: z.ZodString;
|
|
31506
|
-
tenantId: z.ZodString;
|
|
31507
31507
|
projectId: z.ZodString;
|
|
31508
|
-
|
|
31508
|
+
tenantId: z.ZodString;
|
|
31509
31509
|
content: z.ZodString;
|
|
31510
31510
|
}>, z.core.$strip>>>;
|
|
31511
31511
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31594,10 +31594,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31594
31594
|
name: z.ZodString;
|
|
31595
31595
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31596
31596
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31597
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31598
31597
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31599
31598
|
credentialStoreId: z.ZodString;
|
|
31600
31599
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31600
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31601
31601
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31602
31602
|
type: z.ZodEnum<{
|
|
31603
31603
|
readonly memory: "memory";
|
|
@@ -31616,6 +31616,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31616
31616
|
data: z.ZodObject<{
|
|
31617
31617
|
id: z.ZodString;
|
|
31618
31618
|
name: z.ZodString;
|
|
31619
|
+
createdAt: z.ZodString;
|
|
31620
|
+
updatedAt: z.ZodString;
|
|
31619
31621
|
description: z.ZodNullable<z.ZodString>;
|
|
31620
31622
|
models: z.ZodNullable<z.ZodObject<{
|
|
31621
31623
|
base: z.ZodObject<{
|
|
@@ -31635,21 +31637,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31635
31637
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31636
31638
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31637
31639
|
}, z.core.$strip>>;
|
|
31638
|
-
createdAt: z.ZodString;
|
|
31639
|
-
updatedAt: z.ZodString;
|
|
31640
31640
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31641
31641
|
id: z.ZodString;
|
|
31642
31642
|
name: z.ZodString;
|
|
31643
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31644
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31645
31643
|
createdAt: z.ZodString;
|
|
31646
31644
|
updatedAt: z.ZodString;
|
|
31645
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31646
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31647
31647
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31648
31648
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31649
31649
|
id: z.ZodString;
|
|
31650
31650
|
name: z.ZodString;
|
|
31651
|
+
createdAt: z.ZodString;
|
|
31652
|
+
updatedAt: z.ZodString;
|
|
31651
31653
|
description: z.ZodNullable<z.ZodString>;
|
|
31652
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31653
31654
|
models: z.ZodNullable<z.ZodType<{
|
|
31654
31655
|
base?: {
|
|
31655
31656
|
model?: string | undefined;
|
|
@@ -31712,8 +31713,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31712
31713
|
}, {
|
|
31713
31714
|
stepCountIs?: number | undefined;
|
|
31714
31715
|
}>>>;
|
|
31715
|
-
|
|
31716
|
-
updatedAt: z.ZodString;
|
|
31716
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31717
31717
|
type: z.ZodLiteral<"internal">;
|
|
31718
31718
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31719
31719
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31786,10 +31786,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31786
31786
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31787
31787
|
id: z.ZodString;
|
|
31788
31788
|
name: z.ZodString;
|
|
31789
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31790
|
-
agentId: z.ZodString;
|
|
31791
31789
|
createdAt: z.ZodString;
|
|
31792
31790
|
updatedAt: z.ZodString;
|
|
31791
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31792
|
+
agentId: z.ZodString;
|
|
31793
31793
|
functionId: z.ZodString;
|
|
31794
31794
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31795
31795
|
}, z.core.$strip>>>;
|
|
@@ -31897,10 +31897,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31897
31897
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31898
31898
|
id: z.ZodString;
|
|
31899
31899
|
name: z.ZodString;
|
|
31900
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31901
|
-
agentId: z.ZodString;
|
|
31902
31900
|
createdAt: z.ZodString;
|
|
31903
31901
|
updatedAt: z.ZodString;
|
|
31902
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31903
|
+
agentId: z.ZodString;
|
|
31904
31904
|
functionId: z.ZodString;
|
|
31905
31905
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31906
31906
|
}, z.core.$strip>>>;
|
|
@@ -32047,10 +32047,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32047
32047
|
name: z.ZodString;
|
|
32048
32048
|
createdAt: z.ZodString;
|
|
32049
32049
|
updatedAt: z.ZodString;
|
|
32050
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32051
32050
|
userId: z.ZodNullable<z.ZodString>;
|
|
32052
32051
|
credentialStoreId: z.ZodString;
|
|
32053
32052
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32053
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32054
32054
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32055
32055
|
type: z.ZodEnum<{
|
|
32056
32056
|
readonly memory: "memory";
|
|
@@ -32642,6 +32642,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32642
32642
|
data: z.ZodObject<{
|
|
32643
32643
|
id: z.ZodString;
|
|
32644
32644
|
name: z.ZodString;
|
|
32645
|
+
createdAt: z.ZodString;
|
|
32646
|
+
updatedAt: z.ZodString;
|
|
32645
32647
|
description: z.ZodNullable<z.ZodString>;
|
|
32646
32648
|
models: z.ZodNullable<z.ZodObject<{
|
|
32647
32649
|
base: z.ZodObject<{
|
|
@@ -32661,8 +32663,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32661
32663
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32662
32664
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32663
32665
|
}, z.core.$strip>>;
|
|
32664
|
-
createdAt: z.ZodString;
|
|
32665
|
-
updatedAt: z.ZodString;
|
|
32666
32666
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32667
32667
|
createdAt: z.ZodString;
|
|
32668
32668
|
updatedAt: z.ZodString;
|
|
@@ -32695,10 +32695,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32695
32695
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32696
32696
|
id: z.ZodString;
|
|
32697
32697
|
name: z.ZodString;
|
|
32698
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32699
|
-
agentId: z.ZodString;
|
|
32700
32698
|
createdAt: z.ZodString;
|
|
32701
32699
|
updatedAt: z.ZodString;
|
|
32700
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32701
|
+
agentId: z.ZodString;
|
|
32702
32702
|
functionId: z.ZodString;
|
|
32703
32703
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32704
32704
|
}, z.core.$strip>>>;
|
|
@@ -32845,10 +32845,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32845
32845
|
name: z.ZodString;
|
|
32846
32846
|
createdAt: z.ZodString;
|
|
32847
32847
|
updatedAt: z.ZodString;
|
|
32848
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32849
32848
|
userId: z.ZodNullable<z.ZodString>;
|
|
32850
32849
|
credentialStoreId: z.ZodString;
|
|
32851
32850
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32851
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32852
32852
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32853
32853
|
type: z.ZodEnum<{
|
|
32854
32854
|
readonly memory: "memory";
|
|
@@ -33434,10 +33434,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33434
33434
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33435
33435
|
id: z.ZodString;
|
|
33436
33436
|
name: z.ZodString;
|
|
33437
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33438
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33439
33437
|
createdAt: z.ZodString;
|
|
33440
33438
|
updatedAt: z.ZodString;
|
|
33439
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33440
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33441
33441
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33442
33442
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33443
33443
|
createdAt: z.ZodString;
|
|
@@ -33487,10 +33487,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33487
33487
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33488
33488
|
id: z.ZodString;
|
|
33489
33489
|
name: z.ZodString;
|
|
33490
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33491
|
-
agentId: z.ZodString;
|
|
33492
33490
|
createdAt: z.ZodString;
|
|
33493
33491
|
updatedAt: z.ZodString;
|
|
33492
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33493
|
+
agentId: z.ZodString;
|
|
33494
33494
|
functionId: z.ZodString;
|
|
33495
33495
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33496
33496
|
}, z.core.$strip>>>;
|
|
@@ -33568,8 +33568,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33568
33568
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33569
33569
|
id: z.ZodString;
|
|
33570
33570
|
name: z.ZodString;
|
|
33571
|
+
createdAt: z.ZodString;
|
|
33572
|
+
updatedAt: z.ZodString;
|
|
33571
33573
|
description: z.ZodNullable<z.ZodString>;
|
|
33572
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33573
33574
|
models: z.ZodNullable<z.ZodType<{
|
|
33574
33575
|
base?: {
|
|
33575
33576
|
model?: string | undefined;
|
|
@@ -33632,8 +33633,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33632
33633
|
}, {
|
|
33633
33634
|
stepCountIs?: number | undefined;
|
|
33634
33635
|
}>>>;
|
|
33635
|
-
|
|
33636
|
-
updatedAt: z.ZodString;
|
|
33636
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33637
33637
|
type: z.ZodLiteral<"internal">;
|
|
33638
33638
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33639
33639
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33673,17 +33673,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33673
33673
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33674
33674
|
data: z.ZodObject<{
|
|
33675
33675
|
name: z.ZodString;
|
|
33676
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33677
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33678
33676
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33679
33677
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33678
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33679
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33680
33680
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33681
33681
|
id: z.ZodString;
|
|
33682
33682
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33683
33683
|
id: z.ZodString;
|
|
33684
33684
|
name: z.ZodString;
|
|
33685
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
33686
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33685
33687
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33686
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33687
33688
|
models: z.ZodOptional<z.ZodObject<{
|
|
33688
33689
|
base: z.ZodOptional<z.ZodObject<{
|
|
33689
33690
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33698,8 +33699,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33698
33699
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
33699
33700
|
}, z.core.$strip>>;
|
|
33700
33701
|
}, z.core.$strip>>;
|
|
33701
|
-
|
|
33702
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33702
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33703
33703
|
type: z.ZodLiteral<"internal">;
|
|
33704
33704
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33705
33705
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33811,9 +33811,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33811
33811
|
}, z.core.$strip>>>;
|
|
33812
33812
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33813
33813
|
name: z.ZodString;
|
|
33814
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33815
33814
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33816
33815
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33816
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33817
33817
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33818
33818
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
33819
33819
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -33825,9 +33825,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33825
33825
|
}, z.core.$strip>>>;
|
|
33826
33826
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33827
33827
|
name: z.ZodString;
|
|
33828
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33829
33828
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33830
33829
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33830
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33831
33831
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33832
33832
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33833
33833
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33885,16 +33885,17 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33885
33885
|
data: z.ZodObject<{
|
|
33886
33886
|
id: z.ZodString;
|
|
33887
33887
|
name: z.ZodString;
|
|
33888
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33889
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33890
33888
|
createdAt: z.ZodString;
|
|
33891
33889
|
updatedAt: z.ZodString;
|
|
33890
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33891
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33892
33892
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33893
33893
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33894
33894
|
id: z.ZodString;
|
|
33895
33895
|
name: z.ZodString;
|
|
33896
|
+
createdAt: z.ZodString;
|
|
33897
|
+
updatedAt: z.ZodString;
|
|
33896
33898
|
description: z.ZodNullable<z.ZodString>;
|
|
33897
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33898
33899
|
models: z.ZodNullable<z.ZodType<{
|
|
33899
33900
|
base?: {
|
|
33900
33901
|
model?: string | undefined;
|
|
@@ -33957,8 +33958,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33957
33958
|
}, {
|
|
33958
33959
|
stepCountIs?: number | undefined;
|
|
33959
33960
|
}>>>;
|
|
33960
|
-
|
|
33961
|
-
updatedAt: z.ZodString;
|
|
33961
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33962
33962
|
type: z.ZodLiteral<"internal">;
|
|
33963
33963
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33964
33964
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34031,10 +34031,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34031
34031
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34032
34032
|
id: z.ZodString;
|
|
34033
34033
|
name: z.ZodString;
|
|
34034
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34035
|
-
agentId: z.ZodString;
|
|
34036
34034
|
createdAt: z.ZodString;
|
|
34037
34035
|
updatedAt: z.ZodString;
|
|
34036
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34037
|
+
agentId: z.ZodString;
|
|
34038
34038
|
functionId: z.ZodString;
|
|
34039
34039
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
34040
34040
|
}, z.core.$strip>>>;
|
|
@@ -35082,8 +35082,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
35082
35082
|
}, undefined>, undefined>;
|
|
35083
35083
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
35084
35084
|
id: z.ZodString;
|
|
35085
|
-
tenantId: z.ZodString;
|
|
35086
35085
|
accountId: z.ZodString;
|
|
35086
|
+
tenantId: z.ZodString;
|
|
35087
35087
|
installationId: z.ZodString;
|
|
35088
35088
|
accountLogin: z.ZodString;
|
|
35089
35089
|
accountType: z.ZodEnum<{
|
|
@@ -35113,8 +35113,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
35113
35113
|
}>, z.core.$strip>;
|
|
35114
35114
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
35115
35115
|
id: z.ZodString;
|
|
35116
|
-
tenantId: z.ZodString;
|
|
35117
35116
|
accountId: z.ZodString;
|
|
35117
|
+
tenantId: z.ZodString;
|
|
35118
35118
|
installationId: z.ZodString;
|
|
35119
35119
|
accountLogin: z.ZodString;
|
|
35120
35120
|
accountType: z.ZodEnum<{
|
|
@@ -37307,16 +37307,16 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
37307
37307
|
}, {}, {}>;
|
|
37308
37308
|
}, undefined>, undefined>;
|
|
37309
37309
|
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
37310
|
-
projectId: z.ZodString;
|
|
37311
37310
|
agentId: z.ZodString;
|
|
37311
|
+
projectId: z.ZodString;
|
|
37312
37312
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37313
37313
|
}, {
|
|
37314
37314
|
out: {};
|
|
37315
37315
|
in: {};
|
|
37316
37316
|
}>;
|
|
37317
37317
|
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
37318
|
-
projectId: z.ZodString;
|
|
37319
37318
|
agentId: z.ZodString;
|
|
37319
|
+
projectId: z.ZodString;
|
|
37320
37320
|
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37321
37321
|
agentName: z.ZodString;
|
|
37322
37322
|
projectName: z.ZodOptional<z.ZodString>;
|