@inkeep/agents-core 0.0.0-dev-20260209072547 → 0.0.0-dev-20260209085303
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 +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +131 -131
- package/dist/client-exports.d.ts +3 -3
- 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 +14 -14
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- 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 +21 -21
- 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/env.d.ts +1 -1
- package/dist/env.js +1 -1
- package/dist/validation/schemas.d.ts +224 -224
- package/package.json +1 -1
|
@@ -774,9 +774,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
774
774
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
775
775
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
776
776
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
777
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
778
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
779
777
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
778
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
779
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
780
780
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
781
781
|
base: z.ZodOptional<z.ZodObject<{
|
|
782
782
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -791,7 +791,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
791
791
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
792
792
|
}, z.core.$strip>>;
|
|
793
793
|
}, z.core.$strip>>>>;
|
|
794
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
795
794
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
796
795
|
stepCountIs?: number | undefined;
|
|
797
796
|
}, {
|
|
@@ -801,7 +800,8 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
801
800
|
}, {
|
|
802
801
|
stepCountIs?: number | undefined;
|
|
803
802
|
}>>>>>>;
|
|
804
|
-
|
|
803
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
804
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
805
805
|
}, z.core.$strip>;
|
|
806
806
|
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
807
807
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -2435,7 +2435,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2435
2435
|
}, {}, {
|
|
2436
2436
|
length: 256;
|
|
2437
2437
|
}>;
|
|
2438
|
-
}, "id" | "name" | "
|
|
2438
|
+
}, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
|
|
2439
2439
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2440
2440
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2441
2441
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2703,11 +2703,9 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2703
2703
|
}>, z.core.$strip>;
|
|
2704
2704
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2705
2705
|
name: z.ZodString;
|
|
2706
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2707
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2708
2706
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2709
2707
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2710
|
-
|
|
2708
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2711
2709
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2712
2710
|
base?: {
|
|
2713
2711
|
model?: string | undefined;
|
|
@@ -2761,7 +2759,18 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2761
2759
|
providerOptions?: Record<string, any> | undefined;
|
|
2762
2760
|
} | undefined;
|
|
2763
2761
|
}>>>>;
|
|
2764
|
-
|
|
2762
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2763
|
+
transferCountIs?: number | undefined;
|
|
2764
|
+
}, {
|
|
2765
|
+
transferCountIs?: number | undefined;
|
|
2766
|
+
}, z.core.$ZodTypeInternals<{
|
|
2767
|
+
transferCountIs?: number | undefined;
|
|
2768
|
+
}, {
|
|
2769
|
+
transferCountIs?: number | undefined;
|
|
2770
|
+
}>>>>;
|
|
2771
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2772
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2773
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2765
2774
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2766
2775
|
enabled?: boolean | undefined;
|
|
2767
2776
|
numEvents?: number | undefined;
|
|
@@ -2819,25 +2828,14 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2819
2828
|
} | undefined;
|
|
2820
2829
|
}[] | undefined;
|
|
2821
2830
|
}>>>>;
|
|
2822
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2823
|
-
transferCountIs?: number | undefined;
|
|
2824
|
-
}, {
|
|
2825
|
-
transferCountIs?: number | undefined;
|
|
2826
|
-
}, z.core.$ZodTypeInternals<{
|
|
2827
|
-
transferCountIs?: number | undefined;
|
|
2828
|
-
}, {
|
|
2829
|
-
transferCountIs?: number | undefined;
|
|
2830
|
-
}>>>>;
|
|
2831
2831
|
id: z.ZodString;
|
|
2832
2832
|
}, z.core.$strip>;
|
|
2833
2833
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2834
2834
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2835
2835
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2836
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2837
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2838
2836
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2839
2837
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2840
|
-
|
|
2838
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2841
2839
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2842
2840
|
base?: {
|
|
2843
2841
|
model?: string | undefined;
|
|
@@ -2891,7 +2889,18 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2891
2889
|
providerOptions?: Record<string, any> | undefined;
|
|
2892
2890
|
} | undefined;
|
|
2893
2891
|
}>>>>>>;
|
|
2894
|
-
|
|
2892
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2893
|
+
transferCountIs?: number | undefined;
|
|
2894
|
+
}, {
|
|
2895
|
+
transferCountIs?: number | undefined;
|
|
2896
|
+
}, z.core.$ZodTypeInternals<{
|
|
2897
|
+
transferCountIs?: number | undefined;
|
|
2898
|
+
}, {
|
|
2899
|
+
transferCountIs?: number | undefined;
|
|
2900
|
+
}>>>>>>;
|
|
2901
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2902
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2903
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2895
2904
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2896
2905
|
enabled?: boolean | undefined;
|
|
2897
2906
|
numEvents?: number | undefined;
|
|
@@ -2949,15 +2958,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2949
2958
|
} | undefined;
|
|
2950
2959
|
}[] | undefined;
|
|
2951
2960
|
}>>>>>>;
|
|
2952
|
-
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2953
|
-
transferCountIs?: number | undefined;
|
|
2954
|
-
}, {
|
|
2955
|
-
transferCountIs?: number | undefined;
|
|
2956
|
-
}, z.core.$ZodTypeInternals<{
|
|
2957
|
-
transferCountIs?: number | undefined;
|
|
2958
|
-
}, {
|
|
2959
|
-
transferCountIs?: number | undefined;
|
|
2960
|
-
}>>>>>>;
|
|
2961
2961
|
}, z.core.$strip>;
|
|
2962
2962
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
2963
2963
|
name: z.ZodString;
|
|
@@ -3226,8 +3226,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3226
3226
|
*/
|
|
3227
3227
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3228
3228
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3229
|
-
pending: "pending";
|
|
3230
3229
|
success: "success";
|
|
3230
|
+
pending: "pending";
|
|
3231
3231
|
failed: "failed";
|
|
3232
3232
|
}>;
|
|
3233
3233
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
@@ -3958,7 +3958,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3958
3958
|
}, {}, {
|
|
3959
3959
|
length: 256;
|
|
3960
3960
|
}>;
|
|
3961
|
-
}, "id" | "name" | "
|
|
3961
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
3962
3962
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
3963
3963
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3964
3964
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4042,9 +4042,9 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4042
4042
|
}>, z.core.$strip>;
|
|
4043
4043
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4044
4044
|
name: z.ZodString;
|
|
4045
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4045
4046
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4046
4047
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4047
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4048
4048
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4049
4049
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4050
4050
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -4077,9 +4077,9 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4077
4077
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4078
4078
|
id: z.ZodString;
|
|
4079
4079
|
name: z.ZodString;
|
|
4080
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4080
4081
|
createdAt: z.ZodString;
|
|
4081
4082
|
updatedAt: z.ZodString;
|
|
4082
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4083
4083
|
enabled: z.ZodBoolean;
|
|
4084
4084
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4085
4085
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -4942,7 +4942,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4942
4942
|
}, {}, {
|
|
4943
4943
|
length: 256;
|
|
4944
4944
|
}>;
|
|
4945
|
-
}, "id" | "
|
|
4945
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4946
4946
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4947
4947
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4948
4948
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5524,8 +5524,10 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5524
5524
|
}>, z.core.$strip>;
|
|
5525
5525
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
5526
5526
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5527
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5527
5528
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5528
5529
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5530
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5529
5531
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5530
5532
|
type: z.ZodEnum<{
|
|
5531
5533
|
tag: "tag";
|
|
@@ -5535,9 +5537,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5535
5537
|
name: z.ZodString;
|
|
5536
5538
|
hash: z.ZodString;
|
|
5537
5539
|
}, z.core.$strip>>>;
|
|
5538
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5539
5540
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5540
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5541
5541
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5542
5542
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5543
5543
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -7089,8 +7089,12 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7089
7089
|
}>, z.core.$strip>;
|
|
7090
7090
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7091
7091
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7092
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7093
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7092
7094
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7093
7095
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7096
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7097
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7094
7098
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7095
7099
|
type: z.ZodEnum<{
|
|
7096
7100
|
tag: "tag";
|
|
@@ -7101,10 +7105,6 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7101
7105
|
hash: z.ZodString;
|
|
7102
7106
|
}, z.core.$strip>>>;
|
|
7103
7107
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7104
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7105
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7106
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7107
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7108
7108
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7109
7109
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7110
7110
|
}, z.core.$strip>;
|
|
@@ -8004,8 +8004,8 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8004
8004
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8005
8005
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8006
8006
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8007
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8008
8007
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8008
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8009
8009
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8010
8010
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8011
8011
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8629,8 +8629,10 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8629
8629
|
}>, z.core.$strip>;
|
|
8630
8630
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8631
8631
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8632
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8632
8633
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8633
8634
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8635
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8634
8636
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8635
8637
|
type: z.ZodEnum<{
|
|
8636
8638
|
tag: "tag";
|
|
@@ -8640,8 +8642,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8640
8642
|
name: z.ZodString;
|
|
8641
8643
|
hash: z.ZodString;
|
|
8642
8644
|
}, z.core.$strip>>>;
|
|
8643
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
8644
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8645
8645
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8646
8646
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8647
8647
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9687,17 +9687,17 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9687
9687
|
id: z.ZodString;
|
|
9688
9688
|
}>, z.core.$strip>;
|
|
9689
9689
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9690
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9690
9691
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9691
9692
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9692
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9693
9693
|
evaluatorId: z.ZodString;
|
|
9694
9694
|
conversationId: z.ZodString;
|
|
9695
9695
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9696
9696
|
}, z.core.$strip>;
|
|
9697
9697
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9698
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9698
9699
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9699
9700
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9700
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9701
9701
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9702
9702
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9703
9703
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -10329,26 +10329,26 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10329
10329
|
}>, z.core.$strip>;
|
|
10330
10330
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
10331
10331
|
name: z.ZodString;
|
|
10332
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10332
10333
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10333
10334
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10334
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10335
10335
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10336
10336
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10337
10337
|
}, z.core.$strip>;
|
|
10338
10338
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
10339
10339
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10340
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10340
10341
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10341
10342
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10342
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10343
10343
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
10344
10344
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10345
10345
|
}, z.core.$strip>;
|
|
10346
10346
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
10347
10347
|
id: z.ZodString;
|
|
10348
10348
|
name: z.ZodString;
|
|
10349
|
+
description: z.ZodNullable<z.ZodString>;
|
|
10349
10350
|
createdAt: z.ZodString;
|
|
10350
10351
|
updatedAt: z.ZodString;
|
|
10351
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10352
10352
|
isActive: z.ZodBoolean;
|
|
10353
10353
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10354
10354
|
}, z.core.$strip>;
|
|
@@ -12506,10 +12506,8 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12506
12506
|
}>, z.core.$strip>;
|
|
12507
12507
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
12508
12508
|
name: z.ZodString;
|
|
12509
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
12510
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12511
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12512
12509
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12510
|
+
prompt: z.ZodString;
|
|
12513
12511
|
model: z.ZodType<{
|
|
12514
12512
|
model?: string | undefined;
|
|
12515
12513
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12523,15 +12521,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
12523
12521
|
model?: string | undefined;
|
|
12524
12522
|
providerOptions?: Record<string, any> | undefined;
|
|
12525
12523
|
}>>;
|
|
12526
|
-
|
|
12524
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12525
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12526
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
12527
12527
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
12528
12528
|
}, z.core.$strip>;
|
|
12529
12529
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
12530
12530
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12531
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12532
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12533
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12534
12531
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12532
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12535
12533
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
12536
12534
|
model?: string | undefined;
|
|
12537
12535
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -12545,7 +12543,9 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12545
12543
|
model?: string | undefined;
|
|
12546
12544
|
providerOptions?: Record<string, any> | undefined;
|
|
12547
12545
|
}>>>>;
|
|
12548
|
-
|
|
12546
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12547
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12548
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12549
12549
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12550
12550
|
}, z.core.$strip>;
|
|
12551
12551
|
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -13348,9 +13348,9 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13348
13348
|
id: z.ZodString;
|
|
13349
13349
|
}>, z.core.$strip>;
|
|
13350
13350
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
13351
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13351
13352
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13352
13353
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13353
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
13354
13354
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13355
13355
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13356
13356
|
prompt: string;
|
|
@@ -13395,9 +13395,9 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
13395
13395
|
}>>>>;
|
|
13396
13396
|
}, z.core.$strip>;
|
|
13397
13397
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
13398
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13398
13399
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13399
13400
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13400
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
13401
13401
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
13402
13402
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13403
13403
|
prompt: string;
|
|
@@ -13903,16 +13903,16 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
13903
13903
|
}>, z.core.$strip>;
|
|
13904
13904
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13905
13905
|
name: z.ZodString;
|
|
13906
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13906
13907
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13907
13908
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13908
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13909
13909
|
datasetId: z.ZodString;
|
|
13910
13910
|
}, z.core.$strip>;
|
|
13911
13911
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13912
13912
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13913
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13913
13914
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13914
13915
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13915
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13916
13916
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13917
13917
|
}, z.core.$strip>;
|
|
13918
13918
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -14210,15 +14210,15 @@ declare const DatasetRunConfigAgentRelationApiSelectSchema: z.ZodObject<OmitProj
|
|
|
14210
14210
|
id: z.ZodString;
|
|
14211
14211
|
}>, z.core.$strip>;
|
|
14212
14212
|
declare const DatasetRunConfigAgentRelationApiInsertSchema: z.ZodObject<{
|
|
14213
|
+
agentId: z.ZodString;
|
|
14213
14214
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14214
14215
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14215
|
-
agentId: z.ZodString;
|
|
14216
14216
|
datasetRunConfigId: z.ZodString;
|
|
14217
14217
|
}, z.core.$strip>;
|
|
14218
14218
|
declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
14219
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14219
14220
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14220
14221
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14221
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14222
14222
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14223
14223
|
}, z.core.$strip>;
|
|
14224
14224
|
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -14596,8 +14596,8 @@ declare const DataComponentBaseSchema: z.ZodObject<{
|
|
|
14596
14596
|
id: z.ZodString;
|
|
14597
14597
|
name: z.ZodString;
|
|
14598
14598
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14599
|
-
projectId: z.ZodString;
|
|
14600
14599
|
tenantId: z.ZodString;
|
|
14600
|
+
projectId: z.ZodString;
|
|
14601
14601
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14602
14602
|
render: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14603
14603
|
component: string;
|
|
@@ -14691,9 +14691,9 @@ declare const DataComponentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14691
14691
|
declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
14692
14692
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14693
14693
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14694
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14694
14695
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14695
14696
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14696
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14697
14697
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
14698
14698
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
14699
14699
|
component: string;
|
|
@@ -15238,7 +15238,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
15238
15238
|
}, {}, {
|
|
15239
15239
|
length: 256;
|
|
15240
15240
|
}>;
|
|
15241
|
-
}, "id" | "
|
|
15241
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "dataComponentId" | "subAgentId">, undefined>, undefined>;
|
|
15242
15242
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
15243
15243
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
15244
15244
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15719,9 +15719,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15719
15719
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15720
15720
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15721
15721
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15722
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15722
15723
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15723
15724
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15724
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15725
15725
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
15726
15726
|
render: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15727
15727
|
component: string;
|
|
@@ -16116,18 +16116,18 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16116
16116
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16117
16117
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16118
16118
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16119
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16119
16120
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16120
16121
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16121
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16122
16122
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16123
16123
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16124
16124
|
}, z.core.$strip>;
|
|
16125
16125
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16126
16126
|
id: z.ZodString;
|
|
16127
16127
|
name: z.ZodString;
|
|
16128
|
-
createdAt: z.ZodString;
|
|
16129
|
-
updatedAt: z.ZodString;
|
|
16130
16128
|
description: z.ZodNullable<z.ZodString>;
|
|
16129
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
16130
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
16131
16131
|
models: z.ZodNullable<z.ZodType<{
|
|
16132
16132
|
base?: {
|
|
16133
16133
|
model?: string | undefined;
|
|
@@ -16181,7 +16181,6 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16181
16181
|
providerOptions?: Record<string, any> | undefined;
|
|
16182
16182
|
} | undefined;
|
|
16183
16183
|
}>>>;
|
|
16184
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
16185
16184
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
16186
16185
|
stepCountIs?: number | undefined;
|
|
16187
16186
|
}, {
|
|
@@ -16191,14 +16190,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16191
16190
|
}, {
|
|
16192
16191
|
stepCountIs?: number | undefined;
|
|
16193
16192
|
}>>>;
|
|
16194
|
-
|
|
16193
|
+
createdAt: z.ZodString;
|
|
16194
|
+
updatedAt: z.ZodString;
|
|
16195
16195
|
type: z.ZodLiteral<"internal">;
|
|
16196
16196
|
}, z.core.$strip>, z.ZodObject<{
|
|
16197
16197
|
id: z.ZodString;
|
|
16198
16198
|
name: z.ZodString;
|
|
16199
|
+
description: z.ZodNullable<z.ZodString>;
|
|
16199
16200
|
createdAt: z.ZodString;
|
|
16200
16201
|
updatedAt: z.ZodString;
|
|
16201
|
-
description: z.ZodNullable<z.ZodString>;
|
|
16202
16202
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16203
16203
|
baseUrl: z.ZodString;
|
|
16204
16204
|
type: z.ZodLiteral<"external">;
|
|
@@ -16665,9 +16665,9 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
16665
16665
|
}>;
|
|
16666
16666
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
16667
16667
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16668
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16668
16669
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16669
16670
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16670
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16671
16671
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16672
16672
|
}, {
|
|
16673
16673
|
out: {};
|
|
@@ -16676,10 +16676,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
16676
16676
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
16677
16677
|
id: z.ZodString;
|
|
16678
16678
|
name: z.ZodNullable<z.ZodString>;
|
|
16679
|
+
agentId: z.ZodString;
|
|
16679
16680
|
createdAt: z.ZodString;
|
|
16680
16681
|
updatedAt: z.ZodString;
|
|
16681
16682
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16682
|
-
agentId: z.ZodString;
|
|
16683
16683
|
publicId: z.ZodString;
|
|
16684
16684
|
keyPrefix: z.ZodString;
|
|
16685
16685
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16692,10 +16692,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16692
16692
|
apiKey: z.ZodObject<{
|
|
16693
16693
|
id: z.ZodString;
|
|
16694
16694
|
name: z.ZodNullable<z.ZodString>;
|
|
16695
|
+
agentId: z.ZodString;
|
|
16695
16696
|
createdAt: z.ZodString;
|
|
16696
16697
|
updatedAt: z.ZodString;
|
|
16697
16698
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
16698
|
-
agentId: z.ZodString;
|
|
16699
16699
|
publicId: z.ZodString;
|
|
16700
16700
|
keyPrefix: z.ZodString;
|
|
16701
16701
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -16708,19 +16708,19 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
16708
16708
|
}, z.core.$strip>;
|
|
16709
16709
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
16710
16710
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16711
|
+
agentId: z.ZodString;
|
|
16711
16712
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16712
16713
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16713
16714
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16714
|
-
agentId: z.ZodString;
|
|
16715
16715
|
}, {
|
|
16716
16716
|
out: {};
|
|
16717
16717
|
in: {};
|
|
16718
16718
|
}>;
|
|
16719
16719
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
16720
16720
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16721
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
16721
16722
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16722
16723
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16723
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
16724
16724
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16725
16725
|
}, {
|
|
16726
16726
|
out: {};
|
|
@@ -17216,8 +17216,8 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17216
17216
|
name: z.ZodString;
|
|
17217
17217
|
createdAt: z.ZodString;
|
|
17218
17218
|
updatedAt: z.ZodString;
|
|
17219
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
17220
17219
|
toolId: z.ZodNullable<z.ZodString>;
|
|
17220
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
17221
17221
|
credentialStoreId: z.ZodString;
|
|
17222
17222
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17223
17223
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -17807,8 +17807,8 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17807
17807
|
name: z.ZodString;
|
|
17808
17808
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17809
17809
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17810
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17811
17810
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17811
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17812
17812
|
credentialStoreId: z.ZodString;
|
|
17813
17813
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17814
17814
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -17823,8 +17823,8 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
17823
17823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17824
17824
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17825
17825
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17826
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17827
17826
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17827
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17828
17828
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17829
17829
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17830
17830
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -17952,20 +17952,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
17952
17952
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
17953
17953
|
id: z.ZodString;
|
|
17954
17954
|
name: z.ZodString;
|
|
17955
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17956
17955
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
17956
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
17957
17957
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
17958
17958
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
17959
17959
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
17960
17960
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17961
17961
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
17962
17962
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
17963
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
17964
17963
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17965
17964
|
name: z.ZodString;
|
|
17966
17965
|
description: z.ZodOptional<z.ZodString>;
|
|
17967
17966
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17968
17967
|
}, z.core.$strip>>>;
|
|
17968
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
17969
17969
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17970
17970
|
projectId: z.ZodOptional<z.ZodString>;
|
|
17971
17971
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -17990,8 +17990,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17990
17990
|
name: z.ZodString;
|
|
17991
17991
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17992
17992
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17993
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17994
17993
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17994
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17995
17995
|
credentialStoreId: z.ZodString;
|
|
17996
17996
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17997
17997
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18131,9 +18131,9 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18131
18131
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
18132
18132
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18133
18133
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18134
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18134
18135
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18135
18136
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18136
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18137
18137
|
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>>>>>>>;
|
|
18138
18138
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
18139
18139
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -18532,10 +18532,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
18532
18532
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
18533
18533
|
id: z.ZodString;
|
|
18534
18534
|
name: z.ZodString;
|
|
18535
|
-
createdAt: z.ZodString;
|
|
18536
|
-
updatedAt: z.ZodString;
|
|
18537
18535
|
description: z.ZodNullable<z.ZodString>;
|
|
18538
18536
|
agentId: z.ZodString;
|
|
18537
|
+
createdAt: z.ZodString;
|
|
18538
|
+
updatedAt: z.ZodString;
|
|
18539
18539
|
functionId: z.ZodString;
|
|
18540
18540
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18541
18541
|
}, z.core.$strip>;
|
|
@@ -18553,10 +18553,10 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18553
18553
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
18554
18554
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18555
18555
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18556
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18557
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18558
18556
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18559
18557
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18558
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18559
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18560
18560
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18561
18561
|
}, z.core.$strip>;
|
|
18562
18562
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
@@ -19328,8 +19328,8 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19328
19328
|
name: z.ZodString;
|
|
19329
19329
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19330
19330
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19331
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19332
19331
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19332
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19333
19333
|
credentialStoreId: z.ZodString;
|
|
19334
19334
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19335
19335
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19356,22 +19356,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
19356
19356
|
}>;
|
|
19357
19357
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
19358
19358
|
id: z.ZodOptional<z.ZodString>;
|
|
19359
|
+
tenantId: z.ZodString;
|
|
19360
|
+
projectId: z.ZodString;
|
|
19361
|
+
agentId: z.ZodString;
|
|
19359
19362
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19360
19363
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
19361
|
-
agentId: z.ZodString;
|
|
19362
|
-
projectId: z.ZodString;
|
|
19363
|
-
tenantId: z.ZodString;
|
|
19364
19364
|
}, {
|
|
19365
19365
|
out: {};
|
|
19366
19366
|
in: {};
|
|
19367
19367
|
}>;
|
|
19368
19368
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
19369
19369
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19370
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19371
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19372
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19370
19373
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19371
19374
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
19372
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19373
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19374
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
19375
19375
|
}, {
|
|
19376
19376
|
out: {};
|
|
19377
19377
|
in: {};
|
|
@@ -19882,8 +19882,8 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19882
19882
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19883
19883
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19884
19884
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19885
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19886
19885
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19886
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19887
19887
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19888
19888
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
19889
19889
|
}, z.core.$strip>>>>>>;
|
|
@@ -22011,7 +22011,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
22011
22011
|
}, {}, {
|
|
22012
22012
|
length: 256;
|
|
22013
22013
|
}>;
|
|
22014
|
-
}, "id" | "name" | "
|
|
22014
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "toolCallId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
22015
22015
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
22016
22016
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22017
22017
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22078,15 +22078,15 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22078
22078
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
22079
22079
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22080
22080
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22081
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22082
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22081
22083
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22082
22084
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22083
22085
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22084
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22085
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22086
22086
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22087
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22087
22088
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22088
22089
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22089
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22090
22090
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22091
22091
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22092
22092
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
@@ -22158,9 +22158,8 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
22158
22158
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
22159
22159
|
id: z.ZodString;
|
|
22160
22160
|
name: z.ZodString;
|
|
22161
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22162
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22163
22161
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22162
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22164
22163
|
models: z.ZodOptional<z.ZodObject<{
|
|
22165
22164
|
base: z.ZodOptional<z.ZodObject<{
|
|
22166
22165
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22184,7 +22183,8 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22184
22183
|
}, {
|
|
22185
22184
|
stepCountIs?: number | undefined;
|
|
22186
22185
|
}>>>>;
|
|
22187
|
-
|
|
22186
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22187
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22188
22188
|
type: z.ZodLiteral<"internal">;
|
|
22189
22189
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22190
22190
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22211,18 +22211,17 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
22211
22211
|
}, z.core.$strip>;
|
|
22212
22212
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
22213
22213
|
name: z.ZodString;
|
|
22214
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22215
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22216
22214
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22217
22215
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22216
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22217
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22218
22218
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22219
22219
|
id: z.ZodString;
|
|
22220
22220
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22221
22221
|
id: z.ZodString;
|
|
22222
22222
|
name: z.ZodString;
|
|
22223
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22224
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22225
22223
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22224
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22226
22225
|
models: z.ZodOptional<z.ZodObject<{
|
|
22227
22226
|
base: z.ZodOptional<z.ZodObject<{
|
|
22228
22227
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22246,7 +22245,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22246
22245
|
}, {
|
|
22247
22246
|
stepCountIs?: number | undefined;
|
|
22248
22247
|
}>>>>;
|
|
22249
|
-
|
|
22248
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22249
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22250
22250
|
type: z.ZodLiteral<"internal">;
|
|
22251
22251
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22252
22252
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22350,9 +22350,9 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22350
22350
|
}, z.core.$strip>>>;
|
|
22351
22351
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22352
22352
|
name: z.ZodString;
|
|
22353
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22353
22354
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22354
22355
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22355
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22356
22356
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22357
22357
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22358
22358
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -22515,8 +22515,6 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
22515
22515
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
22516
22516
|
id: z.ZodString;
|
|
22517
22517
|
name: z.ZodString;
|
|
22518
|
-
createdAt: z.ZodString;
|
|
22519
|
-
updatedAt: z.ZodString;
|
|
22520
22518
|
description: z.ZodNullable<z.ZodString>;
|
|
22521
22519
|
models: z.ZodNullable<z.ZodObject<{
|
|
22522
22520
|
base: z.ZodObject<{
|
|
@@ -22536,6 +22534,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
22536
22534
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22537
22535
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
22538
22536
|
}, z.core.$strip>>;
|
|
22537
|
+
createdAt: z.ZodString;
|
|
22538
|
+
updatedAt: z.ZodString;
|
|
22539
22539
|
}, {
|
|
22540
22540
|
out: {};
|
|
22541
22541
|
in: {};
|
|
@@ -22615,18 +22615,17 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22615
22615
|
}, z.core.$strip>>;
|
|
22616
22616
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22617
22617
|
name: z.ZodString;
|
|
22618
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22619
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22620
22618
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22621
22619
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22620
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22621
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22622
22622
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22623
22623
|
id: z.ZodString;
|
|
22624
22624
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22625
22625
|
id: z.ZodString;
|
|
22626
22626
|
name: z.ZodString;
|
|
22627
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
22628
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22629
22627
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22628
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
22630
22629
|
models: z.ZodOptional<z.ZodObject<{
|
|
22631
22630
|
base: z.ZodOptional<z.ZodObject<{
|
|
22632
22631
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -22650,7 +22649,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22650
22649
|
}, {
|
|
22651
22650
|
stepCountIs?: number | undefined;
|
|
22652
22651
|
}>>>>;
|
|
22653
|
-
|
|
22652
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
22653
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22654
22654
|
type: z.ZodLiteral<"internal">;
|
|
22655
22655
|
canUse: z.ZodArray<z.ZodObject<{
|
|
22656
22656
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -22754,9 +22754,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22754
22754
|
}, z.core.$strip>>>;
|
|
22755
22755
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22756
22756
|
name: z.ZodString;
|
|
22757
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22757
22758
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22758
22759
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22759
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22760
22760
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22761
22761
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
22762
22762
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -22942,8 +22942,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22942
22942
|
name: z.ZodString;
|
|
22943
22943
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22944
22944
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22945
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22946
22945
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22946
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22947
22947
|
credentialStoreId: z.ZodString;
|
|
22948
22948
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22949
22949
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -22962,9 +22962,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22962
22962
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
22963
22963
|
id: z.ZodString;
|
|
22964
22964
|
name: z.ZodString;
|
|
22965
|
-
createdAt: z.ZodString;
|
|
22966
|
-
updatedAt: z.ZodString;
|
|
22967
22965
|
description: z.ZodNullable<z.ZodString>;
|
|
22966
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
22968
22967
|
models: z.ZodNullable<z.ZodType<{
|
|
22969
22968
|
base?: {
|
|
22970
22969
|
model?: string | undefined;
|
|
@@ -23027,7 +23026,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23027
23026
|
}, {
|
|
23028
23027
|
stepCountIs?: number | undefined;
|
|
23029
23028
|
}>>>;
|
|
23030
|
-
|
|
23029
|
+
createdAt: z.ZodString;
|
|
23030
|
+
updatedAt: z.ZodString;
|
|
23031
23031
|
type: z.ZodLiteral<"internal">;
|
|
23032
23032
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23033
23033
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23055,9 +23055,8 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
23055
23055
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23056
23056
|
id: z.ZodString;
|
|
23057
23057
|
name: z.ZodString;
|
|
23058
|
-
createdAt: z.ZodString;
|
|
23059
|
-
updatedAt: z.ZodString;
|
|
23060
23058
|
description: z.ZodNullable<z.ZodString>;
|
|
23059
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23061
23060
|
models: z.ZodNullable<z.ZodType<{
|
|
23062
23061
|
base?: {
|
|
23063
23062
|
model?: string | undefined;
|
|
@@ -23120,7 +23119,8 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23120
23119
|
}, {
|
|
23121
23120
|
stepCountIs?: number | undefined;
|
|
23122
23121
|
}>>>;
|
|
23123
|
-
|
|
23122
|
+
createdAt: z.ZodString;
|
|
23123
|
+
updatedAt: z.ZodString;
|
|
23124
23124
|
type: z.ZodLiteral<"internal">;
|
|
23125
23125
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23126
23126
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23154,17 +23154,16 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
23154
23154
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
23155
23155
|
id: z.ZodString;
|
|
23156
23156
|
name: z.ZodString;
|
|
23157
|
-
createdAt: z.ZodString;
|
|
23158
|
-
updatedAt: z.ZodString;
|
|
23159
23157
|
description: z.ZodNullable<z.ZodString>;
|
|
23160
23158
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23159
|
+
createdAt: z.ZodString;
|
|
23160
|
+
updatedAt: z.ZodString;
|
|
23161
23161
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23162
23162
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23163
23163
|
id: z.ZodString;
|
|
23164
23164
|
name: z.ZodString;
|
|
23165
|
-
createdAt: z.ZodString;
|
|
23166
|
-
updatedAt: z.ZodString;
|
|
23167
23165
|
description: z.ZodNullable<z.ZodString>;
|
|
23166
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23168
23167
|
models: z.ZodNullable<z.ZodType<{
|
|
23169
23168
|
base?: {
|
|
23170
23169
|
model?: string | undefined;
|
|
@@ -23227,7 +23226,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23227
23226
|
}, {
|
|
23228
23227
|
stepCountIs?: number | undefined;
|
|
23229
23228
|
}>>>;
|
|
23230
|
-
|
|
23229
|
+
createdAt: z.ZodString;
|
|
23230
|
+
updatedAt: z.ZodString;
|
|
23231
23231
|
type: z.ZodLiteral<"internal">;
|
|
23232
23232
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23233
23233
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23300,10 +23300,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23300
23300
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23301
23301
|
id: z.ZodString;
|
|
23302
23302
|
name: z.ZodString;
|
|
23303
|
-
createdAt: z.ZodString;
|
|
23304
|
-
updatedAt: z.ZodString;
|
|
23305
23303
|
description: z.ZodNullable<z.ZodString>;
|
|
23306
23304
|
agentId: z.ZodString;
|
|
23305
|
+
createdAt: z.ZodString;
|
|
23306
|
+
updatedAt: z.ZodString;
|
|
23307
23307
|
functionId: z.ZodString;
|
|
23308
23308
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23309
23309
|
}, z.core.$strip>>>;
|
|
@@ -23361,10 +23361,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
23361
23361
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
23362
23362
|
id: z.ZodString;
|
|
23363
23363
|
name: z.ZodString;
|
|
23364
|
-
createdAt: z.ZodString;
|
|
23365
|
-
updatedAt: z.ZodString;
|
|
23366
23364
|
description: z.ZodNullable<z.ZodString>;
|
|
23367
23365
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23366
|
+
createdAt: z.ZodString;
|
|
23367
|
+
updatedAt: z.ZodString;
|
|
23368
23368
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23369
23369
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
23370
23370
|
createdAt: z.ZodString;
|
|
@@ -23414,10 +23414,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23414
23414
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23415
23415
|
id: z.ZodString;
|
|
23416
23416
|
name: z.ZodString;
|
|
23417
|
-
createdAt: z.ZodString;
|
|
23418
|
-
updatedAt: z.ZodString;
|
|
23419
23417
|
description: z.ZodNullable<z.ZodString>;
|
|
23420
23418
|
agentId: z.ZodString;
|
|
23419
|
+
createdAt: z.ZodString;
|
|
23420
|
+
updatedAt: z.ZodString;
|
|
23421
23421
|
functionId: z.ZodString;
|
|
23422
23422
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23423
23423
|
}, z.core.$strip>>>;
|
|
@@ -23474,9 +23474,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23474
23474
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23475
23475
|
id: z.ZodString;
|
|
23476
23476
|
name: z.ZodString;
|
|
23477
|
-
createdAt: z.ZodString;
|
|
23478
|
-
updatedAt: z.ZodString;
|
|
23479
23477
|
description: z.ZodNullable<z.ZodString>;
|
|
23478
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23480
23479
|
models: z.ZodNullable<z.ZodType<{
|
|
23481
23480
|
base?: {
|
|
23482
23481
|
model?: string | undefined;
|
|
@@ -23539,7 +23538,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23539
23538
|
}, {
|
|
23540
23539
|
stepCountIs?: number | undefined;
|
|
23541
23540
|
}>>>;
|
|
23542
|
-
|
|
23541
|
+
createdAt: z.ZodString;
|
|
23542
|
+
updatedAt: z.ZodString;
|
|
23543
23543
|
type: z.ZodLiteral<"internal">;
|
|
23544
23544
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23545
23545
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23574,8 +23574,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
23574
23574
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
23575
23575
|
id: z.ZodString;
|
|
23576
23576
|
name: z.ZodString;
|
|
23577
|
-
createdAt: z.ZodString;
|
|
23578
|
-
updatedAt: z.ZodString;
|
|
23579
23577
|
description: z.ZodNullable<z.ZodString>;
|
|
23580
23578
|
models: z.ZodNullable<z.ZodObject<{
|
|
23581
23579
|
base: z.ZodObject<{
|
|
@@ -23595,20 +23593,21 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23595
23593
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23596
23594
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
23597
23595
|
}, z.core.$strip>>;
|
|
23596
|
+
createdAt: z.ZodString;
|
|
23597
|
+
updatedAt: z.ZodString;
|
|
23598
23598
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23599
23599
|
id: z.ZodString;
|
|
23600
23600
|
name: z.ZodString;
|
|
23601
|
-
createdAt: z.ZodString;
|
|
23602
|
-
updatedAt: z.ZodString;
|
|
23603
23601
|
description: z.ZodNullable<z.ZodString>;
|
|
23604
23602
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
23603
|
+
createdAt: z.ZodString;
|
|
23604
|
+
updatedAt: z.ZodString;
|
|
23605
23605
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
23606
23606
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23607
23607
|
id: z.ZodString;
|
|
23608
23608
|
name: z.ZodString;
|
|
23609
|
-
createdAt: z.ZodString;
|
|
23610
|
-
updatedAt: z.ZodString;
|
|
23611
23609
|
description: z.ZodNullable<z.ZodString>;
|
|
23610
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
23612
23611
|
models: z.ZodNullable<z.ZodType<{
|
|
23613
23612
|
base?: {
|
|
23614
23613
|
model?: string | undefined;
|
|
@@ -23671,7 +23670,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23671
23670
|
}, {
|
|
23672
23671
|
stepCountIs?: number | undefined;
|
|
23673
23672
|
}>>>;
|
|
23674
|
-
|
|
23673
|
+
createdAt: z.ZodString;
|
|
23674
|
+
updatedAt: z.ZodString;
|
|
23675
23675
|
type: z.ZodLiteral<"internal">;
|
|
23676
23676
|
canUse: z.ZodArray<z.ZodObject<{
|
|
23677
23677
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -23744,10 +23744,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23744
23744
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23745
23745
|
id: z.ZodString;
|
|
23746
23746
|
name: z.ZodString;
|
|
23747
|
-
createdAt: z.ZodString;
|
|
23748
|
-
updatedAt: z.ZodString;
|
|
23749
23747
|
description: z.ZodNullable<z.ZodString>;
|
|
23750
23748
|
agentId: z.ZodString;
|
|
23749
|
+
createdAt: z.ZodString;
|
|
23750
|
+
updatedAt: z.ZodString;
|
|
23751
23751
|
functionId: z.ZodString;
|
|
23752
23752
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23753
23753
|
}, z.core.$strip>>>;
|
|
@@ -23834,10 +23834,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23834
23834
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23835
23835
|
id: z.ZodString;
|
|
23836
23836
|
name: z.ZodString;
|
|
23837
|
-
createdAt: z.ZodString;
|
|
23838
|
-
updatedAt: z.ZodString;
|
|
23839
23837
|
description: z.ZodNullable<z.ZodString>;
|
|
23840
23838
|
agentId: z.ZodString;
|
|
23839
|
+
createdAt: z.ZodString;
|
|
23840
|
+
updatedAt: z.ZodString;
|
|
23841
23841
|
functionId: z.ZodString;
|
|
23842
23842
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
23843
23843
|
}, z.core.$strip>>>;
|
|
@@ -23928,8 +23928,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23928
23928
|
name: z.ZodString;
|
|
23929
23929
|
createdAt: z.ZodString;
|
|
23930
23930
|
updatedAt: z.ZodString;
|
|
23931
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
23932
23931
|
toolId: z.ZodNullable<z.ZodString>;
|
|
23932
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
23933
23933
|
credentialStoreId: z.ZodString;
|
|
23934
23934
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23935
23935
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -24521,8 +24521,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24521
24521
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24522
24522
|
id: z.ZodString;
|
|
24523
24523
|
name: z.ZodString;
|
|
24524
|
-
createdAt: z.ZodString;
|
|
24525
|
-
updatedAt: z.ZodString;
|
|
24526
24524
|
description: z.ZodNullable<z.ZodString>;
|
|
24527
24525
|
models: z.ZodNullable<z.ZodObject<{
|
|
24528
24526
|
base: z.ZodObject<{
|
|
@@ -24542,6 +24540,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24542
24540
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24543
24541
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
24544
24542
|
}, z.core.$strip>>;
|
|
24543
|
+
createdAt: z.ZodString;
|
|
24544
|
+
updatedAt: z.ZodString;
|
|
24545
24545
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
24546
24546
|
createdAt: z.ZodString;
|
|
24547
24547
|
updatedAt: z.ZodString;
|
|
@@ -24574,10 +24574,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24574
24574
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24575
24575
|
id: z.ZodString;
|
|
24576
24576
|
name: z.ZodString;
|
|
24577
|
-
createdAt: z.ZodString;
|
|
24578
|
-
updatedAt: z.ZodString;
|
|
24579
24577
|
description: z.ZodNullable<z.ZodString>;
|
|
24580
24578
|
agentId: z.ZodString;
|
|
24579
|
+
createdAt: z.ZodString;
|
|
24580
|
+
updatedAt: z.ZodString;
|
|
24581
24581
|
functionId: z.ZodString;
|
|
24582
24582
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
24583
24583
|
}, z.core.$strip>>>;
|
|
@@ -24668,8 +24668,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24668
24668
|
name: z.ZodString;
|
|
24669
24669
|
createdAt: z.ZodString;
|
|
24670
24670
|
updatedAt: z.ZodString;
|
|
24671
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
24672
24671
|
toolId: z.ZodNullable<z.ZodString>;
|
|
24672
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
24673
24673
|
credentialStoreId: z.ZodString;
|
|
24674
24674
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24675
24675
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -25257,10 +25257,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25257
25257
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25258
25258
|
id: z.ZodString;
|
|
25259
25259
|
name: z.ZodString;
|
|
25260
|
-
createdAt: z.ZodString;
|
|
25261
|
-
updatedAt: z.ZodString;
|
|
25262
25260
|
description: z.ZodNullable<z.ZodString>;
|
|
25263
25261
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25262
|
+
createdAt: z.ZodString;
|
|
25263
|
+
updatedAt: z.ZodString;
|
|
25264
25264
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25265
25265
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25266
25266
|
createdAt: z.ZodString;
|
|
@@ -25310,10 +25310,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25310
25310
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25311
25311
|
id: z.ZodString;
|
|
25312
25312
|
name: z.ZodString;
|
|
25313
|
-
createdAt: z.ZodString;
|
|
25314
|
-
updatedAt: z.ZodString;
|
|
25315
25313
|
description: z.ZodNullable<z.ZodString>;
|
|
25316
25314
|
agentId: z.ZodString;
|
|
25315
|
+
createdAt: z.ZodString;
|
|
25316
|
+
updatedAt: z.ZodString;
|
|
25317
25317
|
functionId: z.ZodString;
|
|
25318
25318
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
25319
25319
|
}, z.core.$strip>>>;
|
|
@@ -25370,9 +25370,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25370
25370
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25371
25371
|
id: z.ZodString;
|
|
25372
25372
|
name: z.ZodString;
|
|
25373
|
-
createdAt: z.ZodString;
|
|
25374
|
-
updatedAt: z.ZodString;
|
|
25375
25373
|
description: z.ZodNullable<z.ZodString>;
|
|
25374
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25376
25375
|
models: z.ZodNullable<z.ZodType<{
|
|
25377
25376
|
base?: {
|
|
25378
25377
|
model?: string | undefined;
|
|
@@ -25435,7 +25434,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25435
25434
|
}, {
|
|
25436
25435
|
stepCountIs?: number | undefined;
|
|
25437
25436
|
}>>>;
|
|
25438
|
-
|
|
25437
|
+
createdAt: z.ZodString;
|
|
25438
|
+
updatedAt: z.ZodString;
|
|
25439
25439
|
type: z.ZodLiteral<"internal">;
|
|
25440
25440
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25441
25441
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25475,8 +25475,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
25475
25475
|
data: z.ZodObject<{
|
|
25476
25476
|
id: z.ZodString;
|
|
25477
25477
|
name: z.ZodString;
|
|
25478
|
-
createdAt: z.ZodString;
|
|
25479
|
-
updatedAt: z.ZodString;
|
|
25480
25478
|
description: z.ZodNullable<z.ZodString>;
|
|
25481
25479
|
models: z.ZodNullable<z.ZodObject<{
|
|
25482
25480
|
base: z.ZodObject<{
|
|
@@ -25496,6 +25494,8 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
25496
25494
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25497
25495
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25498
25496
|
}, z.core.$strip>>;
|
|
25497
|
+
createdAt: z.ZodString;
|
|
25498
|
+
updatedAt: z.ZodString;
|
|
25499
25499
|
}, {
|
|
25500
25500
|
out: {};
|
|
25501
25501
|
in: {};
|
|
@@ -25767,10 +25767,10 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
25767
25767
|
data: z.ZodObject<{
|
|
25768
25768
|
id: z.ZodString;
|
|
25769
25769
|
name: z.ZodNullable<z.ZodString>;
|
|
25770
|
+
agentId: z.ZodString;
|
|
25770
25771
|
createdAt: z.ZodString;
|
|
25771
25772
|
updatedAt: z.ZodString;
|
|
25772
25773
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
25773
|
-
agentId: z.ZodString;
|
|
25774
25774
|
publicId: z.ZodString;
|
|
25775
25775
|
keyPrefix: z.ZodString;
|
|
25776
25776
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -25785,8 +25785,8 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25785
25785
|
name: z.ZodString;
|
|
25786
25786
|
createdAt: z.ZodString;
|
|
25787
25787
|
updatedAt: z.ZodString;
|
|
25788
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
25789
25788
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25789
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
25790
25790
|
credentialStoreId: z.ZodString;
|
|
25791
25791
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25792
25792
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -26388,10 +26388,10 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
26388
26388
|
data: z.ZodObject<{
|
|
26389
26389
|
id: z.ZodString;
|
|
26390
26390
|
name: z.ZodString;
|
|
26391
|
-
createdAt: z.ZodString;
|
|
26392
|
-
updatedAt: z.ZodString;
|
|
26393
26391
|
description: z.ZodNullable<z.ZodString>;
|
|
26394
26392
|
agentId: z.ZodString;
|
|
26393
|
+
createdAt: z.ZodString;
|
|
26394
|
+
updatedAt: z.ZodString;
|
|
26395
26395
|
functionId: z.ZodString;
|
|
26396
26396
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26397
26397
|
}, z.core.$strip>;
|
|
@@ -26626,8 +26626,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
26626
26626
|
data: z.ZodArray<z.ZodObject<{
|
|
26627
26627
|
id: z.ZodString;
|
|
26628
26628
|
name: z.ZodString;
|
|
26629
|
-
createdAt: z.ZodString;
|
|
26630
|
-
updatedAt: z.ZodString;
|
|
26631
26629
|
description: z.ZodNullable<z.ZodString>;
|
|
26632
26630
|
models: z.ZodNullable<z.ZodObject<{
|
|
26633
26631
|
base: z.ZodObject<{
|
|
@@ -26647,6 +26645,8 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
26647
26645
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26648
26646
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26649
26647
|
}, z.core.$strip>>;
|
|
26648
|
+
createdAt: z.ZodString;
|
|
26649
|
+
updatedAt: z.ZodString;
|
|
26650
26650
|
}, {
|
|
26651
26651
|
out: {};
|
|
26652
26652
|
in: {};
|
|
@@ -26954,10 +26954,10 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
26954
26954
|
data: z.ZodArray<z.ZodObject<{
|
|
26955
26955
|
id: z.ZodString;
|
|
26956
26956
|
name: z.ZodNullable<z.ZodString>;
|
|
26957
|
+
agentId: z.ZodString;
|
|
26957
26958
|
createdAt: z.ZodString;
|
|
26958
26959
|
updatedAt: z.ZodString;
|
|
26959
26960
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
26960
|
-
agentId: z.ZodString;
|
|
26961
26961
|
publicId: z.ZodString;
|
|
26962
26962
|
keyPrefix: z.ZodString;
|
|
26963
26963
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -26978,8 +26978,8 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
26978
26978
|
name: z.ZodString;
|
|
26979
26979
|
createdAt: z.ZodString;
|
|
26980
26980
|
updatedAt: z.ZodString;
|
|
26981
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26982
26981
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26982
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26983
26983
|
credentialStoreId: z.ZodString;
|
|
26984
26984
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26985
26985
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -27593,10 +27593,10 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
27593
27593
|
data: z.ZodArray<z.ZodObject<{
|
|
27594
27594
|
id: z.ZodString;
|
|
27595
27595
|
name: z.ZodString;
|
|
27596
|
-
createdAt: z.ZodString;
|
|
27597
|
-
updatedAt: z.ZodString;
|
|
27598
27596
|
description: z.ZodNullable<z.ZodString>;
|
|
27599
27597
|
agentId: z.ZodString;
|
|
27598
|
+
createdAt: z.ZodString;
|
|
27599
|
+
updatedAt: z.ZodString;
|
|
27600
27600
|
functionId: z.ZodString;
|
|
27601
27601
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27602
27602
|
}, z.core.$strip>>;
|
|
@@ -27891,9 +27891,9 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27891
27891
|
data: z.ZodObject<{
|
|
27892
27892
|
id: z.ZodString;
|
|
27893
27893
|
name: z.ZodString;
|
|
27894
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27894
27895
|
createdAt: z.ZodString;
|
|
27895
27896
|
updatedAt: z.ZodString;
|
|
27896
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27897
27897
|
enabled: z.ZodBoolean;
|
|
27898
27898
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27899
27899
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -27952,9 +27952,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
27952
27952
|
data: z.ZodArray<z.ZodObject<{
|
|
27953
27953
|
id: z.ZodString;
|
|
27954
27954
|
name: z.ZodString;
|
|
27955
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27955
27956
|
createdAt: z.ZodString;
|
|
27956
27957
|
updatedAt: z.ZodString;
|
|
27957
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27958
27958
|
enabled: z.ZodBoolean;
|
|
27959
27959
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
27960
27960
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
@@ -28096,18 +28096,17 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28096
28096
|
}, z.core.$strip>>;
|
|
28097
28097
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28098
28098
|
name: z.ZodString;
|
|
28099
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
28100
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28101
28099
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28102
28100
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28101
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28102
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28103
28103
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28104
28104
|
id: z.ZodString;
|
|
28105
28105
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28106
28106
|
id: z.ZodString;
|
|
28107
28107
|
name: z.ZodString;
|
|
28108
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
28109
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28110
28108
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28109
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
28111
28110
|
models: z.ZodOptional<z.ZodObject<{
|
|
28112
28111
|
base: z.ZodOptional<z.ZodObject<{
|
|
28113
28112
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28131,7 +28130,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28131
28130
|
}, {
|
|
28132
28131
|
stepCountIs?: number | undefined;
|
|
28133
28132
|
}>>>>;
|
|
28134
|
-
|
|
28133
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
28134
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28135
28135
|
type: z.ZodLiteral<"internal">;
|
|
28136
28136
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28137
28137
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28235,9 +28235,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28235
28235
|
}, z.core.$strip>>>;
|
|
28236
28236
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28237
28237
|
name: z.ZodString;
|
|
28238
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28238
28239
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28239
28240
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28240
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28241
28241
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28242
28242
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
28243
28243
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -28423,8 +28423,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28423
28423
|
name: z.ZodString;
|
|
28424
28424
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28425
28425
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28426
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28427
28426
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28427
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28428
28428
|
credentialStoreId: z.ZodString;
|
|
28429
28429
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
28430
28430
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -28445,8 +28445,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28445
28445
|
data: z.ZodObject<{
|
|
28446
28446
|
id: z.ZodString;
|
|
28447
28447
|
name: z.ZodString;
|
|
28448
|
-
createdAt: z.ZodString;
|
|
28449
|
-
updatedAt: z.ZodString;
|
|
28450
28448
|
description: z.ZodNullable<z.ZodString>;
|
|
28451
28449
|
models: z.ZodNullable<z.ZodObject<{
|
|
28452
28450
|
base: z.ZodObject<{
|
|
@@ -28466,20 +28464,21 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28466
28464
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28467
28465
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28468
28466
|
}, z.core.$strip>>;
|
|
28467
|
+
createdAt: z.ZodString;
|
|
28468
|
+
updatedAt: z.ZodString;
|
|
28469
28469
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28470
28470
|
id: z.ZodString;
|
|
28471
28471
|
name: z.ZodString;
|
|
28472
|
-
createdAt: z.ZodString;
|
|
28473
|
-
updatedAt: z.ZodString;
|
|
28474
28472
|
description: z.ZodNullable<z.ZodString>;
|
|
28475
28473
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28474
|
+
createdAt: z.ZodString;
|
|
28475
|
+
updatedAt: z.ZodString;
|
|
28476
28476
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28477
28477
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28478
28478
|
id: z.ZodString;
|
|
28479
28479
|
name: z.ZodString;
|
|
28480
|
-
createdAt: z.ZodString;
|
|
28481
|
-
updatedAt: z.ZodString;
|
|
28482
28480
|
description: z.ZodNullable<z.ZodString>;
|
|
28481
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28483
28482
|
models: z.ZodNullable<z.ZodType<{
|
|
28484
28483
|
base?: {
|
|
28485
28484
|
model?: string | undefined;
|
|
@@ -28542,7 +28541,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28542
28541
|
}, {
|
|
28543
28542
|
stepCountIs?: number | undefined;
|
|
28544
28543
|
}>>>;
|
|
28545
|
-
|
|
28544
|
+
createdAt: z.ZodString;
|
|
28545
|
+
updatedAt: z.ZodString;
|
|
28546
28546
|
type: z.ZodLiteral<"internal">;
|
|
28547
28547
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28548
28548
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28615,10 +28615,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28615
28615
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28616
28616
|
id: z.ZodString;
|
|
28617
28617
|
name: z.ZodString;
|
|
28618
|
-
createdAt: z.ZodString;
|
|
28619
|
-
updatedAt: z.ZodString;
|
|
28620
28618
|
description: z.ZodNullable<z.ZodString>;
|
|
28621
28619
|
agentId: z.ZodString;
|
|
28620
|
+
createdAt: z.ZodString;
|
|
28621
|
+
updatedAt: z.ZodString;
|
|
28622
28622
|
functionId: z.ZodString;
|
|
28623
28623
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28624
28624
|
}, z.core.$strip>>>;
|
|
@@ -28705,10 +28705,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28705
28705
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28706
28706
|
id: z.ZodString;
|
|
28707
28707
|
name: z.ZodString;
|
|
28708
|
-
createdAt: z.ZodString;
|
|
28709
|
-
updatedAt: z.ZodString;
|
|
28710
28708
|
description: z.ZodNullable<z.ZodString>;
|
|
28711
28709
|
agentId: z.ZodString;
|
|
28710
|
+
createdAt: z.ZodString;
|
|
28711
|
+
updatedAt: z.ZodString;
|
|
28712
28712
|
functionId: z.ZodString;
|
|
28713
28713
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28714
28714
|
}, z.core.$strip>>>;
|
|
@@ -28799,8 +28799,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28799
28799
|
name: z.ZodString;
|
|
28800
28800
|
createdAt: z.ZodString;
|
|
28801
28801
|
updatedAt: z.ZodString;
|
|
28802
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28803
28802
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28803
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28804
28804
|
credentialStoreId: z.ZodString;
|
|
28805
28805
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28806
28806
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -29394,8 +29394,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29394
29394
|
data: z.ZodObject<{
|
|
29395
29395
|
id: z.ZodString;
|
|
29396
29396
|
name: z.ZodString;
|
|
29397
|
-
createdAt: z.ZodString;
|
|
29398
|
-
updatedAt: z.ZodString;
|
|
29399
29397
|
description: z.ZodNullable<z.ZodString>;
|
|
29400
29398
|
models: z.ZodNullable<z.ZodObject<{
|
|
29401
29399
|
base: z.ZodObject<{
|
|
@@ -29415,6 +29413,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29415
29413
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29416
29414
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29417
29415
|
}, z.core.$strip>>;
|
|
29416
|
+
createdAt: z.ZodString;
|
|
29417
|
+
updatedAt: z.ZodString;
|
|
29418
29418
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
29419
29419
|
createdAt: z.ZodString;
|
|
29420
29420
|
updatedAt: z.ZodString;
|
|
@@ -29447,10 +29447,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29447
29447
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29448
29448
|
id: z.ZodString;
|
|
29449
29449
|
name: z.ZodString;
|
|
29450
|
-
createdAt: z.ZodString;
|
|
29451
|
-
updatedAt: z.ZodString;
|
|
29452
29450
|
description: z.ZodNullable<z.ZodString>;
|
|
29453
29451
|
agentId: z.ZodString;
|
|
29452
|
+
createdAt: z.ZodString;
|
|
29453
|
+
updatedAt: z.ZodString;
|
|
29454
29454
|
functionId: z.ZodString;
|
|
29455
29455
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29456
29456
|
}, z.core.$strip>>>;
|
|
@@ -29541,8 +29541,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29541
29541
|
name: z.ZodString;
|
|
29542
29542
|
createdAt: z.ZodString;
|
|
29543
29543
|
updatedAt: z.ZodString;
|
|
29544
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29545
29544
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29545
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29546
29546
|
credentialStoreId: z.ZodString;
|
|
29547
29547
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29548
29548
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
@@ -30130,10 +30130,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30130
30130
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30131
30131
|
id: z.ZodString;
|
|
30132
30132
|
name: z.ZodString;
|
|
30133
|
-
createdAt: z.ZodString;
|
|
30134
|
-
updatedAt: z.ZodString;
|
|
30135
30133
|
description: z.ZodNullable<z.ZodString>;
|
|
30136
30134
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30135
|
+
createdAt: z.ZodString;
|
|
30136
|
+
updatedAt: z.ZodString;
|
|
30137
30137
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30138
30138
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
30139
30139
|
createdAt: z.ZodString;
|
|
@@ -30183,10 +30183,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30183
30183
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30184
30184
|
id: z.ZodString;
|
|
30185
30185
|
name: z.ZodString;
|
|
30186
|
-
createdAt: z.ZodString;
|
|
30187
|
-
updatedAt: z.ZodString;
|
|
30188
30186
|
description: z.ZodNullable<z.ZodString>;
|
|
30189
30187
|
agentId: z.ZodString;
|
|
30188
|
+
createdAt: z.ZodString;
|
|
30189
|
+
updatedAt: z.ZodString;
|
|
30190
30190
|
functionId: z.ZodString;
|
|
30191
30191
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30192
30192
|
}, z.core.$strip>>>;
|
|
@@ -30243,9 +30243,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30243
30243
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30244
30244
|
id: z.ZodString;
|
|
30245
30245
|
name: z.ZodString;
|
|
30246
|
-
createdAt: z.ZodString;
|
|
30247
|
-
updatedAt: z.ZodString;
|
|
30248
30246
|
description: z.ZodNullable<z.ZodString>;
|
|
30247
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30249
30248
|
models: z.ZodNullable<z.ZodType<{
|
|
30250
30249
|
base?: {
|
|
30251
30250
|
model?: string | undefined;
|
|
@@ -30308,7 +30307,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30308
30307
|
}, {
|
|
30309
30308
|
stepCountIs?: number | undefined;
|
|
30310
30309
|
}>>>;
|
|
30311
|
-
|
|
30310
|
+
createdAt: z.ZodString;
|
|
30311
|
+
updatedAt: z.ZodString;
|
|
30312
30312
|
type: z.ZodLiteral<"internal">;
|
|
30313
30313
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30314
30314
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30348,18 +30348,17 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30348
30348
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
30349
30349
|
data: z.ZodObject<{
|
|
30350
30350
|
name: z.ZodString;
|
|
30351
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30352
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30353
30351
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30354
30352
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30353
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30354
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30355
30355
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30356
30356
|
id: z.ZodString;
|
|
30357
30357
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30358
30358
|
id: z.ZodString;
|
|
30359
30359
|
name: z.ZodString;
|
|
30360
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
30361
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30362
30360
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30361
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
30363
30362
|
models: z.ZodOptional<z.ZodObject<{
|
|
30364
30363
|
base: z.ZodOptional<z.ZodObject<{
|
|
30365
30364
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30383,7 +30382,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30383
30382
|
}, {
|
|
30384
30383
|
stepCountIs?: number | undefined;
|
|
30385
30384
|
}>>>>;
|
|
30386
|
-
|
|
30385
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
30386
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30387
30387
|
type: z.ZodLiteral<"internal">;
|
|
30388
30388
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30389
30389
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30487,9 +30487,9 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30487
30487
|
}, z.core.$strip>>>;
|
|
30488
30488
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30489
30489
|
name: z.ZodString;
|
|
30490
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30490
30491
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30491
30492
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30492
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30493
30493
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30494
30494
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
30495
30495
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
@@ -30543,17 +30543,16 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30543
30543
|
data: z.ZodObject<{
|
|
30544
30544
|
id: z.ZodString;
|
|
30545
30545
|
name: z.ZodString;
|
|
30546
|
-
createdAt: z.ZodString;
|
|
30547
|
-
updatedAt: z.ZodString;
|
|
30548
30546
|
description: z.ZodNullable<z.ZodString>;
|
|
30549
30547
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
30548
|
+
createdAt: z.ZodString;
|
|
30549
|
+
updatedAt: z.ZodString;
|
|
30550
30550
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
30551
30551
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30552
30552
|
id: z.ZodString;
|
|
30553
30553
|
name: z.ZodString;
|
|
30554
|
-
createdAt: z.ZodString;
|
|
30555
|
-
updatedAt: z.ZodString;
|
|
30556
30554
|
description: z.ZodNullable<z.ZodString>;
|
|
30555
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
30557
30556
|
models: z.ZodNullable<z.ZodType<{
|
|
30558
30557
|
base?: {
|
|
30559
30558
|
model?: string | undefined;
|
|
@@ -30616,7 +30615,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30616
30615
|
}, {
|
|
30617
30616
|
stepCountIs?: number | undefined;
|
|
30618
30617
|
}>>>;
|
|
30619
|
-
|
|
30618
|
+
createdAt: z.ZodString;
|
|
30619
|
+
updatedAt: z.ZodString;
|
|
30620
30620
|
type: z.ZodLiteral<"internal">;
|
|
30621
30621
|
canUse: z.ZodArray<z.ZodObject<{
|
|
30622
30622
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -30689,10 +30689,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
30689
30689
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30690
30690
|
id: z.ZodString;
|
|
30691
30691
|
name: z.ZodString;
|
|
30692
|
-
createdAt: z.ZodString;
|
|
30693
|
-
updatedAt: z.ZodString;
|
|
30694
30692
|
description: z.ZodNullable<z.ZodString>;
|
|
30695
30693
|
agentId: z.ZodString;
|
|
30694
|
+
createdAt: z.ZodString;
|
|
30695
|
+
updatedAt: z.ZodString;
|
|
30696
30696
|
functionId: z.ZodString;
|
|
30697
30697
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30698
30698
|
}, z.core.$strip>>>;
|
|
@@ -31659,8 +31659,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31659
31659
|
}, undefined>, undefined>;
|
|
31660
31660
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
31661
31661
|
id: z.ZodString;
|
|
31662
|
-
accountId: z.ZodString;
|
|
31663
31662
|
tenantId: z.ZodString;
|
|
31663
|
+
accountId: z.ZodString;
|
|
31664
31664
|
installationId: z.ZodString;
|
|
31665
31665
|
accountLogin: z.ZodString;
|
|
31666
31666
|
accountType: z.ZodEnum<{
|
|
@@ -31690,8 +31690,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
31690
31690
|
}>, z.core.$strip>;
|
|
31691
31691
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
31692
31692
|
id: z.ZodString;
|
|
31693
|
-
accountId: z.ZodString;
|
|
31694
31693
|
tenantId: z.ZodString;
|
|
31694
|
+
accountId: z.ZodString;
|
|
31695
31695
|
installationId: z.ZodString;
|
|
31696
31696
|
accountLogin: z.ZodString;
|
|
31697
31697
|
accountType: z.ZodEnum<{
|