@inkeep/agents-core 0.53.13 → 0.55.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 +85 -85
- package/dist/auth/auth-validation-schemas.d.ts +152 -152
- package/dist/auth/auth.d.ts +28 -28
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -4
- package/dist/client-exports.js +2 -2
- package/dist/data-access/index.d.ts +2 -2
- package/dist/data-access/index.js +3 -3
- package/dist/data-access/manage/agents.d.ts +26 -26
- package/dist/data-access/manage/agents.js +19 -1
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +13 -13
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/tools.js +24 -12
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/cascade-delete.d.ts +2 -0
- package/dist/data-access/runtime/cascade-delete.js +19 -4
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/data-access/runtime/workAppSlack.d.ts +8 -2
- package/dist/data-access/runtime/workAppSlack.js +63 -2
- package/dist/db/manage/manage-schema.d.ts +355 -355
- package/dist/db/runtime/runtime-schema.d.ts +316 -280
- package/dist/db/runtime/runtime-schema.js +12 -4
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/types/utility.d.ts +1 -0
- package/dist/utils/mcp-client.d.ts +1 -0
- package/dist/utils/mcp-client.js +3 -0
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +1316 -228
- package/dist/validation/schemas.js +12 -2
- package/drizzle/runtime/0016_white_eddie_brock.sql +1 -0
- package/drizzle/runtime/0017_remarkable_starfox.sql +3 -0
- package/drizzle/runtime/0018_orange_union_jack.sql +6 -0
- package/drizzle/runtime/meta/0016_snapshot.json +3766 -0
- package/drizzle/runtime/meta/0017_snapshot.json +3785 -0
- package/drizzle/runtime/meta/0018_snapshot.json +3929 -0
- package/drizzle/runtime/meta/_journal.json +21 -0
- package/package.json +1 -1
|
@@ -819,9 +819,11 @@ declare const SubAgentApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
819
819
|
}, z.core.$strip>>;
|
|
820
820
|
}>, z.core.$strip>;
|
|
821
821
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
822
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
823
822
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
823
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
824
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
825
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
826
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
825
827
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
826
828
|
base: z.ZodOptional<z.ZodObject<{
|
|
827
829
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -847,8 +849,6 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
847
849
|
}>>>>>>;
|
|
848
850
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
849
851
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
850
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
851
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
852
852
|
}, z.core.$strip>;
|
|
853
853
|
declare const SubAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
854
854
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
@@ -2482,7 +2482,7 @@ declare const AgentInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
2482
2482
|
}, {}, {
|
|
2483
2483
|
length: 256;
|
|
2484
2484
|
}>;
|
|
2485
|
-
}, "
|
|
2485
|
+
}, "id" | "name" | "description" | "defaultSubAgentId" | "tenantId" | "projectId" | "prompt" | "models" | "stopWhen" | "createdAt" | "updatedAt" | "contextConfigId" | "statusUpdates">, undefined>, undefined>;
|
|
2486
2486
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2487
2487
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2488
2488
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2749,8 +2749,10 @@ declare const AgentApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
2749
2749
|
id: z.ZodString;
|
|
2750
2750
|
}>, z.core.$strip>;
|
|
2751
2751
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
2752
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2753
2752
|
name: z.ZodString;
|
|
2753
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2755
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2754
2756
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2755
2757
|
base?: {
|
|
2756
2758
|
model?: string | undefined;
|
|
@@ -2815,8 +2817,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2815
2817
|
}>>>>;
|
|
2816
2818
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2817
2819
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2818
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2819
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2820
2820
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2821
2821
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2822
2822
|
enabled?: boolean | undefined;
|
|
@@ -2878,9 +2878,11 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2878
2878
|
id: z.ZodString;
|
|
2879
2879
|
}, z.core.$strip>;
|
|
2880
2880
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2881
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2882
2881
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
2882
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2883
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
|
+
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2885
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2884
2886
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2885
2887
|
base?: {
|
|
2886
2888
|
model?: string | undefined;
|
|
@@ -2945,8 +2947,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
2945
2947
|
}>>>>>>;
|
|
2946
2948
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2947
2949
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2948
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2949
|
-
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2950
2950
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2951
2951
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2952
2952
|
enabled?: boolean | undefined;
|
|
@@ -4005,7 +4005,7 @@ declare const TriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
4005
4005
|
}, {}, {
|
|
4006
4006
|
length: 256;
|
|
4007
4007
|
}>;
|
|
4008
|
-
}, "
|
|
4008
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "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,12 +4088,12 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4088
4088
|
}, z.core.$strip>>>;
|
|
4089
4089
|
}>, z.core.$strip>;
|
|
4090
4090
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4091
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4092
4091
|
name: z.ZodString;
|
|
4092
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4093
4093
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4094
4094
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4095
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4096
4095
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4096
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4097
4097
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
4098
4098
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4099
4099
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -4122,13 +4122,13 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4122
4122
|
in: {};
|
|
4123
4123
|
}>;
|
|
4124
4124
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4125
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4126
4125
|
id: z.ZodString;
|
|
4127
4126
|
name: z.ZodString;
|
|
4127
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4128
4128
|
createdAt: z.ZodString;
|
|
4129
4129
|
updatedAt: z.ZodString;
|
|
4130
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
4131
4130
|
enabled: z.ZodBoolean;
|
|
4131
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
4132
4132
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
4133
4133
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4134
4134
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "
|
|
4992
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "triggerId" | "conversationId" | "status" | "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>>>;
|
|
@@ -5020,21 +5020,21 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5020
5020
|
id: z.ZodString;
|
|
5021
5021
|
}>, z.core.$strip>;
|
|
5022
5022
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5023
|
-
status: z.ZodOptional<z.ZodString>;
|
|
5024
5023
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5025
5024
|
triggerId: z.ZodString;
|
|
5026
5025
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5026
|
+
status: z.ZodOptional<z.ZodString>;
|
|
5027
5027
|
requestPayload: z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>;
|
|
5028
5028
|
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
5029
5029
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5030
5030
|
id: z.ZodString;
|
|
5031
5031
|
}, z.core.$strip>;
|
|
5032
5032
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5033
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5034
5033
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5035
5034
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5036
5035
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5037
5036
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5037
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5038
5038
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
5039
5039
|
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
5040
5040
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5752,7 +5752,7 @@ declare const ScheduledTriggerInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
5752
5752
|
}, {}, {
|
|
5753
5753
|
length: 256;
|
|
5754
5754
|
}>;
|
|
5755
|
-
}, "
|
|
5755
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "enabled" | "messageTemplate" | "createdBy" | "cronExpression" | "cronTimezone" | "runAt" | "payload" | "maxRetries" | "retryDelaySeconds" | "timeoutSeconds" | "runAsUserId">, undefined>, undefined>;
|
|
5756
5756
|
declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
5757
5757
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5758
5758
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5799,8 +5799,8 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5799
5799
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
5800
5800
|
}>, z.core.$strip>;
|
|
5801
5801
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5802
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5803
5802
|
name: z.ZodString;
|
|
5803
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5804
5804
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5805
5805
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5806
5806
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5817,8 +5817,8 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5817
5817
|
id: z.ZodOptional<z.ZodString>;
|
|
5818
5818
|
}, z.core.$strip>;
|
|
5819
5819
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5820
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5821
5820
|
name: z.ZodString;
|
|
5821
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5822
5822
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5823
5823
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5824
5824
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6681,7 +6681,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod3.BuildSchema<"insert",
|
|
|
6681
6681
|
}, {}, {
|
|
6682
6682
|
length: 256;
|
|
6683
6683
|
}>;
|
|
6684
|
-
}, "
|
|
6684
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "workflowRunId" | "scheduledTriggerId">, undefined>, undefined>;
|
|
6685
6685
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6686
6686
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6687
6687
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6712,11 +6712,11 @@ declare const ScheduledWorkflowApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
6712
6712
|
id: z.ZodString;
|
|
6713
6713
|
}>, z.core.$strip>;
|
|
6714
6714
|
declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
6715
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6716
|
-
status: z.ZodOptional<z.ZodString>;
|
|
6717
6715
|
name: z.ZodString;
|
|
6716
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6718
6717
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6719
6718
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6719
|
+
status: z.ZodOptional<z.ZodString>;
|
|
6720
6720
|
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6721
6721
|
scheduledTriggerId: z.ZodString;
|
|
6722
6722
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7288,7 +7288,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod3.BuildSchema<"
|
|
|
7288
7288
|
}, {}, {
|
|
7289
7289
|
length: 256;
|
|
7290
7290
|
}>;
|
|
7291
|
-
}, "
|
|
7291
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "status" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
7292
7292
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
7293
7293
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
7294
7294
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -7331,8 +7331,8 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
|
|
|
7331
7331
|
}>;
|
|
7332
7332
|
}>, z.core.$strip>;
|
|
7333
7333
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
7334
|
-
status: z.ZodString;
|
|
7335
7334
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7335
|
+
status: z.ZodString;
|
|
7336
7336
|
scheduledTriggerId: z.ZodString;
|
|
7337
7337
|
scheduledFor: z.ZodString;
|
|
7338
7338
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7344,9 +7344,9 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
7344
7344
|
id: z.ZodString;
|
|
7345
7345
|
}, z.core.$strip>;
|
|
7346
7346
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
7347
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7348
7347
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7349
7348
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7349
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7350
7350
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7351
7351
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7352
7352
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7891,14 +7891,14 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7891
7891
|
}, z.core.$strip>;
|
|
7892
7892
|
}>, z.core.$strip>;
|
|
7893
7893
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
7894
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7895
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7896
7894
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7895
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7897
7896
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7898
7897
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7899
7898
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7900
7899
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7901
7900
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7901
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7902
7902
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7903
7903
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7904
7904
|
type: z.ZodEnum<{
|
|
@@ -9456,14 +9456,14 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9456
9456
|
}, z.core.$strip>;
|
|
9457
9457
|
}>, z.core.$strip>;
|
|
9458
9458
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
9459
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9460
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9461
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9462
9459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9460
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9461
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9463
9462
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9464
9463
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9465
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9466
9464
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9465
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9466
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9467
9467
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9468
9468
|
type: z.ZodEnum<{
|
|
9469
9469
|
commit: "commit";
|
|
@@ -12696,25 +12696,25 @@ declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
12696
12696
|
id: z.ZodString;
|
|
12697
12697
|
}>, z.core.$strip>;
|
|
12698
12698
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
12699
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12700
12699
|
name: z.ZodString;
|
|
12700
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12701
12701
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12702
12702
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12703
12703
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12704
12704
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
12705
12705
|
}, z.core.$strip>;
|
|
12706
12706
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
12707
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12708
12707
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12708
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
12709
12709
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12710
12710
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12711
12711
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
12712
12712
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12713
12713
|
}, z.core.$strip>;
|
|
12714
12714
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
12715
|
-
description: z.ZodNullable<z.ZodString>;
|
|
12716
12715
|
id: z.ZodString;
|
|
12717
12716
|
name: z.ZodString;
|
|
12717
|
+
description: z.ZodNullable<z.ZodString>;
|
|
12718
12718
|
createdAt: z.ZodString;
|
|
12719
12719
|
updatedAt: z.ZodString;
|
|
12720
12720
|
isActive: z.ZodBoolean;
|
|
@@ -14873,8 +14873,9 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
14873
14873
|
id: z.ZodString;
|
|
14874
14874
|
}>, z.core.$strip>;
|
|
14875
14875
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
14876
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14877
14876
|
name: z.ZodString;
|
|
14877
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14878
|
+
prompt: z.ZodString;
|
|
14878
14879
|
model: z.ZodType<{
|
|
14879
14880
|
model?: string | undefined;
|
|
14880
14881
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14891,12 +14892,12 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
14891
14892
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14892
14893
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14893
14894
|
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
14894
|
-
prompt: z.ZodString;
|
|
14895
14895
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
14896
14896
|
}, z.core.$strip>;
|
|
14897
14897
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
14898
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14899
14898
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14899
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
14900
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14900
14901
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
14901
14902
|
model?: string | undefined;
|
|
14902
14903
|
providerOptions?: Record<string, any> | undefined;
|
|
@@ -14913,7 +14914,6 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
14913
14914
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14914
14915
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14915
14916
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
14916
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14917
14917
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
14918
14918
|
}, z.core.$strip>;
|
|
14919
14919
|
declare const DatasetSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -15810,8 +15810,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
15810
15810
|
}>>>>>>;
|
|
15811
15811
|
}, z.core.$strip>;
|
|
15812
15812
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
15813
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15814
15813
|
id: z.ZodOptional<z.ZodString>;
|
|
15814
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15815
15815
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15816
15816
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15817
15817
|
prompt: string;
|
|
@@ -15859,8 +15859,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
15859
15859
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
15860
15860
|
datasetRunId: z.ZodString;
|
|
15861
15861
|
items: z.ZodArray<z.ZodObject<{
|
|
15862
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15863
15862
|
id: z.ZodOptional<z.ZodString>;
|
|
15863
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15864
15864
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15865
15865
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15866
15866
|
prompt: string;
|
|
@@ -16270,15 +16270,15 @@ declare const DatasetRunConfigApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16270
16270
|
id: z.ZodString;
|
|
16271
16271
|
}>, z.core.$strip>;
|
|
16272
16272
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
16273
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16274
16273
|
name: z.ZodString;
|
|
16274
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16275
16275
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16276
16276
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16277
16277
|
datasetId: z.ZodString;
|
|
16278
16278
|
}, z.core.$strip>;
|
|
16279
16279
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
16280
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16281
16280
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16281
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16282
16282
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16283
16283
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
16284
16284
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16588,10 +16588,10 @@ declare const SkillSelectSchema: z.ZodObject<{
|
|
|
16588
16588
|
in: {};
|
|
16589
16589
|
}>;
|
|
16590
16590
|
declare const SkillInsertSchema: z.ZodObject<{
|
|
16591
|
-
|
|
16591
|
+
name: z.ZodString;
|
|
16592
16592
|
description: z.ZodString;
|
|
16593
|
+
tenantId: z.ZodString;
|
|
16593
16594
|
projectId: z.ZodString;
|
|
16594
|
-
name: z.ZodString;
|
|
16595
16595
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16596
16596
|
content: z.ZodString;
|
|
16597
16597
|
}, {
|
|
@@ -16599,8 +16599,8 @@ declare const SkillInsertSchema: z.ZodObject<{
|
|
|
16599
16599
|
in: {};
|
|
16600
16600
|
}>;
|
|
16601
16601
|
declare const SkillUpdateSchema: z.ZodObject<{
|
|
16602
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
16603
16602
|
description: z.ZodOptional<z.ZodString>;
|
|
16603
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
16604
16604
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16605
16605
|
metadata: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
16606
16606
|
content: z.ZodOptional<z.ZodString>;
|
|
@@ -16620,10 +16620,10 @@ declare const SkillApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
16620
16620
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16621
16621
|
}>, z.core.$strip>;
|
|
16622
16622
|
declare const SkillApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
16623
|
-
|
|
16623
|
+
name: z.ZodString;
|
|
16624
16624
|
description: z.ZodString;
|
|
16625
|
+
tenantId: z.ZodString;
|
|
16625
16626
|
projectId: z.ZodString;
|
|
16626
|
-
name: z.ZodString;
|
|
16627
16627
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
16628
16628
|
content: z.ZodString;
|
|
16629
16629
|
}>, z.core.$strip>;
|
|
@@ -17747,7 +17747,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod3.BuildSchema<"inser
|
|
|
17747
17747
|
}, {}, {
|
|
17748
17748
|
length: 256;
|
|
17749
17749
|
}>;
|
|
17750
|
-
}, "
|
|
17750
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
|
|
17751
17751
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
17752
17752
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
17753
17753
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -18344,9 +18344,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
18344
18344
|
in: {};
|
|
18345
18345
|
}>;
|
|
18346
18346
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
18347
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18348
18347
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18349
18348
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18349
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18350
18350
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18351
18351
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18352
18352
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -18763,10 +18763,10 @@ declare const SubAgentSkillApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
18763
18763
|
}>, z.core.$strip>;
|
|
18764
18764
|
declare const SubAgentSkillApiInsertSchema: z.ZodObject<{
|
|
18765
18765
|
agentId: z.ZodString;
|
|
18766
|
-
subAgentId: z.ZodString;
|
|
18767
|
-
skillId: z.ZodString;
|
|
18768
18766
|
index: z.ZodInt;
|
|
18769
18767
|
alwaysLoaded: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18768
|
+
subAgentId: z.ZodString;
|
|
18769
|
+
skillId: z.ZodString;
|
|
18770
18770
|
}, {
|
|
18771
18771
|
out: {};
|
|
18772
18772
|
in: {};
|
|
@@ -18775,15 +18775,15 @@ declare const SubAgentSkillApiUpdateSchema: z.ZodObject<{
|
|
|
18775
18775
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18776
18776
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18777
18777
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18778
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18779
|
-
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18780
18778
|
index: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
18781
18779
|
alwaysLoaded: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>>;
|
|
18780
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18781
|
+
skillId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18782
18782
|
}, z.core.$strip>;
|
|
18783
18783
|
declare const SubAgentSkillWithIndexSchema: z.ZodObject<{
|
|
18784
|
-
description: z.ZodString;
|
|
18785
18784
|
id: z.ZodString;
|
|
18786
18785
|
name: z.ZodString;
|
|
18786
|
+
description: z.ZodString;
|
|
18787
18787
|
createdAt: z.ZodString;
|
|
18788
18788
|
updatedAt: z.ZodString;
|
|
18789
18789
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -18858,18 +18858,20 @@ declare const ExternalAgentApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
18858
18858
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18859
18859
|
}>, z.core.$strip>;
|
|
18860
18860
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
18861
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18862
18861
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18863
18862
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18863
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18864
18864
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18865
18865
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18866
18866
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18867
18867
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
18868
18868
|
}, z.core.$strip>;
|
|
18869
18869
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18870
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18871
18870
|
id: z.ZodString;
|
|
18872
18871
|
name: z.ZodString;
|
|
18872
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18873
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
18874
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18873
18875
|
models: z.ZodNullable<z.ZodType<{
|
|
18874
18876
|
base?: {
|
|
18875
18877
|
model?: string | undefined;
|
|
@@ -18934,13 +18936,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18934
18936
|
}>>>;
|
|
18935
18937
|
createdAt: z.ZodString;
|
|
18936
18938
|
updatedAt: z.ZodString;
|
|
18937
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
18938
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
18939
18939
|
type: z.ZodLiteral<"internal">;
|
|
18940
18940
|
}, z.core.$strip>, z.ZodObject<{
|
|
18941
|
-
description: z.ZodNullable<z.ZodString>;
|
|
18942
18941
|
id: z.ZodString;
|
|
18943
18942
|
name: z.ZodString;
|
|
18943
|
+
description: z.ZodNullable<z.ZodString>;
|
|
18944
18944
|
createdAt: z.ZodString;
|
|
18945
18945
|
updatedAt: z.ZodString;
|
|
18946
18946
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19408,8 +19408,8 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
19408
19408
|
in: {};
|
|
19409
19409
|
}>;
|
|
19410
19410
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
19411
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19412
19411
|
name: z.ZodOptional<z.ZodString>;
|
|
19412
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19413
19413
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19414
19414
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19415
19415
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -19418,9 +19418,9 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
19418
19418
|
in: {};
|
|
19419
19419
|
}>;
|
|
19420
19420
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
19421
|
-
agentId: z.ZodString;
|
|
19422
19421
|
id: z.ZodString;
|
|
19423
19422
|
name: z.ZodNullable<z.ZodString>;
|
|
19423
|
+
agentId: z.ZodString;
|
|
19424
19424
|
createdAt: z.ZodString;
|
|
19425
19425
|
updatedAt: z.ZodString;
|
|
19426
19426
|
publicId: z.ZodString;
|
|
@@ -19434,9 +19434,9 @@ declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
|
19434
19434
|
declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
19435
19435
|
data: z.ZodObject<{
|
|
19436
19436
|
apiKey: z.ZodObject<{
|
|
19437
|
-
agentId: z.ZodString;
|
|
19438
19437
|
id: z.ZodString;
|
|
19439
19438
|
name: z.ZodNullable<z.ZodString>;
|
|
19439
|
+
agentId: z.ZodString;
|
|
19440
19440
|
createdAt: z.ZodString;
|
|
19441
19441
|
updatedAt: z.ZodString;
|
|
19442
19442
|
publicId: z.ZodString;
|
|
@@ -19451,8 +19451,8 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
19451
19451
|
}, z.core.$strip>;
|
|
19452
19452
|
}, z.core.$strip>;
|
|
19453
19453
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
19454
|
-
agentId: z.ZodString;
|
|
19455
19454
|
name: z.ZodString;
|
|
19455
|
+
agentId: z.ZodString;
|
|
19456
19456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19457
19457
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19458
19458
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19461,8 +19461,8 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
19461
19461
|
in: {};
|
|
19462
19462
|
}>;
|
|
19463
19463
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
19464
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
19465
19464
|
name: z.ZodOptional<z.ZodString>;
|
|
19465
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
19466
19466
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19467
19467
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19468
19468
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -19956,14 +19956,14 @@ declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
|
19956
19956
|
in: {};
|
|
19957
19957
|
}>;
|
|
19958
19958
|
declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
19959
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
19960
19959
|
id: z.ZodString;
|
|
19961
19960
|
name: z.ZodString;
|
|
19962
19961
|
createdAt: z.ZodString;
|
|
19963
19962
|
updatedAt: z.ZodString;
|
|
19963
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
19964
19964
|
credentialStoreId: z.ZodString;
|
|
19965
19965
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19966
|
-
|
|
19966
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
19967
19967
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
19968
19968
|
type: z.ZodEnum<{
|
|
19969
19969
|
readonly memory: "memory";
|
|
@@ -20547,14 +20547,14 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
20547
20547
|
}>>>;
|
|
20548
20548
|
}, z.core.$strip>;
|
|
20549
20549
|
declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
20550
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20551
20550
|
id: z.ZodString;
|
|
20552
20551
|
name: z.ZodString;
|
|
20553
20552
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20554
20553
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20554
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20555
20555
|
credentialStoreId: z.ZodString;
|
|
20556
20556
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20557
|
-
|
|
20557
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20558
20558
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20559
20559
|
type: z.ZodEnum<{
|
|
20560
20560
|
readonly memory: "memory";
|
|
@@ -20563,14 +20563,14 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20563
20563
|
}>;
|
|
20564
20564
|
}, z.core.$strip>;
|
|
20565
20565
|
declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
20566
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20567
20566
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20568
20567
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20569
20568
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20570
20569
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20570
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20571
20571
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20572
20572
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20573
|
-
|
|
20573
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20574
20574
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20575
20575
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20576
20576
|
readonly memory: "memory";
|
|
@@ -20730,14 +20730,14 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20730
20730
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
20731
20731
|
}, z.core.$strip>>;
|
|
20732
20732
|
credential: z.ZodOptional<z.ZodObject<{
|
|
20733
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20734
20733
|
id: z.ZodString;
|
|
20735
20734
|
name: z.ZodString;
|
|
20736
20735
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20737
20736
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20737
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20738
20738
|
credentialStoreId: z.ZodString;
|
|
20739
20739
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20740
|
-
|
|
20740
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20741
20741
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20742
20742
|
type: z.ZodEnum<{
|
|
20743
20743
|
readonly memory: "memory";
|
|
@@ -20873,9 +20873,9 @@ declare const ToolApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
20873
20873
|
}, z.core.$strip>;
|
|
20874
20874
|
}>, z.core.$strip>;
|
|
20875
20875
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
20876
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20877
20876
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20878
20877
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20878
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20879
20879
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20880
20880
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20881
20881
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
@@ -21274,10 +21274,10 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
21274
21274
|
in: {};
|
|
21275
21275
|
}>;
|
|
21276
21276
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
21277
|
-
description: z.ZodNullable<z.ZodString>;
|
|
21278
|
-
agentId: z.ZodString;
|
|
21279
21277
|
id: z.ZodString;
|
|
21280
21278
|
name: z.ZodString;
|
|
21279
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21280
|
+
agentId: z.ZodString;
|
|
21281
21281
|
createdAt: z.ZodString;
|
|
21282
21282
|
updatedAt: z.ZodString;
|
|
21283
21283
|
functionId: z.ZodString;
|
|
@@ -21295,10 +21295,10 @@ declare const FunctionToolApiInsertSchema: z.ZodObject<OmitAgentScope<{
|
|
|
21295
21295
|
id: z.ZodString;
|
|
21296
21296
|
}>, z.core.$strip>;
|
|
21297
21297
|
declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
21298
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21299
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21300
21298
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21301
21299
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21300
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21301
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21302
21302
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21303
21303
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21304
21304
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21674,9 +21674,9 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
21674
21674
|
id: z.ZodString;
|
|
21675
21675
|
}>, z.core.$strip>;
|
|
21676
21676
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21677
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
21677
21678
|
subAgentId: z.ZodString;
|
|
21678
21679
|
functionToolId: z.ZodString;
|
|
21679
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
21680
21680
|
}, {
|
|
21681
21681
|
out: {};
|
|
21682
21682
|
in: {};
|
|
@@ -22068,14 +22068,14 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
22068
22068
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
22069
22069
|
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
22070
22070
|
credential: z.ZodOptional<z.ZodObject<{
|
|
22071
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22072
22071
|
id: z.ZodString;
|
|
22073
22072
|
name: z.ZodString;
|
|
22074
22073
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22075
22074
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22075
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22076
22076
|
credentialStoreId: z.ZodString;
|
|
22077
22077
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22078
|
-
|
|
22078
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22079
22079
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22080
22080
|
type: z.ZodEnum<{
|
|
22081
22081
|
readonly memory: "memory";
|
|
@@ -22098,10 +22098,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
22098
22098
|
in: {};
|
|
22099
22099
|
}>;
|
|
22100
22100
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
22101
|
+
id: z.ZodOptional<z.ZodString>;
|
|
22101
22102
|
tenantId: z.ZodString;
|
|
22102
|
-
agentId: z.ZodString;
|
|
22103
22103
|
projectId: z.ZodString;
|
|
22104
|
-
|
|
22104
|
+
agentId: z.ZodString;
|
|
22105
22105
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22106
22106
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
22107
22107
|
}, {
|
|
@@ -22109,10 +22109,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
22109
22109
|
in: {};
|
|
22110
22110
|
}>;
|
|
22111
22111
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
22112
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22112
22113
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
22113
|
-
agentId: z.ZodOptional<z.ZodString>;
|
|
22114
22114
|
projectId: z.ZodOptional<z.ZodString>;
|
|
22115
|
-
|
|
22115
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
22116
22116
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22117
22117
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
22118
22118
|
}, {
|
|
@@ -22625,12 +22625,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22625
22625
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22626
22626
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22627
22627
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22628
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22629
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22630
22628
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22629
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22631
22630
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22632
22631
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22633
22632
|
}, z.core.$strip>>>>>>;
|
|
22633
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22634
22634
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22635
22635
|
}, z.core.$strip>;
|
|
22636
22636
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -23019,9 +23019,9 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23019
23019
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23020
23020
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23021
23021
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23022
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23023
23022
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23024
23023
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23024
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23025
23025
|
}, z.core.$strip>;
|
|
23026
23026
|
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
23027
23027
|
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
@@ -23409,8 +23409,8 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23409
23409
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23410
23410
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23411
23411
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23412
|
-
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23413
23412
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
23413
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23414
23414
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23415
23415
|
}, z.core.$strip>;
|
|
23416
23416
|
declare const LedgerArtifactSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
@@ -24754,7 +24754,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod3.BuildSchema<"insert", {
|
|
|
24754
24754
|
}, {}, {
|
|
24755
24755
|
length: 256;
|
|
24756
24756
|
}>;
|
|
24757
|
-
}, "
|
|
24757
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24758
24758
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24759
24759
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24760
24760
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24819,10 +24819,10 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24819
24819
|
id: z.ZodString;
|
|
24820
24820
|
}>, z.core.$strip>;
|
|
24821
24821
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24822
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24823
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24824
24822
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24825
24823
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24824
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24825
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24826
24826
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24827
24827
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24828
24828
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>>>;
|
|
@@ -24899,9 +24899,10 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
24899
24899
|
description: z.ZodString;
|
|
24900
24900
|
}, z.core.$strip>;
|
|
24901
24901
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
24902
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24903
24902
|
id: z.ZodString;
|
|
24904
24903
|
name: z.ZodString;
|
|
24904
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24905
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24905
24906
|
models: z.ZodOptional<z.ZodObject<{
|
|
24906
24907
|
base: z.ZodOptional<z.ZodObject<{
|
|
24907
24908
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24918,7 +24919,6 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24918
24919
|
}, z.core.$strip>>;
|
|
24919
24920
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24920
24921
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24921
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24922
24922
|
type: z.ZodLiteral<"internal">;
|
|
24923
24923
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24924
24924
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24952,17 +24952,18 @@ declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
|
24952
24952
|
}, z.core.$strip>>;
|
|
24953
24953
|
}, z.core.$strip>;
|
|
24954
24954
|
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
24955
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24956
24955
|
name: z.ZodString;
|
|
24956
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24957
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24957
24958
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24958
24959
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24959
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24960
24960
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24961
24961
|
id: z.ZodString;
|
|
24962
24962
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24963
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24964
24963
|
id: z.ZodString;
|
|
24965
24964
|
name: z.ZodString;
|
|
24965
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24966
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24966
24967
|
models: z.ZodOptional<z.ZodObject<{
|
|
24967
24968
|
base: z.ZodOptional<z.ZodObject<{
|
|
24968
24969
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24979,7 +24980,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24979
24980
|
}, z.core.$strip>>;
|
|
24980
24981
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24981
24982
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24982
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
24983
24983
|
type: z.ZodLiteral<"internal">;
|
|
24984
24984
|
canUse: z.ZodArray<z.ZodObject<{
|
|
24985
24985
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25090,12 +25090,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25090
25090
|
executeCode: z.ZodString;
|
|
25091
25091
|
}, z.core.$strip>>>;
|
|
25092
25092
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25093
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25094
25093
|
name: z.ZodString;
|
|
25094
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25095
25095
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25096
25096
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25097
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25098
25097
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25098
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25099
25099
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25100
25100
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25101
25101
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -25104,8 +25104,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
25104
25104
|
id: z.ZodOptional<z.ZodString>;
|
|
25105
25105
|
}, z.core.$strip>>>;
|
|
25106
25106
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25107
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25108
25107
|
name: z.ZodString;
|
|
25108
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25109
25109
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25110
25110
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25111
25111
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25220,10 +25220,10 @@ declare const ProjectSelectSchema: z.ZodObject<{
|
|
|
25220
25220
|
in: {};
|
|
25221
25221
|
}>;
|
|
25222
25222
|
declare const ProjectInsertSchema: z.ZodObject<{
|
|
25223
|
-
tenantId: z.ZodString;
|
|
25224
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25225
25223
|
id: z.ZodString;
|
|
25226
25224
|
name: z.ZodString;
|
|
25225
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25226
|
+
tenantId: z.ZodString;
|
|
25227
25227
|
models: z.ZodObject<{
|
|
25228
25228
|
base: z.ZodObject<{
|
|
25229
25229
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25247,8 +25247,8 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
25247
25247
|
in: {};
|
|
25248
25248
|
}>;
|
|
25249
25249
|
declare const ProjectUpdateSchema: z.ZodObject<{
|
|
25250
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25251
25250
|
name: z.ZodOptional<z.ZodString>;
|
|
25251
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25252
25252
|
models: z.ZodOptional<z.ZodObject<{
|
|
25253
25253
|
base: z.ZodObject<{
|
|
25254
25254
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25272,9 +25272,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
25272
25272
|
in: {};
|
|
25273
25273
|
}>;
|
|
25274
25274
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
25275
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25276
25275
|
id: z.ZodString;
|
|
25277
25276
|
name: z.ZodString;
|
|
25277
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25278
25278
|
models: z.ZodNullable<z.ZodObject<{
|
|
25279
25279
|
base: z.ZodObject<{
|
|
25280
25280
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25300,9 +25300,9 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
25300
25300
|
in: {};
|
|
25301
25301
|
}>;
|
|
25302
25302
|
declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
25303
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25304
25303
|
id: z.ZodString;
|
|
25305
25304
|
name: z.ZodString;
|
|
25305
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25306
25306
|
models: z.ZodObject<{
|
|
25307
25307
|
base: z.ZodObject<{
|
|
25308
25308
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25326,8 +25326,8 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
25326
25326
|
in: {};
|
|
25327
25327
|
}>;
|
|
25328
25328
|
declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
25329
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25330
25329
|
name: z.ZodOptional<z.ZodString>;
|
|
25330
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25331
25331
|
models: z.ZodOptional<z.ZodObject<{
|
|
25332
25332
|
base: z.ZodObject<{
|
|
25333
25333
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25351,9 +25351,9 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
25351
25351
|
in: {};
|
|
25352
25352
|
}>;
|
|
25353
25353
|
declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
25354
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25355
25354
|
id: z.ZodString;
|
|
25356
25355
|
name: z.ZodString;
|
|
25356
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25357
25357
|
models: z.ZodObject<{
|
|
25358
25358
|
base: z.ZodObject<{
|
|
25359
25359
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25373,17 +25373,18 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25373
25373
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
25374
25374
|
}, z.core.$strip>>;
|
|
25375
25375
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25376
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25377
25376
|
name: z.ZodString;
|
|
25377
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25378
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25378
25379
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25379
25380
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25380
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25381
25381
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25382
25382
|
id: z.ZodString;
|
|
25383
25383
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25384
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25385
25384
|
id: z.ZodString;
|
|
25386
25385
|
name: z.ZodString;
|
|
25386
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25387
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25387
25388
|
models: z.ZodOptional<z.ZodObject<{
|
|
25388
25389
|
base: z.ZodOptional<z.ZodObject<{
|
|
25389
25390
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25400,7 +25401,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25400
25401
|
}, z.core.$strip>>;
|
|
25401
25402
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25402
25403
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25403
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
25404
25404
|
type: z.ZodLiteral<"internal">;
|
|
25405
25405
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25406
25406
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25511,12 +25511,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25511
25511
|
executeCode: z.ZodString;
|
|
25512
25512
|
}, z.core.$strip>>>;
|
|
25513
25513
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25514
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25515
25514
|
name: z.ZodString;
|
|
25515
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25516
25516
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25517
25517
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25518
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25519
25518
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25519
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25520
25520
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
25521
25521
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25522
25522
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -25525,8 +25525,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25525
25525
|
id: z.ZodOptional<z.ZodString>;
|
|
25526
25526
|
}, z.core.$strip>>>;
|
|
25527
25527
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25528
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25529
25528
|
name: z.ZodString;
|
|
25529
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25530
25530
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25531
25531
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25532
25532
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25643,10 +25643,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25643
25643
|
executeCode: z.ZodString;
|
|
25644
25644
|
}, z.core.$strip>>>;
|
|
25645
25645
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
25646
|
-
|
|
25646
|
+
name: z.ZodString;
|
|
25647
25647
|
description: z.ZodString;
|
|
25648
|
+
tenantId: z.ZodString;
|
|
25648
25649
|
projectId: z.ZodString;
|
|
25649
|
-
name: z.ZodString;
|
|
25650
25650
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
25651
25651
|
content: z.ZodString;
|
|
25652
25652
|
}>, z.core.$strip>>>;
|
|
@@ -25732,14 +25732,14 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25732
25732
|
}, z.core.$strip>>>;
|
|
25733
25733
|
}, z.core.$strip>>;
|
|
25734
25734
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25735
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25736
25735
|
id: z.ZodString;
|
|
25737
25736
|
name: z.ZodString;
|
|
25738
25737
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
25739
25738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25739
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25740
25740
|
credentialStoreId: z.ZodString;
|
|
25741
25741
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25742
|
-
|
|
25742
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25743
25743
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25744
25744
|
type: z.ZodEnum<{
|
|
25745
25745
|
readonly memory: "memory";
|
|
@@ -25754,9 +25754,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25754
25754
|
in: {};
|
|
25755
25755
|
}>;
|
|
25756
25756
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
25757
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25758
25757
|
id: z.ZodString;
|
|
25759
25758
|
name: z.ZodString;
|
|
25759
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25760
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25760
25761
|
models: z.ZodNullable<z.ZodType<{
|
|
25761
25762
|
base?: {
|
|
25762
25763
|
model?: string | undefined;
|
|
@@ -25821,7 +25822,6 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25821
25822
|
}>>>;
|
|
25822
25823
|
createdAt: z.ZodString;
|
|
25823
25824
|
updatedAt: z.ZodString;
|
|
25824
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25825
25825
|
type: z.ZodLiteral<"internal">;
|
|
25826
25826
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25827
25827
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25847,9 +25847,10 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
25847
25847
|
}, z.core.$strip>]>>>;
|
|
25848
25848
|
}, z.core.$strip>;
|
|
25849
25849
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25850
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25851
25850
|
id: z.ZodString;
|
|
25852
25851
|
name: z.ZodString;
|
|
25852
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25853
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25853
25854
|
models: z.ZodNullable<z.ZodType<{
|
|
25854
25855
|
base?: {
|
|
25855
25856
|
model?: string | undefined;
|
|
@@ -25914,7 +25915,6 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25914
25915
|
}>>>;
|
|
25915
25916
|
createdAt: z.ZodString;
|
|
25916
25917
|
updatedAt: z.ZodString;
|
|
25917
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25918
25918
|
type: z.ZodLiteral<"internal">;
|
|
25919
25919
|
canUse: z.ZodArray<z.ZodObject<{
|
|
25920
25920
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -25946,17 +25946,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25946
25946
|
}, z.core.$strip>]>>>;
|
|
25947
25947
|
}, z.core.$strip>;
|
|
25948
25948
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
25949
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25950
25949
|
id: z.ZodString;
|
|
25951
25950
|
name: z.ZodString;
|
|
25951
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25952
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25952
25953
|
createdAt: z.ZodString;
|
|
25953
25954
|
updatedAt: z.ZodString;
|
|
25954
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
25955
25955
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
25956
25956
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25957
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25958
25957
|
id: z.ZodString;
|
|
25959
25958
|
name: z.ZodString;
|
|
25959
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25960
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
25960
25961
|
models: z.ZodNullable<z.ZodType<{
|
|
25961
25962
|
base?: {
|
|
25962
25963
|
model?: string | undefined;
|
|
@@ -26021,7 +26022,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26021
26022
|
}>>>;
|
|
26022
26023
|
createdAt: z.ZodString;
|
|
26023
26024
|
updatedAt: z.ZodString;
|
|
26024
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26025
26025
|
type: z.ZodLiteral<"internal">;
|
|
26026
26026
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26027
26027
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26092,10 +26092,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26092
26092
|
description: z.ZodString;
|
|
26093
26093
|
}, z.core.$strip>>>;
|
|
26094
26094
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26095
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26096
|
-
agentId: z.ZodString;
|
|
26097
26095
|
id: z.ZodString;
|
|
26098
26096
|
name: z.ZodString;
|
|
26097
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26098
|
+
agentId: z.ZodString;
|
|
26099
26099
|
createdAt: z.ZodString;
|
|
26100
26100
|
updatedAt: z.ZodString;
|
|
26101
26101
|
functionId: z.ZodString;
|
|
@@ -26174,12 +26174,12 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
26174
26174
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26175
26175
|
}, z.core.$strip>;
|
|
26176
26176
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
26177
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26178
26177
|
id: z.ZodString;
|
|
26179
26178
|
name: z.ZodString;
|
|
26179
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26180
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26180
26181
|
createdAt: z.ZodString;
|
|
26181
26182
|
updatedAt: z.ZodString;
|
|
26182
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26183
26183
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26184
26184
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
26185
26185
|
createdAt: z.ZodString;
|
|
@@ -26227,10 +26227,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26227
26227
|
description: z.ZodString;
|
|
26228
26228
|
}, z.core.$strip>>>;
|
|
26229
26229
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26230
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26231
|
-
agentId: z.ZodString;
|
|
26232
26230
|
id: z.ZodString;
|
|
26233
26231
|
name: z.ZodString;
|
|
26232
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26233
|
+
agentId: z.ZodString;
|
|
26234
26234
|
createdAt: z.ZodString;
|
|
26235
26235
|
updatedAt: z.ZodString;
|
|
26236
26236
|
functionId: z.ZodString;
|
|
@@ -26308,9 +26308,10 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26308
26308
|
}, z.core.$strip>>;
|
|
26309
26309
|
prompt: z.ZodNullable<z.ZodString>;
|
|
26310
26310
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26311
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26312
26311
|
id: z.ZodString;
|
|
26313
26312
|
name: z.ZodString;
|
|
26313
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26314
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26314
26315
|
models: z.ZodNullable<z.ZodType<{
|
|
26315
26316
|
base?: {
|
|
26316
26317
|
model?: string | undefined;
|
|
@@ -26375,7 +26376,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26375
26376
|
}>>>;
|
|
26376
26377
|
createdAt: z.ZodString;
|
|
26377
26378
|
updatedAt: z.ZodString;
|
|
26378
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26379
26379
|
type: z.ZodLiteral<"internal">;
|
|
26380
26380
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26381
26381
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26408,9 +26408,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26408
26408
|
}, z.core.$strip>>;
|
|
26409
26409
|
}, z.core.$strip>;
|
|
26410
26410
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
26411
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26412
26411
|
id: z.ZodString;
|
|
26413
26412
|
name: z.ZodString;
|
|
26413
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26414
26414
|
models: z.ZodNullable<z.ZodObject<{
|
|
26415
26415
|
base: z.ZodObject<{
|
|
26416
26416
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26432,17 +26432,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26432
26432
|
createdAt: z.ZodString;
|
|
26433
26433
|
updatedAt: z.ZodString;
|
|
26434
26434
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26435
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26436
26435
|
id: z.ZodString;
|
|
26437
26436
|
name: z.ZodString;
|
|
26437
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26438
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26438
26439
|
createdAt: z.ZodString;
|
|
26439
26440
|
updatedAt: z.ZodString;
|
|
26440
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26441
26441
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26442
26442
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26443
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26444
26443
|
id: z.ZodString;
|
|
26445
26444
|
name: z.ZodString;
|
|
26445
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26446
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26446
26447
|
models: z.ZodNullable<z.ZodType<{
|
|
26447
26448
|
base?: {
|
|
26448
26449
|
model?: string | undefined;
|
|
@@ -26507,7 +26508,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26507
26508
|
}>>>;
|
|
26508
26509
|
createdAt: z.ZodString;
|
|
26509
26510
|
updatedAt: z.ZodString;
|
|
26510
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
26511
26511
|
type: z.ZodLiteral<"internal">;
|
|
26512
26512
|
canUse: z.ZodArray<z.ZodObject<{
|
|
26513
26513
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -26578,10 +26578,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26578
26578
|
description: z.ZodString;
|
|
26579
26579
|
}, z.core.$strip>>>;
|
|
26580
26580
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26581
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26582
|
-
agentId: z.ZodString;
|
|
26583
26581
|
id: z.ZodString;
|
|
26584
26582
|
name: z.ZodString;
|
|
26583
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26584
|
+
agentId: z.ZodString;
|
|
26585
26585
|
createdAt: z.ZodString;
|
|
26586
26586
|
updatedAt: z.ZodString;
|
|
26587
26587
|
functionId: z.ZodString;
|
|
@@ -26689,10 +26689,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26689
26689
|
id: z.ZodString;
|
|
26690
26690
|
}>, z.core.$strip>>;
|
|
26691
26691
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26692
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26693
|
-
agentId: z.ZodString;
|
|
26694
26692
|
id: z.ZodString;
|
|
26695
26693
|
name: z.ZodString;
|
|
26694
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26695
|
+
agentId: z.ZodString;
|
|
26696
26696
|
createdAt: z.ZodString;
|
|
26697
26697
|
updatedAt: z.ZodString;
|
|
26698
26698
|
functionId: z.ZodString;
|
|
@@ -26837,14 +26837,14 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26837
26837
|
}, z.core.$strip>>>;
|
|
26838
26838
|
}, z.core.$strip>>;
|
|
26839
26839
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26840
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
26841
26840
|
id: z.ZodString;
|
|
26842
26841
|
name: z.ZodString;
|
|
26843
26842
|
createdAt: z.ZodString;
|
|
26844
26843
|
updatedAt: z.ZodString;
|
|
26844
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
26845
26845
|
credentialStoreId: z.ZodString;
|
|
26846
26846
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26847
|
-
|
|
26847
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
26848
26848
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
26849
26849
|
type: z.ZodEnum<{
|
|
26850
26850
|
readonly memory: "memory";
|
|
@@ -27432,9 +27432,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
27432
27432
|
in: {};
|
|
27433
27433
|
}>;
|
|
27434
27434
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
27435
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27436
27435
|
id: z.ZodString;
|
|
27437
27436
|
name: z.ZodString;
|
|
27437
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27438
27438
|
models: z.ZodNullable<z.ZodObject<{
|
|
27439
27439
|
base: z.ZodObject<{
|
|
27440
27440
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27485,10 +27485,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27485
27485
|
id: z.ZodString;
|
|
27486
27486
|
}>, z.core.$strip>>;
|
|
27487
27487
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27488
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27489
|
-
agentId: z.ZodString;
|
|
27490
27488
|
id: z.ZodString;
|
|
27491
27489
|
name: z.ZodString;
|
|
27490
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27491
|
+
agentId: z.ZodString;
|
|
27492
27492
|
createdAt: z.ZodString;
|
|
27493
27493
|
updatedAt: z.ZodString;
|
|
27494
27494
|
functionId: z.ZodString;
|
|
@@ -27633,14 +27633,14 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27633
27633
|
}, z.core.$strip>>>;
|
|
27634
27634
|
}, z.core.$strip>>;
|
|
27635
27635
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27636
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
27637
27636
|
id: z.ZodString;
|
|
27638
27637
|
name: z.ZodString;
|
|
27639
27638
|
createdAt: z.ZodString;
|
|
27640
27639
|
updatedAt: z.ZodString;
|
|
27640
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
27641
27641
|
credentialStoreId: z.ZodString;
|
|
27642
27642
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27643
|
-
|
|
27643
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
27644
27644
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
27645
27645
|
type: z.ZodEnum<{
|
|
27646
27646
|
readonly memory: "memory";
|
|
@@ -28224,12 +28224,12 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28224
28224
|
}>>>;
|
|
28225
28225
|
}, z.core.$strip>>>;
|
|
28226
28226
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28227
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28228
28227
|
id: z.ZodString;
|
|
28229
28228
|
name: z.ZodString;
|
|
28229
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28230
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28230
28231
|
createdAt: z.ZodString;
|
|
28231
28232
|
updatedAt: z.ZodString;
|
|
28232
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28233
28233
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28234
28234
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
28235
28235
|
createdAt: z.ZodString;
|
|
@@ -28277,10 +28277,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28277
28277
|
description: z.ZodString;
|
|
28278
28278
|
}, z.core.$strip>>>;
|
|
28279
28279
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28280
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28281
|
-
agentId: z.ZodString;
|
|
28282
28280
|
id: z.ZodString;
|
|
28283
28281
|
name: z.ZodString;
|
|
28282
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28283
|
+
agentId: z.ZodString;
|
|
28284
28284
|
createdAt: z.ZodString;
|
|
28285
28285
|
updatedAt: z.ZodString;
|
|
28286
28286
|
functionId: z.ZodString;
|
|
@@ -28358,9 +28358,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28358
28358
|
}, z.core.$strip>>;
|
|
28359
28359
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28360
28360
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28361
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28362
28361
|
id: z.ZodString;
|
|
28363
28362
|
name: z.ZodString;
|
|
28363
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28364
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28364
28365
|
models: z.ZodNullable<z.ZodType<{
|
|
28365
28366
|
base?: {
|
|
28366
28367
|
model?: string | undefined;
|
|
@@ -28425,7 +28426,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28425
28426
|
}>>>;
|
|
28426
28427
|
createdAt: z.ZodString;
|
|
28427
28428
|
updatedAt: z.ZodString;
|
|
28428
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
28429
28429
|
type: z.ZodLiteral<"internal">;
|
|
28430
28430
|
canUse: z.ZodArray<z.ZodObject<{
|
|
28431
28431
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -28463,9 +28463,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28463
28463
|
}>;
|
|
28464
28464
|
declare const ProjectResponse: z.ZodObject<{
|
|
28465
28465
|
data: z.ZodObject<{
|
|
28466
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28467
28466
|
id: z.ZodString;
|
|
28468
28467
|
name: z.ZodString;
|
|
28468
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28469
28469
|
models: z.ZodNullable<z.ZodObject<{
|
|
28470
28470
|
base: z.ZodObject<{
|
|
28471
28471
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -28724,9 +28724,9 @@ declare const ContextConfigResponse: z.ZodObject<{
|
|
|
28724
28724
|
}, z.core.$strip>;
|
|
28725
28725
|
declare const ApiKeyResponse: z.ZodObject<{
|
|
28726
28726
|
data: z.ZodObject<{
|
|
28727
|
-
agentId: z.ZodString;
|
|
28728
28727
|
id: z.ZodString;
|
|
28729
28728
|
name: z.ZodNullable<z.ZodString>;
|
|
28729
|
+
agentId: z.ZodString;
|
|
28730
28730
|
createdAt: z.ZodString;
|
|
28731
28731
|
updatedAt: z.ZodString;
|
|
28732
28732
|
publicId: z.ZodString;
|
|
@@ -28740,14 +28740,14 @@ declare const ApiKeyResponse: z.ZodObject<{
|
|
|
28740
28740
|
}, z.core.$strip>;
|
|
28741
28741
|
declare const CredentialReferenceResponse: z.ZodObject<{
|
|
28742
28742
|
data: z.ZodObject<{
|
|
28743
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
28744
28743
|
id: z.ZodString;
|
|
28745
28744
|
name: z.ZodString;
|
|
28746
28745
|
createdAt: z.ZodString;
|
|
28747
28746
|
updatedAt: z.ZodString;
|
|
28747
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
28748
28748
|
credentialStoreId: z.ZodString;
|
|
28749
28749
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28750
|
-
|
|
28750
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
28751
28751
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
28752
28752
|
type: z.ZodEnum<{
|
|
28753
28753
|
readonly memory: "memory";
|
|
@@ -29345,10 +29345,10 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29345
29345
|
}, z.core.$strip>;
|
|
29346
29346
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
29347
29347
|
data: z.ZodObject<{
|
|
29348
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29349
|
-
agentId: z.ZodString;
|
|
29350
29348
|
id: z.ZodString;
|
|
29351
29349
|
name: z.ZodString;
|
|
29350
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29351
|
+
agentId: z.ZodString;
|
|
29352
29352
|
createdAt: z.ZodString;
|
|
29353
29353
|
updatedAt: z.ZodString;
|
|
29354
29354
|
functionId: z.ZodString;
|
|
@@ -29582,9 +29582,9 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29582
29582
|
}, z.core.$strip>;
|
|
29583
29583
|
declare const ProjectListResponse: z.ZodObject<{
|
|
29584
29584
|
data: z.ZodArray<z.ZodObject<{
|
|
29585
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29586
29585
|
id: z.ZodString;
|
|
29587
29586
|
name: z.ZodString;
|
|
29587
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29588
29588
|
models: z.ZodNullable<z.ZodObject<{
|
|
29589
29589
|
base: z.ZodObject<{
|
|
29590
29590
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29873,9 +29873,9 @@ declare const ContextConfigListResponse: z.ZodObject<{
|
|
|
29873
29873
|
}, z.core.$strip>;
|
|
29874
29874
|
declare const ApiKeyListResponse: z.ZodObject<{
|
|
29875
29875
|
data: z.ZodArray<z.ZodObject<{
|
|
29876
|
-
agentId: z.ZodString;
|
|
29877
29876
|
id: z.ZodString;
|
|
29878
29877
|
name: z.ZodNullable<z.ZodString>;
|
|
29878
|
+
agentId: z.ZodString;
|
|
29879
29879
|
createdAt: z.ZodString;
|
|
29880
29880
|
updatedAt: z.ZodString;
|
|
29881
29881
|
publicId: z.ZodString;
|
|
@@ -29895,14 +29895,14 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
29895
29895
|
}, z.core.$strip>;
|
|
29896
29896
|
declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
29897
29897
|
data: z.ZodArray<z.ZodObject<{
|
|
29898
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
29899
29898
|
id: z.ZodString;
|
|
29900
29899
|
name: z.ZodString;
|
|
29901
29900
|
createdAt: z.ZodString;
|
|
29902
29901
|
updatedAt: z.ZodString;
|
|
29902
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
29903
29903
|
credentialStoreId: z.ZodString;
|
|
29904
29904
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29905
|
-
|
|
29905
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
29906
29906
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
29907
29907
|
type: z.ZodEnum<{
|
|
29908
29908
|
readonly memory: "memory";
|
|
@@ -30512,10 +30512,10 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30512
30512
|
}, z.core.$strip>;
|
|
30513
30513
|
declare const FunctionToolListResponse: z.ZodObject<{
|
|
30514
30514
|
data: z.ZodArray<z.ZodObject<{
|
|
30515
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30516
|
-
agentId: z.ZodString;
|
|
30517
30515
|
id: z.ZodString;
|
|
30518
30516
|
name: z.ZodString;
|
|
30517
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30518
|
+
agentId: z.ZodString;
|
|
30519
30519
|
createdAt: z.ZodString;
|
|
30520
30520
|
updatedAt: z.ZodString;
|
|
30521
30521
|
functionId: z.ZodString;
|
|
@@ -30829,13 +30829,13 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30829
30829
|
}, z.core.$strip>;
|
|
30830
30830
|
declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
30831
30831
|
data: z.ZodObject<{
|
|
30832
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30833
30832
|
id: z.ZodString;
|
|
30834
30833
|
name: z.ZodString;
|
|
30834
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30835
30835
|
createdAt: z.ZodString;
|
|
30836
30836
|
updatedAt: z.ZodString;
|
|
30837
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30838
30837
|
enabled: z.ZodBoolean;
|
|
30838
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30839
30839
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30840
30840
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30841
30841
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30890,13 +30890,13 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30890
30890
|
}, z.core.$strip>;
|
|
30891
30891
|
declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
30892
30892
|
data: z.ZodArray<z.ZodObject<{
|
|
30893
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30894
30893
|
id: z.ZodString;
|
|
30895
30894
|
name: z.ZodString;
|
|
30895
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30896
30896
|
createdAt: z.ZodString;
|
|
30897
30897
|
updatedAt: z.ZodString;
|
|
30898
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30899
30898
|
enabled: z.ZodBoolean;
|
|
30899
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30900
30900
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
30901
30901
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30902
30902
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>;
|
|
@@ -30956,9 +30956,9 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30956
30956
|
}, z.core.$strip>;
|
|
30957
30957
|
}, z.core.$strip>;
|
|
30958
30958
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
30959
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30960
30959
|
id: z.ZodString;
|
|
30961
30960
|
name: z.ZodString;
|
|
30961
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30962
30962
|
createdAt: z.ZodString;
|
|
30963
30963
|
updatedAt: z.ZodString;
|
|
30964
30964
|
enabled: z.ZodBoolean;
|
|
@@ -31035,9 +31035,9 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
31035
31035
|
}, z.core.$strip>;
|
|
31036
31036
|
declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
31037
31037
|
data: z.ZodArray<z.ZodObject<{
|
|
31038
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31039
31038
|
id: z.ZodString;
|
|
31040
31039
|
name: z.ZodString;
|
|
31040
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31041
31041
|
createdAt: z.ZodString;
|
|
31042
31042
|
updatedAt: z.ZodString;
|
|
31043
31043
|
enabled: z.ZodBoolean;
|
|
@@ -31194,9 +31194,9 @@ declare const SubAgentSkillResponse: z.ZodObject<{
|
|
|
31194
31194
|
}, z.core.$strip>;
|
|
31195
31195
|
declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
31196
31196
|
data: z.ZodArray<z.ZodObject<{
|
|
31197
|
-
description: z.ZodString;
|
|
31198
31197
|
id: z.ZodString;
|
|
31199
31198
|
name: z.ZodString;
|
|
31199
|
+
description: z.ZodString;
|
|
31200
31200
|
createdAt: z.ZodString;
|
|
31201
31201
|
updatedAt: z.ZodString;
|
|
31202
31202
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -31209,9 +31209,9 @@ declare const SubAgentSkillWithIndexArrayResponse: z.ZodObject<{
|
|
|
31209
31209
|
}, z.core.$strip>;
|
|
31210
31210
|
declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
31211
31211
|
data: z.ZodObject<{
|
|
31212
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31213
31212
|
id: z.ZodString;
|
|
31214
31213
|
name: z.ZodString;
|
|
31214
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31215
31215
|
models: z.ZodObject<{
|
|
31216
31216
|
base: z.ZodObject<{
|
|
31217
31217
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31231,17 +31231,18 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31231
31231
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
31232
31232
|
}, z.core.$strip>>;
|
|
31233
31233
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31234
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31235
31234
|
name: z.ZodString;
|
|
31235
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31236
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31236
31237
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31237
31238
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31238
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31239
31239
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31240
31240
|
id: z.ZodString;
|
|
31241
31241
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31242
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31243
31242
|
id: z.ZodString;
|
|
31244
31243
|
name: z.ZodString;
|
|
31244
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31245
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31245
31246
|
models: z.ZodOptional<z.ZodObject<{
|
|
31246
31247
|
base: z.ZodOptional<z.ZodObject<{
|
|
31247
31248
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31258,7 +31259,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31258
31259
|
}, z.core.$strip>>;
|
|
31259
31260
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31260
31261
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31261
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
31262
31262
|
type: z.ZodLiteral<"internal">;
|
|
31263
31263
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31264
31264
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31369,12 +31369,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31369
31369
|
executeCode: z.ZodString;
|
|
31370
31370
|
}, z.core.$strip>>>;
|
|
31371
31371
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31372
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31373
31372
|
name: z.ZodString;
|
|
31373
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31374
31374
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31375
31375
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31376
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
31377
31376
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31377
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
31378
31378
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
31379
31379
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31380
31380
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -31383,8 +31383,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31383
31383
|
id: z.ZodOptional<z.ZodString>;
|
|
31384
31384
|
}, z.core.$strip>>>;
|
|
31385
31385
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31386
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31387
31386
|
name: z.ZodString;
|
|
31387
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31388
31388
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31389
31389
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31390
31390
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31501,10 +31501,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31501
31501
|
executeCode: z.ZodString;
|
|
31502
31502
|
}, z.core.$strip>>>;
|
|
31503
31503
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
31504
|
-
|
|
31504
|
+
name: z.ZodString;
|
|
31505
31505
|
description: z.ZodString;
|
|
31506
|
+
tenantId: z.ZodString;
|
|
31506
31507
|
projectId: z.ZodString;
|
|
31507
|
-
name: z.ZodString;
|
|
31508
31508
|
metadata: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
31509
31509
|
content: z.ZodString;
|
|
31510
31510
|
}>, z.core.$strip>>>;
|
|
@@ -31590,14 +31590,14 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31590
31590
|
}, z.core.$strip>>>;
|
|
31591
31591
|
}, z.core.$strip>>;
|
|
31592
31592
|
credentialReferences: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31593
|
-
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31594
31593
|
id: z.ZodString;
|
|
31595
31594
|
name: z.ZodString;
|
|
31596
31595
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31597
31596
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31597
|
+
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31598
31598
|
credentialStoreId: z.ZodString;
|
|
31599
31599
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31600
|
-
|
|
31600
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31601
31601
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31602
31602
|
type: z.ZodEnum<{
|
|
31603
31603
|
readonly memory: "memory";
|
|
@@ -31614,9 +31614,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31614
31614
|
}, z.core.$strip>;
|
|
31615
31615
|
declare const FullProjectSelectResponse: z.ZodObject<{
|
|
31616
31616
|
data: z.ZodObject<{
|
|
31617
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31618
31617
|
id: z.ZodString;
|
|
31619
31618
|
name: z.ZodString;
|
|
31619
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31620
31620
|
models: z.ZodNullable<z.ZodObject<{
|
|
31621
31621
|
base: z.ZodObject<{
|
|
31622
31622
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31638,17 +31638,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31638
31638
|
createdAt: z.ZodString;
|
|
31639
31639
|
updatedAt: z.ZodString;
|
|
31640
31640
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31641
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31642
31641
|
id: z.ZodString;
|
|
31643
31642
|
name: z.ZodString;
|
|
31643
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31644
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31644
31645
|
createdAt: z.ZodString;
|
|
31645
31646
|
updatedAt: z.ZodString;
|
|
31646
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31647
31647
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31648
31648
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31649
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31650
31649
|
id: z.ZodString;
|
|
31651
31650
|
name: z.ZodString;
|
|
31651
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31652
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31652
31653
|
models: z.ZodNullable<z.ZodType<{
|
|
31653
31654
|
base?: {
|
|
31654
31655
|
model?: string | undefined;
|
|
@@ -31713,7 +31714,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31713
31714
|
}>>>;
|
|
31714
31715
|
createdAt: z.ZodString;
|
|
31715
31716
|
updatedAt: z.ZodString;
|
|
31716
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
31717
31717
|
type: z.ZodLiteral<"internal">;
|
|
31718
31718
|
canUse: z.ZodArray<z.ZodObject<{
|
|
31719
31719
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -31784,10 +31784,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31784
31784
|
description: z.ZodString;
|
|
31785
31785
|
}, z.core.$strip>>>;
|
|
31786
31786
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31787
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31788
|
-
agentId: z.ZodString;
|
|
31789
31787
|
id: z.ZodString;
|
|
31790
31788
|
name: z.ZodString;
|
|
31789
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31790
|
+
agentId: z.ZodString;
|
|
31791
31791
|
createdAt: z.ZodString;
|
|
31792
31792
|
updatedAt: z.ZodString;
|
|
31793
31793
|
functionId: z.ZodString;
|
|
@@ -31895,10 +31895,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31895
31895
|
id: z.ZodString;
|
|
31896
31896
|
}>, z.core.$strip>>;
|
|
31897
31897
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31898
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31899
|
-
agentId: z.ZodString;
|
|
31900
31898
|
id: z.ZodString;
|
|
31901
31899
|
name: z.ZodString;
|
|
31900
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31901
|
+
agentId: z.ZodString;
|
|
31902
31902
|
createdAt: z.ZodString;
|
|
31903
31903
|
updatedAt: z.ZodString;
|
|
31904
31904
|
functionId: z.ZodString;
|
|
@@ -32043,14 +32043,14 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32043
32043
|
}, z.core.$strip>>>;
|
|
32044
32044
|
}, z.core.$strip>>;
|
|
32045
32045
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32046
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32047
32046
|
id: z.ZodString;
|
|
32048
32047
|
name: z.ZodString;
|
|
32049
32048
|
createdAt: z.ZodString;
|
|
32050
32049
|
updatedAt: z.ZodString;
|
|
32050
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32051
32051
|
credentialStoreId: z.ZodString;
|
|
32052
32052
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32053
|
-
|
|
32053
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32054
32054
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32055
32055
|
type: z.ZodEnum<{
|
|
32056
32056
|
readonly memory: "memory";
|
|
@@ -32640,9 +32640,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32640
32640
|
}, z.core.$strip>;
|
|
32641
32641
|
declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
32642
32642
|
data: z.ZodObject<{
|
|
32643
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32644
32643
|
id: z.ZodString;
|
|
32645
32644
|
name: z.ZodString;
|
|
32645
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32646
32646
|
models: z.ZodNullable<z.ZodObject<{
|
|
32647
32647
|
base: z.ZodObject<{
|
|
32648
32648
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -32693,10 +32693,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32693
32693
|
id: z.ZodString;
|
|
32694
32694
|
}>, z.core.$strip>>;
|
|
32695
32695
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32696
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32697
|
-
agentId: z.ZodString;
|
|
32698
32696
|
id: z.ZodString;
|
|
32699
32697
|
name: z.ZodString;
|
|
32698
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32699
|
+
agentId: z.ZodString;
|
|
32700
32700
|
createdAt: z.ZodString;
|
|
32701
32701
|
updatedAt: z.ZodString;
|
|
32702
32702
|
functionId: z.ZodString;
|
|
@@ -32841,14 +32841,14 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32841
32841
|
}, z.core.$strip>>>;
|
|
32842
32842
|
}, z.core.$strip>>;
|
|
32843
32843
|
credentialReferences: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32844
|
-
userId: z.ZodNullable<z.ZodString>;
|
|
32845
32844
|
id: z.ZodString;
|
|
32846
32845
|
name: z.ZodString;
|
|
32847
32846
|
createdAt: z.ZodString;
|
|
32848
32847
|
updatedAt: z.ZodString;
|
|
32848
|
+
toolId: z.ZodNullable<z.ZodString>;
|
|
32849
32849
|
credentialStoreId: z.ZodString;
|
|
32850
32850
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32851
|
-
|
|
32851
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
32852
32852
|
createdBy: z.ZodNullable<z.ZodString>;
|
|
32853
32853
|
type: z.ZodEnum<{
|
|
32854
32854
|
readonly memory: "memory";
|
|
@@ -33432,12 +33432,12 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33432
33432
|
}>>>;
|
|
33433
33433
|
}, z.core.$strip>>>;
|
|
33434
33434
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33435
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33436
33435
|
id: z.ZodString;
|
|
33437
33436
|
name: z.ZodString;
|
|
33437
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33438
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33438
33439
|
createdAt: z.ZodString;
|
|
33439
33440
|
updatedAt: z.ZodString;
|
|
33440
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33441
33441
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33442
33442
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<OmitProjectScope<{
|
|
33443
33443
|
createdAt: z.ZodString;
|
|
@@ -33485,10 +33485,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33485
33485
|
description: z.ZodString;
|
|
33486
33486
|
}, z.core.$strip>>>;
|
|
33487
33487
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33488
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33489
|
-
agentId: z.ZodString;
|
|
33490
33488
|
id: z.ZodString;
|
|
33491
33489
|
name: z.ZodString;
|
|
33490
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33491
|
+
agentId: z.ZodString;
|
|
33492
33492
|
createdAt: z.ZodString;
|
|
33493
33493
|
updatedAt: z.ZodString;
|
|
33494
33494
|
functionId: z.ZodString;
|
|
@@ -33566,9 +33566,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33566
33566
|
}, z.core.$strip>>;
|
|
33567
33567
|
prompt: z.ZodNullable<z.ZodString>;
|
|
33568
33568
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33569
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33570
33569
|
id: z.ZodString;
|
|
33571
33570
|
name: z.ZodString;
|
|
33571
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33572
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33572
33573
|
models: z.ZodNullable<z.ZodType<{
|
|
33573
33574
|
base?: {
|
|
33574
33575
|
model?: string | undefined;
|
|
@@ -33633,7 +33634,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33633
33634
|
}>>>;
|
|
33634
33635
|
createdAt: z.ZodString;
|
|
33635
33636
|
updatedAt: z.ZodString;
|
|
33636
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33637
33637
|
type: z.ZodLiteral<"internal">;
|
|
33638
33638
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33639
33639
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33672,17 +33672,18 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33672
33672
|
}, z.core.$strip>;
|
|
33673
33673
|
declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
33674
33674
|
data: z.ZodObject<{
|
|
33675
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33676
33675
|
name: z.ZodString;
|
|
33676
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33677
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33677
33678
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33678
33679
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33679
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33680
33680
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33681
33681
|
id: z.ZodString;
|
|
33682
33682
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33683
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33684
33683
|
id: z.ZodString;
|
|
33685
33684
|
name: z.ZodString;
|
|
33685
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33686
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33686
33687
|
models: z.ZodOptional<z.ZodObject<{
|
|
33687
33688
|
base: z.ZodOptional<z.ZodObject<{
|
|
33688
33689
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -33699,7 +33700,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33699
33700
|
}, z.core.$strip>>;
|
|
33700
33701
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33701
33702
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33702
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
33703
33703
|
type: z.ZodLiteral<"internal">;
|
|
33704
33704
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33705
33705
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -33810,12 +33810,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33810
33810
|
executeCode: z.ZodString;
|
|
33811
33811
|
}, z.core.$strip>>>;
|
|
33812
33812
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33813
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33814
33813
|
name: z.ZodString;
|
|
33814
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33815
33815
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33816
33816
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33817
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
33818
33817
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33818
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
33819
33819
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
33820
33820
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33821
33821
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod3.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod3.Json, unknown>>>>;
|
|
@@ -33824,8 +33824,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33824
33824
|
id: z.ZodOptional<z.ZodString>;
|
|
33825
33825
|
}, z.core.$strip>>>;
|
|
33826
33826
|
scheduledTriggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33827
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33828
33827
|
name: z.ZodString;
|
|
33828
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33829
33829
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
33830
33830
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
33831
33831
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33883,17 +33883,18 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33883
33883
|
}, z.core.$strip>;
|
|
33884
33884
|
declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
33885
33885
|
data: z.ZodObject<{
|
|
33886
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33887
33886
|
id: z.ZodString;
|
|
33888
33887
|
name: z.ZodString;
|
|
33888
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33889
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33889
33890
|
createdAt: z.ZodString;
|
|
33890
33891
|
updatedAt: z.ZodString;
|
|
33891
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
33892
33892
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
33893
33893
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33894
|
-
description: z.ZodNullable<z.ZodString>;
|
|
33895
33894
|
id: z.ZodString;
|
|
33896
33895
|
name: z.ZodString;
|
|
33896
|
+
description: z.ZodNullable<z.ZodString>;
|
|
33897
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33897
33898
|
models: z.ZodNullable<z.ZodType<{
|
|
33898
33899
|
base?: {
|
|
33899
33900
|
model?: string | undefined;
|
|
@@ -33958,7 +33959,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33958
33959
|
}>>>;
|
|
33959
33960
|
createdAt: z.ZodString;
|
|
33960
33961
|
updatedAt: z.ZodString;
|
|
33961
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
33962
33962
|
type: z.ZodLiteral<"internal">;
|
|
33963
33963
|
canUse: z.ZodArray<z.ZodObject<{
|
|
33964
33964
|
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
@@ -34029,10 +34029,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34029
34029
|
description: z.ZodString;
|
|
34030
34030
|
}, z.core.$strip>>>;
|
|
34031
34031
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34032
|
-
description: z.ZodNullable<z.ZodString>;
|
|
34033
|
-
agentId: z.ZodString;
|
|
34034
34032
|
id: z.ZodString;
|
|
34035
34033
|
name: z.ZodString;
|
|
34034
|
+
description: z.ZodNullable<z.ZodString>;
|
|
34035
|
+
agentId: z.ZodString;
|
|
34036
34036
|
createdAt: z.ZodString;
|
|
34037
34037
|
updatedAt: z.ZodString;
|
|
34038
34038
|
functionId: z.ZodString;
|
|
@@ -34729,8 +34729,8 @@ declare const ProjectMetadataSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
|
34729
34729
|
}>;
|
|
34730
34730
|
}, undefined>, undefined>;
|
|
34731
34731
|
declare const ProjectMetadataInsertSchema: z.ZodObject<{
|
|
34732
|
-
tenantId: z.ZodString;
|
|
34733
34732
|
id: z.ZodString;
|
|
34733
|
+
tenantId: z.ZodString;
|
|
34734
34734
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34735
34735
|
mainBranchName: z.ZodString;
|
|
34736
34736
|
}, {
|
|
@@ -35081,8 +35081,8 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod3.BuildSchema<"s
|
|
|
35081
35081
|
}>;
|
|
35082
35082
|
}, undefined>, undefined>;
|
|
35083
35083
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
35084
|
-
tenantId: z.ZodString;
|
|
35085
35084
|
id: z.ZodString;
|
|
35085
|
+
tenantId: z.ZodString;
|
|
35086
35086
|
installationId: z.ZodString;
|
|
35087
35087
|
accountLogin: z.ZodString;
|
|
35088
35088
|
accountId: z.ZodString;
|
|
@@ -35112,8 +35112,8 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<OmitTenantSc
|
|
|
35112
35112
|
id: z.ZodString;
|
|
35113
35113
|
}>, z.core.$strip>;
|
|
35114
35114
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGeneratedFields<{
|
|
35115
|
-
tenantId: z.ZodString;
|
|
35116
35115
|
id: z.ZodString;
|
|
35116
|
+
tenantId: z.ZodString;
|
|
35117
35117
|
installationId: z.ZodString;
|
|
35118
35118
|
accountLogin: z.ZodString;
|
|
35119
35119
|
accountId: z.ZodString;
|
|
@@ -36238,5 +36238,1093 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
36238
36238
|
}, {}, {}>;
|
|
36239
36239
|
}, undefined>, undefined>>;
|
|
36240
36240
|
}, z.core.$strip>;
|
|
36241
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
36242
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36243
|
+
name: "created_at";
|
|
36244
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36245
|
+
dataType: "string";
|
|
36246
|
+
columnType: "PgTimestampString";
|
|
36247
|
+
data: string;
|
|
36248
|
+
driverParam: string;
|
|
36249
|
+
notNull: true;
|
|
36250
|
+
hasDefault: true;
|
|
36251
|
+
isPrimaryKey: false;
|
|
36252
|
+
isAutoincrement: false;
|
|
36253
|
+
hasRuntimeDefault: false;
|
|
36254
|
+
enumValues: undefined;
|
|
36255
|
+
baseColumn: never;
|
|
36256
|
+
identity: undefined;
|
|
36257
|
+
generated: undefined;
|
|
36258
|
+
}, {}, {}>;
|
|
36259
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36260
|
+
name: "updated_at";
|
|
36261
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36262
|
+
dataType: "string";
|
|
36263
|
+
columnType: "PgTimestampString";
|
|
36264
|
+
data: string;
|
|
36265
|
+
driverParam: string;
|
|
36266
|
+
notNull: true;
|
|
36267
|
+
hasDefault: true;
|
|
36268
|
+
isPrimaryKey: false;
|
|
36269
|
+
isAutoincrement: false;
|
|
36270
|
+
hasRuntimeDefault: false;
|
|
36271
|
+
enumValues: undefined;
|
|
36272
|
+
baseColumn: never;
|
|
36273
|
+
identity: undefined;
|
|
36274
|
+
generated: undefined;
|
|
36275
|
+
}, {}, {}>;
|
|
36276
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
36277
|
+
name: "id";
|
|
36278
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36279
|
+
dataType: "string";
|
|
36280
|
+
columnType: "PgVarchar";
|
|
36281
|
+
data: string;
|
|
36282
|
+
driverParam: string;
|
|
36283
|
+
notNull: true;
|
|
36284
|
+
hasDefault: false;
|
|
36285
|
+
isPrimaryKey: true;
|
|
36286
|
+
isAutoincrement: false;
|
|
36287
|
+
hasRuntimeDefault: false;
|
|
36288
|
+
enumValues: [string, ...string[]];
|
|
36289
|
+
baseColumn: never;
|
|
36290
|
+
identity: undefined;
|
|
36291
|
+
generated: undefined;
|
|
36292
|
+
}, {}, {
|
|
36293
|
+
length: 256;
|
|
36294
|
+
}>;
|
|
36295
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
36296
|
+
name: "tenant_id";
|
|
36297
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36298
|
+
dataType: "string";
|
|
36299
|
+
columnType: "PgVarchar";
|
|
36300
|
+
data: string;
|
|
36301
|
+
driverParam: string;
|
|
36302
|
+
notNull: true;
|
|
36303
|
+
hasDefault: false;
|
|
36304
|
+
isPrimaryKey: false;
|
|
36305
|
+
isAutoincrement: false;
|
|
36306
|
+
hasRuntimeDefault: false;
|
|
36307
|
+
enumValues: [string, ...string[]];
|
|
36308
|
+
baseColumn: never;
|
|
36309
|
+
identity: undefined;
|
|
36310
|
+
generated: undefined;
|
|
36311
|
+
}, {}, {
|
|
36312
|
+
length: 256;
|
|
36313
|
+
}>;
|
|
36314
|
+
slackTeamId: drizzle_orm_pg_core0.PgColumn<{
|
|
36315
|
+
name: "slack_team_id";
|
|
36316
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36317
|
+
dataType: "string";
|
|
36318
|
+
columnType: "PgVarchar";
|
|
36319
|
+
data: string;
|
|
36320
|
+
driverParam: string;
|
|
36321
|
+
notNull: true;
|
|
36322
|
+
hasDefault: false;
|
|
36323
|
+
isPrimaryKey: false;
|
|
36324
|
+
isAutoincrement: false;
|
|
36325
|
+
hasRuntimeDefault: false;
|
|
36326
|
+
enumValues: [string, ...string[]];
|
|
36327
|
+
baseColumn: never;
|
|
36328
|
+
identity: undefined;
|
|
36329
|
+
generated: undefined;
|
|
36330
|
+
}, {}, {
|
|
36331
|
+
length: 256;
|
|
36332
|
+
}>;
|
|
36333
|
+
slackChannelId: drizzle_orm_pg_core0.PgColumn<{
|
|
36334
|
+
name: "slack_channel_id";
|
|
36335
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36336
|
+
dataType: "string";
|
|
36337
|
+
columnType: "PgVarchar";
|
|
36338
|
+
data: string;
|
|
36339
|
+
driverParam: string;
|
|
36340
|
+
notNull: true;
|
|
36341
|
+
hasDefault: false;
|
|
36342
|
+
isPrimaryKey: false;
|
|
36343
|
+
isAutoincrement: false;
|
|
36344
|
+
hasRuntimeDefault: false;
|
|
36345
|
+
enumValues: [string, ...string[]];
|
|
36346
|
+
baseColumn: never;
|
|
36347
|
+
identity: undefined;
|
|
36348
|
+
generated: undefined;
|
|
36349
|
+
}, {}, {
|
|
36350
|
+
length: 256;
|
|
36351
|
+
}>;
|
|
36352
|
+
slackChannelName: drizzle_orm_pg_core0.PgColumn<{
|
|
36353
|
+
name: "slack_channel_name";
|
|
36354
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36355
|
+
dataType: "string";
|
|
36356
|
+
columnType: "PgVarchar";
|
|
36357
|
+
data: string;
|
|
36358
|
+
driverParam: string;
|
|
36359
|
+
notNull: false;
|
|
36360
|
+
hasDefault: false;
|
|
36361
|
+
isPrimaryKey: false;
|
|
36362
|
+
isAutoincrement: false;
|
|
36363
|
+
hasRuntimeDefault: false;
|
|
36364
|
+
enumValues: [string, ...string[]];
|
|
36365
|
+
baseColumn: never;
|
|
36366
|
+
identity: undefined;
|
|
36367
|
+
generated: undefined;
|
|
36368
|
+
}, {}, {
|
|
36369
|
+
length: 256;
|
|
36370
|
+
}>;
|
|
36371
|
+
slackChannelType: drizzle_orm_pg_core0.PgColumn<{
|
|
36372
|
+
name: "slack_channel_type";
|
|
36373
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36374
|
+
dataType: "string";
|
|
36375
|
+
columnType: "PgVarchar";
|
|
36376
|
+
data: string;
|
|
36377
|
+
driverParam: string;
|
|
36378
|
+
notNull: false;
|
|
36379
|
+
hasDefault: false;
|
|
36380
|
+
isPrimaryKey: false;
|
|
36381
|
+
isAutoincrement: false;
|
|
36382
|
+
hasRuntimeDefault: false;
|
|
36383
|
+
enumValues: [string, ...string[]];
|
|
36384
|
+
baseColumn: never;
|
|
36385
|
+
identity: undefined;
|
|
36386
|
+
generated: undefined;
|
|
36387
|
+
}, {}, {
|
|
36388
|
+
length: 50;
|
|
36389
|
+
}>;
|
|
36390
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
36391
|
+
name: "project_id";
|
|
36392
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36393
|
+
dataType: "string";
|
|
36394
|
+
columnType: "PgVarchar";
|
|
36395
|
+
data: string;
|
|
36396
|
+
driverParam: string;
|
|
36397
|
+
notNull: true;
|
|
36398
|
+
hasDefault: false;
|
|
36399
|
+
isPrimaryKey: false;
|
|
36400
|
+
isAutoincrement: false;
|
|
36401
|
+
hasRuntimeDefault: false;
|
|
36402
|
+
enumValues: [string, ...string[]];
|
|
36403
|
+
baseColumn: never;
|
|
36404
|
+
identity: undefined;
|
|
36405
|
+
generated: undefined;
|
|
36406
|
+
}, {}, {
|
|
36407
|
+
length: 256;
|
|
36408
|
+
}>;
|
|
36409
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
36410
|
+
name: "agent_id";
|
|
36411
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36412
|
+
dataType: "string";
|
|
36413
|
+
columnType: "PgVarchar";
|
|
36414
|
+
data: string;
|
|
36415
|
+
driverParam: string;
|
|
36416
|
+
notNull: true;
|
|
36417
|
+
hasDefault: false;
|
|
36418
|
+
isPrimaryKey: false;
|
|
36419
|
+
isAutoincrement: false;
|
|
36420
|
+
hasRuntimeDefault: false;
|
|
36421
|
+
enumValues: [string, ...string[]];
|
|
36422
|
+
baseColumn: never;
|
|
36423
|
+
identity: undefined;
|
|
36424
|
+
generated: undefined;
|
|
36425
|
+
}, {}, {
|
|
36426
|
+
length: 256;
|
|
36427
|
+
}>;
|
|
36428
|
+
configuredByUserId: drizzle_orm_pg_core0.PgColumn<{
|
|
36429
|
+
name: "configured_by_user_id";
|
|
36430
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36431
|
+
dataType: "string";
|
|
36432
|
+
columnType: "PgText";
|
|
36433
|
+
data: string;
|
|
36434
|
+
driverParam: string;
|
|
36435
|
+
notNull: false;
|
|
36436
|
+
hasDefault: false;
|
|
36437
|
+
isPrimaryKey: false;
|
|
36438
|
+
isAutoincrement: false;
|
|
36439
|
+
hasRuntimeDefault: false;
|
|
36440
|
+
enumValues: [string, ...string[]];
|
|
36441
|
+
baseColumn: never;
|
|
36442
|
+
identity: undefined;
|
|
36443
|
+
generated: undefined;
|
|
36444
|
+
}, {}, {}>;
|
|
36445
|
+
enabled: drizzle_orm_pg_core0.PgColumn<{
|
|
36446
|
+
name: "enabled";
|
|
36447
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36448
|
+
dataType: "boolean";
|
|
36449
|
+
columnType: "PgBoolean";
|
|
36450
|
+
data: boolean;
|
|
36451
|
+
driverParam: boolean;
|
|
36452
|
+
notNull: true;
|
|
36453
|
+
hasDefault: true;
|
|
36454
|
+
isPrimaryKey: false;
|
|
36455
|
+
isAutoincrement: false;
|
|
36456
|
+
hasRuntimeDefault: false;
|
|
36457
|
+
enumValues: undefined;
|
|
36458
|
+
baseColumn: never;
|
|
36459
|
+
identity: undefined;
|
|
36460
|
+
generated: undefined;
|
|
36461
|
+
}, {}, {}>;
|
|
36462
|
+
grantAccessToMembers: drizzle_orm_pg_core0.PgColumn<{
|
|
36463
|
+
name: "grant_access_to_members";
|
|
36464
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36465
|
+
dataType: "boolean";
|
|
36466
|
+
columnType: "PgBoolean";
|
|
36467
|
+
data: boolean;
|
|
36468
|
+
driverParam: boolean;
|
|
36469
|
+
notNull: true;
|
|
36470
|
+
hasDefault: true;
|
|
36471
|
+
isPrimaryKey: false;
|
|
36472
|
+
isAutoincrement: false;
|
|
36473
|
+
hasRuntimeDefault: false;
|
|
36474
|
+
enumValues: undefined;
|
|
36475
|
+
baseColumn: never;
|
|
36476
|
+
identity: undefined;
|
|
36477
|
+
generated: undefined;
|
|
36478
|
+
}, {}, {}>;
|
|
36479
|
+
}, drizzle_zod3.BuildRefine<{
|
|
36480
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36481
|
+
name: "created_at";
|
|
36482
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36483
|
+
dataType: "string";
|
|
36484
|
+
columnType: "PgTimestampString";
|
|
36485
|
+
data: string;
|
|
36486
|
+
driverParam: string;
|
|
36487
|
+
notNull: true;
|
|
36488
|
+
hasDefault: true;
|
|
36489
|
+
isPrimaryKey: false;
|
|
36490
|
+
isAutoincrement: false;
|
|
36491
|
+
hasRuntimeDefault: false;
|
|
36492
|
+
enumValues: undefined;
|
|
36493
|
+
baseColumn: never;
|
|
36494
|
+
identity: undefined;
|
|
36495
|
+
generated: undefined;
|
|
36496
|
+
}, {}, {}>;
|
|
36497
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36498
|
+
name: "updated_at";
|
|
36499
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36500
|
+
dataType: "string";
|
|
36501
|
+
columnType: "PgTimestampString";
|
|
36502
|
+
data: string;
|
|
36503
|
+
driverParam: string;
|
|
36504
|
+
notNull: true;
|
|
36505
|
+
hasDefault: true;
|
|
36506
|
+
isPrimaryKey: false;
|
|
36507
|
+
isAutoincrement: false;
|
|
36508
|
+
hasRuntimeDefault: false;
|
|
36509
|
+
enumValues: undefined;
|
|
36510
|
+
baseColumn: never;
|
|
36511
|
+
identity: undefined;
|
|
36512
|
+
generated: undefined;
|
|
36513
|
+
}, {}, {}>;
|
|
36514
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
36515
|
+
name: "id";
|
|
36516
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36517
|
+
dataType: "string";
|
|
36518
|
+
columnType: "PgVarchar";
|
|
36519
|
+
data: string;
|
|
36520
|
+
driverParam: string;
|
|
36521
|
+
notNull: true;
|
|
36522
|
+
hasDefault: false;
|
|
36523
|
+
isPrimaryKey: true;
|
|
36524
|
+
isAutoincrement: false;
|
|
36525
|
+
hasRuntimeDefault: false;
|
|
36526
|
+
enumValues: [string, ...string[]];
|
|
36527
|
+
baseColumn: never;
|
|
36528
|
+
identity: undefined;
|
|
36529
|
+
generated: undefined;
|
|
36530
|
+
}, {}, {
|
|
36531
|
+
length: 256;
|
|
36532
|
+
}>;
|
|
36533
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
36534
|
+
name: "tenant_id";
|
|
36535
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36536
|
+
dataType: "string";
|
|
36537
|
+
columnType: "PgVarchar";
|
|
36538
|
+
data: string;
|
|
36539
|
+
driverParam: string;
|
|
36540
|
+
notNull: true;
|
|
36541
|
+
hasDefault: false;
|
|
36542
|
+
isPrimaryKey: false;
|
|
36543
|
+
isAutoincrement: false;
|
|
36544
|
+
hasRuntimeDefault: false;
|
|
36545
|
+
enumValues: [string, ...string[]];
|
|
36546
|
+
baseColumn: never;
|
|
36547
|
+
identity: undefined;
|
|
36548
|
+
generated: undefined;
|
|
36549
|
+
}, {}, {
|
|
36550
|
+
length: 256;
|
|
36551
|
+
}>;
|
|
36552
|
+
slackTeamId: drizzle_orm_pg_core0.PgColumn<{
|
|
36553
|
+
name: "slack_team_id";
|
|
36554
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36555
|
+
dataType: "string";
|
|
36556
|
+
columnType: "PgVarchar";
|
|
36557
|
+
data: string;
|
|
36558
|
+
driverParam: string;
|
|
36559
|
+
notNull: true;
|
|
36560
|
+
hasDefault: false;
|
|
36561
|
+
isPrimaryKey: false;
|
|
36562
|
+
isAutoincrement: false;
|
|
36563
|
+
hasRuntimeDefault: false;
|
|
36564
|
+
enumValues: [string, ...string[]];
|
|
36565
|
+
baseColumn: never;
|
|
36566
|
+
identity: undefined;
|
|
36567
|
+
generated: undefined;
|
|
36568
|
+
}, {}, {
|
|
36569
|
+
length: 256;
|
|
36570
|
+
}>;
|
|
36571
|
+
slackChannelId: drizzle_orm_pg_core0.PgColumn<{
|
|
36572
|
+
name: "slack_channel_id";
|
|
36573
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36574
|
+
dataType: "string";
|
|
36575
|
+
columnType: "PgVarchar";
|
|
36576
|
+
data: string;
|
|
36577
|
+
driverParam: string;
|
|
36578
|
+
notNull: true;
|
|
36579
|
+
hasDefault: false;
|
|
36580
|
+
isPrimaryKey: false;
|
|
36581
|
+
isAutoincrement: false;
|
|
36582
|
+
hasRuntimeDefault: false;
|
|
36583
|
+
enumValues: [string, ...string[]];
|
|
36584
|
+
baseColumn: never;
|
|
36585
|
+
identity: undefined;
|
|
36586
|
+
generated: undefined;
|
|
36587
|
+
}, {}, {
|
|
36588
|
+
length: 256;
|
|
36589
|
+
}>;
|
|
36590
|
+
slackChannelName: drizzle_orm_pg_core0.PgColumn<{
|
|
36591
|
+
name: "slack_channel_name";
|
|
36592
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36593
|
+
dataType: "string";
|
|
36594
|
+
columnType: "PgVarchar";
|
|
36595
|
+
data: string;
|
|
36596
|
+
driverParam: string;
|
|
36597
|
+
notNull: false;
|
|
36598
|
+
hasDefault: false;
|
|
36599
|
+
isPrimaryKey: false;
|
|
36600
|
+
isAutoincrement: false;
|
|
36601
|
+
hasRuntimeDefault: false;
|
|
36602
|
+
enumValues: [string, ...string[]];
|
|
36603
|
+
baseColumn: never;
|
|
36604
|
+
identity: undefined;
|
|
36605
|
+
generated: undefined;
|
|
36606
|
+
}, {}, {
|
|
36607
|
+
length: 256;
|
|
36608
|
+
}>;
|
|
36609
|
+
slackChannelType: drizzle_orm_pg_core0.PgColumn<{
|
|
36610
|
+
name: "slack_channel_type";
|
|
36611
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36612
|
+
dataType: "string";
|
|
36613
|
+
columnType: "PgVarchar";
|
|
36614
|
+
data: string;
|
|
36615
|
+
driverParam: string;
|
|
36616
|
+
notNull: false;
|
|
36617
|
+
hasDefault: false;
|
|
36618
|
+
isPrimaryKey: false;
|
|
36619
|
+
isAutoincrement: false;
|
|
36620
|
+
hasRuntimeDefault: false;
|
|
36621
|
+
enumValues: [string, ...string[]];
|
|
36622
|
+
baseColumn: never;
|
|
36623
|
+
identity: undefined;
|
|
36624
|
+
generated: undefined;
|
|
36625
|
+
}, {}, {
|
|
36626
|
+
length: 50;
|
|
36627
|
+
}>;
|
|
36628
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
36629
|
+
name: "project_id";
|
|
36630
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36631
|
+
dataType: "string";
|
|
36632
|
+
columnType: "PgVarchar";
|
|
36633
|
+
data: string;
|
|
36634
|
+
driverParam: string;
|
|
36635
|
+
notNull: true;
|
|
36636
|
+
hasDefault: false;
|
|
36637
|
+
isPrimaryKey: false;
|
|
36638
|
+
isAutoincrement: false;
|
|
36639
|
+
hasRuntimeDefault: false;
|
|
36640
|
+
enumValues: [string, ...string[]];
|
|
36641
|
+
baseColumn: never;
|
|
36642
|
+
identity: undefined;
|
|
36643
|
+
generated: undefined;
|
|
36644
|
+
}, {}, {
|
|
36645
|
+
length: 256;
|
|
36646
|
+
}>;
|
|
36647
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
36648
|
+
name: "agent_id";
|
|
36649
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36650
|
+
dataType: "string";
|
|
36651
|
+
columnType: "PgVarchar";
|
|
36652
|
+
data: string;
|
|
36653
|
+
driverParam: string;
|
|
36654
|
+
notNull: true;
|
|
36655
|
+
hasDefault: false;
|
|
36656
|
+
isPrimaryKey: false;
|
|
36657
|
+
isAutoincrement: false;
|
|
36658
|
+
hasRuntimeDefault: false;
|
|
36659
|
+
enumValues: [string, ...string[]];
|
|
36660
|
+
baseColumn: never;
|
|
36661
|
+
identity: undefined;
|
|
36662
|
+
generated: undefined;
|
|
36663
|
+
}, {}, {
|
|
36664
|
+
length: 256;
|
|
36665
|
+
}>;
|
|
36666
|
+
configuredByUserId: drizzle_orm_pg_core0.PgColumn<{
|
|
36667
|
+
name: "configured_by_user_id";
|
|
36668
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36669
|
+
dataType: "string";
|
|
36670
|
+
columnType: "PgText";
|
|
36671
|
+
data: string;
|
|
36672
|
+
driverParam: string;
|
|
36673
|
+
notNull: false;
|
|
36674
|
+
hasDefault: false;
|
|
36675
|
+
isPrimaryKey: false;
|
|
36676
|
+
isAutoincrement: false;
|
|
36677
|
+
hasRuntimeDefault: false;
|
|
36678
|
+
enumValues: [string, ...string[]];
|
|
36679
|
+
baseColumn: never;
|
|
36680
|
+
identity: undefined;
|
|
36681
|
+
generated: undefined;
|
|
36682
|
+
}, {}, {}>;
|
|
36683
|
+
enabled: drizzle_orm_pg_core0.PgColumn<{
|
|
36684
|
+
name: "enabled";
|
|
36685
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36686
|
+
dataType: "boolean";
|
|
36687
|
+
columnType: "PgBoolean";
|
|
36688
|
+
data: boolean;
|
|
36689
|
+
driverParam: boolean;
|
|
36690
|
+
notNull: true;
|
|
36691
|
+
hasDefault: true;
|
|
36692
|
+
isPrimaryKey: false;
|
|
36693
|
+
isAutoincrement: false;
|
|
36694
|
+
hasRuntimeDefault: false;
|
|
36695
|
+
enumValues: undefined;
|
|
36696
|
+
baseColumn: never;
|
|
36697
|
+
identity: undefined;
|
|
36698
|
+
generated: undefined;
|
|
36699
|
+
}, {}, {}>;
|
|
36700
|
+
grantAccessToMembers: drizzle_orm_pg_core0.PgColumn<{
|
|
36701
|
+
name: "grant_access_to_members";
|
|
36702
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
36703
|
+
dataType: "boolean";
|
|
36704
|
+
columnType: "PgBoolean";
|
|
36705
|
+
data: boolean;
|
|
36706
|
+
driverParam: boolean;
|
|
36707
|
+
notNull: true;
|
|
36708
|
+
hasDefault: true;
|
|
36709
|
+
isPrimaryKey: false;
|
|
36710
|
+
isAutoincrement: false;
|
|
36711
|
+
hasRuntimeDefault: false;
|
|
36712
|
+
enumValues: undefined;
|
|
36713
|
+
baseColumn: never;
|
|
36714
|
+
identity: undefined;
|
|
36715
|
+
generated: undefined;
|
|
36716
|
+
}, {}, {}>;
|
|
36717
|
+
}, undefined>, undefined>;
|
|
36718
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod3.BuildSchema<"select", {
|
|
36719
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36720
|
+
name: "created_at";
|
|
36721
|
+
tableName: "work_app_slack_workspaces";
|
|
36722
|
+
dataType: "string";
|
|
36723
|
+
columnType: "PgTimestampString";
|
|
36724
|
+
data: string;
|
|
36725
|
+
driverParam: string;
|
|
36726
|
+
notNull: true;
|
|
36727
|
+
hasDefault: true;
|
|
36728
|
+
isPrimaryKey: false;
|
|
36729
|
+
isAutoincrement: false;
|
|
36730
|
+
hasRuntimeDefault: false;
|
|
36731
|
+
enumValues: undefined;
|
|
36732
|
+
baseColumn: never;
|
|
36733
|
+
identity: undefined;
|
|
36734
|
+
generated: undefined;
|
|
36735
|
+
}, {}, {}>;
|
|
36736
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
36737
|
+
name: "updated_at";
|
|
36738
|
+
tableName: "work_app_slack_workspaces";
|
|
36739
|
+
dataType: "string";
|
|
36740
|
+
columnType: "PgTimestampString";
|
|
36741
|
+
data: string;
|
|
36742
|
+
driverParam: string;
|
|
36743
|
+
notNull: true;
|
|
36744
|
+
hasDefault: true;
|
|
36745
|
+
isPrimaryKey: false;
|
|
36746
|
+
isAutoincrement: false;
|
|
36747
|
+
hasRuntimeDefault: false;
|
|
36748
|
+
enumValues: undefined;
|
|
36749
|
+
baseColumn: never;
|
|
36750
|
+
identity: undefined;
|
|
36751
|
+
generated: undefined;
|
|
36752
|
+
}, {}, {}>;
|
|
36753
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
36754
|
+
name: "id";
|
|
36755
|
+
tableName: "work_app_slack_workspaces";
|
|
36756
|
+
dataType: "string";
|
|
36757
|
+
columnType: "PgVarchar";
|
|
36758
|
+
data: string;
|
|
36759
|
+
driverParam: string;
|
|
36760
|
+
notNull: true;
|
|
36761
|
+
hasDefault: false;
|
|
36762
|
+
isPrimaryKey: true;
|
|
36763
|
+
isAutoincrement: false;
|
|
36764
|
+
hasRuntimeDefault: false;
|
|
36765
|
+
enumValues: [string, ...string[]];
|
|
36766
|
+
baseColumn: never;
|
|
36767
|
+
identity: undefined;
|
|
36768
|
+
generated: undefined;
|
|
36769
|
+
}, {}, {
|
|
36770
|
+
length: 256;
|
|
36771
|
+
}>;
|
|
36772
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
36773
|
+
name: "tenant_id";
|
|
36774
|
+
tableName: "work_app_slack_workspaces";
|
|
36775
|
+
dataType: "string";
|
|
36776
|
+
columnType: "PgVarchar";
|
|
36777
|
+
data: string;
|
|
36778
|
+
driverParam: string;
|
|
36779
|
+
notNull: true;
|
|
36780
|
+
hasDefault: false;
|
|
36781
|
+
isPrimaryKey: false;
|
|
36782
|
+
isAutoincrement: false;
|
|
36783
|
+
hasRuntimeDefault: false;
|
|
36784
|
+
enumValues: [string, ...string[]];
|
|
36785
|
+
baseColumn: never;
|
|
36786
|
+
identity: undefined;
|
|
36787
|
+
generated: undefined;
|
|
36788
|
+
}, {}, {
|
|
36789
|
+
length: 256;
|
|
36790
|
+
}>;
|
|
36791
|
+
slackTeamId: drizzle_orm_pg_core0.PgColumn<{
|
|
36792
|
+
name: "slack_team_id";
|
|
36793
|
+
tableName: "work_app_slack_workspaces";
|
|
36794
|
+
dataType: "string";
|
|
36795
|
+
columnType: "PgVarchar";
|
|
36796
|
+
data: string;
|
|
36797
|
+
driverParam: string;
|
|
36798
|
+
notNull: true;
|
|
36799
|
+
hasDefault: false;
|
|
36800
|
+
isPrimaryKey: false;
|
|
36801
|
+
isAutoincrement: false;
|
|
36802
|
+
hasRuntimeDefault: false;
|
|
36803
|
+
enumValues: [string, ...string[]];
|
|
36804
|
+
baseColumn: never;
|
|
36805
|
+
identity: undefined;
|
|
36806
|
+
generated: undefined;
|
|
36807
|
+
}, {}, {
|
|
36808
|
+
length: 256;
|
|
36809
|
+
}>;
|
|
36810
|
+
slackEnterpriseId: drizzle_orm_pg_core0.PgColumn<{
|
|
36811
|
+
name: "slack_enterprise_id";
|
|
36812
|
+
tableName: "work_app_slack_workspaces";
|
|
36813
|
+
dataType: "string";
|
|
36814
|
+
columnType: "PgVarchar";
|
|
36815
|
+
data: string;
|
|
36816
|
+
driverParam: string;
|
|
36817
|
+
notNull: false;
|
|
36818
|
+
hasDefault: false;
|
|
36819
|
+
isPrimaryKey: false;
|
|
36820
|
+
isAutoincrement: false;
|
|
36821
|
+
hasRuntimeDefault: false;
|
|
36822
|
+
enumValues: [string, ...string[]];
|
|
36823
|
+
baseColumn: never;
|
|
36824
|
+
identity: undefined;
|
|
36825
|
+
generated: undefined;
|
|
36826
|
+
}, {}, {
|
|
36827
|
+
length: 256;
|
|
36828
|
+
}>;
|
|
36829
|
+
slackAppId: drizzle_orm_pg_core0.PgColumn<{
|
|
36830
|
+
name: "slack_app_id";
|
|
36831
|
+
tableName: "work_app_slack_workspaces";
|
|
36832
|
+
dataType: "string";
|
|
36833
|
+
columnType: "PgVarchar";
|
|
36834
|
+
data: string;
|
|
36835
|
+
driverParam: string;
|
|
36836
|
+
notNull: false;
|
|
36837
|
+
hasDefault: false;
|
|
36838
|
+
isPrimaryKey: false;
|
|
36839
|
+
isAutoincrement: false;
|
|
36840
|
+
hasRuntimeDefault: false;
|
|
36841
|
+
enumValues: [string, ...string[]];
|
|
36842
|
+
baseColumn: never;
|
|
36843
|
+
identity: undefined;
|
|
36844
|
+
generated: undefined;
|
|
36845
|
+
}, {}, {
|
|
36846
|
+
length: 256;
|
|
36847
|
+
}>;
|
|
36848
|
+
slackTeamName: drizzle_orm_pg_core0.PgColumn<{
|
|
36849
|
+
name: "slack_team_name";
|
|
36850
|
+
tableName: "work_app_slack_workspaces";
|
|
36851
|
+
dataType: "string";
|
|
36852
|
+
columnType: "PgVarchar";
|
|
36853
|
+
data: string;
|
|
36854
|
+
driverParam: string;
|
|
36855
|
+
notNull: false;
|
|
36856
|
+
hasDefault: false;
|
|
36857
|
+
isPrimaryKey: false;
|
|
36858
|
+
isAutoincrement: false;
|
|
36859
|
+
hasRuntimeDefault: false;
|
|
36860
|
+
enumValues: [string, ...string[]];
|
|
36861
|
+
baseColumn: never;
|
|
36862
|
+
identity: undefined;
|
|
36863
|
+
generated: undefined;
|
|
36864
|
+
}, {}, {
|
|
36865
|
+
length: 512;
|
|
36866
|
+
}>;
|
|
36867
|
+
nangoProviderConfigKey: drizzle_orm_pg_core0.PgColumn<{
|
|
36868
|
+
name: "nango_provider_config_key";
|
|
36869
|
+
tableName: "work_app_slack_workspaces";
|
|
36870
|
+
dataType: "string";
|
|
36871
|
+
columnType: "PgVarchar";
|
|
36872
|
+
data: string;
|
|
36873
|
+
driverParam: string;
|
|
36874
|
+
notNull: true;
|
|
36875
|
+
hasDefault: true;
|
|
36876
|
+
isPrimaryKey: false;
|
|
36877
|
+
isAutoincrement: false;
|
|
36878
|
+
hasRuntimeDefault: false;
|
|
36879
|
+
enumValues: [string, ...string[]];
|
|
36880
|
+
baseColumn: never;
|
|
36881
|
+
identity: undefined;
|
|
36882
|
+
generated: undefined;
|
|
36883
|
+
}, {}, {
|
|
36884
|
+
length: 256;
|
|
36885
|
+
}>;
|
|
36886
|
+
nangoConnectionId: drizzle_orm_pg_core0.PgColumn<{
|
|
36887
|
+
name: "nango_connection_id";
|
|
36888
|
+
tableName: "work_app_slack_workspaces";
|
|
36889
|
+
dataType: "string";
|
|
36890
|
+
columnType: "PgVarchar";
|
|
36891
|
+
data: string;
|
|
36892
|
+
driverParam: string;
|
|
36893
|
+
notNull: true;
|
|
36894
|
+
hasDefault: false;
|
|
36895
|
+
isPrimaryKey: false;
|
|
36896
|
+
isAutoincrement: false;
|
|
36897
|
+
hasRuntimeDefault: false;
|
|
36898
|
+
enumValues: [string, ...string[]];
|
|
36899
|
+
baseColumn: never;
|
|
36900
|
+
identity: undefined;
|
|
36901
|
+
generated: undefined;
|
|
36902
|
+
}, {}, {
|
|
36903
|
+
length: 256;
|
|
36904
|
+
}>;
|
|
36905
|
+
status: drizzle_orm_pg_core0.PgColumn<{
|
|
36906
|
+
name: "status";
|
|
36907
|
+
tableName: "work_app_slack_workspaces";
|
|
36908
|
+
dataType: "string";
|
|
36909
|
+
columnType: "PgVarchar";
|
|
36910
|
+
data: string;
|
|
36911
|
+
driverParam: string;
|
|
36912
|
+
notNull: true;
|
|
36913
|
+
hasDefault: true;
|
|
36914
|
+
isPrimaryKey: false;
|
|
36915
|
+
isAutoincrement: false;
|
|
36916
|
+
hasRuntimeDefault: false;
|
|
36917
|
+
enumValues: [string, ...string[]];
|
|
36918
|
+
baseColumn: never;
|
|
36919
|
+
identity: undefined;
|
|
36920
|
+
generated: undefined;
|
|
36921
|
+
}, {}, {
|
|
36922
|
+
length: 20;
|
|
36923
|
+
}>;
|
|
36924
|
+
installedByUserId: drizzle_orm_pg_core0.PgColumn<{
|
|
36925
|
+
name: "installed_by_user_id";
|
|
36926
|
+
tableName: "work_app_slack_workspaces";
|
|
36927
|
+
dataType: "string";
|
|
36928
|
+
columnType: "PgText";
|
|
36929
|
+
data: string;
|
|
36930
|
+
driverParam: string;
|
|
36931
|
+
notNull: false;
|
|
36932
|
+
hasDefault: false;
|
|
36933
|
+
isPrimaryKey: false;
|
|
36934
|
+
isAutoincrement: false;
|
|
36935
|
+
hasRuntimeDefault: false;
|
|
36936
|
+
enumValues: [string, ...string[]];
|
|
36937
|
+
baseColumn: never;
|
|
36938
|
+
identity: undefined;
|
|
36939
|
+
generated: undefined;
|
|
36940
|
+
}, {}, {}>;
|
|
36941
|
+
shouldAllowJoinFromWorkspace: drizzle_orm_pg_core0.PgColumn<{
|
|
36942
|
+
name: "should_allow_join_from_workspace";
|
|
36943
|
+
tableName: "work_app_slack_workspaces";
|
|
36944
|
+
dataType: "boolean";
|
|
36945
|
+
columnType: "PgBoolean";
|
|
36946
|
+
data: boolean;
|
|
36947
|
+
driverParam: boolean;
|
|
36948
|
+
notNull: true;
|
|
36949
|
+
hasDefault: true;
|
|
36950
|
+
isPrimaryKey: false;
|
|
36951
|
+
isAutoincrement: false;
|
|
36952
|
+
hasRuntimeDefault: false;
|
|
36953
|
+
enumValues: undefined;
|
|
36954
|
+
baseColumn: never;
|
|
36955
|
+
identity: undefined;
|
|
36956
|
+
generated: undefined;
|
|
36957
|
+
}, {}, {}>;
|
|
36958
|
+
defaultAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
36959
|
+
name: "default_agent_id";
|
|
36960
|
+
tableName: "work_app_slack_workspaces";
|
|
36961
|
+
dataType: "string";
|
|
36962
|
+
columnType: "PgVarchar";
|
|
36963
|
+
data: string;
|
|
36964
|
+
driverParam: string;
|
|
36965
|
+
notNull: false;
|
|
36966
|
+
hasDefault: false;
|
|
36967
|
+
isPrimaryKey: false;
|
|
36968
|
+
isAutoincrement: false;
|
|
36969
|
+
hasRuntimeDefault: false;
|
|
36970
|
+
enumValues: [string, ...string[]];
|
|
36971
|
+
baseColumn: never;
|
|
36972
|
+
identity: undefined;
|
|
36973
|
+
generated: undefined;
|
|
36974
|
+
}, {}, {
|
|
36975
|
+
length: 256;
|
|
36976
|
+
}>;
|
|
36977
|
+
defaultProjectId: drizzle_orm_pg_core0.PgColumn<{
|
|
36978
|
+
name: "default_project_id";
|
|
36979
|
+
tableName: "work_app_slack_workspaces";
|
|
36980
|
+
dataType: "string";
|
|
36981
|
+
columnType: "PgVarchar";
|
|
36982
|
+
data: string;
|
|
36983
|
+
driverParam: string;
|
|
36984
|
+
notNull: false;
|
|
36985
|
+
hasDefault: false;
|
|
36986
|
+
isPrimaryKey: false;
|
|
36987
|
+
isAutoincrement: false;
|
|
36988
|
+
hasRuntimeDefault: false;
|
|
36989
|
+
enumValues: [string, ...string[]];
|
|
36990
|
+
baseColumn: never;
|
|
36991
|
+
identity: undefined;
|
|
36992
|
+
generated: undefined;
|
|
36993
|
+
}, {}, {
|
|
36994
|
+
length: 256;
|
|
36995
|
+
}>;
|
|
36996
|
+
defaultGrantAccessToMembers: drizzle_orm_pg_core0.PgColumn<{
|
|
36997
|
+
name: "default_grant_access_to_members";
|
|
36998
|
+
tableName: "work_app_slack_workspaces";
|
|
36999
|
+
dataType: "boolean";
|
|
37000
|
+
columnType: "PgBoolean";
|
|
37001
|
+
data: boolean;
|
|
37002
|
+
driverParam: boolean;
|
|
37003
|
+
notNull: false;
|
|
37004
|
+
hasDefault: true;
|
|
37005
|
+
isPrimaryKey: false;
|
|
37006
|
+
isAutoincrement: false;
|
|
37007
|
+
hasRuntimeDefault: false;
|
|
37008
|
+
enumValues: undefined;
|
|
37009
|
+
baseColumn: never;
|
|
37010
|
+
identity: undefined;
|
|
37011
|
+
generated: undefined;
|
|
37012
|
+
}, {}, {}>;
|
|
37013
|
+
}, drizzle_zod3.BuildRefine<{
|
|
37014
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37015
|
+
name: "created_at";
|
|
37016
|
+
tableName: "work_app_slack_workspaces";
|
|
37017
|
+
dataType: "string";
|
|
37018
|
+
columnType: "PgTimestampString";
|
|
37019
|
+
data: string;
|
|
37020
|
+
driverParam: string;
|
|
37021
|
+
notNull: true;
|
|
37022
|
+
hasDefault: true;
|
|
37023
|
+
isPrimaryKey: false;
|
|
37024
|
+
isAutoincrement: false;
|
|
37025
|
+
hasRuntimeDefault: false;
|
|
37026
|
+
enumValues: undefined;
|
|
37027
|
+
baseColumn: never;
|
|
37028
|
+
identity: undefined;
|
|
37029
|
+
generated: undefined;
|
|
37030
|
+
}, {}, {}>;
|
|
37031
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
37032
|
+
name: "updated_at";
|
|
37033
|
+
tableName: "work_app_slack_workspaces";
|
|
37034
|
+
dataType: "string";
|
|
37035
|
+
columnType: "PgTimestampString";
|
|
37036
|
+
data: string;
|
|
37037
|
+
driverParam: string;
|
|
37038
|
+
notNull: true;
|
|
37039
|
+
hasDefault: true;
|
|
37040
|
+
isPrimaryKey: false;
|
|
37041
|
+
isAutoincrement: false;
|
|
37042
|
+
hasRuntimeDefault: false;
|
|
37043
|
+
enumValues: undefined;
|
|
37044
|
+
baseColumn: never;
|
|
37045
|
+
identity: undefined;
|
|
37046
|
+
generated: undefined;
|
|
37047
|
+
}, {}, {}>;
|
|
37048
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
37049
|
+
name: "id";
|
|
37050
|
+
tableName: "work_app_slack_workspaces";
|
|
37051
|
+
dataType: "string";
|
|
37052
|
+
columnType: "PgVarchar";
|
|
37053
|
+
data: string;
|
|
37054
|
+
driverParam: string;
|
|
37055
|
+
notNull: true;
|
|
37056
|
+
hasDefault: false;
|
|
37057
|
+
isPrimaryKey: true;
|
|
37058
|
+
isAutoincrement: false;
|
|
37059
|
+
hasRuntimeDefault: false;
|
|
37060
|
+
enumValues: [string, ...string[]];
|
|
37061
|
+
baseColumn: never;
|
|
37062
|
+
identity: undefined;
|
|
37063
|
+
generated: undefined;
|
|
37064
|
+
}, {}, {
|
|
37065
|
+
length: 256;
|
|
37066
|
+
}>;
|
|
37067
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
37068
|
+
name: "tenant_id";
|
|
37069
|
+
tableName: "work_app_slack_workspaces";
|
|
37070
|
+
dataType: "string";
|
|
37071
|
+
columnType: "PgVarchar";
|
|
37072
|
+
data: string;
|
|
37073
|
+
driverParam: string;
|
|
37074
|
+
notNull: true;
|
|
37075
|
+
hasDefault: false;
|
|
37076
|
+
isPrimaryKey: false;
|
|
37077
|
+
isAutoincrement: false;
|
|
37078
|
+
hasRuntimeDefault: false;
|
|
37079
|
+
enumValues: [string, ...string[]];
|
|
37080
|
+
baseColumn: never;
|
|
37081
|
+
identity: undefined;
|
|
37082
|
+
generated: undefined;
|
|
37083
|
+
}, {}, {
|
|
37084
|
+
length: 256;
|
|
37085
|
+
}>;
|
|
37086
|
+
slackTeamId: drizzle_orm_pg_core0.PgColumn<{
|
|
37087
|
+
name: "slack_team_id";
|
|
37088
|
+
tableName: "work_app_slack_workspaces";
|
|
37089
|
+
dataType: "string";
|
|
37090
|
+
columnType: "PgVarchar";
|
|
37091
|
+
data: string;
|
|
37092
|
+
driverParam: string;
|
|
37093
|
+
notNull: true;
|
|
37094
|
+
hasDefault: false;
|
|
37095
|
+
isPrimaryKey: false;
|
|
37096
|
+
isAutoincrement: false;
|
|
37097
|
+
hasRuntimeDefault: false;
|
|
37098
|
+
enumValues: [string, ...string[]];
|
|
37099
|
+
baseColumn: never;
|
|
37100
|
+
identity: undefined;
|
|
37101
|
+
generated: undefined;
|
|
37102
|
+
}, {}, {
|
|
37103
|
+
length: 256;
|
|
37104
|
+
}>;
|
|
37105
|
+
slackEnterpriseId: drizzle_orm_pg_core0.PgColumn<{
|
|
37106
|
+
name: "slack_enterprise_id";
|
|
37107
|
+
tableName: "work_app_slack_workspaces";
|
|
37108
|
+
dataType: "string";
|
|
37109
|
+
columnType: "PgVarchar";
|
|
37110
|
+
data: string;
|
|
37111
|
+
driverParam: string;
|
|
37112
|
+
notNull: false;
|
|
37113
|
+
hasDefault: false;
|
|
37114
|
+
isPrimaryKey: false;
|
|
37115
|
+
isAutoincrement: false;
|
|
37116
|
+
hasRuntimeDefault: false;
|
|
37117
|
+
enumValues: [string, ...string[]];
|
|
37118
|
+
baseColumn: never;
|
|
37119
|
+
identity: undefined;
|
|
37120
|
+
generated: undefined;
|
|
37121
|
+
}, {}, {
|
|
37122
|
+
length: 256;
|
|
37123
|
+
}>;
|
|
37124
|
+
slackAppId: drizzle_orm_pg_core0.PgColumn<{
|
|
37125
|
+
name: "slack_app_id";
|
|
37126
|
+
tableName: "work_app_slack_workspaces";
|
|
37127
|
+
dataType: "string";
|
|
37128
|
+
columnType: "PgVarchar";
|
|
37129
|
+
data: string;
|
|
37130
|
+
driverParam: string;
|
|
37131
|
+
notNull: false;
|
|
37132
|
+
hasDefault: false;
|
|
37133
|
+
isPrimaryKey: false;
|
|
37134
|
+
isAutoincrement: false;
|
|
37135
|
+
hasRuntimeDefault: false;
|
|
37136
|
+
enumValues: [string, ...string[]];
|
|
37137
|
+
baseColumn: never;
|
|
37138
|
+
identity: undefined;
|
|
37139
|
+
generated: undefined;
|
|
37140
|
+
}, {}, {
|
|
37141
|
+
length: 256;
|
|
37142
|
+
}>;
|
|
37143
|
+
slackTeamName: drizzle_orm_pg_core0.PgColumn<{
|
|
37144
|
+
name: "slack_team_name";
|
|
37145
|
+
tableName: "work_app_slack_workspaces";
|
|
37146
|
+
dataType: "string";
|
|
37147
|
+
columnType: "PgVarchar";
|
|
37148
|
+
data: string;
|
|
37149
|
+
driverParam: string;
|
|
37150
|
+
notNull: false;
|
|
37151
|
+
hasDefault: false;
|
|
37152
|
+
isPrimaryKey: false;
|
|
37153
|
+
isAutoincrement: false;
|
|
37154
|
+
hasRuntimeDefault: false;
|
|
37155
|
+
enumValues: [string, ...string[]];
|
|
37156
|
+
baseColumn: never;
|
|
37157
|
+
identity: undefined;
|
|
37158
|
+
generated: undefined;
|
|
37159
|
+
}, {}, {
|
|
37160
|
+
length: 512;
|
|
37161
|
+
}>;
|
|
37162
|
+
nangoProviderConfigKey: drizzle_orm_pg_core0.PgColumn<{
|
|
37163
|
+
name: "nango_provider_config_key";
|
|
37164
|
+
tableName: "work_app_slack_workspaces";
|
|
37165
|
+
dataType: "string";
|
|
37166
|
+
columnType: "PgVarchar";
|
|
37167
|
+
data: string;
|
|
37168
|
+
driverParam: string;
|
|
37169
|
+
notNull: true;
|
|
37170
|
+
hasDefault: true;
|
|
37171
|
+
isPrimaryKey: false;
|
|
37172
|
+
isAutoincrement: false;
|
|
37173
|
+
hasRuntimeDefault: false;
|
|
37174
|
+
enumValues: [string, ...string[]];
|
|
37175
|
+
baseColumn: never;
|
|
37176
|
+
identity: undefined;
|
|
37177
|
+
generated: undefined;
|
|
37178
|
+
}, {}, {
|
|
37179
|
+
length: 256;
|
|
37180
|
+
}>;
|
|
37181
|
+
nangoConnectionId: drizzle_orm_pg_core0.PgColumn<{
|
|
37182
|
+
name: "nango_connection_id";
|
|
37183
|
+
tableName: "work_app_slack_workspaces";
|
|
37184
|
+
dataType: "string";
|
|
37185
|
+
columnType: "PgVarchar";
|
|
37186
|
+
data: string;
|
|
37187
|
+
driverParam: string;
|
|
37188
|
+
notNull: true;
|
|
37189
|
+
hasDefault: false;
|
|
37190
|
+
isPrimaryKey: false;
|
|
37191
|
+
isAutoincrement: false;
|
|
37192
|
+
hasRuntimeDefault: false;
|
|
37193
|
+
enumValues: [string, ...string[]];
|
|
37194
|
+
baseColumn: never;
|
|
37195
|
+
identity: undefined;
|
|
37196
|
+
generated: undefined;
|
|
37197
|
+
}, {}, {
|
|
37198
|
+
length: 256;
|
|
37199
|
+
}>;
|
|
37200
|
+
status: drizzle_orm_pg_core0.PgColumn<{
|
|
37201
|
+
name: "status";
|
|
37202
|
+
tableName: "work_app_slack_workspaces";
|
|
37203
|
+
dataType: "string";
|
|
37204
|
+
columnType: "PgVarchar";
|
|
37205
|
+
data: string;
|
|
37206
|
+
driverParam: string;
|
|
37207
|
+
notNull: true;
|
|
37208
|
+
hasDefault: true;
|
|
37209
|
+
isPrimaryKey: false;
|
|
37210
|
+
isAutoincrement: false;
|
|
37211
|
+
hasRuntimeDefault: false;
|
|
37212
|
+
enumValues: [string, ...string[]];
|
|
37213
|
+
baseColumn: never;
|
|
37214
|
+
identity: undefined;
|
|
37215
|
+
generated: undefined;
|
|
37216
|
+
}, {}, {
|
|
37217
|
+
length: 20;
|
|
37218
|
+
}>;
|
|
37219
|
+
installedByUserId: drizzle_orm_pg_core0.PgColumn<{
|
|
37220
|
+
name: "installed_by_user_id";
|
|
37221
|
+
tableName: "work_app_slack_workspaces";
|
|
37222
|
+
dataType: "string";
|
|
37223
|
+
columnType: "PgText";
|
|
37224
|
+
data: string;
|
|
37225
|
+
driverParam: string;
|
|
37226
|
+
notNull: false;
|
|
37227
|
+
hasDefault: false;
|
|
37228
|
+
isPrimaryKey: false;
|
|
37229
|
+
isAutoincrement: false;
|
|
37230
|
+
hasRuntimeDefault: false;
|
|
37231
|
+
enumValues: [string, ...string[]];
|
|
37232
|
+
baseColumn: never;
|
|
37233
|
+
identity: undefined;
|
|
37234
|
+
generated: undefined;
|
|
37235
|
+
}, {}, {}>;
|
|
37236
|
+
shouldAllowJoinFromWorkspace: drizzle_orm_pg_core0.PgColumn<{
|
|
37237
|
+
name: "should_allow_join_from_workspace";
|
|
37238
|
+
tableName: "work_app_slack_workspaces";
|
|
37239
|
+
dataType: "boolean";
|
|
37240
|
+
columnType: "PgBoolean";
|
|
37241
|
+
data: boolean;
|
|
37242
|
+
driverParam: boolean;
|
|
37243
|
+
notNull: true;
|
|
37244
|
+
hasDefault: true;
|
|
37245
|
+
isPrimaryKey: false;
|
|
37246
|
+
isAutoincrement: false;
|
|
37247
|
+
hasRuntimeDefault: false;
|
|
37248
|
+
enumValues: undefined;
|
|
37249
|
+
baseColumn: never;
|
|
37250
|
+
identity: undefined;
|
|
37251
|
+
generated: undefined;
|
|
37252
|
+
}, {}, {}>;
|
|
37253
|
+
defaultAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
37254
|
+
name: "default_agent_id";
|
|
37255
|
+
tableName: "work_app_slack_workspaces";
|
|
37256
|
+
dataType: "string";
|
|
37257
|
+
columnType: "PgVarchar";
|
|
37258
|
+
data: string;
|
|
37259
|
+
driverParam: string;
|
|
37260
|
+
notNull: false;
|
|
37261
|
+
hasDefault: false;
|
|
37262
|
+
isPrimaryKey: false;
|
|
37263
|
+
isAutoincrement: false;
|
|
37264
|
+
hasRuntimeDefault: false;
|
|
37265
|
+
enumValues: [string, ...string[]];
|
|
37266
|
+
baseColumn: never;
|
|
37267
|
+
identity: undefined;
|
|
37268
|
+
generated: undefined;
|
|
37269
|
+
}, {}, {
|
|
37270
|
+
length: 256;
|
|
37271
|
+
}>;
|
|
37272
|
+
defaultProjectId: drizzle_orm_pg_core0.PgColumn<{
|
|
37273
|
+
name: "default_project_id";
|
|
37274
|
+
tableName: "work_app_slack_workspaces";
|
|
37275
|
+
dataType: "string";
|
|
37276
|
+
columnType: "PgVarchar";
|
|
37277
|
+
data: string;
|
|
37278
|
+
driverParam: string;
|
|
37279
|
+
notNull: false;
|
|
37280
|
+
hasDefault: false;
|
|
37281
|
+
isPrimaryKey: false;
|
|
37282
|
+
isAutoincrement: false;
|
|
37283
|
+
hasRuntimeDefault: false;
|
|
37284
|
+
enumValues: [string, ...string[]];
|
|
37285
|
+
baseColumn: never;
|
|
37286
|
+
identity: undefined;
|
|
37287
|
+
generated: undefined;
|
|
37288
|
+
}, {}, {
|
|
37289
|
+
length: 256;
|
|
37290
|
+
}>;
|
|
37291
|
+
defaultGrantAccessToMembers: drizzle_orm_pg_core0.PgColumn<{
|
|
37292
|
+
name: "default_grant_access_to_members";
|
|
37293
|
+
tableName: "work_app_slack_workspaces";
|
|
37294
|
+
dataType: "boolean";
|
|
37295
|
+
columnType: "PgBoolean";
|
|
37296
|
+
data: boolean;
|
|
37297
|
+
driverParam: boolean;
|
|
37298
|
+
notNull: false;
|
|
37299
|
+
hasDefault: true;
|
|
37300
|
+
isPrimaryKey: false;
|
|
37301
|
+
isAutoincrement: false;
|
|
37302
|
+
hasRuntimeDefault: false;
|
|
37303
|
+
enumValues: undefined;
|
|
37304
|
+
baseColumn: never;
|
|
37305
|
+
identity: undefined;
|
|
37306
|
+
generated: undefined;
|
|
37307
|
+
}, {}, {}>;
|
|
37308
|
+
}, undefined>, undefined>;
|
|
37309
|
+
declare const WorkAppSlackAgentConfigRequestSchema: z.ZodObject<{
|
|
37310
|
+
projectId: z.ZodString;
|
|
37311
|
+
agentId: z.ZodString;
|
|
37312
|
+
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37313
|
+
}, {
|
|
37314
|
+
out: {};
|
|
37315
|
+
in: {};
|
|
37316
|
+
}>;
|
|
37317
|
+
declare const WorkAppSlackAgentConfigResponseSchema: z.ZodObject<{
|
|
37318
|
+
projectId: z.ZodString;
|
|
37319
|
+
agentId: z.ZodString;
|
|
37320
|
+
grantAccessToMembers: z.ZodOptional<z.ZodBoolean>;
|
|
37321
|
+
agentName: z.ZodString;
|
|
37322
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
37323
|
+
}, {
|
|
37324
|
+
out: {};
|
|
37325
|
+
in: {};
|
|
37326
|
+
}>;
|
|
37327
|
+
type WorkAppSlackAgentConfigRequest = z.infer<typeof WorkAppSlackAgentConfigRequestSchema>;
|
|
37328
|
+
type WorkAppSlackAgentConfigResponse = z.infer<typeof WorkAppSlackAgentConfigResponseSchema>;
|
|
36241
37329
|
//#endregion
|
|
36242
|
-
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhen, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AgentWithinContextOfProjectSelectResponse, AgentWithinContextOfProjectSelectSchema, AgentWithinContextOfProjectSelectSchemaWithRelationIds, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ComponentJoin, ComponentJoinSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, CronExpressionSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, DataPartSchema, DatasetApiInsertSchema, DatasetApiSelectSchema, DatasetApiUpdateSchema, DatasetInsertSchema, DatasetItemApiInsertSchema, DatasetItemApiSelectSchema, DatasetItemApiUpdateSchema, DatasetItemInsertSchema, DatasetItemSelectSchema, DatasetItemUpdateSchema, DatasetRunApiInsertSchema, DatasetRunApiSelectSchema, DatasetRunApiUpdateSchema, DatasetRunConfigAgentRelationInsertSchema, DatasetRunConfigAgentRelationSelectSchema, DatasetRunConfigAgentRelationUpdateSchema, DatasetRunConfigApiInsertSchema, DatasetRunConfigApiSelectSchema, DatasetRunConfigApiUpdateSchema, DatasetRunConfigInsertSchema, DatasetRunConfigSelectSchema, DatasetRunConfigUpdateSchema, DatasetRunConversationRelationApiInsertSchema, DatasetRunConversationRelationApiSelectSchema, DatasetRunConversationRelationApiUpdateSchema, DatasetRunConversationRelationInsertSchema, DatasetRunConversationRelationSelectSchema, DatasetRunConversationRelationUpdateSchema, DatasetRunInsertSchema, DatasetRunItemSchema, DatasetRunSelectSchema, DatasetRunUpdateSchema, DatasetSelectSchema, DatasetUpdateSchema, DateTimeFilterQueryParamsSchema, ErrorResponseSchema, EvaluationJobConfigApiInsertSchema, EvaluationJobConfigApiSelectSchema, EvaluationJobConfigApiUpdateSchema, EvaluationJobConfigEvaluatorRelationApiInsertSchema, EvaluationJobConfigEvaluatorRelationApiSelectSchema, EvaluationJobConfigEvaluatorRelationApiUpdateSchema, EvaluationJobConfigEvaluatorRelationInsertSchema, EvaluationJobConfigEvaluatorRelationSelectSchema, EvaluationJobConfigEvaluatorRelationUpdateSchema, EvaluationJobConfigInsertSchema, EvaluationJobConfigSelectSchema, EvaluationJobConfigUpdateSchema, EvaluationJobFilterCriteriaSchema, EvaluationResultApiInsertSchema, EvaluationResultApiSelectSchema, EvaluationResultApiUpdateSchema, EvaluationResultInsertSchema, EvaluationResultSelectSchema, EvaluationResultUpdateSchema, EvaluationRunApiInsertSchema, EvaluationRunApiSelectSchema, EvaluationRunApiUpdateSchema, EvaluationRunConfigApiInsertSchema, EvaluationRunConfigApiSelectSchema, EvaluationRunConfigApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationUpdateSchema, EvaluationRunConfigInsertSchema, EvaluationRunConfigSelectSchema, EvaluationRunConfigUpdateSchema, EvaluationRunConfigWithSuiteConfigsApiSelectSchema, EvaluationRunInsertSchema, EvaluationRunSelectSchema, EvaluationRunUpdateSchema, EvaluationSuiteConfigApiInsertSchema, EvaluationSuiteConfigApiSelectSchema, EvaluationSuiteConfigApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationApiInsertSchema, EvaluationSuiteConfigEvaluatorRelationApiSelectSchema, EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationInsertSchema, EvaluationSuiteConfigEvaluatorRelationSelectSchema, EvaluationSuiteConfigEvaluatorRelationUpdateSchema, EvaluationSuiteConfigInsertSchema, EvaluationSuiteConfigSelectSchema, EvaluationSuiteConfigUpdateSchema, EvaluatorApiInsertSchema, EvaluatorApiSelectSchema, EvaluatorApiUpdateSchema, EvaluatorInsertSchema, EvaluatorSelectSchema, EvaluatorUpdateSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FilePartSchema, FullAgentAgentInsertSchema, FullAgentSubAgentSelectSchema, FullAgentSubAgentSelectSchemaWithRelationIds, FullProjectDefinitionResponse, FullProjectDefinitionSchema, FullProjectSelectResponse, FullProjectSelectSchema, FullProjectSelectSchemaWithRelationIds, FullProjectSelectWithRelationIdsResponse, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfig, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPCatalogListResponse, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettings, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, PaginationWithRefQueryParamsSchema, PartSchema, PartSchemaType, PrebuiltMCPServerSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectMetadataInsertSchema, ProjectMetadataSelectSchema, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RefQueryParamSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, ResourceIdSchema, ScheduledTrigger, ScheduledTriggerApiInsert, ScheduledTriggerApiInsertBaseSchema, ScheduledTriggerApiInsertSchema, ScheduledTriggerApiSelect, ScheduledTriggerApiSelectSchema, ScheduledTriggerApiUpdate, ScheduledTriggerApiUpdateSchema, ScheduledTriggerInsert, ScheduledTriggerInsertSchema, ScheduledTriggerInvocation, ScheduledTriggerInvocationApiInsertSchema, ScheduledTriggerInvocationApiSelectSchema, ScheduledTriggerInvocationApiUpdateSchema, ScheduledTriggerInvocationInsert, ScheduledTriggerInvocationInsertSchema, ScheduledTriggerInvocationListResponse, ScheduledTriggerInvocationResponse, ScheduledTriggerInvocationSelectSchema, ScheduledTriggerInvocationStatus, ScheduledTriggerInvocationStatusEnum, ScheduledTriggerInvocationUpdate, ScheduledTriggerInvocationUpdateSchema, ScheduledTriggerListResponse, ScheduledTriggerResponse, ScheduledTriggerSelectSchema, ScheduledTriggerUpdate, ScheduledTriggerUpdateSchema, ScheduledTriggerWithRunInfo, ScheduledTriggerWithRunInfoListResponse, ScheduledTriggerWithRunInfoSchema, ScheduledWorkflow, ScheduledWorkflowApiInsertSchema, ScheduledWorkflowApiSelectSchema, ScheduledWorkflowApiUpdateSchema, ScheduledWorkflowInsert, ScheduledWorkflowInsertSchema, ScheduledWorkflowListResponse, ScheduledWorkflowResponse, ScheduledWorkflowSelectSchema, ScheduledWorkflowUpdate, ScheduledWorkflowUpdateSchema, SignatureSource, SignatureSourceSchema, SignatureValidationOptions, SignatureValidationOptionsSchema, SignatureVerificationConfig, SignatureVerificationConfigSchema, SignedComponent, SignedComponentSchema, SimulationAgent, SimulationAgentSchema, SingleResponseSchema, SkillApiInsertSchema, SkillApiSelectSchema, SkillApiUpdateSchema, SkillFrontmatterSchema, SkillInsertSchema, SkillListResponse, SkillResponse, SkillSelectSchema, SkillUpdateSchema, StatusComponentSchema, StatusUpdateSchema, StopWhen, StopWhenSchema, StringRecordSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentFunctionToolRelationApiInsertSchema, SubAgentFunctionToolRelationApiSelectSchema, SubAgentFunctionToolRelationInsertSchema, SubAgentFunctionToolRelationListResponse, SubAgentFunctionToolRelationResponse, SubAgentFunctionToolRelationSelectSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentSkillApiInsertSchema, SubAgentSkillApiSelectSchema, SubAgentSkillApiUpdateSchema, SubAgentSkillInsertSchema, SubAgentSkillResponse, SubAgentSkillSelectSchema, SubAgentSkillUpdateSchema, SubAgentSkillWithIndexArrayResponse, SubAgentSkillWithIndexSchema, SubAgentStopWhen, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, TextPartSchema, ThirdPartyMCPServerResponse, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, TriggerApiInsertSchema, TriggerApiSelectSchema, TriggerApiUpdateSchema, TriggerAuthHeaderInputSchema, TriggerAuthHeaderStoredSchema, TriggerAuthHeaderUpdateSchema, TriggerAuthenticationInputSchema, TriggerAuthenticationSchema, TriggerAuthenticationStoredSchema, TriggerAuthenticationUpdateSchema, TriggerBatchConversationEvaluationSchema, TriggerConversationEvaluationSchema, TriggerDatasetRunSchema, TriggerEvaluationJobSchema, TriggerInsertSchema, TriggerInvocationApiInsertSchema, TriggerInvocationApiSelectSchema, TriggerInvocationApiUpdateSchema, TriggerInvocationInsertSchema, TriggerInvocationListResponse, TriggerInvocationResponse, TriggerInvocationSelectSchema, TriggerInvocationStatusEnum, TriggerInvocationUpdateSchema, TriggerListResponse, TriggerOutputTransformSchema, TriggerResponse, TriggerSelectSchema, TriggerUpdateSchema, TriggerWithWebhookUrlListResponse, TriggerWithWebhookUrlResponse, TriggerWithWebhookUrlSchema, URL_SAFE_ID_PATTERN, WorkAppGitHubAccessGetResponseSchema, WorkAppGitHubAccessModeSchema, WorkAppGitHubAccessSetRequestSchema, WorkAppGitHubAccessSetResponseSchema, WorkAppGitHubAccountTypeSchema, WorkAppGitHubInstallationApiInsertSchema, WorkAppGitHubInstallationInsertSchema, WorkAppGitHubInstallationSelectSchema, WorkAppGitHubInstallationStatusSchema, WorkAppGitHubMcpToolRepositoryAccessSelectSchema, WorkAppGitHubProjectRepositoryAccessSelectSchema, WorkAppGitHubRepositoryApiInsertSchema, WorkAppGitHubRepositoryInsertSchema, WorkAppGitHubRepositorySelectSchema, WorkAppGithubInstallationApiSelectSchema, canDelegateToExternalAgentInsertSchema, canDelegateToExternalAgentSchema, canDelegateToTeamAgentInsertSchema, canDelegateToTeamAgentSchema, canRelateToInternalSubAgentSchema };
|
|
37330
|
+
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhen, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectResponse, AgentWithinContextOfProjectSchema, AgentWithinContextOfProjectSelectResponse, AgentWithinContextOfProjectSelectSchema, AgentWithinContextOfProjectSelectSchemaWithRelationIds, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentArrayResponse, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ComponentAssociationListResponse, ComponentAssociationSchema, ComponentJoin, ComponentJoinSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CreateCredentialInStoreRequestSchema, CreateCredentialInStoreResponseSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, CredentialStoreListResponseSchema, CredentialStoreSchema, CronExpressionSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentArrayResponse, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, DataPartSchema, DatasetApiInsertSchema, DatasetApiSelectSchema, DatasetApiUpdateSchema, DatasetInsertSchema, DatasetItemApiInsertSchema, DatasetItemApiSelectSchema, DatasetItemApiUpdateSchema, DatasetItemInsertSchema, DatasetItemSelectSchema, DatasetItemUpdateSchema, DatasetRunApiInsertSchema, DatasetRunApiSelectSchema, DatasetRunApiUpdateSchema, DatasetRunConfigAgentRelationInsertSchema, DatasetRunConfigAgentRelationSelectSchema, DatasetRunConfigAgentRelationUpdateSchema, DatasetRunConfigApiInsertSchema, DatasetRunConfigApiSelectSchema, DatasetRunConfigApiUpdateSchema, DatasetRunConfigInsertSchema, DatasetRunConfigSelectSchema, DatasetRunConfigUpdateSchema, DatasetRunConversationRelationApiInsertSchema, DatasetRunConversationRelationApiSelectSchema, DatasetRunConversationRelationApiUpdateSchema, DatasetRunConversationRelationInsertSchema, DatasetRunConversationRelationSelectSchema, DatasetRunConversationRelationUpdateSchema, DatasetRunInsertSchema, DatasetRunItemSchema, DatasetRunSelectSchema, DatasetRunUpdateSchema, DatasetSelectSchema, DatasetUpdateSchema, DateTimeFilterQueryParamsSchema, ErrorResponseSchema, EvaluationJobConfigApiInsertSchema, EvaluationJobConfigApiSelectSchema, EvaluationJobConfigApiUpdateSchema, EvaluationJobConfigEvaluatorRelationApiInsertSchema, EvaluationJobConfigEvaluatorRelationApiSelectSchema, EvaluationJobConfigEvaluatorRelationApiUpdateSchema, EvaluationJobConfigEvaluatorRelationInsertSchema, EvaluationJobConfigEvaluatorRelationSelectSchema, EvaluationJobConfigEvaluatorRelationUpdateSchema, EvaluationJobConfigInsertSchema, EvaluationJobConfigSelectSchema, EvaluationJobConfigUpdateSchema, EvaluationJobFilterCriteriaSchema, EvaluationResultApiInsertSchema, EvaluationResultApiSelectSchema, EvaluationResultApiUpdateSchema, EvaluationResultInsertSchema, EvaluationResultSelectSchema, EvaluationResultUpdateSchema, EvaluationRunApiInsertSchema, EvaluationRunApiSelectSchema, EvaluationRunApiUpdateSchema, EvaluationRunConfigApiInsertSchema, EvaluationRunConfigApiSelectSchema, EvaluationRunConfigApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema, EvaluationRunConfigEvaluationSuiteConfigRelationInsertSchema, EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema, EvaluationRunConfigEvaluationSuiteConfigRelationUpdateSchema, EvaluationRunConfigInsertSchema, EvaluationRunConfigSelectSchema, EvaluationRunConfigUpdateSchema, EvaluationRunConfigWithSuiteConfigsApiSelectSchema, EvaluationRunInsertSchema, EvaluationRunSelectSchema, EvaluationRunUpdateSchema, EvaluationSuiteConfigApiInsertSchema, EvaluationSuiteConfigApiSelectSchema, EvaluationSuiteConfigApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationApiInsertSchema, EvaluationSuiteConfigEvaluatorRelationApiSelectSchema, EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema, EvaluationSuiteConfigEvaluatorRelationInsertSchema, EvaluationSuiteConfigEvaluatorRelationSelectSchema, EvaluationSuiteConfigEvaluatorRelationUpdateSchema, EvaluationSuiteConfigInsertSchema, EvaluationSuiteConfigSelectSchema, EvaluationSuiteConfigUpdateSchema, EvaluatorApiInsertSchema, EvaluatorApiSelectSchema, EvaluatorApiUpdateSchema, EvaluatorInsertSchema, EvaluatorSelectSchema, EvaluatorUpdateSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FilePartSchema, FullAgentAgentInsertSchema, FullAgentSubAgentSelectSchema, FullAgentSubAgentSelectSchemaWithRelationIds, FullProjectDefinitionResponse, FullProjectDefinitionSchema, FullProjectSelectResponse, FullProjectSelectSchema, FullProjectSelectSchemaWithRelationIds, FullProjectSelectWithRelationIdsResponse, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfig, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPCatalogListResponse, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolListResponse, McpToolResponse, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettings, ModelSettingsSchema, OAuthCallbackQuerySchema, OAuthLoginQuerySchema, PaginationQueryParamsSchema, PaginationSchema, PaginationWithRefQueryParamsSchema, PartSchema, PartSchemaType, PrebuiltMCPServerSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectMetadataInsertSchema, ProjectMetadataSelectSchema, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RefQueryParamSchema, RelatedAgentInfoListResponse, RelatedAgentInfoSchema, RemovedResponseSchema, ResourceIdSchema, ScheduledTrigger, ScheduledTriggerApiInsert, ScheduledTriggerApiInsertBaseSchema, ScheduledTriggerApiInsertSchema, ScheduledTriggerApiSelect, ScheduledTriggerApiSelectSchema, ScheduledTriggerApiUpdate, ScheduledTriggerApiUpdateSchema, ScheduledTriggerInsert, ScheduledTriggerInsertSchema, ScheduledTriggerInvocation, ScheduledTriggerInvocationApiInsertSchema, ScheduledTriggerInvocationApiSelectSchema, ScheduledTriggerInvocationApiUpdateSchema, ScheduledTriggerInvocationInsert, ScheduledTriggerInvocationInsertSchema, ScheduledTriggerInvocationListResponse, ScheduledTriggerInvocationResponse, ScheduledTriggerInvocationSelectSchema, ScheduledTriggerInvocationStatus, ScheduledTriggerInvocationStatusEnum, ScheduledTriggerInvocationUpdate, ScheduledTriggerInvocationUpdateSchema, ScheduledTriggerListResponse, ScheduledTriggerResponse, ScheduledTriggerSelectSchema, ScheduledTriggerUpdate, ScheduledTriggerUpdateSchema, ScheduledTriggerWithRunInfo, ScheduledTriggerWithRunInfoListResponse, ScheduledTriggerWithRunInfoSchema, ScheduledWorkflow, ScheduledWorkflowApiInsertSchema, ScheduledWorkflowApiSelectSchema, ScheduledWorkflowApiUpdateSchema, ScheduledWorkflowInsert, ScheduledWorkflowInsertSchema, ScheduledWorkflowListResponse, ScheduledWorkflowResponse, ScheduledWorkflowSelectSchema, ScheduledWorkflowUpdate, ScheduledWorkflowUpdateSchema, SignatureSource, SignatureSourceSchema, SignatureValidationOptions, SignatureValidationOptionsSchema, SignatureVerificationConfig, SignatureVerificationConfigSchema, SignedComponent, SignedComponentSchema, SimulationAgent, SimulationAgentSchema, SingleResponseSchema, SkillApiInsertSchema, SkillApiSelectSchema, SkillApiUpdateSchema, SkillFrontmatterSchema, SkillInsertSchema, SkillListResponse, SkillResponse, SkillSelectSchema, SkillUpdateSchema, StatusComponentSchema, StatusUpdateSchema, StopWhen, StopWhenSchema, StringRecordSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentExternalAgentRelationApiInsertSchema, SubAgentExternalAgentRelationApiSelectSchema, SubAgentExternalAgentRelationApiUpdateSchema, SubAgentExternalAgentRelationInsertSchema, SubAgentExternalAgentRelationListResponse, SubAgentExternalAgentRelationResponse, SubAgentExternalAgentRelationSelectSchema, SubAgentExternalAgentRelationUpdateSchema, SubAgentFunctionToolRelationApiInsertSchema, SubAgentFunctionToolRelationApiSelectSchema, SubAgentFunctionToolRelationInsertSchema, SubAgentFunctionToolRelationListResponse, SubAgentFunctionToolRelationResponse, SubAgentFunctionToolRelationSelectSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentSkillApiInsertSchema, SubAgentSkillApiSelectSchema, SubAgentSkillApiUpdateSchema, SubAgentSkillInsertSchema, SubAgentSkillResponse, SubAgentSkillSelectSchema, SubAgentSkillUpdateSchema, SubAgentSkillWithIndexArrayResponse, SubAgentSkillWithIndexSchema, SubAgentStopWhen, SubAgentStopWhenSchema, SubAgentTeamAgentRelationApiInsertSchema, SubAgentTeamAgentRelationApiSelectSchema, SubAgentTeamAgentRelationApiUpdateSchema, SubAgentTeamAgentRelationInsertSchema, SubAgentTeamAgentRelationListResponse, SubAgentTeamAgentRelationResponse, SubAgentTeamAgentRelationSelectSchema, SubAgentTeamAgentRelationUpdateSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TeamAgentSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, TextPartSchema, ThirdPartyMCPServerResponse, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, TriggerApiInsertSchema, TriggerApiSelectSchema, TriggerApiUpdateSchema, TriggerAuthHeaderInputSchema, TriggerAuthHeaderStoredSchema, TriggerAuthHeaderUpdateSchema, TriggerAuthenticationInputSchema, TriggerAuthenticationSchema, TriggerAuthenticationStoredSchema, TriggerAuthenticationUpdateSchema, TriggerBatchConversationEvaluationSchema, TriggerConversationEvaluationSchema, TriggerDatasetRunSchema, TriggerEvaluationJobSchema, TriggerInsertSchema, TriggerInvocationApiInsertSchema, TriggerInvocationApiSelectSchema, TriggerInvocationApiUpdateSchema, TriggerInvocationInsertSchema, TriggerInvocationListResponse, TriggerInvocationResponse, TriggerInvocationSelectSchema, TriggerInvocationStatusEnum, TriggerInvocationUpdateSchema, TriggerListResponse, TriggerOutputTransformSchema, TriggerResponse, TriggerSelectSchema, TriggerUpdateSchema, TriggerWithWebhookUrlListResponse, TriggerWithWebhookUrlResponse, TriggerWithWebhookUrlSchema, URL_SAFE_ID_PATTERN, WorkAppGitHubAccessGetResponseSchema, WorkAppGitHubAccessModeSchema, WorkAppGitHubAccessSetRequestSchema, WorkAppGitHubAccessSetResponseSchema, WorkAppGitHubAccountTypeSchema, WorkAppGitHubInstallationApiInsertSchema, WorkAppGitHubInstallationInsertSchema, WorkAppGitHubInstallationSelectSchema, WorkAppGitHubInstallationStatusSchema, WorkAppGitHubMcpToolRepositoryAccessSelectSchema, WorkAppGitHubProjectRepositoryAccessSelectSchema, WorkAppGitHubRepositoryApiInsertSchema, WorkAppGitHubRepositoryInsertSchema, WorkAppGitHubRepositorySelectSchema, WorkAppGithubInstallationApiSelectSchema, WorkAppSlackAgentConfigRequest, WorkAppSlackAgentConfigRequestSchema, WorkAppSlackAgentConfigResponse, WorkAppSlackAgentConfigResponseSchema, WorkAppSlackChannelAgentConfigSelectSchema, WorkAppSlackWorkspaceSelectSchema, canDelegateToExternalAgentInsertSchema, canDelegateToExternalAgentSchema, canDelegateToTeamAgentInsertSchema, canDelegateToTeamAgentSchema, canRelateToInternalSubAgentSchema };
|