@inkeep/agents-core 0.48.7 → 0.50.0
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/auth/auth.d.ts +53 -53
- package/dist/auth/authz/config.d.ts +20 -1
- package/dist/auth/authz/config.js +27 -1
- package/dist/auth/authz/index.d.ts +2 -2
- package/dist/auth/authz/index.js +2 -2
- package/dist/auth/authz/permissions.d.ts +6 -0
- package/dist/auth/authz/permissions.js +21 -6
- package/dist/auth/authz/sync.js +31 -18
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -3
- package/dist/data-access/manage/agents.d.ts +43 -43
- package/dist/data-access/manage/artifactComponents.d.ts +14 -14
- package/dist/data-access/manage/contextConfigs.d.ts +20 -20
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +15 -15
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +21 -21
- package/dist/data-access/manage/tools.d.ts +24 -24
- package/dist/data-access/runtime/apiKeys.d.ts +16 -16
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/validation/schemas.d.ts +342 -342
- package/package.json +1 -1
|
@@ -820,10 +820,10 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
820
820
|
}>, z.core.$strip>;
|
|
821
821
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
822
822
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
823
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
823
824
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
825
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
824
826
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
825
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
826
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
827
827
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
828
828
|
base: z.ZodOptional<z.ZodObject<{
|
|
829
829
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -838,6 +838,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
838
838
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
839
839
|
}, z.core.$strip>>;
|
|
840
840
|
}, z.core.$strip>>>>;
|
|
841
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
841
842
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
842
843
|
stepCountIs?: number | undefined;
|
|
843
844
|
}, {
|
|
@@ -847,8 +848,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
847
848
|
}, {
|
|
848
849
|
stepCountIs?: number | undefined;
|
|
849
850
|
}>>>>>>;
|
|
850
|
-
|
|
851
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
851
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
852
852
|
}, z.core.$strip>;
|
|
853
853
|
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
854
854
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2482
2482
|
}, {}, {
|
|
2483
2483
|
length: 256;
|
|
2484
2484
|
}>;
|
|
2485
|
-
}, "id" | "
|
|
2485
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "projectId" | "tenantId" | "description" | "defaultSubAgentId" | "contextConfigId" | "models" | "prompt" | "statusUpdates" | "stopWhen">, undefined>, undefined>;
|
|
2486
2486
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2487
2487
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2488
2488
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2749,10 +2749,12 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2749
2749
|
id: z.ZodString;
|
|
2750
2750
|
}>, z.core.$strip>;
|
|
2751
2751
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2752
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2752
2753
|
name: z.ZodString;
|
|
2754
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2753
2755
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
2756
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2755
|
-
|
|
2757
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2756
2758
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2757
2759
|
base?: {
|
|
2758
2760
|
model?: string | undefined;
|
|
@@ -2806,18 +2808,7 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2806
2808
|
providerOptions?: Record<string, any> | undefined;
|
|
2807
2809
|
} | undefined;
|
|
2808
2810
|
}>>>>;
|
|
2809
|
-
|
|
2810
|
-
transferCountIs?: number | undefined;
|
|
2811
|
-
}, {
|
|
2812
|
-
transferCountIs?: number | undefined;
|
|
2813
|
-
}, z.core.$ZodTypeInternals<{
|
|
2814
|
-
transferCountIs?: number | undefined;
|
|
2815
|
-
}, {
|
|
2816
|
-
transferCountIs?: number | undefined;
|
|
2817
|
-
}>>>>;
|
|
2818
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
2819
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2820
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2811
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2821
2812
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2822
2813
|
enabled?: boolean | undefined;
|
|
2823
2814
|
numEvents?: number | undefined;
|
|
@@ -2875,14 +2866,25 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2875
2866
|
} | undefined;
|
|
2876
2867
|
}[] | undefined;
|
|
2877
2868
|
}>>>>;
|
|
2869
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2870
|
+
transferCountIs?: number | undefined;
|
|
2871
|
+
}, {
|
|
2872
|
+
transferCountIs?: number | undefined;
|
|
2873
|
+
}, z.core.$ZodTypeInternals<{
|
|
2874
|
+
transferCountIs?: number | undefined;
|
|
2875
|
+
}, {
|
|
2876
|
+
transferCountIs?: number | undefined;
|
|
2877
|
+
}>>>>;
|
|
2878
2878
|
id: z.ZodString;
|
|
2879
2879
|
}, z.core.$strip>;
|
|
2880
2880
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2881
2881
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2882
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2882
2883
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2884
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2883
2885
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
2886
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2885
|
-
|
|
2887
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2886
2888
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2887
2889
|
base?: {
|
|
2888
2890
|
model?: string | undefined;
|
|
@@ -2936,18 +2938,7 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2936
2938
|
providerOptions?: Record<string, any> | undefined;
|
|
2937
2939
|
} | undefined;
|
|
2938
2940
|
}>>>>>>;
|
|
2939
|
-
|
|
2940
|
-
transferCountIs?: number | undefined;
|
|
2941
|
-
}, {
|
|
2942
|
-
transferCountIs?: number | undefined;
|
|
2943
|
-
}, z.core.$ZodTypeInternals<{
|
|
2944
|
-
transferCountIs?: number | undefined;
|
|
2945
|
-
}, {
|
|
2946
|
-
transferCountIs?: number | undefined;
|
|
2947
|
-
}>>>>>>;
|
|
2948
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2949
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2950
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2941
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2951
2942
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2952
2943
|
enabled?: boolean | undefined;
|
|
2953
2944
|
numEvents?: number | undefined;
|
|
@@ -3005,6 +2996,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3005
2996
|
} | undefined;
|
|
3006
2997
|
}[] | undefined;
|
|
3007
2998
|
}>>>>>>;
|
|
2999
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3000
|
+
transferCountIs?: number | undefined;
|
|
3001
|
+
}, {
|
|
3002
|
+
transferCountIs?: number | undefined;
|
|
3003
|
+
}, z.core.$ZodTypeInternals<{
|
|
3004
|
+
transferCountIs?: number | undefined;
|
|
3005
|
+
}, {
|
|
3006
|
+
transferCountIs?: number | undefined;
|
|
3007
|
+
}>>>>>>;
|
|
3008
3008
|
}, z.core.$strip>;
|
|
3009
3009
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
3010
3010
|
name: z.ZodString;
|
|
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4005
4005
|
}, {}, {
|
|
4006
4006
|
length: 256;
|
|
4007
4007
|
}>;
|
|
4008
|
-
}, "id" | "
|
|
4008
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
4009
4009
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4010
4010
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4011
4011
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4088,10 +4088,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4088
4088
|
}, z.core.$strip>>>;
|
|
4089
4089
|
}>, z.core.$strip>;
|
|
4090
4090
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4091
|
-
name: z.ZodString;
|
|
4092
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4093
4091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4092
|
+
name: z.ZodString;
|
|
4094
4093
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4094
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4095
4095
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4096
4096
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4097
4097
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -4123,10 +4123,10 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4123
4123
|
}>;
|
|
4124
4124
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4125
4125
|
id: z.ZodString;
|
|
4126
|
-
name: z.ZodString;
|
|
4127
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4128
4126
|
createdAt: z.ZodString;
|
|
4127
|
+
name: z.ZodString;
|
|
4129
4128
|
updatedAt: z.ZodString;
|
|
4129
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4130
4130
|
enabled: z.ZodBoolean;
|
|
4131
4131
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4132
4132
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "id" | "
|
|
4992
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "triggerId" | "conversationId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4993
4993
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4994
4994
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4995
4995
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5674,7 +5674,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
5674
5674
|
}, {}, {
|
|
5675
5675
|
length: 256;
|
|
5676
5676
|
}>;
|
|
5677
|
-
}, "id" | "
|
|
5677
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "enabled" | "messageTemplate" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds">, undefined>, undefined>;
|
|
5678
5678
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5679
5679
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5680
5680
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5717,10 +5717,10 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5717
5717
|
payload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5718
5718
|
}>, z.core.$strip>;
|
|
5719
5719
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5720
|
-
name: z.ZodString;
|
|
5721
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5722
5720
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5721
|
+
name: z.ZodString;
|
|
5723
5722
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5723
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5724
5724
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5725
5725
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5726
5726
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5733,10 +5733,10 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5733
5733
|
id: z.ZodOptional<z.ZodString>;
|
|
5734
5734
|
}, z.core.$strip>;
|
|
5735
5735
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5736
|
-
name: z.ZodString;
|
|
5737
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5738
5736
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5737
|
+
name: z.ZodString;
|
|
5739
5738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5739
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5740
5740
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5741
5741
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5742
5742
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6593,7 +6593,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
6593
6593
|
}, {}, {
|
|
6594
6594
|
length: 256;
|
|
6595
6595
|
}>;
|
|
6596
|
-
}, "id" | "
|
|
6596
|
+
}, "id" | "createdAt" | "name" | "updatedAt" | "agentId" | "projectId" | "tenantId" | "description" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6597
6597
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6598
6598
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6599
6599
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6624,10 +6624,10 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
6624
6624
|
id: z.ZodString;
|
|
6625
6625
|
}>, z.core.$strip>;
|
|
6626
6626
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
6627
|
-
name: z.ZodString;
|
|
6628
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6629
6627
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6628
|
+
name: z.ZodString;
|
|
6630
6629
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6630
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6631
6631
|
status: z.ZodOptional<z.ZodString>;
|
|
6632
6632
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6633
6633
|
scheduledTriggerId: z.ZodString;
|
|
@@ -6654,9 +6654,9 @@ type ScheduledWorkflowInsert = z.infer<typeof ScheduledWorkflowInsertSchema>;
|
|
|
6654
6654
|
type ScheduledWorkflowUpdate = z.infer<typeof ScheduledWorkflowUpdateSchema>;
|
|
6655
6655
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
6656
6656
|
pending: "pending";
|
|
6657
|
-
failed: "failed";
|
|
6658
6657
|
running: "running";
|
|
6659
6658
|
completed: "completed";
|
|
6659
|
+
failed: "failed";
|
|
6660
6660
|
cancelled: "cancelled";
|
|
6661
6661
|
}>;
|
|
6662
6662
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -6675,9 +6675,9 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6675
6675
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6676
6676
|
status: z.ZodEnum<{
|
|
6677
6677
|
pending: "pending";
|
|
6678
|
-
failed: "failed";
|
|
6679
6678
|
running: "running";
|
|
6680
6679
|
completed: "completed";
|
|
6680
|
+
failed: "failed";
|
|
6681
6681
|
cancelled: "cancelled";
|
|
6682
6682
|
}>;
|
|
6683
6683
|
}, {
|
|
@@ -6709,7 +6709,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6709
6709
|
tableName: "scheduled_trigger_invocations";
|
|
6710
6710
|
dataType: "string";
|
|
6711
6711
|
columnType: "PgVarchar";
|
|
6712
|
-
data: "pending" | "
|
|
6712
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6713
6713
|
driverParam: string;
|
|
6714
6714
|
notNull: true;
|
|
6715
6715
|
hasDefault: false;
|
|
@@ -6722,7 +6722,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6722
6722
|
generated: undefined;
|
|
6723
6723
|
}, {}, {
|
|
6724
6724
|
length: 50;
|
|
6725
|
-
$type: "pending" | "
|
|
6725
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6726
6726
|
}>;
|
|
6727
6727
|
scheduledFor: drizzle_orm_pg_core211.PgColumn<{
|
|
6728
6728
|
name: "scheduled_for";
|
|
@@ -6967,7 +6967,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6967
6967
|
tableName: "scheduled_trigger_invocations";
|
|
6968
6968
|
dataType: "string";
|
|
6969
6969
|
columnType: "PgVarchar";
|
|
6970
|
-
data: "pending" | "
|
|
6970
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6971
6971
|
driverParam: string;
|
|
6972
6972
|
notNull: true;
|
|
6973
6973
|
hasDefault: false;
|
|
@@ -6980,7 +6980,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6980
6980
|
generated: undefined;
|
|
6981
6981
|
}, {}, {
|
|
6982
6982
|
length: 50;
|
|
6983
|
-
$type: "pending" | "
|
|
6983
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6984
6984
|
}>;
|
|
6985
6985
|
scheduledFor: drizzle_orm_pg_core211.PgColumn<{
|
|
6986
6986
|
name: "scheduled_for";
|
|
@@ -7200,7 +7200,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
7200
7200
|
}, {}, {
|
|
7201
7201
|
length: 256;
|
|
7202
7202
|
}>;
|
|
7203
|
-
}, "id" | "
|
|
7203
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "status" | "scheduledTriggerId" | "conversationIds" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7204
7204
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7205
7205
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7206
7206
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -7236,9 +7236,9 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
|
|
|
7236
7236
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7237
7237
|
status: z.ZodEnum<{
|
|
7238
7238
|
pending: "pending";
|
|
7239
|
-
failed: "failed";
|
|
7240
7239
|
running: "running";
|
|
7241
7240
|
completed: "completed";
|
|
7241
|
+
failed: "failed";
|
|
7242
7242
|
cancelled: "cancelled";
|
|
7243
7243
|
}>;
|
|
7244
7244
|
}>, z.core.$strip>;
|
|
@@ -7804,9 +7804,9 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7804
7804
|
}>, z.core.$strip>;
|
|
7805
7805
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7806
7806
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7807
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7808
7807
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7809
7808
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7809
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7810
7810
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7811
7811
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7812
7812
|
type: z.ZodEnum<{
|
|
@@ -7819,8 +7819,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7819
7819
|
}, z.core.$strip>>>;
|
|
7820
7820
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7821
7821
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7822
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7823
7822
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7823
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7824
7824
|
}, z.core.$strip>;
|
|
7825
7825
|
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7826
7826
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -9369,11 +9369,11 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9369
9369
|
}>, z.core.$strip>;
|
|
9370
9370
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
9371
9371
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9372
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9373
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9374
9372
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9375
9373
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9374
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9376
9375
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9376
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9377
9377
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9378
9378
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9379
9379
|
type: z.ZodEnum<{
|
|
@@ -10908,8 +10908,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10908
10908
|
}, z.core.$strip>;
|
|
10909
10909
|
}>, z.core.$strip>;
|
|
10910
10910
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
10911
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10912
10911
|
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
10912
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10913
10913
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10914
10914
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10915
10915
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -12608,27 +12608,27 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12608
12608
|
id: z.ZodString;
|
|
12609
12609
|
}>, z.core.$strip>;
|
|
12610
12610
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
12611
|
-
name: z.ZodString;
|
|
12612
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12613
12611
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12612
|
+
name: z.ZodString;
|
|
12614
12613
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12614
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12615
12615
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12616
12616
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12617
12617
|
}, z.core.$strip>;
|
|
12618
12618
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
12619
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12620
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12621
12619
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12620
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12622
12621
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12622
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12623
12623
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
12624
12624
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12625
12625
|
}, z.core.$strip>;
|
|
12626
12626
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12627
12627
|
id: z.ZodString;
|
|
12628
|
-
name: z.ZodString;
|
|
12629
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12630
12628
|
createdAt: z.ZodString;
|
|
12629
|
+
name: z.ZodString;
|
|
12631
12630
|
updatedAt: z.ZodString;
|
|
12631
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12632
12632
|
isActive: z.ZodBoolean;
|
|
12633
12633
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12634
12634
|
}, z.core.$strip>;
|
|
@@ -14785,9 +14785,10 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14785
14785
|
id: z.ZodString;
|
|
14786
14786
|
}>, z.core.$strip>;
|
|
14787
14787
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14788
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
14788
14789
|
name: z.ZodString;
|
|
14790
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14789
14791
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14790
|
-
prompt: z.ZodString;
|
|
14791
14792
|
model: z.ZodType<{
|
|
14792
14793
|
model?: string | undefined;
|
|
14793
14794
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14801,15 +14802,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14801
14802
|
model?: string | undefined;
|
|
14802
14803
|
providerOptions?: Record<string, any> | undefined;
|
|
14803
14804
|
}>>;
|
|
14804
|
-
|
|
14805
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14805
|
+
prompt: z.ZodString;
|
|
14806
14806
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14807
14807
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14808
14808
|
}, z.core.$strip>;
|
|
14809
14809
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14810
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14810
14811
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14812
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14811
14813
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14812
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14813
14814
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14814
14815
|
model?: string | undefined;
|
|
14815
14816
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14823,8 +14824,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14823
14824
|
model?: string | undefined;
|
|
14824
14825
|
providerOptions?: Record<string, any> | undefined;
|
|
14825
14826
|
}>>>>;
|
|
14826
|
-
|
|
14827
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14827
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14828
14828
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14829
14829
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14830
14830
|
}, z.core.$strip>;
|
|
@@ -15082,13 +15082,13 @@ declare const DatasetApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
15082
15082
|
id: z.ZodString;
|
|
15083
15083
|
}>, z.core.$strip>;
|
|
15084
15084
|
declare const DatasetApiInsertSchema: z.ZodObject<{
|
|
15085
|
-
name: z.ZodString;
|
|
15086
15085
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15086
|
+
name: z.ZodString;
|
|
15087
15087
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15088
15088
|
}, z.core.$strip>;
|
|
15089
15089
|
declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
15090
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15091
15090
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15091
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15092
15092
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15093
15093
|
}, z.core.$strip>;
|
|
15094
15094
|
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -15722,8 +15722,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
15722
15722
|
}>>>>>>;
|
|
15723
15723
|
}, z.core.$strip>;
|
|
15724
15724
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
15725
|
-
id: z.ZodOptional<z.ZodString>;
|
|
15726
15725
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15726
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15727
15727
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15728
15728
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15729
15729
|
prompt: string;
|
|
@@ -15771,8 +15771,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
15771
15771
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
15772
15772
|
datasetRunId: z.ZodString;
|
|
15773
15773
|
items: z.ZodArray<z.ZodObject<{
|
|
15774
|
-
id: z.ZodOptional<z.ZodString>;
|
|
15775
15774
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15775
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15776
15776
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15777
15777
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15778
15778
|
prompt: string;
|
|
@@ -16182,17 +16182,17 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16182
16182
|
id: z.ZodString;
|
|
16183
16183
|
}>, z.core.$strip>;
|
|
16184
16184
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
16185
|
-
name: z.ZodString;
|
|
16186
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16187
16185
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16186
|
+
name: z.ZodString;
|
|
16188
16187
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16188
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16189
16189
|
datasetId: z.ZodString;
|
|
16190
16190
|
}, z.core.$strip>;
|
|
16191
16191
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
16192
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16193
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16194
16192
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16193
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16195
16194
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16195
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16196
16196
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16197
16197
|
}, z.core.$strip>;
|
|
16198
16198
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -16501,9 +16501,9 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
16501
16501
|
}>;
|
|
16502
16502
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
16503
16503
|
name: z.ZodString;
|
|
16504
|
-
description: z.ZodString;
|
|
16505
|
-
tenantId: z.ZodString;
|
|
16506
16504
|
projectId: z.ZodString;
|
|
16505
|
+
tenantId: z.ZodString;
|
|
16506
|
+
description: z.ZodString;
|
|
16507
16507
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16508
16508
|
content: z.ZodString;
|
|
16509
16509
|
}, {
|
|
@@ -16511,9 +16511,9 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
16511
16511
|
in: {};
|
|
16512
16512
|
}>;
|
|
16513
16513
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16514
|
-
description: z.ZodOptional<z.ZodString>;
|
|
16515
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16516
16514
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16515
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16516
|
+
description: z.ZodOptional<z.ZodString>;
|
|
16517
16517
|
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16518
16518
|
content: z.ZodOptional<z.ZodString>;
|
|
16519
16519
|
}, {
|
|
@@ -16533,9 +16533,9 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16533
16533
|
}>, z.core.$strip>;
|
|
16534
16534
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16535
16535
|
name: z.ZodString;
|
|
16536
|
-
description: z.ZodString;
|
|
16537
|
-
tenantId: z.ZodString;
|
|
16538
16536
|
projectId: z.ZodString;
|
|
16537
|
+
tenantId: z.ZodString;
|
|
16538
|
+
description: z.ZodString;
|
|
16539
16539
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16540
16540
|
content: z.ZodString;
|
|
16541
16541
|
}>, z.core.$strip>;
|
|
@@ -17659,7 +17659,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
17659
17659
|
}, {}, {
|
|
17660
17660
|
length: 256;
|
|
17661
17661
|
}>;
|
|
17662
|
-
}, "id" | "
|
|
17662
|
+
}, "id" | "createdAt" | "agentId" | "projectId" | "tenantId" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17663
17663
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17664
17664
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17665
17665
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18257,10 +18257,10 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
18257
18257
|
}>;
|
|
18258
18258
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
18259
18259
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18260
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18261
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18262
18260
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18261
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18263
18262
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18263
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18264
18264
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
18265
18265
|
[x: string]: unknown;
|
|
18266
18266
|
type: "object";
|
|
@@ -18694,10 +18694,10 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18694
18694
|
}, z.core.$strip>;
|
|
18695
18695
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18696
18696
|
id: z.ZodString;
|
|
18697
|
-
name: z.ZodString;
|
|
18698
|
-
description: z.ZodString;
|
|
18699
18697
|
createdAt: z.ZodString;
|
|
18698
|
+
name: z.ZodString;
|
|
18700
18699
|
updatedAt: z.ZodString;
|
|
18700
|
+
description: z.ZodString;
|
|
18701
18701
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18702
18702
|
content: z.ZodString;
|
|
18703
18703
|
subAgentSkillId: z.ZodString;
|
|
@@ -18771,19 +18771,19 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18771
18771
|
}>, z.core.$strip>;
|
|
18772
18772
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18773
18773
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18774
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18775
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18776
18774
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18775
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18777
18776
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18777
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18778
18778
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18779
18779
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18780
18780
|
}, z.core.$strip>;
|
|
18781
18781
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18782
18782
|
id: z.ZodString;
|
|
18783
|
+
createdAt: z.ZodString;
|
|
18783
18784
|
name: z.ZodString;
|
|
18785
|
+
updatedAt: z.ZodString;
|
|
18784
18786
|
description: z.ZodNullable<z.ZodString>;
|
|
18785
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18786
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18787
18787
|
models: z.ZodNullable<z.ZodType<{
|
|
18788
18788
|
base?: {
|
|
18789
18789
|
model?: string | undefined;
|
|
@@ -18837,6 +18837,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18837
18837
|
providerOptions?: Record<string, any> | undefined;
|
|
18838
18838
|
} | undefined;
|
|
18839
18839
|
}>>>;
|
|
18840
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18840
18841
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
18841
18842
|
stepCountIs?: number | undefined;
|
|
18842
18843
|
}, {
|
|
@@ -18846,15 +18847,14 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18846
18847
|
}, {
|
|
18847
18848
|
stepCountIs?: number | undefined;
|
|
18848
18849
|
}>>>;
|
|
18849
|
-
|
|
18850
|
-
updatedAt: z.ZodString;
|
|
18850
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18851
18851
|
type: z.ZodLiteral<"internal">;
|
|
18852
18852
|
}, z.core.$strip>, z.ZodObject<{
|
|
18853
18853
|
id: z.ZodString;
|
|
18854
|
-
name: z.ZodString;
|
|
18855
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18856
18854
|
createdAt: z.ZodString;
|
|
18855
|
+
name: z.ZodString;
|
|
18857
18856
|
updatedAt: z.ZodString;
|
|
18857
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18858
18858
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18859
18859
|
baseUrl: z.ZodString;
|
|
18860
18860
|
type: z.ZodLiteral<"external">;
|
|
@@ -19321,8 +19321,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19321
19321
|
}>;
|
|
19322
19322
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19323
19323
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19324
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19325
19324
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19325
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19326
19326
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19327
19327
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19328
19328
|
}, {
|
|
@@ -19331,10 +19331,10 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
19331
19331
|
}>;
|
|
19332
19332
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19333
19333
|
id: z.ZodString;
|
|
19334
|
-
name: z.ZodNullable<z.ZodString>;
|
|
19335
|
-
agentId: z.ZodString;
|
|
19336
19334
|
createdAt: z.ZodString;
|
|
19335
|
+
name: z.ZodNullable<z.ZodString>;
|
|
19337
19336
|
updatedAt: z.ZodString;
|
|
19337
|
+
agentId: z.ZodString;
|
|
19338
19338
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19339
19339
|
publicId: z.ZodString;
|
|
19340
19340
|
keyPrefix: z.ZodString;
|
|
@@ -19347,10 +19347,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19347
19347
|
data: z.ZodObject<{
|
|
19348
19348
|
apiKey: z.ZodObject<{
|
|
19349
19349
|
id: z.ZodString;
|
|
19350
|
-
name: z.ZodNullable<z.ZodString>;
|
|
19351
|
-
agentId: z.ZodString;
|
|
19352
19350
|
createdAt: z.ZodString;
|
|
19351
|
+
name: z.ZodNullable<z.ZodString>;
|
|
19353
19352
|
updatedAt: z.ZodString;
|
|
19353
|
+
agentId: z.ZodString;
|
|
19354
19354
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
19355
19355
|
publicId: z.ZodString;
|
|
19356
19356
|
keyPrefix: z.ZodString;
|
|
@@ -19363,10 +19363,10 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19363
19363
|
}, z.core.$strip>;
|
|
19364
19364
|
}, z.core.$strip>;
|
|
19365
19365
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
19366
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19367
|
-
agentId: z.ZodString;
|
|
19368
19366
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19367
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19369
19368
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19369
|
+
agentId: z.ZodString;
|
|
19370
19370
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19371
19371
|
}, {
|
|
19372
19372
|
out: {};
|
|
@@ -19374,8 +19374,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19374
19374
|
}>;
|
|
19375
19375
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19376
19376
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19377
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19378
19377
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19378
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19379
19379
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19380
19380
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19381
19381
|
}, {
|
|
@@ -19869,14 +19869,14 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
19869
19869
|
}>;
|
|
19870
19870
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
19871
19871
|
id: z.ZodString;
|
|
19872
|
-
name: z.ZodString;
|
|
19873
19872
|
createdAt: z.ZodString;
|
|
19873
|
+
name: z.ZodString;
|
|
19874
19874
|
updatedAt: z.ZodString;
|
|
19875
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
19876
19875
|
userId: z.ZodNullable<z.ZodString>;
|
|
19876
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19877
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
19877
19878
|
credentialStoreId: z.ZodString;
|
|
19878
19879
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19879
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
19880
19880
|
type: z.ZodEnum<{
|
|
19881
19881
|
readonly memory: "memory";
|
|
19882
19882
|
readonly keychain: "keychain";
|
|
@@ -20460,14 +20460,14 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20460
20460
|
}, z.core.$strip>;
|
|
20461
20461
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20462
20462
|
id: z.ZodString;
|
|
20463
|
-
name: z.ZodString;
|
|
20464
20463
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20464
|
+
name: z.ZodString;
|
|
20465
20465
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20466
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20467
20466
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20467
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20468
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20468
20469
|
credentialStoreId: z.ZodString;
|
|
20469
20470
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20470
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20471
20471
|
type: z.ZodEnum<{
|
|
20472
20472
|
readonly memory: "memory";
|
|
20473
20473
|
readonly keychain: "keychain";
|
|
@@ -20476,14 +20476,14 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20476
20476
|
}, z.core.$strip>;
|
|
20477
20477
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20478
20478
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20479
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20480
20479
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20480
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20481
20481
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20482
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20483
20482
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20483
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20484
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20484
20485
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20485
20486
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20486
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20487
20487
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20488
20488
|
readonly memory: "memory";
|
|
20489
20489
|
readonly keychain: "keychain";
|
|
@@ -20608,20 +20608,20 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20608
20608
|
declare const MCPToolConfigSchema: z.ZodObject<{
|
|
20609
20609
|
id: z.ZodString;
|
|
20610
20610
|
name: z.ZodString;
|
|
20611
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20612
20611
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
20612
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
20613
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
20613
20614
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20614
20615
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20615
20616
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20616
20617
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20617
20618
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
20618
|
-
|
|
20619
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20619
20620
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20620
20621
|
name: z.ZodString;
|
|
20621
20622
|
description: z.ZodOptional<z.ZodString>;
|
|
20622
20623
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20623
20624
|
}, z.core.$strip>>>;
|
|
20624
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
20625
20625
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20626
20626
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20627
20627
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -20643,14 +20643,14 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20643
20643
|
}, z.core.$strip>>;
|
|
20644
20644
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20645
20645
|
id: z.ZodString;
|
|
20646
|
-
name: z.ZodString;
|
|
20647
20646
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20647
|
+
name: z.ZodString;
|
|
20648
20648
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20649
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20650
20649
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20650
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20651
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20651
20652
|
credentialStoreId: z.ZodString;
|
|
20652
20653
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20653
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20654
20654
|
type: z.ZodEnum<{
|
|
20655
20655
|
readonly memory: "memory";
|
|
20656
20656
|
readonly keychain: "keychain";
|
|
@@ -20786,10 +20786,10 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20786
20786
|
}>, z.core.$strip>;
|
|
20787
20787
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20788
20788
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20789
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20790
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20791
20789
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20790
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20792
20791
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20792
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20793
20793
|
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>>>>>>>;
|
|
20794
20794
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20795
20795
|
type: z.ZodLiteral<"mcp">;
|
|
@@ -21187,11 +21187,11 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21187
21187
|
}>;
|
|
21188
21188
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21189
21189
|
id: z.ZodString;
|
|
21190
|
-
name: z.ZodString;
|
|
21191
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21192
|
-
agentId: z.ZodString;
|
|
21193
21190
|
createdAt: z.ZodString;
|
|
21191
|
+
name: z.ZodString;
|
|
21194
21192
|
updatedAt: z.ZodString;
|
|
21193
|
+
agentId: z.ZodString;
|
|
21194
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21195
21195
|
functionId: z.ZodString;
|
|
21196
21196
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
21197
21197
|
}, z.core.$strip>;
|
|
@@ -21208,11 +21208,11 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21208
21208
|
}>, z.core.$strip>;
|
|
21209
21209
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21210
21210
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21211
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21212
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21213
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21214
21211
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21212
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21215
21213
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21214
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21215
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21216
21216
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21217
21217
|
}, z.core.$strip>;
|
|
21218
21218
|
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -21981,14 +21981,14 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21981
21981
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
21982
21982
|
credential: z.ZodOptional<z.ZodObject<{
|
|
21983
21983
|
id: z.ZodString;
|
|
21984
|
-
name: z.ZodString;
|
|
21985
21984
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21985
|
+
name: z.ZodString;
|
|
21986
21986
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21987
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21988
21987
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21988
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21989
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21989
21990
|
credentialStoreId: z.ZodString;
|
|
21990
21991
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21991
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21992
21992
|
type: z.ZodEnum<{
|
|
21993
21993
|
readonly memory: "memory";
|
|
21994
21994
|
readonly keychain: "keychain";
|
|
@@ -22011,32 +22011,32 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22011
22011
|
}>;
|
|
22012
22012
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22013
22013
|
id: z.ZodOptional<z.ZodString>;
|
|
22014
|
-
tenantId: z.ZodString;
|
|
22015
|
-
projectId: z.ZodString;
|
|
22016
|
-
agentId: z.ZodString;
|
|
22017
22014
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22018
22015
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22016
|
+
agentId: z.ZodString;
|
|
22017
|
+
projectId: z.ZodString;
|
|
22018
|
+
tenantId: z.ZodString;
|
|
22019
22019
|
}, {
|
|
22020
22020
|
out: {};
|
|
22021
22021
|
in: {};
|
|
22022
22022
|
}>;
|
|
22023
22023
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22024
22024
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22025
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
22026
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
22027
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22028
22025
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22029
22026
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22027
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22028
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
22029
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22030
22030
|
}, {
|
|
22031
22031
|
out: {};
|
|
22032
22032
|
in: {};
|
|
22033
22033
|
}>;
|
|
22034
22034
|
declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
22035
22035
|
id: z.ZodString;
|
|
22036
|
-
createdAt: z.ZodString;
|
|
22037
|
-
updatedAt: z.ZodString;
|
|
22038
22036
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
22039
22037
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
22038
|
+
createdAt: z.ZodString;
|
|
22039
|
+
updatedAt: z.ZodString;
|
|
22040
22040
|
}, z.core.$strip>;
|
|
22041
22041
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
22042
22042
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -22537,8 +22537,8 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22537
22537
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22538
22538
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22539
22539
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22540
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22541
22540
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22541
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22542
22542
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22543
22543
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22544
22544
|
}, z.core.$strip>>>>>>;
|
|
@@ -24666,7 +24666,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24666
24666
|
}, {}, {
|
|
24667
24667
|
length: 256;
|
|
24668
24668
|
}>;
|
|
24669
|
-
}, "
|
|
24669
|
+
}, "type" | "id" | "createdAt" | "name" | "updatedAt" | "projectId" | "tenantId" | "description" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24670
24670
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24671
24671
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24672
24672
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24731,12 +24731,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24731
24731
|
id: z.ZodString;
|
|
24732
24732
|
}>, z.core.$strip>;
|
|
24733
24733
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24734
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24735
|
-
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24736
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24737
24734
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24735
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24738
24736
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24737
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24739
24738
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24739
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24740
24740
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24741
24741
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24742
24742
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24812,9 +24812,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24812
24812
|
}, z.core.$strip>;
|
|
24813
24813
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24814
24814
|
id: z.ZodString;
|
|
24815
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24815
24816
|
name: z.ZodString;
|
|
24817
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24816
24818
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24817
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24818
24819
|
models: z.ZodOptional<z.ZodObject<{
|
|
24819
24820
|
base: z.ZodOptional<z.ZodObject<{
|
|
24820
24821
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24838,8 +24839,7 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24838
24839
|
}, {
|
|
24839
24840
|
stepCountIs?: number | undefined;
|
|
24840
24841
|
}>>>>;
|
|
24841
|
-
|
|
24842
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24842
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24843
24843
|
type: z.ZodLiteral<"internal">;
|
|
24844
24844
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24845
24845
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24870,18 +24870,19 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24870
24870
|
}, z.core.$strip>]>>>;
|
|
24871
24871
|
}, z.core.$strip>;
|
|
24872
24872
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24873
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24873
24874
|
name: z.ZodString;
|
|
24875
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24874
24876
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24875
24877
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24876
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
24877
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24878
24878
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24879
24879
|
id: z.ZodString;
|
|
24880
24880
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24881
24881
|
id: z.ZodString;
|
|
24882
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
24882
24883
|
name: z.ZodString;
|
|
24884
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24883
24885
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24884
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24885
24886
|
models: z.ZodOptional<z.ZodObject<{
|
|
24886
24887
|
base: z.ZodOptional<z.ZodObject<{
|
|
24887
24888
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24905,8 +24906,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24905
24906
|
}, {
|
|
24906
24907
|
stepCountIs?: number | undefined;
|
|
24907
24908
|
}>>>>;
|
|
24908
|
-
|
|
24909
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24909
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24910
24910
|
type: z.ZodLiteral<"internal">;
|
|
24911
24911
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24912
24912
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25014,10 +25014,10 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25014
25014
|
executeCode: z.ZodString;
|
|
25015
25015
|
}, z.core.$strip>>>;
|
|
25016
25016
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25017
|
-
name: z.ZodString;
|
|
25018
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25019
25017
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25018
|
+
name: z.ZodString;
|
|
25020
25019
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25020
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25021
25021
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25022
25022
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25023
25023
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -25028,10 +25028,10 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25028
25028
|
id: z.ZodOptional<z.ZodString>;
|
|
25029
25029
|
}, z.core.$strip>>>;
|
|
25030
25030
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25031
|
-
name: z.ZodString;
|
|
25032
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25033
25031
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25032
|
+
name: z.ZodString;
|
|
25034
25033
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25034
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25035
25035
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25036
25036
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25037
25037
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25144,8 +25144,8 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25144
25144
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25145
25145
|
id: z.ZodString;
|
|
25146
25146
|
name: z.ZodString;
|
|
25147
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25148
25147
|
tenantId: z.ZodString;
|
|
25148
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25149
25149
|
models: z.ZodObject<{
|
|
25150
25150
|
base: z.ZodObject<{
|
|
25151
25151
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25195,7 +25195,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25195
25195
|
}>;
|
|
25196
25196
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25197
25197
|
id: z.ZodString;
|
|
25198
|
+
createdAt: z.ZodString;
|
|
25198
25199
|
name: z.ZodString;
|
|
25200
|
+
updatedAt: z.ZodString;
|
|
25199
25201
|
description: z.ZodNullable<z.ZodString>;
|
|
25200
25202
|
models: z.ZodNullable<z.ZodObject<{
|
|
25201
25203
|
base: z.ZodObject<{
|
|
@@ -25215,8 +25217,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25215
25217
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25216
25218
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25217
25219
|
}, z.core.$strip>>;
|
|
25218
|
-
createdAt: z.ZodString;
|
|
25219
|
-
updatedAt: z.ZodString;
|
|
25220
25220
|
}, {
|
|
25221
25221
|
out: {};
|
|
25222
25222
|
in: {};
|
|
@@ -25295,18 +25295,19 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25295
25295
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25296
25296
|
}, z.core.$strip>>;
|
|
25297
25297
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25298
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25298
25299
|
name: z.ZodString;
|
|
25300
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25299
25301
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25300
25302
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25301
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
25302
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25303
25303
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25304
|
id: z.ZodString;
|
|
25305
25305
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25306
25306
|
id: z.ZodString;
|
|
25307
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
25307
25308
|
name: z.ZodString;
|
|
25309
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25308
25310
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25309
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25310
25311
|
models: z.ZodOptional<z.ZodObject<{
|
|
25311
25312
|
base: z.ZodOptional<z.ZodObject<{
|
|
25312
25313
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25330,8 +25331,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25330
25331
|
}, {
|
|
25331
25332
|
stepCountIs?: number | undefined;
|
|
25332
25333
|
}>>>>;
|
|
25333
|
-
|
|
25334
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25334
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25335
25335
|
type: z.ZodLiteral<"internal">;
|
|
25336
25336
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25337
25337
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25439,10 +25439,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25439
25439
|
executeCode: z.ZodString;
|
|
25440
25440
|
}, z.core.$strip>>>;
|
|
25441
25441
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25442
|
-
name: z.ZodString;
|
|
25443
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25444
25442
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25443
|
+
name: z.ZodString;
|
|
25445
25444
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25445
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25446
25446
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25447
25447
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
25448
25448
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -25453,10 +25453,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25453
25453
|
id: z.ZodOptional<z.ZodString>;
|
|
25454
25454
|
}, z.core.$strip>>>;
|
|
25455
25455
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25456
|
-
name: z.ZodString;
|
|
25457
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25458
25456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25457
|
+
name: z.ZodString;
|
|
25459
25458
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25459
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25460
25460
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25461
25461
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25462
25462
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25570,9 +25570,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25570
25570
|
}, z.core.$strip>>>;
|
|
25571
25571
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25572
25572
|
name: z.ZodString;
|
|
25573
|
-
description: z.ZodString;
|
|
25574
|
-
tenantId: z.ZodString;
|
|
25575
25573
|
projectId: z.ZodString;
|
|
25574
|
+
tenantId: z.ZodString;
|
|
25575
|
+
description: z.ZodString;
|
|
25576
25576
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25577
25577
|
content: z.ZodString;
|
|
25578
25578
|
}>, z.core.$strip>>>;
|
|
@@ -25659,14 +25659,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25659
25659
|
}, z.core.$strip>>;
|
|
25660
25660
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25661
25661
|
id: z.ZodString;
|
|
25662
|
-
name: z.ZodString;
|
|
25663
25662
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25663
|
+
name: z.ZodString;
|
|
25664
25664
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25665
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25666
25665
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25666
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25667
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25667
25668
|
credentialStoreId: z.ZodString;
|
|
25668
25669
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25669
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25670
25670
|
type: z.ZodEnum<{
|
|
25671
25671
|
readonly memory: "memory";
|
|
25672
25672
|
readonly keychain: "keychain";
|
|
@@ -25681,9 +25681,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25681
25681
|
}>;
|
|
25682
25682
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25683
25683
|
id: z.ZodString;
|
|
25684
|
+
createdAt: z.ZodString;
|
|
25684
25685
|
name: z.ZodString;
|
|
25686
|
+
updatedAt: z.ZodString;
|
|
25685
25687
|
description: z.ZodNullable<z.ZodString>;
|
|
25686
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25687
25688
|
models: z.ZodNullable<z.ZodType<{
|
|
25688
25689
|
base?: {
|
|
25689
25690
|
model?: string | undefined;
|
|
@@ -25746,8 +25747,7 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25746
25747
|
}, {
|
|
25747
25748
|
stepCountIs?: number | undefined;
|
|
25748
25749
|
}>>>;
|
|
25749
|
-
|
|
25750
|
-
updatedAt: z.ZodString;
|
|
25750
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25751
25751
|
type: z.ZodLiteral<"internal">;
|
|
25752
25752
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25753
25753
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25774,9 +25774,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25774
25774
|
}, z.core.$strip>;
|
|
25775
25775
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25776
25776
|
id: z.ZodString;
|
|
25777
|
+
createdAt: z.ZodString;
|
|
25777
25778
|
name: z.ZodString;
|
|
25779
|
+
updatedAt: z.ZodString;
|
|
25778
25780
|
description: z.ZodNullable<z.ZodString>;
|
|
25779
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25780
25781
|
models: z.ZodNullable<z.ZodType<{
|
|
25781
25782
|
base?: {
|
|
25782
25783
|
model?: string | undefined;
|
|
@@ -25839,8 +25840,7 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25839
25840
|
}, {
|
|
25840
25841
|
stepCountIs?: number | undefined;
|
|
25841
25842
|
}>>>;
|
|
25842
|
-
|
|
25843
|
-
updatedAt: z.ZodString;
|
|
25843
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25844
25844
|
type: z.ZodLiteral<"internal">;
|
|
25845
25845
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25846
25846
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25873,17 +25873,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25873
25873
|
}, z.core.$strip>;
|
|
25874
25874
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25875
25875
|
id: z.ZodString;
|
|
25876
|
+
createdAt: z.ZodString;
|
|
25876
25877
|
name: z.ZodString;
|
|
25878
|
+
updatedAt: z.ZodString;
|
|
25877
25879
|
description: z.ZodNullable<z.ZodString>;
|
|
25878
25880
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25879
|
-
createdAt: z.ZodString;
|
|
25880
|
-
updatedAt: z.ZodString;
|
|
25881
25881
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25882
25882
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25883
25883
|
id: z.ZodString;
|
|
25884
|
+
createdAt: z.ZodString;
|
|
25884
25885
|
name: z.ZodString;
|
|
25886
|
+
updatedAt: z.ZodString;
|
|
25885
25887
|
description: z.ZodNullable<z.ZodString>;
|
|
25886
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25887
25888
|
models: z.ZodNullable<z.ZodType<{
|
|
25888
25889
|
base?: {
|
|
25889
25890
|
model?: string | undefined;
|
|
@@ -25946,8 +25947,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25946
25947
|
}, {
|
|
25947
25948
|
stepCountIs?: number | undefined;
|
|
25948
25949
|
}>>>;
|
|
25949
|
-
|
|
25950
|
-
updatedAt: z.ZodString;
|
|
25950
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25951
25951
|
type: z.ZodLiteral<"internal">;
|
|
25952
25952
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25953
25953
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26019,11 +26019,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26019
26019
|
}, z.core.$strip>>>;
|
|
26020
26020
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26021
26021
|
id: z.ZodString;
|
|
26022
|
-
name: z.ZodString;
|
|
26023
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26024
|
-
agentId: z.ZodString;
|
|
26025
26022
|
createdAt: z.ZodString;
|
|
26023
|
+
name: z.ZodString;
|
|
26026
26024
|
updatedAt: z.ZodString;
|
|
26025
|
+
agentId: z.ZodString;
|
|
26026
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26027
26027
|
functionId: z.ZodString;
|
|
26028
26028
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26029
26029
|
}, z.core.$strip>>>;
|
|
@@ -26058,10 +26058,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26058
26058
|
}>, z.core.$strip>>>;
|
|
26059
26059
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26060
26060
|
id: z.ZodString;
|
|
26061
|
-
createdAt: z.ZodString;
|
|
26062
|
-
updatedAt: z.ZodString;
|
|
26063
26061
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26064
26062
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26063
|
+
createdAt: z.ZodString;
|
|
26064
|
+
updatedAt: z.ZodString;
|
|
26065
26065
|
}, z.core.$strip>>;
|
|
26066
26066
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26067
26067
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26099,11 +26099,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26099
26099
|
}, z.core.$strip>;
|
|
26100
26100
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26101
26101
|
id: z.ZodString;
|
|
26102
|
+
createdAt: z.ZodString;
|
|
26102
26103
|
name: z.ZodString;
|
|
26104
|
+
updatedAt: z.ZodString;
|
|
26103
26105
|
description: z.ZodNullable<z.ZodString>;
|
|
26104
26106
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26105
|
-
createdAt: z.ZodString;
|
|
26106
|
-
updatedAt: z.ZodString;
|
|
26107
26107
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26108
26108
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26109
26109
|
createdAt: z.ZodString;
|
|
@@ -26152,11 +26152,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26152
26152
|
}, z.core.$strip>>>;
|
|
26153
26153
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26154
26154
|
id: z.ZodString;
|
|
26155
|
-
name: z.ZodString;
|
|
26156
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26157
|
-
agentId: z.ZodString;
|
|
26158
26155
|
createdAt: z.ZodString;
|
|
26156
|
+
name: z.ZodString;
|
|
26159
26157
|
updatedAt: z.ZodString;
|
|
26158
|
+
agentId: z.ZodString;
|
|
26159
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26160
26160
|
functionId: z.ZodString;
|
|
26161
26161
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26162
26162
|
}, z.core.$strip>>>;
|
|
@@ -26191,10 +26191,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26191
26191
|
}>, z.core.$strip>>>;
|
|
26192
26192
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26193
26193
|
id: z.ZodString;
|
|
26194
|
-
createdAt: z.ZodString;
|
|
26195
|
-
updatedAt: z.ZodString;
|
|
26196
26194
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26197
26195
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26196
|
+
createdAt: z.ZodString;
|
|
26197
|
+
updatedAt: z.ZodString;
|
|
26198
26198
|
}, z.core.$strip>>;
|
|
26199
26199
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26200
26200
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26231,9 +26231,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26231
26231
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26232
26232
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26233
26233
|
id: z.ZodString;
|
|
26234
|
+
createdAt: z.ZodString;
|
|
26234
26235
|
name: z.ZodString;
|
|
26236
|
+
updatedAt: z.ZodString;
|
|
26235
26237
|
description: z.ZodNullable<z.ZodString>;
|
|
26236
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26237
26238
|
models: z.ZodNullable<z.ZodType<{
|
|
26238
26239
|
base?: {
|
|
26239
26240
|
model?: string | undefined;
|
|
@@ -26296,8 +26297,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26296
26297
|
}, {
|
|
26297
26298
|
stepCountIs?: number | undefined;
|
|
26298
26299
|
}>>>;
|
|
26299
|
-
|
|
26300
|
-
updatedAt: z.ZodString;
|
|
26300
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26301
26301
|
type: z.ZodLiteral<"internal">;
|
|
26302
26302
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26303
26303
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26331,7 +26331,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26331
26331
|
}, z.core.$strip>;
|
|
26332
26332
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26333
26333
|
id: z.ZodString;
|
|
26334
|
+
createdAt: z.ZodString;
|
|
26334
26335
|
name: z.ZodString;
|
|
26336
|
+
updatedAt: z.ZodString;
|
|
26335
26337
|
description: z.ZodNullable<z.ZodString>;
|
|
26336
26338
|
models: z.ZodNullable<z.ZodObject<{
|
|
26337
26339
|
base: z.ZodObject<{
|
|
@@ -26351,21 +26353,20 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26351
26353
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26352
26354
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
26353
26355
|
}, z.core.$strip>>;
|
|
26354
|
-
createdAt: z.ZodString;
|
|
26355
|
-
updatedAt: z.ZodString;
|
|
26356
26356
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26357
26357
|
id: z.ZodString;
|
|
26358
|
+
createdAt: z.ZodString;
|
|
26358
26359
|
name: z.ZodString;
|
|
26360
|
+
updatedAt: z.ZodString;
|
|
26359
26361
|
description: z.ZodNullable<z.ZodString>;
|
|
26360
26362
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26361
|
-
createdAt: z.ZodString;
|
|
26362
|
-
updatedAt: z.ZodString;
|
|
26363
26363
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26364
26364
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26365
26365
|
id: z.ZodString;
|
|
26366
|
+
createdAt: z.ZodString;
|
|
26366
26367
|
name: z.ZodString;
|
|
26368
|
+
updatedAt: z.ZodString;
|
|
26367
26369
|
description: z.ZodNullable<z.ZodString>;
|
|
26368
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26369
26370
|
models: z.ZodNullable<z.ZodType<{
|
|
26370
26371
|
base?: {
|
|
26371
26372
|
model?: string | undefined;
|
|
@@ -26428,8 +26429,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26428
26429
|
}, {
|
|
26429
26430
|
stepCountIs?: number | undefined;
|
|
26430
26431
|
}>>>;
|
|
26431
|
-
|
|
26432
|
-
updatedAt: z.ZodString;
|
|
26432
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26433
26433
|
type: z.ZodLiteral<"internal">;
|
|
26434
26434
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26435
26435
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26501,11 +26501,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26501
26501
|
}, z.core.$strip>>>;
|
|
26502
26502
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26503
26503
|
id: z.ZodString;
|
|
26504
|
-
name: z.ZodString;
|
|
26505
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26506
|
-
agentId: z.ZodString;
|
|
26507
26504
|
createdAt: z.ZodString;
|
|
26505
|
+
name: z.ZodString;
|
|
26508
26506
|
updatedAt: z.ZodString;
|
|
26507
|
+
agentId: z.ZodString;
|
|
26508
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26509
26509
|
functionId: z.ZodString;
|
|
26510
26510
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26511
26511
|
}, z.core.$strip>>>;
|
|
@@ -26540,10 +26540,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26540
26540
|
}>, z.core.$strip>>>;
|
|
26541
26541
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26542
26542
|
id: z.ZodString;
|
|
26543
|
-
createdAt: z.ZodString;
|
|
26544
|
-
updatedAt: z.ZodString;
|
|
26545
26543
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
26546
26544
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
26545
|
+
createdAt: z.ZodString;
|
|
26546
|
+
updatedAt: z.ZodString;
|
|
26547
26547
|
}, z.core.$strip>>;
|
|
26548
26548
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26549
26549
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26610,11 +26610,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26610
26610
|
}>, z.core.$strip>>;
|
|
26611
26611
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26612
26612
|
id: z.ZodString;
|
|
26613
|
-
name: z.ZodString;
|
|
26614
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26615
|
-
agentId: z.ZodString;
|
|
26616
26613
|
createdAt: z.ZodString;
|
|
26614
|
+
name: z.ZodString;
|
|
26617
26615
|
updatedAt: z.ZodString;
|
|
26616
|
+
agentId: z.ZodString;
|
|
26617
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26618
26618
|
functionId: z.ZodString;
|
|
26619
26619
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
26620
26620
|
}, z.core.$strip>>>;
|
|
@@ -26758,14 +26758,14 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26758
26758
|
}, z.core.$strip>>;
|
|
26759
26759
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26760
26760
|
id: z.ZodString;
|
|
26761
|
-
name: z.ZodString;
|
|
26762
26761
|
createdAt: z.ZodString;
|
|
26762
|
+
name: z.ZodString;
|
|
26763
26763
|
updatedAt: z.ZodString;
|
|
26764
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
26765
26764
|
userId: z.ZodNullable<z.ZodString>;
|
|
26765
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26766
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26766
26767
|
credentialStoreId: z.ZodString;
|
|
26767
26768
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26768
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26769
26769
|
type: z.ZodEnum<{
|
|
26770
26770
|
readonly memory: "memory";
|
|
26771
26771
|
readonly keychain: "keychain";
|
|
@@ -27353,7 +27353,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27353
27353
|
}>;
|
|
27354
27354
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27355
27355
|
id: z.ZodString;
|
|
27356
|
+
createdAt: z.ZodString;
|
|
27356
27357
|
name: z.ZodString;
|
|
27358
|
+
updatedAt: z.ZodString;
|
|
27357
27359
|
description: z.ZodNullable<z.ZodString>;
|
|
27358
27360
|
models: z.ZodNullable<z.ZodObject<{
|
|
27359
27361
|
base: z.ZodObject<{
|
|
@@ -27373,8 +27375,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27373
27375
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27374
27376
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
27375
27377
|
}, z.core.$strip>>;
|
|
27376
|
-
createdAt: z.ZodString;
|
|
27377
|
-
updatedAt: z.ZodString;
|
|
27378
27378
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
27379
27379
|
createdAt: z.ZodString;
|
|
27380
27380
|
updatedAt: z.ZodString;
|
|
@@ -27406,11 +27406,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27406
27406
|
}>, z.core.$strip>>;
|
|
27407
27407
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27408
27408
|
id: z.ZodString;
|
|
27409
|
-
name: z.ZodString;
|
|
27410
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27411
|
-
agentId: z.ZodString;
|
|
27412
27409
|
createdAt: z.ZodString;
|
|
27410
|
+
name: z.ZodString;
|
|
27413
27411
|
updatedAt: z.ZodString;
|
|
27412
|
+
agentId: z.ZodString;
|
|
27413
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27414
27414
|
functionId: z.ZodString;
|
|
27415
27415
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
27416
27416
|
}, z.core.$strip>>>;
|
|
@@ -27554,14 +27554,14 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27554
27554
|
}, z.core.$strip>>;
|
|
27555
27555
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27556
27556
|
id: z.ZodString;
|
|
27557
|
-
name: z.ZodString;
|
|
27558
27557
|
createdAt: z.ZodString;
|
|
27558
|
+
name: z.ZodString;
|
|
27559
27559
|
updatedAt: z.ZodString;
|
|
27560
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
27561
27560
|
userId: z.ZodNullable<z.ZodString>;
|
|
27561
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27562
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27562
27563
|
credentialStoreId: z.ZodString;
|
|
27563
27564
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27564
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27565
27565
|
type: z.ZodEnum<{
|
|
27566
27566
|
readonly memory: "memory";
|
|
27567
27567
|
readonly keychain: "keychain";
|
|
@@ -28145,11 +28145,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28145
28145
|
}, z.core.$strip>>>;
|
|
28146
28146
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28147
28147
|
id: z.ZodString;
|
|
28148
|
+
createdAt: z.ZodString;
|
|
28148
28149
|
name: z.ZodString;
|
|
28150
|
+
updatedAt: z.ZodString;
|
|
28149
28151
|
description: z.ZodNullable<z.ZodString>;
|
|
28150
28152
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28151
|
-
createdAt: z.ZodString;
|
|
28152
|
-
updatedAt: z.ZodString;
|
|
28153
28153
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28154
28154
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28155
28155
|
createdAt: z.ZodString;
|
|
@@ -28198,11 +28198,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28198
28198
|
}, z.core.$strip>>>;
|
|
28199
28199
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28200
28200
|
id: z.ZodString;
|
|
28201
|
-
name: z.ZodString;
|
|
28202
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28203
|
-
agentId: z.ZodString;
|
|
28204
28201
|
createdAt: z.ZodString;
|
|
28202
|
+
name: z.ZodString;
|
|
28205
28203
|
updatedAt: z.ZodString;
|
|
28204
|
+
agentId: z.ZodString;
|
|
28205
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28206
28206
|
functionId: z.ZodString;
|
|
28207
28207
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
28208
28208
|
}, z.core.$strip>>>;
|
|
@@ -28237,10 +28237,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28237
28237
|
}>, z.core.$strip>>>;
|
|
28238
28238
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28239
28239
|
id: z.ZodString;
|
|
28240
|
-
createdAt: z.ZodString;
|
|
28241
|
-
updatedAt: z.ZodString;
|
|
28242
28240
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28243
28241
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28242
|
+
createdAt: z.ZodString;
|
|
28243
|
+
updatedAt: z.ZodString;
|
|
28244
28244
|
}, z.core.$strip>>;
|
|
28245
28245
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
28246
28246
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28277,9 +28277,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28277
28277
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28278
28278
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28279
28279
|
id: z.ZodString;
|
|
28280
|
+
createdAt: z.ZodString;
|
|
28280
28281
|
name: z.ZodString;
|
|
28282
|
+
updatedAt: z.ZodString;
|
|
28281
28283
|
description: z.ZodNullable<z.ZodString>;
|
|
28282
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28283
28284
|
models: z.ZodNullable<z.ZodType<{
|
|
28284
28285
|
base?: {
|
|
28285
28286
|
model?: string | undefined;
|
|
@@ -28342,8 +28343,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28342
28343
|
}, {
|
|
28343
28344
|
stepCountIs?: number | undefined;
|
|
28344
28345
|
}>>>;
|
|
28345
|
-
|
|
28346
|
-
updatedAt: z.ZodString;
|
|
28346
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28347
28347
|
type: z.ZodLiteral<"internal">;
|
|
28348
28348
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28349
28349
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28382,7 +28382,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28382
28382
|
declare const ProjectResponse: z.ZodObject<{
|
|
28383
28383
|
data: z.ZodObject<{
|
|
28384
28384
|
id: z.ZodString;
|
|
28385
|
+
createdAt: z.ZodString;
|
|
28385
28386
|
name: z.ZodString;
|
|
28387
|
+
updatedAt: z.ZodString;
|
|
28386
28388
|
description: z.ZodNullable<z.ZodString>;
|
|
28387
28389
|
models: z.ZodNullable<z.ZodObject<{
|
|
28388
28390
|
base: z.ZodObject<{
|
|
@@ -28402,8 +28404,6 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
28402
28404
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28403
28405
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
28404
28406
|
}, z.core.$strip>>;
|
|
28405
|
-
createdAt: z.ZodString;
|
|
28406
|
-
updatedAt: z.ZodString;
|
|
28407
28407
|
}, {
|
|
28408
28408
|
out: {};
|
|
28409
28409
|
in: {};
|
|
@@ -28634,19 +28634,19 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
28634
28634
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
28635
28635
|
data: z.ZodObject<{
|
|
28636
28636
|
id: z.ZodString;
|
|
28637
|
-
createdAt: z.ZodString;
|
|
28638
|
-
updatedAt: z.ZodString;
|
|
28639
28637
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
28640
28638
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
28639
|
+
createdAt: z.ZodString;
|
|
28640
|
+
updatedAt: z.ZodString;
|
|
28641
28641
|
}, z.core.$strip>;
|
|
28642
28642
|
}, z.core.$strip>;
|
|
28643
28643
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28644
28644
|
data: z.ZodObject<{
|
|
28645
28645
|
id: z.ZodString;
|
|
28646
|
-
name: z.ZodNullable<z.ZodString>;
|
|
28647
|
-
agentId: z.ZodString;
|
|
28648
28646
|
createdAt: z.ZodString;
|
|
28647
|
+
name: z.ZodNullable<z.ZodString>;
|
|
28649
28648
|
updatedAt: z.ZodString;
|
|
28649
|
+
agentId: z.ZodString;
|
|
28650
28650
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
28651
28651
|
publicId: z.ZodString;
|
|
28652
28652
|
keyPrefix: z.ZodString;
|
|
@@ -28659,14 +28659,14 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28659
28659
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28660
28660
|
data: z.ZodObject<{
|
|
28661
28661
|
id: z.ZodString;
|
|
28662
|
-
name: z.ZodString;
|
|
28663
28662
|
createdAt: z.ZodString;
|
|
28663
|
+
name: z.ZodString;
|
|
28664
28664
|
updatedAt: z.ZodString;
|
|
28665
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
28666
28665
|
userId: z.ZodNullable<z.ZodString>;
|
|
28666
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28667
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28667
28668
|
credentialStoreId: z.ZodString;
|
|
28668
28669
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28669
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28670
28670
|
type: z.ZodEnum<{
|
|
28671
28671
|
readonly memory: "memory";
|
|
28672
28672
|
readonly keychain: "keychain";
|
|
@@ -29264,11 +29264,11 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29264
29264
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29265
29265
|
data: z.ZodObject<{
|
|
29266
29266
|
id: z.ZodString;
|
|
29267
|
-
name: z.ZodString;
|
|
29268
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29269
|
-
agentId: z.ZodString;
|
|
29270
29267
|
createdAt: z.ZodString;
|
|
29268
|
+
name: z.ZodString;
|
|
29271
29269
|
updatedAt: z.ZodString;
|
|
29270
|
+
agentId: z.ZodString;
|
|
29271
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29272
29272
|
functionId: z.ZodString;
|
|
29273
29273
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
29274
29274
|
}, z.core.$strip>;
|
|
@@ -29501,7 +29501,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29501
29501
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29502
29502
|
data: z.ZodArray<z.ZodObject<{
|
|
29503
29503
|
id: z.ZodString;
|
|
29504
|
+
createdAt: z.ZodString;
|
|
29504
29505
|
name: z.ZodString;
|
|
29506
|
+
updatedAt: z.ZodString;
|
|
29505
29507
|
description: z.ZodNullable<z.ZodString>;
|
|
29506
29508
|
models: z.ZodNullable<z.ZodObject<{
|
|
29507
29509
|
base: z.ZodObject<{
|
|
@@ -29521,8 +29523,6 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
29521
29523
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29522
29524
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
29523
29525
|
}, z.core.$strip>>;
|
|
29524
|
-
createdAt: z.ZodString;
|
|
29525
|
-
updatedAt: z.ZodString;
|
|
29526
29526
|
}, {
|
|
29527
29527
|
out: {};
|
|
29528
29528
|
in: {};
|
|
@@ -29777,10 +29777,10 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
29777
29777
|
declare const ContextConfigListResponse: z.ZodObject<{
|
|
29778
29778
|
data: z.ZodArray<z.ZodObject<{
|
|
29779
29779
|
id: z.ZodString;
|
|
29780
|
-
createdAt: z.ZodString;
|
|
29781
|
-
updatedAt: z.ZodString;
|
|
29782
29780
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
29783
29781
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
29782
|
+
createdAt: z.ZodString;
|
|
29783
|
+
updatedAt: z.ZodString;
|
|
29784
29784
|
}, z.core.$strip>>;
|
|
29785
29785
|
pagination: z.ZodObject<{
|
|
29786
29786
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29792,10 +29792,10 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29792
29792
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29793
29793
|
data: z.ZodArray<z.ZodObject<{
|
|
29794
29794
|
id: z.ZodString;
|
|
29795
|
-
name: z.ZodNullable<z.ZodString>;
|
|
29796
|
-
agentId: z.ZodString;
|
|
29797
29795
|
createdAt: z.ZodString;
|
|
29796
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29798
29797
|
updatedAt: z.ZodString;
|
|
29798
|
+
agentId: z.ZodString;
|
|
29799
29799
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
29800
29800
|
publicId: z.ZodString;
|
|
29801
29801
|
keyPrefix: z.ZodString;
|
|
@@ -29814,14 +29814,14 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29814
29814
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29815
29815
|
data: z.ZodArray<z.ZodObject<{
|
|
29816
29816
|
id: z.ZodString;
|
|
29817
|
-
name: z.ZodString;
|
|
29818
29817
|
createdAt: z.ZodString;
|
|
29818
|
+
name: z.ZodString;
|
|
29819
29819
|
updatedAt: z.ZodString;
|
|
29820
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
29821
29820
|
userId: z.ZodNullable<z.ZodString>;
|
|
29821
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29822
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29822
29823
|
credentialStoreId: z.ZodString;
|
|
29823
29824
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29824
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29825
29825
|
type: z.ZodEnum<{
|
|
29826
29826
|
readonly memory: "memory";
|
|
29827
29827
|
readonly keychain: "keychain";
|
|
@@ -30431,11 +30431,11 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30431
30431
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30432
30432
|
data: z.ZodArray<z.ZodObject<{
|
|
30433
30433
|
id: z.ZodString;
|
|
30434
|
-
name: z.ZodString;
|
|
30435
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30436
|
-
agentId: z.ZodString;
|
|
30437
30434
|
createdAt: z.ZodString;
|
|
30435
|
+
name: z.ZodString;
|
|
30438
30436
|
updatedAt: z.ZodString;
|
|
30437
|
+
agentId: z.ZodString;
|
|
30438
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30439
30439
|
functionId: z.ZodString;
|
|
30440
30440
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
30441
30441
|
}, z.core.$strip>>;
|
|
@@ -30748,10 +30748,10 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30748
30748
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30749
30749
|
data: z.ZodObject<{
|
|
30750
30750
|
id: z.ZodString;
|
|
30751
|
-
name: z.ZodString;
|
|
30752
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30753
30751
|
createdAt: z.ZodString;
|
|
30752
|
+
name: z.ZodString;
|
|
30754
30753
|
updatedAt: z.ZodString;
|
|
30754
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30755
30755
|
enabled: z.ZodBoolean;
|
|
30756
30756
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30757
30757
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -30809,10 +30809,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30809
30809
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30810
30810
|
data: z.ZodArray<z.ZodObject<{
|
|
30811
30811
|
id: z.ZodString;
|
|
30812
|
-
name: z.ZodString;
|
|
30813
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30814
30812
|
createdAt: z.ZodString;
|
|
30813
|
+
name: z.ZodString;
|
|
30815
30814
|
updatedAt: z.ZodString;
|
|
30815
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30816
30816
|
enabled: z.ZodBoolean;
|
|
30817
30817
|
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30818
30818
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
@@ -30875,10 +30875,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30875
30875
|
}, z.core.$strip>;
|
|
30876
30876
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30877
30877
|
id: z.ZodString;
|
|
30878
|
-
name: z.ZodString;
|
|
30879
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30880
30878
|
createdAt: z.ZodString;
|
|
30879
|
+
name: z.ZodString;
|
|
30881
30880
|
updatedAt: z.ZodString;
|
|
30881
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30882
30882
|
enabled: z.ZodBoolean;
|
|
30883
30883
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30884
30884
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
@@ -30890,8 +30890,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30890
30890
|
timeoutSeconds: z.ZodNumber;
|
|
30891
30891
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30892
30892
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30893
|
-
failed: "failed";
|
|
30894
30893
|
completed: "completed";
|
|
30894
|
+
failed: "failed";
|
|
30895
30895
|
}>>;
|
|
30896
30896
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30897
30897
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30948,10 +30948,10 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30948
30948
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
30949
30949
|
data: z.ZodArray<z.ZodObject<{
|
|
30950
30950
|
id: z.ZodString;
|
|
30951
|
-
name: z.ZodString;
|
|
30952
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30953
30951
|
createdAt: z.ZodString;
|
|
30952
|
+
name: z.ZodString;
|
|
30954
30953
|
updatedAt: z.ZodString;
|
|
30954
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30955
30955
|
enabled: z.ZodBoolean;
|
|
30956
30956
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30957
30957
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
@@ -30963,8 +30963,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30963
30963
|
timeoutSeconds: z.ZodNumber;
|
|
30964
30964
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30965
30965
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30966
|
-
failed: "failed";
|
|
30967
30966
|
completed: "completed";
|
|
30967
|
+
failed: "failed";
|
|
30968
30968
|
}>>;
|
|
30969
30969
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30970
30970
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30993,9 +30993,9 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30993
30993
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30994
30994
|
status: z.ZodEnum<{
|
|
30995
30995
|
pending: "pending";
|
|
30996
|
-
failed: "failed";
|
|
30997
30996
|
running: "running";
|
|
30998
30997
|
completed: "completed";
|
|
30998
|
+
failed: "failed";
|
|
30999
30999
|
cancelled: "cancelled";
|
|
31000
31000
|
}>;
|
|
31001
31001
|
}>, z.core.$strip>;
|
|
@@ -31017,9 +31017,9 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31017
31017
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31018
31018
|
status: z.ZodEnum<{
|
|
31019
31019
|
pending: "pending";
|
|
31020
|
-
failed: "failed";
|
|
31021
31020
|
running: "running";
|
|
31022
31021
|
completed: "completed";
|
|
31022
|
+
failed: "failed";
|
|
31023
31023
|
cancelled: "cancelled";
|
|
31024
31024
|
}>;
|
|
31025
31025
|
}>, z.core.$strip>>;
|
|
@@ -31105,10 +31105,10 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
31105
31105
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
31106
31106
|
data: z.ZodArray<z.ZodObject<{
|
|
31107
31107
|
id: z.ZodString;
|
|
31108
|
-
name: z.ZodString;
|
|
31109
|
-
description: z.ZodString;
|
|
31110
31108
|
createdAt: z.ZodString;
|
|
31109
|
+
name: z.ZodString;
|
|
31111
31110
|
updatedAt: z.ZodString;
|
|
31111
|
+
description: z.ZodString;
|
|
31112
31112
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31113
31113
|
content: z.ZodString;
|
|
31114
31114
|
subAgentSkillId: z.ZodString;
|
|
@@ -31141,18 +31141,19 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31141
31141
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31142
31142
|
}, z.core.$strip>>;
|
|
31143
31143
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31144
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31144
31145
|
name: z.ZodString;
|
|
31146
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31145
31147
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31146
31148
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31147
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
31148
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31149
31149
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31150
31150
|
id: z.ZodString;
|
|
31151
31151
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31152
31152
|
id: z.ZodString;
|
|
31153
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
31153
31154
|
name: z.ZodString;
|
|
31155
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31154
31156
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31155
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31156
31157
|
models: z.ZodOptional<z.ZodObject<{
|
|
31157
31158
|
base: z.ZodOptional<z.ZodObject<{
|
|
31158
31159
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31176,8 +31177,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31176
31177
|
}, {
|
|
31177
31178
|
stepCountIs?: number | undefined;
|
|
31178
31179
|
}>>>>;
|
|
31179
|
-
|
|
31180
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31180
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31181
31181
|
type: z.ZodLiteral<"internal">;
|
|
31182
31182
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31183
31183
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31285,10 +31285,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31285
31285
|
executeCode: z.ZodString;
|
|
31286
31286
|
}, z.core.$strip>>>;
|
|
31287
31287
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31288
|
-
name: z.ZodString;
|
|
31289
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31290
31288
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31289
|
+
name: z.ZodString;
|
|
31291
31290
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31291
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31292
31292
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31293
31293
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31294
31294
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -31299,10 +31299,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31299
31299
|
id: z.ZodOptional<z.ZodString>;
|
|
31300
31300
|
}, z.core.$strip>>>;
|
|
31301
31301
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31302
|
-
name: z.ZodString;
|
|
31303
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31304
31302
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31303
|
+
name: z.ZodString;
|
|
31305
31304
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31305
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31306
31306
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31307
31307
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31308
31308
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31416,9 +31416,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31416
31416
|
}, z.core.$strip>>>;
|
|
31417
31417
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31418
31418
|
name: z.ZodString;
|
|
31419
|
-
description: z.ZodString;
|
|
31420
|
-
tenantId: z.ZodString;
|
|
31421
31419
|
projectId: z.ZodString;
|
|
31420
|
+
tenantId: z.ZodString;
|
|
31421
|
+
description: z.ZodString;
|
|
31422
31422
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31423
31423
|
content: z.ZodString;
|
|
31424
31424
|
}>, z.core.$strip>>>;
|
|
@@ -31505,14 +31505,14 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31505
31505
|
}, z.core.$strip>>;
|
|
31506
31506
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31507
31507
|
id: z.ZodString;
|
|
31508
|
-
name: z.ZodString;
|
|
31509
31508
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31509
|
+
name: z.ZodString;
|
|
31510
31510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31511
|
-
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31512
31511
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31512
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31513
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31513
31514
|
credentialStoreId: z.ZodString;
|
|
31514
31515
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31515
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31516
31516
|
type: z.ZodEnum<{
|
|
31517
31517
|
readonly memory: "memory";
|
|
31518
31518
|
readonly keychain: "keychain";
|
|
@@ -31529,7 +31529,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31529
31529
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31530
31530
|
data: z.ZodObject<{
|
|
31531
31531
|
id: z.ZodString;
|
|
31532
|
+
createdAt: z.ZodString;
|
|
31532
31533
|
name: z.ZodString;
|
|
31534
|
+
updatedAt: z.ZodString;
|
|
31533
31535
|
description: z.ZodNullable<z.ZodString>;
|
|
31534
31536
|
models: z.ZodNullable<z.ZodObject<{
|
|
31535
31537
|
base: z.ZodObject<{
|
|
@@ -31549,21 +31551,20 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31549
31551
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31550
31552
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31551
31553
|
}, z.core.$strip>>;
|
|
31552
|
-
createdAt: z.ZodString;
|
|
31553
|
-
updatedAt: z.ZodString;
|
|
31554
31554
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31555
31555
|
id: z.ZodString;
|
|
31556
|
+
createdAt: z.ZodString;
|
|
31556
31557
|
name: z.ZodString;
|
|
31558
|
+
updatedAt: z.ZodString;
|
|
31557
31559
|
description: z.ZodNullable<z.ZodString>;
|
|
31558
31560
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31559
|
-
createdAt: z.ZodString;
|
|
31560
|
-
updatedAt: z.ZodString;
|
|
31561
31561
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31562
31562
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31563
31563
|
id: z.ZodString;
|
|
31564
|
+
createdAt: z.ZodString;
|
|
31564
31565
|
name: z.ZodString;
|
|
31566
|
+
updatedAt: z.ZodString;
|
|
31565
31567
|
description: z.ZodNullable<z.ZodString>;
|
|
31566
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31567
31568
|
models: z.ZodNullable<z.ZodType<{
|
|
31568
31569
|
base?: {
|
|
31569
31570
|
model?: string | undefined;
|
|
@@ -31626,8 +31627,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31626
31627
|
}, {
|
|
31627
31628
|
stepCountIs?: number | undefined;
|
|
31628
31629
|
}>>>;
|
|
31629
|
-
|
|
31630
|
-
updatedAt: z.ZodString;
|
|
31630
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31631
31631
|
type: z.ZodLiteral<"internal">;
|
|
31632
31632
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31633
31633
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31699,11 +31699,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31699
31699
|
}, z.core.$strip>>>;
|
|
31700
31700
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31701
31701
|
id: z.ZodString;
|
|
31702
|
-
name: z.ZodString;
|
|
31703
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31704
|
-
agentId: z.ZodString;
|
|
31705
31702
|
createdAt: z.ZodString;
|
|
31703
|
+
name: z.ZodString;
|
|
31706
31704
|
updatedAt: z.ZodString;
|
|
31705
|
+
agentId: z.ZodString;
|
|
31706
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31707
31707
|
functionId: z.ZodString;
|
|
31708
31708
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31709
31709
|
}, z.core.$strip>>>;
|
|
@@ -31738,10 +31738,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31738
31738
|
}>, z.core.$strip>>>;
|
|
31739
31739
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
31740
31740
|
id: z.ZodString;
|
|
31741
|
-
createdAt: z.ZodString;
|
|
31742
|
-
updatedAt: z.ZodString;
|
|
31743
31741
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
31744
31742
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
31743
|
+
createdAt: z.ZodString;
|
|
31744
|
+
updatedAt: z.ZodString;
|
|
31745
31745
|
}, z.core.$strip>>;
|
|
31746
31746
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
31747
31747
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31808,11 +31808,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31808
31808
|
}>, z.core.$strip>>;
|
|
31809
31809
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31810
31810
|
id: z.ZodString;
|
|
31811
|
-
name: z.ZodString;
|
|
31812
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31813
|
-
agentId: z.ZodString;
|
|
31814
31811
|
createdAt: z.ZodString;
|
|
31812
|
+
name: z.ZodString;
|
|
31815
31813
|
updatedAt: z.ZodString;
|
|
31814
|
+
agentId: z.ZodString;
|
|
31815
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31816
31816
|
functionId: z.ZodString;
|
|
31817
31817
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
31818
31818
|
}, z.core.$strip>>>;
|
|
@@ -31956,14 +31956,14 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31956
31956
|
}, z.core.$strip>>;
|
|
31957
31957
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31958
31958
|
id: z.ZodString;
|
|
31959
|
-
name: z.ZodString;
|
|
31960
31959
|
createdAt: z.ZodString;
|
|
31960
|
+
name: z.ZodString;
|
|
31961
31961
|
updatedAt: z.ZodString;
|
|
31962
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
31963
31962
|
userId: z.ZodNullable<z.ZodString>;
|
|
31963
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
31964
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31964
31965
|
credentialStoreId: z.ZodString;
|
|
31965
31966
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31966
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31967
31967
|
type: z.ZodEnum<{
|
|
31968
31968
|
readonly memory: "memory";
|
|
31969
31969
|
readonly keychain: "keychain";
|
|
@@ -32553,7 +32553,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32553
32553
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32554
32554
|
data: z.ZodObject<{
|
|
32555
32555
|
id: z.ZodString;
|
|
32556
|
+
createdAt: z.ZodString;
|
|
32556
32557
|
name: z.ZodString;
|
|
32558
|
+
updatedAt: z.ZodString;
|
|
32557
32559
|
description: z.ZodNullable<z.ZodString>;
|
|
32558
32560
|
models: z.ZodNullable<z.ZodObject<{
|
|
32559
32561
|
base: z.ZodObject<{
|
|
@@ -32573,8 +32575,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32573
32575
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32574
32576
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
32575
32577
|
}, z.core.$strip>>;
|
|
32576
|
-
createdAt: z.ZodString;
|
|
32577
|
-
updatedAt: z.ZodString;
|
|
32578
32578
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
32579
32579
|
createdAt: z.ZodString;
|
|
32580
32580
|
updatedAt: z.ZodString;
|
|
@@ -32606,11 +32606,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32606
32606
|
}>, z.core.$strip>>;
|
|
32607
32607
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32608
32608
|
id: z.ZodString;
|
|
32609
|
-
name: z.ZodString;
|
|
32610
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32611
|
-
agentId: z.ZodString;
|
|
32612
32609
|
createdAt: z.ZodString;
|
|
32610
|
+
name: z.ZodString;
|
|
32613
32611
|
updatedAt: z.ZodString;
|
|
32612
|
+
agentId: z.ZodString;
|
|
32613
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32614
32614
|
functionId: z.ZodString;
|
|
32615
32615
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
32616
32616
|
}, z.core.$strip>>>;
|
|
@@ -32754,14 +32754,14 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32754
32754
|
}, z.core.$strip>>;
|
|
32755
32755
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32756
32756
|
id: z.ZodString;
|
|
32757
|
-
name: z.ZodString;
|
|
32758
32757
|
createdAt: z.ZodString;
|
|
32758
|
+
name: z.ZodString;
|
|
32759
32759
|
updatedAt: z.ZodString;
|
|
32760
|
-
toolId: z.ZodNullable<z.ZodString>;
|
|
32761
32760
|
userId: z.ZodNullable<z.ZodString>;
|
|
32761
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32762
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32762
32763
|
credentialStoreId: z.ZodString;
|
|
32763
32764
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32764
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32765
32765
|
type: z.ZodEnum<{
|
|
32766
32766
|
readonly memory: "memory";
|
|
32767
32767
|
readonly keychain: "keychain";
|
|
@@ -33345,11 +33345,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33345
33345
|
}, z.core.$strip>>>;
|
|
33346
33346
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33347
33347
|
id: z.ZodString;
|
|
33348
|
+
createdAt: z.ZodString;
|
|
33348
33349
|
name: z.ZodString;
|
|
33350
|
+
updatedAt: z.ZodString;
|
|
33349
33351
|
description: z.ZodNullable<z.ZodString>;
|
|
33350
33352
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33351
|
-
createdAt: z.ZodString;
|
|
33352
|
-
updatedAt: z.ZodString;
|
|
33353
33353
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33354
33354
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33355
33355
|
createdAt: z.ZodString;
|
|
@@ -33398,11 +33398,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33398
33398
|
}, z.core.$strip>>>;
|
|
33399
33399
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33400
33400
|
id: z.ZodString;
|
|
33401
|
-
name: z.ZodString;
|
|
33402
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33403
|
-
agentId: z.ZodString;
|
|
33404
33401
|
createdAt: z.ZodString;
|
|
33402
|
+
name: z.ZodString;
|
|
33405
33403
|
updatedAt: z.ZodString;
|
|
33404
|
+
agentId: z.ZodString;
|
|
33405
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33406
33406
|
functionId: z.ZodString;
|
|
33407
33407
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33408
33408
|
}, z.core.$strip>>>;
|
|
@@ -33437,10 +33437,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33437
33437
|
}>, z.core.$strip>>>;
|
|
33438
33438
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33439
33439
|
id: z.ZodString;
|
|
33440
|
-
createdAt: z.ZodString;
|
|
33441
|
-
updatedAt: z.ZodString;
|
|
33442
33440
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
33443
33441
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
33442
|
+
createdAt: z.ZodString;
|
|
33443
|
+
updatedAt: z.ZodString;
|
|
33444
33444
|
}, z.core.$strip>>;
|
|
33445
33445
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33446
33446
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33477,9 +33477,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33477
33477
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33478
33478
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33479
33479
|
id: z.ZodString;
|
|
33480
|
+
createdAt: z.ZodString;
|
|
33480
33481
|
name: z.ZodString;
|
|
33482
|
+
updatedAt: z.ZodString;
|
|
33481
33483
|
description: z.ZodNullable<z.ZodString>;
|
|
33482
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33483
33484
|
models: z.ZodNullable<z.ZodType<{
|
|
33484
33485
|
base?: {
|
|
33485
33486
|
model?: string | undefined;
|
|
@@ -33542,8 +33543,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33542
33543
|
}, {
|
|
33543
33544
|
stepCountIs?: number | undefined;
|
|
33544
33545
|
}>>>;
|
|
33545
|
-
|
|
33546
|
-
updatedAt: z.ZodString;
|
|
33546
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33547
33547
|
type: z.ZodLiteral<"internal">;
|
|
33548
33548
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33549
33549
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33582,18 +33582,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33582
33582
|
}, z.core.$strip>;
|
|
33583
33583
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33584
33584
|
data: z.ZodObject<{
|
|
33585
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
33585
33586
|
name: z.ZodString;
|
|
33587
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33586
33588
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33587
33589
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33588
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
33589
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33590
33590
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33591
33591
|
id: z.ZodString;
|
|
33592
33592
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33593
33593
|
id: z.ZodString;
|
|
33594
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
33594
33595
|
name: z.ZodString;
|
|
33596
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33595
33597
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33596
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33597
33598
|
models: z.ZodOptional<z.ZodObject<{
|
|
33598
33599
|
base: z.ZodOptional<z.ZodObject<{
|
|
33599
33600
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33617,8 +33618,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33617
33618
|
}, {
|
|
33618
33619
|
stepCountIs?: number | undefined;
|
|
33619
33620
|
}>>>>;
|
|
33620
|
-
|
|
33621
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33621
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33622
33622
|
type: z.ZodLiteral<"internal">;
|
|
33623
33623
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33624
33624
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33726,10 +33726,10 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33726
33726
|
executeCode: z.ZodString;
|
|
33727
33727
|
}, z.core.$strip>>>;
|
|
33728
33728
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33729
|
-
name: z.ZodString;
|
|
33730
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33731
33729
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33730
|
+
name: z.ZodString;
|
|
33732
33731
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33732
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33733
33733
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33734
33734
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
33735
33735
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -33740,10 +33740,10 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33740
33740
|
id: z.ZodOptional<z.ZodString>;
|
|
33741
33741
|
}, z.core.$strip>>>;
|
|
33742
33742
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33743
|
-
name: z.ZodString;
|
|
33744
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33745
33743
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33744
|
+
name: z.ZodString;
|
|
33746
33745
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33746
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33747
33747
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33748
33748
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33749
33749
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -33798,17 +33798,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33798
33798
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33799
33799
|
data: z.ZodObject<{
|
|
33800
33800
|
id: z.ZodString;
|
|
33801
|
+
createdAt: z.ZodString;
|
|
33801
33802
|
name: z.ZodString;
|
|
33803
|
+
updatedAt: z.ZodString;
|
|
33802
33804
|
description: z.ZodNullable<z.ZodString>;
|
|
33803
33805
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33804
|
-
createdAt: z.ZodString;
|
|
33805
|
-
updatedAt: z.ZodString;
|
|
33806
33806
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33807
33807
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33808
33808
|
id: z.ZodString;
|
|
33809
|
+
createdAt: z.ZodString;
|
|
33809
33810
|
name: z.ZodString;
|
|
33811
|
+
updatedAt: z.ZodString;
|
|
33810
33812
|
description: z.ZodNullable<z.ZodString>;
|
|
33811
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33812
33813
|
models: z.ZodNullable<z.ZodType<{
|
|
33813
33814
|
base?: {
|
|
33814
33815
|
model?: string | undefined;
|
|
@@ -33871,8 +33872,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33871
33872
|
}, {
|
|
33872
33873
|
stepCountIs?: number | undefined;
|
|
33873
33874
|
}>>>;
|
|
33874
|
-
|
|
33875
|
-
updatedAt: z.ZodString;
|
|
33875
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33876
33876
|
type: z.ZodLiteral<"internal">;
|
|
33877
33877
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33878
33878
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33944,11 +33944,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33944
33944
|
}, z.core.$strip>>>;
|
|
33945
33945
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33946
33946
|
id: z.ZodString;
|
|
33947
|
-
name: z.ZodString;
|
|
33948
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33949
|
-
agentId: z.ZodString;
|
|
33950
33947
|
createdAt: z.ZodString;
|
|
33948
|
+
name: z.ZodString;
|
|
33951
33949
|
updatedAt: z.ZodString;
|
|
33950
|
+
agentId: z.ZodString;
|
|
33951
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33952
33952
|
functionId: z.ZodString;
|
|
33953
33953
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
33954
33954
|
}, z.core.$strip>>>;
|
|
@@ -33983,10 +33983,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33983
33983
|
}>, z.core.$strip>>>;
|
|
33984
33984
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33985
33985
|
id: z.ZodString;
|
|
33986
|
-
createdAt: z.ZodString;
|
|
33987
|
-
updatedAt: z.ZodString;
|
|
33988
33986
|
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
33989
33987
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
33988
|
+
createdAt: z.ZodString;
|
|
33989
|
+
updatedAt: z.ZodString;
|
|
33990
33990
|
}, z.core.$strip>>;
|
|
33991
33991
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
33992
33992
|
enabled: z.ZodOptional<z.ZodBoolean>;
|