@inkeep/agents-core 0.0.0-dev-20260331052759 → 0.0.0-dev-20260331152429
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-validation-schemas.d.ts +17 -17
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/auth.js +28 -9
- package/dist/auth/entitlement-constants.d.ts +11 -0
- package/dist/auth/entitlement-constants.js +10 -0
- package/dist/auth/entitlement-lock.d.ts +6 -0
- package/dist/auth/entitlement-lock.js +13 -0
- package/dist/auth/entitlements.d.ts +11 -0
- package/dist/auth/entitlements.js +55 -0
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -3
- package/dist/client-exports.js +2 -1
- package/dist/data-access/index.d.ts +3 -2
- package/dist/data-access/index.js +2 -1
- package/dist/data-access/manage/agents.d.ts +18 -18
- package/dist/data-access/manage/artifactComponents.d.ts +8 -8
- 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/evalConfig.d.ts +1 -1
- package/dist/data-access/manage/functionTools.d.ts +10 -10
- package/dist/data-access/manage/projectLifecycle.d.ts +1 -1
- package/dist/data-access/manage/skills.d.ts +11 -11
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +14 -14
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgents.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +14 -14
- package/dist/data-access/runtime/cascade-delete.d.ts +1 -1
- package/dist/data-access/runtime/conversations.d.ts +17 -17
- package/dist/data-access/runtime/entitlements.d.ts +13 -0
- package/dist/data-access/runtime/entitlements.js +33 -0
- package/dist/data-access/runtime/ledgerArtifacts.d.ts +1 -1
- package/dist/data-access/runtime/messages.d.ts +22 -22
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/data-access/runtime/workflowExecutions.d.ts +1 -1
- package/dist/data-reconciliation/types.d.ts +1 -1
- package/dist/db/clean.d.ts +1 -1
- package/dist/db/manage/manage-schema.d.ts +2 -218
- package/dist/db/manage/manage-schema.js +2 -128
- package/dist/db/runtime/runtime-schema.d.ts +485 -372
- package/dist/db/runtime/runtime-schema.js +20 -3
- package/dist/index.d.ts +13 -9
- package/dist/index.js +7 -3
- package/dist/middleware/create-protected-route.d.ts +3 -0
- package/dist/middleware/create-protected-route.js +7 -2
- package/dist/middleware/entitlement-meta.d.ts +9 -0
- package/dist/middleware/entitlement-meta.js +11 -0
- package/dist/middleware/index.d.ts +2 -1
- package/dist/middleware/index.js +2 -1
- package/dist/utils/error.d.ts +54 -51
- package/dist/utils/error.js +3 -0
- package/dist/utils/index.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +49 -49
- package/dist/validation/schemas.d.ts +450 -450
- package/drizzle/manage/0016_complex_klaw.sql +2 -0
- package/drizzle/manage/meta/0016_snapshot.json +3530 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/drizzle/runtime/0029_burly_satana.sql +13 -0
- package/drizzle/runtime/meta/0029_snapshot.json +4756 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
- /package/drizzle/runtime/meta/{0023_snapshot.json → 0025_snapshot.json} +0 -0
|
@@ -703,9 +703,9 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
703
703
|
declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
704
704
|
id: z.ZodString;
|
|
705
705
|
name: z.ZodString;
|
|
706
|
-
description: z.ZodNullable<z.ZodString>;
|
|
707
706
|
createdAt: z.ZodString;
|
|
708
707
|
updatedAt: z.ZodString;
|
|
708
|
+
description: z.ZodNullable<z.ZodString>;
|
|
709
709
|
models: z.ZodNullable<z.ZodType<{
|
|
710
710
|
base?: {
|
|
711
711
|
model?: string | undefined;
|
|
@@ -774,9 +774,9 @@ declare const SubAgentApiSelectSchema: z.ZodObject<{
|
|
|
774
774
|
declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
775
775
|
id: z.ZodString;
|
|
776
776
|
name: z.ZodString;
|
|
777
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
778
777
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
779
778
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
779
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
780
780
|
models: z.ZodOptional<z.ZodObject<{
|
|
781
781
|
base: z.ZodOptional<z.ZodObject<{
|
|
782
782
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -806,9 +806,9 @@ declare const SubAgentApiInsertSchema: z.ZodObject<{
|
|
|
806
806
|
declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
807
807
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
808
808
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
809
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
810
809
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
811
810
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
811
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
812
812
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
813
813
|
base: z.ZodOptional<z.ZodObject<{
|
|
814
814
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -2542,7 +2542,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2542
2542
|
}, {}, {
|
|
2543
2543
|
length: 256;
|
|
2544
2544
|
}>;
|
|
2545
|
-
}, "id" | "name" | "
|
|
2545
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "models" | "stopWhen" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "executionMode">, undefined>, undefined>;
|
|
2546
2546
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2547
2547
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2548
2548
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2681,9 +2681,9 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
2681
2681
|
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
2682
2682
|
id: z.ZodString;
|
|
2683
2683
|
name: z.ZodString;
|
|
2684
|
-
description: z.ZodNullable<z.ZodString>;
|
|
2685
2684
|
createdAt: z.ZodString;
|
|
2686
2685
|
updatedAt: z.ZodString;
|
|
2686
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2687
2687
|
models: z.ZodNullable<z.ZodType<{
|
|
2688
2688
|
base?: {
|
|
2689
2689
|
model?: string | undefined;
|
|
@@ -2746,9 +2746,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2746
2746
|
}, {
|
|
2747
2747
|
transferCountIs?: number | undefined;
|
|
2748
2748
|
}>>>;
|
|
2749
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
2750
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2751
2749
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2750
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2751
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2752
2752
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2753
2753
|
enabled?: boolean | undefined;
|
|
2754
2754
|
numEvents?: number | undefined;
|
|
@@ -2874,9 +2874,9 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2874
2874
|
}, {
|
|
2875
2875
|
transferCountIs?: number | undefined;
|
|
2876
2876
|
}>>>>;
|
|
2877
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2878
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2879
2877
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2878
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2879
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2880
2880
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2881
2881
|
enabled?: boolean | undefined;
|
|
2882
2882
|
numEvents?: number | undefined;
|
|
@@ -3001,9 +3001,9 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3001
3001
|
}, {
|
|
3002
3002
|
transferCountIs?: number | undefined;
|
|
3003
3003
|
}>>>>>>;
|
|
3004
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3005
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3006
3004
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3005
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3006
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3007
3007
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3008
3008
|
enabled?: boolean | undefined;
|
|
3009
3009
|
numEvents?: number | undefined;
|
|
@@ -3330,8 +3330,8 @@ type ComponentJoin = z.infer<typeof ComponentJoinSchema>;
|
|
|
3330
3330
|
*/
|
|
3331
3331
|
type SignatureValidationOptions = z.infer<typeof SignatureValidationOptionsSchema>;
|
|
3332
3332
|
declare const TriggerInvocationStatusEnum: z.ZodEnum<{
|
|
3333
|
-
success: "success";
|
|
3334
3333
|
pending: "pending";
|
|
3334
|
+
success: "success";
|
|
3335
3335
|
failed: "failed";
|
|
3336
3336
|
}>;
|
|
3337
3337
|
declare const TriggerSelectSchema: z.ZodObject<{
|
|
@@ -4140,7 +4140,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4140
4140
|
}, {}, {
|
|
4141
4141
|
length: 256;
|
|
4142
4142
|
}>;
|
|
4143
|
-
}, "id" | "name" | "
|
|
4143
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "agentId" | "enabled" | "createdBy" | "inputSchema" | "messageTemplate" | "runAsUserId" | "outputTransform" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification">, undefined>, undefined>;
|
|
4144
4144
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4145
4145
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4146
4146
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4166,14 +4166,14 @@ declare const TriggerUpdateSchema: z.ZodObject<{
|
|
|
4166
4166
|
declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
4167
4167
|
id: z.ZodString;
|
|
4168
4168
|
name: z.ZodString;
|
|
4169
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4170
4169
|
createdAt: z.ZodString;
|
|
4171
4170
|
updatedAt: z.ZodString;
|
|
4172
|
-
|
|
4171
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4173
4172
|
enabled: z.ZodBoolean;
|
|
4173
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4174
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4174
4175
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4175
4176
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4176
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4177
4177
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4178
4178
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4179
4179
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4227,11 +4227,11 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4227
4227
|
id: z.ZodOptional<z.ZodString>;
|
|
4228
4228
|
name: z.ZodString;
|
|
4229
4229
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4230
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4231
4230
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4231
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4232
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4232
4233
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4233
4234
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4234
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4235
4235
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4236
4236
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4237
4237
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4240,14 +4240,14 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4240
4240
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4241
4241
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4242
4242
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4243
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4244
4243
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4245
4244
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4246
|
-
|
|
4245
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4247
4246
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4247
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4248
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4248
4249
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4249
4250
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4250
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4251
4251
|
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4252
4252
|
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4253
4253
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4256,14 +4256,14 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4256
4256
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4257
4257
|
id: z.ZodString;
|
|
4258
4258
|
name: z.ZodString;
|
|
4259
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4260
4259
|
createdAt: z.ZodString;
|
|
4261
4260
|
updatedAt: z.ZodString;
|
|
4262
|
-
|
|
4261
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4263
4262
|
enabled: z.ZodBoolean;
|
|
4263
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4264
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4264
4265
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4265
4266
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4266
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4267
4267
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4268
4268
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4269
4269
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4797,7 +4797,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4797
4797
|
}, {}, {
|
|
4798
4798
|
length: 256;
|
|
4799
4799
|
}>;
|
|
4800
|
-
}, "id" | "createdAt" | "
|
|
4800
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4801
4801
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4802
4802
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4803
4803
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4834,7 +4834,6 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
4834
4834
|
declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
4835
4835
|
id: z.ZodString;
|
|
4836
4836
|
createdAt: z.ZodString;
|
|
4837
|
-
status: z.ZodString;
|
|
4838
4837
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4839
4838
|
type: z.ZodEnum<{
|
|
4840
4839
|
commit: "commit";
|
|
@@ -4844,6 +4843,7 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
4844
4843
|
name: z.ZodString;
|
|
4845
4844
|
hash: z.ZodString;
|
|
4846
4845
|
}, z.core.$strip>>>;
|
|
4846
|
+
status: z.ZodString;
|
|
4847
4847
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4848
4848
|
triggerId: z.ZodString;
|
|
4849
4849
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -4852,7 +4852,6 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
4852
4852
|
}, z.core.$strip>;
|
|
4853
4853
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
4854
4854
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4855
|
-
status: z.ZodOptional<z.ZodString>;
|
|
4856
4855
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4857
4856
|
type: "commit" | "tag" | "branch";
|
|
4858
4857
|
name: string;
|
|
@@ -4870,6 +4869,7 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4870
4869
|
name: string;
|
|
4871
4870
|
hash: string;
|
|
4872
4871
|
}>>>>;
|
|
4872
|
+
status: z.ZodOptional<z.ZodString>;
|
|
4873
4873
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4874
4874
|
triggerId: z.ZodString;
|
|
4875
4875
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -4880,7 +4880,6 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
4880
4880
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
4881
4881
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4882
4882
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4883
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4884
4883
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
4885
4884
|
type: "commit" | "tag" | "branch";
|
|
4886
4885
|
name: string;
|
|
@@ -4898,6 +4897,7 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
4898
4897
|
name: string;
|
|
4899
4898
|
hash: string;
|
|
4900
4899
|
}>>>>>>;
|
|
4900
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4901
4901
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4902
4902
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4903
4903
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
@@ -4934,13 +4934,13 @@ declare const ScheduledTriggerSelectSchema: z.ZodObject<{
|
|
|
4934
4934
|
declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
4935
4935
|
id: z.ZodString;
|
|
4936
4936
|
name: z.ZodString;
|
|
4937
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4937
4938
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4938
|
-
projectId: z.ZodString;
|
|
4939
4939
|
tenantId: z.ZodString;
|
|
4940
|
-
|
|
4941
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4940
|
+
projectId: z.ZodString;
|
|
4942
4941
|
agentId: z.ZodString;
|
|
4943
4942
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4943
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4944
4944
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4945
4945
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4946
4946
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4958,10 +4958,10 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
4958
4958
|
id: z.ZodOptional<z.ZodString>;
|
|
4959
4959
|
name: z.ZodOptional<z.ZodString>;
|
|
4960
4960
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4961
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
4962
4961
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4963
|
-
|
|
4962
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
4964
4963
|
agentId: z.ZodOptional<z.ZodString>;
|
|
4964
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4965
4965
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4966
4966
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4967
4967
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4980,12 +4980,12 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
4980
4980
|
declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
4981
4981
|
id: z.ZodString;
|
|
4982
4982
|
name: z.ZodString;
|
|
4983
|
-
description: z.ZodNullable<z.ZodString>;
|
|
4984
4983
|
createdAt: z.ZodString;
|
|
4985
4984
|
updatedAt: z.ZodString;
|
|
4986
4985
|
ref: z.ZodString;
|
|
4987
|
-
|
|
4986
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4988
4987
|
enabled: z.ZodBoolean;
|
|
4988
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
4989
4989
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
4990
4990
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
4991
4991
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4999,10 +4999,10 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
4999
4999
|
}, z.core.$strip>;
|
|
5000
5000
|
declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
5001
5001
|
name: z.ZodString;
|
|
5002
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5003
5002
|
ref: z.ZodOptional<z.ZodString>;
|
|
5004
|
-
|
|
5003
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5005
5004
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5005
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5006
5006
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5007
5007
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5008
5008
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5016,10 +5016,10 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5016
5016
|
}, z.core.$strip>;
|
|
5017
5017
|
declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
5018
5018
|
name: z.ZodString;
|
|
5019
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5020
5019
|
ref: z.ZodOptional<z.ZodString>;
|
|
5021
|
-
|
|
5020
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5022
5021
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5022
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5023
5023
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5024
5024
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5025
5025
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5034,10 +5034,10 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5034
5034
|
declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
5035
5035
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5036
5036
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5037
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5038
5037
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5039
|
-
|
|
5038
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5040
5039
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5040
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5041
5041
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5042
5042
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5043
5043
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5659,7 +5659,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
5659
5659
|
}, {}, {
|
|
5660
5660
|
length: 256;
|
|
5661
5661
|
}>;
|
|
5662
|
-
}, "id" | "createdAt" | "
|
|
5662
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
5663
5663
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5664
5664
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
5665
5665
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5699,13 +5699,6 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5699
5699
|
declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
5700
5700
|
id: z.ZodString;
|
|
5701
5701
|
createdAt: z.ZodString;
|
|
5702
|
-
status: z.ZodEnum<{
|
|
5703
|
-
pending: "pending";
|
|
5704
|
-
running: "running";
|
|
5705
|
-
completed: "completed";
|
|
5706
|
-
failed: "failed";
|
|
5707
|
-
cancelled: "cancelled";
|
|
5708
|
-
}>;
|
|
5709
5702
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5710
5703
|
type: z.ZodEnum<{
|
|
5711
5704
|
commit: "commit";
|
|
@@ -5715,6 +5708,13 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5715
5708
|
name: z.ZodString;
|
|
5716
5709
|
hash: z.ZodString;
|
|
5717
5710
|
}, z.core.$strip>>>;
|
|
5711
|
+
status: z.ZodEnum<{
|
|
5712
|
+
pending: "pending";
|
|
5713
|
+
running: "running";
|
|
5714
|
+
completed: "completed";
|
|
5715
|
+
failed: "failed";
|
|
5716
|
+
cancelled: "cancelled";
|
|
5717
|
+
}>;
|
|
5718
5718
|
scheduledTriggerId: z.ZodString;
|
|
5719
5719
|
scheduledFor: z.ZodString;
|
|
5720
5720
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5726,7 +5726,6 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5726
5726
|
}, z.core.$strip>;
|
|
5727
5727
|
declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5728
5728
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5729
|
-
status: z.ZodString;
|
|
5730
5729
|
ref: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5731
5730
|
type: "commit" | "tag" | "branch";
|
|
5732
5731
|
name: string;
|
|
@@ -5744,6 +5743,7 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5744
5743
|
name: string;
|
|
5745
5744
|
hash: string;
|
|
5746
5745
|
}>>>>;
|
|
5746
|
+
status: z.ZodString;
|
|
5747
5747
|
scheduledTriggerId: z.ZodString;
|
|
5748
5748
|
scheduledFor: z.ZodString;
|
|
5749
5749
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5757,7 +5757,6 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5757
5757
|
declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5758
5758
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5759
5759
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5760
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5761
5760
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
5762
5761
|
type: "commit" | "tag" | "branch";
|
|
5763
5762
|
name: string;
|
|
@@ -5775,6 +5774,7 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5775
5774
|
name: string;
|
|
5776
5775
|
hash: string;
|
|
5777
5776
|
}>>>>>>;
|
|
5777
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5778
5778
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5779
5779
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5780
5780
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6008,10 +6008,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
6008
6008
|
}>;
|
|
6009
6009
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
6010
6010
|
id: z.ZodString;
|
|
6011
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6012
6011
|
createdAt: z.ZodString;
|
|
6013
6012
|
updatedAt: z.ZodString;
|
|
6014
|
-
status: z.ZodString;
|
|
6015
6013
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6016
6014
|
type: z.ZodEnum<{
|
|
6017
6015
|
commit: "commit";
|
|
@@ -6021,16 +6019,16 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
6021
6019
|
name: z.ZodString;
|
|
6022
6020
|
hash: z.ZodString;
|
|
6023
6021
|
}, z.core.$strip>>>;
|
|
6022
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
6023
|
+
status: z.ZodString;
|
|
6024
|
+
subAgentId: z.ZodString;
|
|
6024
6025
|
agentId: z.ZodString;
|
|
6025
6026
|
contextId: z.ZodString;
|
|
6026
|
-
subAgentId: z.ZodString;
|
|
6027
6027
|
}, z.core.$strip>;
|
|
6028
6028
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
6029
6029
|
id: z.ZodString;
|
|
6030
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6031
6030
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6032
6031
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6033
|
-
status: z.ZodString;
|
|
6034
6032
|
ref: z.ZodObject<{
|
|
6035
6033
|
type: z.ZodEnum<{
|
|
6036
6034
|
commit: "commit";
|
|
@@ -6040,17 +6038,17 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6040
6038
|
name: z.ZodString;
|
|
6041
6039
|
hash: z.ZodString;
|
|
6042
6040
|
}, z.core.$strip>;
|
|
6043
|
-
|
|
6044
|
-
|
|
6041
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
6042
|
+
status: z.ZodString;
|
|
6045
6043
|
subAgentId: z.ZodString;
|
|
6044
|
+
agentId: z.ZodString;
|
|
6046
6045
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
6046
|
+
contextId: z.ZodString;
|
|
6047
6047
|
}, z.core.$strip>;
|
|
6048
6048
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6049
6049
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6050
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6051
6050
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6052
6051
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6053
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6054
6052
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6055
6053
|
type: z.ZodEnum<{
|
|
6056
6054
|
commit: "commit";
|
|
@@ -6060,10 +6058,12 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6060
6058
|
name: z.ZodString;
|
|
6061
6059
|
hash: z.ZodString;
|
|
6062
6060
|
}, z.core.$strip>>>;
|
|
6063
|
-
|
|
6064
|
-
|
|
6061
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
6062
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6065
6063
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6064
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6066
6065
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6066
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6067
6067
|
}, z.core.$strip>;
|
|
6068
6068
|
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6069
6069
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -6425,9 +6425,9 @@ declare const McpTransportConfigSchema: z.ZodObject<{
|
|
|
6425
6425
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
6426
6426
|
}, z.core.$strip>;
|
|
6427
6427
|
declare const ToolStatusSchema: z.ZodEnum<{
|
|
6428
|
+
unknown: "unknown";
|
|
6428
6429
|
healthy: "healthy";
|
|
6429
6430
|
unhealthy: "unhealthy";
|
|
6430
|
-
unknown: "unknown";
|
|
6431
6431
|
needs_auth: "needs_auth";
|
|
6432
6432
|
unavailable: "unavailable";
|
|
6433
6433
|
}>;
|
|
@@ -7001,8 +7001,9 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7001
7001
|
id: z.ZodString;
|
|
7002
7002
|
name: z.ZodString;
|
|
7003
7003
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7004
|
-
projectId: z.ZodString;
|
|
7005
7004
|
tenantId: z.ZodString;
|
|
7005
|
+
projectId: z.ZodString;
|
|
7006
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7006
7007
|
config: z.ZodObject<{
|
|
7007
7008
|
type: z.ZodLiteral<"mcp">;
|
|
7008
7009
|
mcp: z.ZodObject<{
|
|
@@ -7031,7 +7032,6 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7031
7032
|
}, z.core.$strip>;
|
|
7032
7033
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7033
7034
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
7034
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7035
7035
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7036
7036
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7037
7037
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7119,10 +7119,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7119
7119
|
}>;
|
|
7120
7120
|
declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
7121
7121
|
id: z.ZodString;
|
|
7122
|
-
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7123
7122
|
createdAt: z.ZodString;
|
|
7124
7123
|
updatedAt: z.ZodString;
|
|
7125
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7126
7124
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7127
7125
|
type: z.ZodEnum<{
|
|
7128
7126
|
commit: "commit";
|
|
@@ -7133,16 +7131,16 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7133
7131
|
hash: z.ZodString;
|
|
7134
7132
|
}, z.core.$strip>>>;
|
|
7135
7133
|
userId: z.ZodNullable<z.ZodString>;
|
|
7134
|
+
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7135
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7136
7136
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7137
7137
|
activeSubAgentId: z.ZodString;
|
|
7138
7138
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7139
7139
|
}, z.core.$strip>;
|
|
7140
7140
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
7141
7141
|
id: z.ZodString;
|
|
7142
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7143
7142
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7144
7143
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7145
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7146
7144
|
ref: z.ZodObject<{
|
|
7147
7145
|
type: z.ZodEnum<{
|
|
7148
7146
|
commit: "commit";
|
|
@@ -7153,17 +7151,17 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7153
7151
|
hash: z.ZodString;
|
|
7154
7152
|
}, z.core.$strip>;
|
|
7155
7153
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7154
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7155
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7156
7156
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7157
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7157
7158
|
activeSubAgentId: z.ZodString;
|
|
7158
7159
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7159
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7160
7160
|
}, z.core.$strip>;
|
|
7161
7161
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
7162
7162
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7163
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7164
7163
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7165
7164
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7166
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7167
7165
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7168
7166
|
type: z.ZodEnum<{
|
|
7169
7167
|
commit: "commit";
|
|
@@ -7174,10 +7172,12 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7174
7172
|
hash: z.ZodString;
|
|
7175
7173
|
}, z.core.$strip>>>;
|
|
7176
7174
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7175
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7176
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7177
7177
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7178
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7178
7179
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7179
7180
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7180
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7181
7181
|
}, z.core.$strip>;
|
|
7182
7182
|
declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7183
7183
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -8026,65 +8026,65 @@ declare const MessageUpdateSchema: z.ZodObject<{
|
|
|
8026
8026
|
}>;
|
|
8027
8027
|
declare const MessageApiSelectSchema: z.ZodObject<{
|
|
8028
8028
|
id: z.ZodString;
|
|
8029
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8030
|
-
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8031
8029
|
createdAt: z.ZodString;
|
|
8032
8030
|
updatedAt: z.ZodString;
|
|
8031
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8033
8032
|
role: z.ZodString;
|
|
8034
|
-
|
|
8033
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8035
8034
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8036
8035
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8037
8036
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8038
8037
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8038
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
8039
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8040
|
+
conversationId: z.ZodString;
|
|
8039
8041
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8040
8042
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8041
8043
|
visibility: z.ZodString;
|
|
8042
8044
|
messageType: z.ZodString;
|
|
8043
|
-
taskId: z.ZodNullable<z.ZodString>;
|
|
8044
8045
|
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
8045
|
-
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8046
8046
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8047
8047
|
}, z.core.$strip>;
|
|
8048
8048
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
8049
8049
|
id: z.ZodString;
|
|
8050
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8051
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8052
8050
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8053
8051
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8052
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8054
8053
|
role: z.ZodString;
|
|
8055
|
-
|
|
8054
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8056
8055
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8057
8056
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8058
8057
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8059
8058
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8059
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
8060
|
+
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8061
|
+
conversationId: z.ZodString;
|
|
8060
8062
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8061
8063
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8062
8064
|
visibility: z.ZodOptional<z.ZodString>;
|
|
8063
8065
|
messageType: z.ZodOptional<z.ZodString>;
|
|
8064
|
-
taskId: z.ZodOptional<z.ZodString>;
|
|
8065
8066
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8066
|
-
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8067
8067
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8068
8068
|
}, z.core.$strip>;
|
|
8069
8069
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
8070
8070
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8071
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8072
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8073
8071
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8074
8072
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8073
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8075
8074
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8076
|
-
|
|
8075
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8077
8076
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8078
8077
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8079
8078
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8080
8079
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8080
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8081
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8082
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8081
8083
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8082
8084
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8083
8085
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8084
8086
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8085
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8086
8087
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8087
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8088
8088
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8089
8089
|
}, z.core.$strip>;
|
|
8090
8090
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -8169,7 +8169,6 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8169
8169
|
id: z.ZodString;
|
|
8170
8170
|
createdAt: z.ZodString;
|
|
8171
8171
|
updatedAt: z.ZodString;
|
|
8172
|
-
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8173
8172
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8174
8173
|
type: z.ZodEnum<{
|
|
8175
8174
|
commit: "commit";
|
|
@@ -8179,8 +8178,9 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8179
8178
|
name: z.ZodString;
|
|
8180
8179
|
hash: z.ZodString;
|
|
8181
8180
|
}, z.core.$strip>>>;
|
|
8182
|
-
|
|
8181
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8183
8182
|
contextConfigId: z.ZodString;
|
|
8183
|
+
conversationId: z.ZodString;
|
|
8184
8184
|
contextVariableKey: z.ZodString;
|
|
8185
8185
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8186
8186
|
fetchedAt: z.ZodString;
|
|
@@ -8190,7 +8190,6 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8190
8190
|
id: z.ZodString;
|
|
8191
8191
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8192
8192
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8193
|
-
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8194
8193
|
ref: z.ZodObject<{
|
|
8195
8194
|
type: z.ZodEnum<{
|
|
8196
8195
|
commit: "commit";
|
|
@@ -8200,8 +8199,9 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8200
8199
|
name: z.ZodString;
|
|
8201
8200
|
hash: z.ZodString;
|
|
8202
8201
|
}, z.core.$strip>;
|
|
8203
|
-
|
|
8202
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8204
8203
|
contextConfigId: z.ZodString;
|
|
8204
|
+
conversationId: z.ZodString;
|
|
8205
8205
|
contextVariableKey: z.ZodString;
|
|
8206
8206
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8207
8207
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -8211,7 +8211,6 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8211
8211
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8212
8212
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8213
8213
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8214
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8215
8214
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8216
8215
|
type: z.ZodEnum<{
|
|
8217
8216
|
commit: "commit";
|
|
@@ -8221,8 +8220,9 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8221
8220
|
name: z.ZodString;
|
|
8222
8221
|
hash: z.ZodString;
|
|
8223
8222
|
}, z.core.$strip>>>;
|
|
8224
|
-
|
|
8223
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8225
8224
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8225
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8226
8226
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8227
8227
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8228
8228
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9064,26 +9064,26 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
9064
9064
|
in: {};
|
|
9065
9065
|
}>;
|
|
9066
9066
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
9067
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9067
9068
|
id: z.ZodString;
|
|
9068
9069
|
createdAt: z.ZodString;
|
|
9069
9070
|
updatedAt: z.ZodString;
|
|
9070
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9071
9071
|
conversationId: z.ZodString;
|
|
9072
9072
|
evaluatorId: z.ZodString;
|
|
9073
9073
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
9074
9074
|
}, z.core.$strip>;
|
|
9075
9075
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9076
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9076
9077
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9077
9078
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9078
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9079
9079
|
conversationId: z.ZodString;
|
|
9080
9080
|
evaluatorId: z.ZodString;
|
|
9081
9081
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9082
9082
|
}, z.core.$strip>;
|
|
9083
9083
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9084
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9084
9085
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9085
9086
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9086
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9087
9087
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9088
9088
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9089
9089
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -9549,33 +9549,33 @@ declare const EvaluationRunConfigUpdateSchema: z.ZodObject<{
|
|
|
9549
9549
|
declare const EvaluationRunConfigApiSelectSchema: z.ZodObject<{
|
|
9550
9550
|
id: z.ZodString;
|
|
9551
9551
|
name: z.ZodString;
|
|
9552
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9553
9552
|
createdAt: z.ZodString;
|
|
9554
9553
|
updatedAt: z.ZodString;
|
|
9554
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9555
9555
|
isActive: z.ZodBoolean;
|
|
9556
9556
|
}, z.core.$strip>;
|
|
9557
9557
|
declare const EvaluationRunConfigApiInsertSchema: z.ZodObject<{
|
|
9558
9558
|
name: z.ZodString;
|
|
9559
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9560
9559
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9561
9560
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9561
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9562
9562
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9563
9563
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
9564
9564
|
}, z.core.$strip>;
|
|
9565
9565
|
declare const EvaluationRunConfigApiUpdateSchema: z.ZodObject<{
|
|
9566
9566
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9567
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9568
9567
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9569
9568
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9569
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9570
9570
|
isActive: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
9571
9571
|
suiteConfigIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9572
9572
|
}, z.core.$strip>;
|
|
9573
9573
|
declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
9574
9574
|
id: z.ZodString;
|
|
9575
9575
|
name: z.ZodString;
|
|
9576
|
-
description: z.ZodNullable<z.ZodString>;
|
|
9577
9576
|
createdAt: z.ZodString;
|
|
9578
9577
|
updatedAt: z.ZodString;
|
|
9578
|
+
description: z.ZodNullable<z.ZodString>;
|
|
9579
9579
|
isActive: z.ZodBoolean;
|
|
9580
9580
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
9581
9581
|
}, z.core.$strip>;
|
|
@@ -11699,9 +11699,10 @@ declare const EvaluatorUpdateSchema: z.ZodObject<{
|
|
|
11699
11699
|
declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
11700
11700
|
id: z.ZodString;
|
|
11701
11701
|
name: z.ZodString;
|
|
11702
|
-
description: z.ZodNullable<z.ZodString>;
|
|
11703
11702
|
createdAt: z.ZodString;
|
|
11704
11703
|
updatedAt: z.ZodString;
|
|
11704
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11705
|
+
description: z.ZodNullable<z.ZodString>;
|
|
11705
11706
|
model: z.ZodType<{
|
|
11706
11707
|
model?: string | undefined;
|
|
11707
11708
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -11715,15 +11716,15 @@ declare const EvaluatorApiSelectSchema: z.ZodObject<{
|
|
|
11715
11716
|
model?: string | undefined;
|
|
11716
11717
|
providerOptions?: Record<string, unknown> | undefined;
|
|
11717
11718
|
}>>;
|
|
11718
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11719
11719
|
prompt: z.ZodString;
|
|
11720
11720
|
passCriteria: z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>;
|
|
11721
11721
|
}, z.core.$strip>;
|
|
11722
11722
|
declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
11723
11723
|
name: z.ZodString;
|
|
11724
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11725
11724
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11726
11725
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11726
|
+
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11727
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11727
11728
|
model: z.ZodType<{
|
|
11728
11729
|
model?: string | undefined;
|
|
11729
11730
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -11737,15 +11738,15 @@ declare const EvaluatorApiInsertSchema: z.ZodObject<{
|
|
|
11737
11738
|
model?: string | undefined;
|
|
11738
11739
|
providerOptions?: Record<string, unknown> | undefined;
|
|
11739
11740
|
}>>;
|
|
11740
|
-
schema: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
11741
11741
|
prompt: z.ZodString;
|
|
11742
11742
|
passCriteria: z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>;
|
|
11743
11743
|
}, z.core.$strip>;
|
|
11744
11744
|
declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
11745
11745
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11746
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11747
11746
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11748
11747
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11748
|
+
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
11749
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
11749
11750
|
model: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
11750
11751
|
model?: string | undefined;
|
|
11751
11752
|
providerOptions?: Record<string, unknown> | undefined;
|
|
@@ -11759,7 +11760,6 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
11759
11760
|
model?: string | undefined;
|
|
11760
11761
|
providerOptions?: Record<string, unknown> | undefined;
|
|
11761
11762
|
}>>>>;
|
|
11762
|
-
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
11763
11763
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11764
11764
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
11765
11765
|
}, z.core.$strip>;
|
|
@@ -12510,10 +12510,10 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
12510
12510
|
in: {};
|
|
12511
12511
|
}>;
|
|
12512
12512
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
12513
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12513
12514
|
id: z.ZodString;
|
|
12514
12515
|
createdAt: z.ZodString;
|
|
12515
12516
|
updatedAt: z.ZodString;
|
|
12516
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12517
12517
|
datasetId: z.ZodString;
|
|
12518
12518
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
12519
12519
|
simulationAgent: z.ZodNullable<z.ZodType<{
|
|
@@ -12559,9 +12559,9 @@ declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
|
12559
12559
|
}>>>;
|
|
12560
12560
|
}, z.core.$strip>;
|
|
12561
12561
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
12562
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12562
12563
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12563
12564
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12564
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12565
12565
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
12566
12566
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
12567
12567
|
prompt: string;
|
|
@@ -12606,9 +12606,9 @@ declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
|
12606
12606
|
}>>>>;
|
|
12607
12607
|
}, z.core.$strip>;
|
|
12608
12608
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
12609
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
12609
12610
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12610
12611
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12611
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
12612
12612
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
12613
12613
|
simulationAgent: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
12614
12614
|
prompt: string;
|
|
@@ -12653,8 +12653,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
12653
12653
|
}>>>>>>;
|
|
12654
12654
|
}, z.core.$strip>;
|
|
12655
12655
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
12656
|
-
id: z.ZodOptional<z.ZodString>;
|
|
12657
12656
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
12657
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12658
12658
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
12659
12659
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
12660
12660
|
prompt: string;
|
|
@@ -12702,8 +12702,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
12702
12702
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
12703
12703
|
datasetRunId: z.ZodString;
|
|
12704
12704
|
items: z.ZodArray<z.ZodObject<{
|
|
12705
|
-
id: z.ZodOptional<z.ZodString>;
|
|
12706
12705
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
12706
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12707
12707
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
12708
12708
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
12709
12709
|
prompt: string;
|
|
@@ -13105,23 +13105,23 @@ declare const DatasetRunConfigUpdateSchema: z.ZodObject<{
|
|
|
13105
13105
|
declare const DatasetRunConfigApiSelectSchema: z.ZodObject<{
|
|
13106
13106
|
id: z.ZodString;
|
|
13107
13107
|
name: z.ZodString;
|
|
13108
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13109
13108
|
createdAt: z.ZodString;
|
|
13110
13109
|
updatedAt: z.ZodString;
|
|
13110
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13111
13111
|
datasetId: z.ZodString;
|
|
13112
13112
|
}, z.core.$strip>;
|
|
13113
13113
|
declare const DatasetRunConfigApiInsertSchema: z.ZodObject<{
|
|
13114
13114
|
name: z.ZodString;
|
|
13115
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13116
13115
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13117
13116
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13117
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13118
13118
|
datasetId: z.ZodString;
|
|
13119
13119
|
}, z.core.$strip>;
|
|
13120
13120
|
declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
13121
13121
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13122
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13123
13122
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13124
13123
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13124
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13125
13125
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13126
13126
|
}, z.core.$strip>;
|
|
13127
13127
|
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -13786,8 +13786,8 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
13786
13786
|
id: z.ZodString;
|
|
13787
13787
|
name: z.ZodString;
|
|
13788
13788
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13789
|
-
projectId: z.ZodString;
|
|
13790
13789
|
tenantId: z.ZodString;
|
|
13790
|
+
projectId: z.ZodString;
|
|
13791
13791
|
props: z.ZodType<{
|
|
13792
13792
|
[x: string]: unknown;
|
|
13793
13793
|
type: "object";
|
|
@@ -13838,8 +13838,8 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
13838
13838
|
id: z.ZodOptional<z.ZodString>;
|
|
13839
13839
|
name: z.ZodOptional<z.ZodString>;
|
|
13840
13840
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
13841
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
13842
13841
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13842
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
13843
13843
|
props: z.ZodOptional<z.ZodType<{
|
|
13844
13844
|
[x: string]: unknown;
|
|
13845
13845
|
type: "object";
|
|
@@ -13889,9 +13889,9 @@ declare const DataComponentUpdateSchema: z.ZodObject<{
|
|
|
13889
13889
|
declare const DataComponentApiSelectSchema: z.ZodObject<{
|
|
13890
13890
|
id: z.ZodString;
|
|
13891
13891
|
name: z.ZodString;
|
|
13892
|
-
description: z.ZodNullable<z.ZodString>;
|
|
13893
13892
|
createdAt: z.ZodString;
|
|
13894
13893
|
updatedAt: z.ZodString;
|
|
13894
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13895
13895
|
props: z.ZodType<{
|
|
13896
13896
|
[x: string]: unknown;
|
|
13897
13897
|
type: "object";
|
|
@@ -14514,7 +14514,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
14514
14514
|
}, {}, {
|
|
14515
14515
|
length: 256;
|
|
14516
14516
|
}>;
|
|
14517
|
-
}, "id" | "createdAt" | "
|
|
14517
|
+
}, "id" | "createdAt" | "tenantId" | "projectId" | "subAgentId" | "agentId" | "dataComponentId">, undefined>, undefined>;
|
|
14518
14518
|
declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
14519
14519
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
14520
14520
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14534,8 +14534,8 @@ declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<{
|
|
|
14534
14534
|
dataComponentId: z.ZodString;
|
|
14535
14535
|
}, z.core.$strip>;
|
|
14536
14536
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
14537
|
-
agentId: z.ZodString;
|
|
14538
14537
|
subAgentId: z.ZodString;
|
|
14538
|
+
agentId: z.ZodString;
|
|
14539
14539
|
dataComponentId: z.ZodString;
|
|
14540
14540
|
}, {
|
|
14541
14541
|
out: {};
|
|
@@ -15031,9 +15031,9 @@ declare const ArtifactComponentUpdateSchema: z.ZodObject<{
|
|
|
15031
15031
|
declare const ArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
15032
15032
|
id: z.ZodString;
|
|
15033
15033
|
name: z.ZodString;
|
|
15034
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15035
15034
|
createdAt: z.ZodString;
|
|
15036
15035
|
updatedAt: z.ZodString;
|
|
15036
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15037
15037
|
props: z.ZodNullable<z.ZodType<{
|
|
15038
15038
|
[x: string]: unknown;
|
|
15039
15039
|
type: "object";
|
|
@@ -15108,9 +15108,9 @@ declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
|
15108
15108
|
declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
15109
15109
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15110
15110
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15111
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15112
15111
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15113
15112
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
15113
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15114
15114
|
props: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15115
15115
|
[x: string]: unknown;
|
|
15116
15116
|
type: "object";
|
|
@@ -15450,8 +15450,8 @@ declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
|
15450
15450
|
artifactComponentId: z.ZodString;
|
|
15451
15451
|
}, z.core.$strip>;
|
|
15452
15452
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
15453
|
-
agentId: z.ZodString;
|
|
15454
15453
|
subAgentId: z.ZodString;
|
|
15454
|
+
agentId: z.ZodString;
|
|
15455
15455
|
artifactComponentId: z.ZodString;
|
|
15456
15456
|
}, {
|
|
15457
15457
|
out: {};
|
|
@@ -15481,10 +15481,10 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
15481
15481
|
id: z.ZodString;
|
|
15482
15482
|
name: z.ZodString;
|
|
15483
15483
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15484
|
-
projectId: z.ZodString;
|
|
15485
15484
|
tenantId: z.ZodString;
|
|
15486
|
-
|
|
15485
|
+
projectId: z.ZodString;
|
|
15487
15486
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15487
|
+
baseUrl: z.ZodURL;
|
|
15488
15488
|
}, {
|
|
15489
15489
|
out: {};
|
|
15490
15490
|
in: {};
|
|
@@ -15493,10 +15493,10 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
15493
15493
|
id: z.ZodOptional<z.ZodString>;
|
|
15494
15494
|
name: z.ZodOptional<z.ZodString>;
|
|
15495
15495
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15496
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
15497
15496
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15498
|
-
|
|
15497
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
15499
15498
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15499
|
+
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
15500
15500
|
}, {
|
|
15501
15501
|
out: {};
|
|
15502
15502
|
in: {};
|
|
@@ -15504,32 +15504,32 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
15504
15504
|
declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
15505
15505
|
id: z.ZodString;
|
|
15506
15506
|
name: z.ZodString;
|
|
15507
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15508
15507
|
createdAt: z.ZodString;
|
|
15509
15508
|
updatedAt: z.ZodString;
|
|
15510
|
-
|
|
15509
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15511
15510
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15511
|
+
baseUrl: z.ZodString;
|
|
15512
15512
|
}, z.core.$strip>;
|
|
15513
15513
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
15514
15514
|
id: z.ZodString;
|
|
15515
15515
|
name: z.ZodString;
|
|
15516
15516
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15517
|
-
baseUrl: z.ZodURL;
|
|
15518
15517
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15518
|
+
baseUrl: z.ZodURL;
|
|
15519
15519
|
}, z.core.$strip>;
|
|
15520
15520
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
15521
15521
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15522
15522
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15523
15523
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15524
|
-
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
15525
15524
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
15525
|
+
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
15526
15526
|
}, z.core.$strip>;
|
|
15527
15527
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15528
15528
|
id: z.ZodString;
|
|
15529
15529
|
name: z.ZodString;
|
|
15530
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15531
15530
|
createdAt: z.ZodString;
|
|
15532
15531
|
updatedAt: z.ZodString;
|
|
15532
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15533
15533
|
models: z.ZodNullable<z.ZodType<{
|
|
15534
15534
|
base?: {
|
|
15535
15535
|
model?: string | undefined;
|
|
@@ -15598,11 +15598,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15598
15598
|
}, z.core.$strip>, z.ZodObject<{
|
|
15599
15599
|
id: z.ZodString;
|
|
15600
15600
|
name: z.ZodString;
|
|
15601
|
-
description: z.ZodNullable<z.ZodString>;
|
|
15602
15601
|
createdAt: z.ZodString;
|
|
15603
15602
|
updatedAt: z.ZodString;
|
|
15604
|
-
|
|
15603
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15605
15604
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15605
|
+
baseUrl: z.ZodString;
|
|
15606
15606
|
type: z.ZodLiteral<"external">;
|
|
15607
15607
|
}, z.core.$strip>], "type">;
|
|
15608
15608
|
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -16964,15 +16964,12 @@ declare const AppInsertSchema: z.ZodObject<{
|
|
|
16964
16964
|
}>;
|
|
16965
16965
|
declare const AppUpdateSchema: z.ZodObject<{
|
|
16966
16966
|
name: z.ZodOptional<z.ZodString>;
|
|
16967
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16968
16967
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16969
|
-
|
|
16968
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16970
16969
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16971
|
-
|
|
16972
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16973
|
-
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16974
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16970
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16975
16971
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16972
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16976
16973
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16977
16974
|
type: z.ZodLiteral<"web_client">;
|
|
16978
16975
|
webClient: z.ZodObject<{
|
|
@@ -17001,6 +16998,9 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
17001
16998
|
type: z.ZodLiteral<"api">;
|
|
17002
16999
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
17003
17000
|
}, z.core.$strip>], "type">>;
|
|
17001
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17002
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17003
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17004
17004
|
}, {
|
|
17005
17005
|
out: {};
|
|
17006
17006
|
in: {};
|
|
@@ -17595,19 +17595,19 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
17595
17595
|
}, {}, {}>;
|
|
17596
17596
|
}, undefined>, undefined>;
|
|
17597
17597
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
17598
|
+
type: z.ZodString;
|
|
17598
17599
|
id: z.ZodString;
|
|
17599
17600
|
name: z.ZodString;
|
|
17600
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17601
17601
|
createdAt: z.ZodString;
|
|
17602
17602
|
updatedAt: z.ZodString;
|
|
17603
|
-
|
|
17603
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17604
17604
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
17605
|
-
|
|
17605
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
17606
|
+
enabled: z.ZodBoolean;
|
|
17607
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
17606
17608
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
17607
17609
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
17608
17610
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
17609
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
17610
|
-
enabled: z.ZodBoolean;
|
|
17611
17611
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17612
17612
|
type: z.ZodLiteral<"web_client">;
|
|
17613
17613
|
webClient: z.ZodObject<{
|
|
@@ -17641,20 +17641,18 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
17641
17641
|
in: {};
|
|
17642
17642
|
}>;
|
|
17643
17643
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
17644
|
-
name: z.ZodString;
|
|
17645
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17646
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
17647
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17648
|
-
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17649
|
-
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17650
17644
|
type: z.ZodEnum<{
|
|
17651
17645
|
web_client: "web_client";
|
|
17652
17646
|
api: "api";
|
|
17653
17647
|
}>;
|
|
17654
|
-
|
|
17655
|
-
|
|
17656
|
-
|
|
17648
|
+
name: z.ZodString;
|
|
17649
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
17650
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17651
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17652
|
+
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17653
|
+
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17657
17654
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
17655
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17658
17656
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17659
17657
|
type: z.ZodLiteral<"web_client">;
|
|
17660
17658
|
webClient: z.ZodObject<{
|
|
@@ -17683,21 +17681,20 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
17683
17681
|
type: z.ZodLiteral<"api">;
|
|
17684
17682
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
17685
17683
|
}, z.core.$strip>], "type">;
|
|
17684
|
+
defaultProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17685
|
+
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17686
17686
|
}, {
|
|
17687
17687
|
out: {};
|
|
17688
17688
|
in: {};
|
|
17689
17689
|
}>;
|
|
17690
17690
|
declare const AppApiUpdateSchema: z.ZodObject<{
|
|
17691
17691
|
name: z.ZodOptional<z.ZodString>;
|
|
17692
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17693
17692
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17694
|
-
|
|
17693
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17695
17694
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17696
|
-
|
|
17697
|
-
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17698
|
-
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17699
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17695
|
+
projectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17700
17696
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
17697
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17701
17698
|
config: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17702
17699
|
type: z.ZodLiteral<"web_client">;
|
|
17703
17700
|
webClient: z.ZodObject<{
|
|
@@ -17726,6 +17723,9 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
17726
17723
|
type: z.ZodLiteral<"api">;
|
|
17727
17724
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
17728
17725
|
}, z.core.$strip>], "type">>;
|
|
17726
|
+
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17727
|
+
defaultProjectId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17728
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17729
17729
|
}, {
|
|
17730
17730
|
out: {};
|
|
17731
17731
|
in: {};
|
|
@@ -17733,19 +17733,19 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
17733
17733
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
17734
17734
|
data: z.ZodObject<{
|
|
17735
17735
|
app: z.ZodObject<{
|
|
17736
|
+
type: z.ZodString;
|
|
17736
17737
|
id: z.ZodString;
|
|
17737
17738
|
name: z.ZodString;
|
|
17738
|
-
description: z.ZodNullable<z.ZodString>;
|
|
17739
17739
|
createdAt: z.ZodString;
|
|
17740
17740
|
updatedAt: z.ZodString;
|
|
17741
|
-
|
|
17741
|
+
description: z.ZodNullable<z.ZodString>;
|
|
17742
17742
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
17743
|
-
|
|
17743
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
17744
|
+
enabled: z.ZodBoolean;
|
|
17745
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
17744
17746
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
17745
17747
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
17746
17748
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
17747
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
17748
|
-
enabled: z.ZodBoolean;
|
|
17749
17749
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
17750
17750
|
type: z.ZodLiteral<"web_client">;
|
|
17751
17751
|
webClient: z.ZodObject<{
|
|
@@ -18232,31 +18232,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
18232
18232
|
}>;
|
|
18233
18233
|
}, undefined>, undefined>;
|
|
18234
18234
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
18235
|
+
type: z.ZodString;
|
|
18235
18236
|
id: z.ZodString;
|
|
18236
18237
|
name: z.ZodString;
|
|
18237
|
-
projectId: z.ZodString;
|
|
18238
|
-
tenantId: z.ZodString;
|
|
18239
|
-
type: z.ZodString;
|
|
18240
18238
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18241
|
-
|
|
18239
|
+
tenantId: z.ZodString;
|
|
18240
|
+
projectId: z.ZodString;
|
|
18242
18241
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18243
18242
|
credentialStoreId: z.ZodString;
|
|
18244
18243
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18244
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18245
18245
|
}, {
|
|
18246
18246
|
out: {};
|
|
18247
18247
|
in: {};
|
|
18248
18248
|
}>;
|
|
18249
18249
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
18250
|
+
type: z.ZodOptional<z.ZodString>;
|
|
18250
18251
|
id: z.ZodOptional<z.ZodString>;
|
|
18251
18252
|
name: z.ZodOptional<z.ZodString>;
|
|
18252
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
18253
|
-
tenantId: z.ZodOptional<z.ZodString>;
|
|
18254
|
-
type: z.ZodOptional<z.ZodString>;
|
|
18255
18253
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18256
|
-
|
|
18254
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
18255
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
18257
18256
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18258
18257
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
18259
18258
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
18259
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18260
18260
|
}, {
|
|
18261
18261
|
out: {};
|
|
18262
18262
|
in: {};
|
|
@@ -18267,10 +18267,10 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
18267
18267
|
createdAt: z.ZodString;
|
|
18268
18268
|
updatedAt: z.ZodString;
|
|
18269
18269
|
userId: z.ZodNullable<z.ZodString>;
|
|
18270
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
18271
18270
|
toolId: z.ZodNullable<z.ZodString>;
|
|
18272
18271
|
credentialStoreId: z.ZodString;
|
|
18273
18272
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
18273
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
18274
18274
|
type: z.ZodEnum<{
|
|
18275
18275
|
readonly memory: "memory";
|
|
18276
18276
|
readonly keychain: "keychain";
|
|
@@ -18857,10 +18857,10 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
18857
18857
|
id: z.ZodString;
|
|
18858
18858
|
name: z.ZodString;
|
|
18859
18859
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18860
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18861
18860
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18862
18861
|
credentialStoreId: z.ZodString;
|
|
18863
18862
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18863
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18864
18864
|
type: z.ZodEnum<{
|
|
18865
18865
|
readonly memory: "memory";
|
|
18866
18866
|
readonly keychain: "keychain";
|
|
@@ -18872,10 +18872,10 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
18872
18872
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18873
18873
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18874
18874
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18875
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18876
18875
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18877
18876
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18878
18877
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
18878
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18879
18879
|
type: z.ZodOptional<z.ZodEnum<{
|
|
18880
18880
|
readonly memory: "memory";
|
|
18881
18881
|
readonly keychain: "keychain";
|
|
@@ -18943,8 +18943,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
18943
18943
|
id: z.ZodString;
|
|
18944
18944
|
name: z.ZodString;
|
|
18945
18945
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18946
|
-
projectId: z.ZodString;
|
|
18947
18946
|
tenantId: z.ZodString;
|
|
18947
|
+
projectId: z.ZodString;
|
|
18948
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
18948
18949
|
config: z.ZodObject<{
|
|
18949
18950
|
type: z.ZodLiteral<"mcp">;
|
|
18950
18951
|
mcp: z.ZodObject<{
|
|
@@ -18973,7 +18974,6 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
18973
18974
|
}, z.core.$strip>;
|
|
18974
18975
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18975
18976
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
18976
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
18977
18977
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
18978
18978
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18979
18979
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18984,9 +18984,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
18984
18984
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18985
18985
|
}, z.core.$strip>>>;
|
|
18986
18986
|
status: z.ZodDefault<z.ZodEnum<{
|
|
18987
|
+
unknown: "unknown";
|
|
18987
18988
|
healthy: "healthy";
|
|
18988
18989
|
unhealthy: "unhealthy";
|
|
18989
|
-
unknown: "unknown";
|
|
18990
18990
|
needs_auth: "needs_auth";
|
|
18991
18991
|
unavailable: "unavailable";
|
|
18992
18992
|
}>>;
|
|
@@ -19002,13 +19002,13 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19002
19002
|
id: z.ZodString;
|
|
19003
19003
|
name: z.ZodString;
|
|
19004
19004
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19005
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
19006
|
-
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19007
19005
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19006
|
+
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19008
19007
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19009
19008
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19010
19009
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19011
19010
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19011
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
19012
19012
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19013
19013
|
name: z.ZodString;
|
|
19014
19014
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19038,10 +19038,10 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19038
19038
|
id: z.ZodString;
|
|
19039
19039
|
name: z.ZodString;
|
|
19040
19040
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19041
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19042
19041
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19043
19042
|
credentialStoreId: z.ZodString;
|
|
19044
19043
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19044
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19045
19045
|
type: z.ZodEnum<{
|
|
19046
19046
|
readonly memory: "memory";
|
|
19047
19047
|
readonly keychain: "keychain";
|
|
@@ -19064,8 +19064,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19064
19064
|
id: z.ZodOptional<z.ZodString>;
|
|
19065
19065
|
name: z.ZodOptional<z.ZodString>;
|
|
19066
19066
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19067
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19068
19067
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19068
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19069
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19069
19070
|
config: z.ZodOptional<z.ZodObject<{
|
|
19070
19071
|
type: z.ZodLiteral<"mcp">;
|
|
19071
19072
|
mcp: z.ZodObject<{
|
|
@@ -19094,7 +19095,6 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19094
19095
|
}, z.core.$strip>>;
|
|
19095
19096
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19096
19097
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19097
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19098
19098
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19099
19099
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
19100
19100
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -19106,9 +19106,10 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19106
19106
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
19107
19107
|
id: z.ZodString;
|
|
19108
19108
|
name: z.ZodString;
|
|
19109
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19110
19109
|
createdAt: z.ZodString;
|
|
19111
19110
|
updatedAt: z.ZodString;
|
|
19111
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19112
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
19112
19113
|
config: z.ZodType<{
|
|
19113
19114
|
type: "mcp";
|
|
19114
19115
|
mcp: ToolMcpConfig;
|
|
@@ -19124,7 +19125,6 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
19124
19125
|
}>>;
|
|
19125
19126
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
19126
19127
|
credentialScope: z.ZodString;
|
|
19127
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
19128
19128
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
19129
19129
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
19130
19130
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -19134,6 +19134,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
19134
19134
|
id: z.ZodString;
|
|
19135
19135
|
name: z.ZodString;
|
|
19136
19136
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19137
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19137
19138
|
config: z.ZodObject<{
|
|
19138
19139
|
type: z.ZodLiteral<"mcp">;
|
|
19139
19140
|
mcp: z.ZodObject<{
|
|
@@ -19162,7 +19163,6 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
19162
19163
|
}, z.core.$strip>;
|
|
19163
19164
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19164
19165
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19165
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19166
19166
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19167
19167
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19168
19168
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -19172,6 +19172,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
19172
19172
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19173
19173
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19174
19174
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19175
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19175
19176
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
19176
19177
|
type: z.ZodLiteral<"mcp">;
|
|
19177
19178
|
mcp: z.ZodObject<{
|
|
@@ -19200,7 +19201,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
19200
19201
|
}, z.core.$strip>>>;
|
|
19201
19202
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19202
19203
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19203
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
19204
19204
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19205
19205
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
19206
19206
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -19543,8 +19543,8 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
19543
19543
|
id: z.ZodString;
|
|
19544
19544
|
name: z.ZodString;
|
|
19545
19545
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19546
|
-
projectId: z.ZodString;
|
|
19547
19546
|
tenantId: z.ZodString;
|
|
19547
|
+
projectId: z.ZodString;
|
|
19548
19548
|
agentId: z.ZodString;
|
|
19549
19549
|
functionId: z.ZodString;
|
|
19550
19550
|
}, {
|
|
@@ -19555,8 +19555,8 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
19555
19555
|
id: z.ZodOptional<z.ZodString>;
|
|
19556
19556
|
name: z.ZodOptional<z.ZodString>;
|
|
19557
19557
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19558
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
19559
19558
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19559
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
19560
19560
|
agentId: z.ZodOptional<z.ZodString>;
|
|
19561
19561
|
functionId: z.ZodOptional<z.ZodString>;
|
|
19562
19562
|
}, {
|
|
@@ -19566,9 +19566,9 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
19566
19566
|
declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
19567
19567
|
id: z.ZodString;
|
|
19568
19568
|
name: z.ZodString;
|
|
19569
|
-
description: z.ZodNullable<z.ZodString>;
|
|
19570
19569
|
createdAt: z.ZodString;
|
|
19571
19570
|
updatedAt: z.ZodString;
|
|
19571
|
+
description: z.ZodNullable<z.ZodString>;
|
|
19572
19572
|
agentId: z.ZodString;
|
|
19573
19573
|
functionId: z.ZodString;
|
|
19574
19574
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -19950,13 +19950,13 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
19950
19950
|
createdAt: z.ZodString;
|
|
19951
19951
|
updatedAt: z.ZodString;
|
|
19952
19952
|
subAgentId: z.ZodString;
|
|
19953
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
19954
19953
|
functionToolId: z.ZodString;
|
|
19954
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
19955
19955
|
}, z.core.$strip>;
|
|
19956
19956
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
19957
19957
|
subAgentId: z.ZodString;
|
|
19958
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
19959
19958
|
functionToolId: z.ZodString;
|
|
19959
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
19960
19960
|
}, {
|
|
19961
19961
|
out: {};
|
|
19962
19962
|
in: {};
|
|
@@ -20347,10 +20347,10 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
20347
20347
|
id: z.ZodString;
|
|
20348
20348
|
name: z.ZodString;
|
|
20349
20349
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20350
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20351
20350
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20352
20351
|
credentialStoreId: z.ZodString;
|
|
20353
20352
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20353
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20354
20354
|
type: z.ZodEnum<{
|
|
20355
20355
|
readonly memory: "memory";
|
|
20356
20356
|
readonly keychain: "keychain";
|
|
@@ -20374,22 +20374,22 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
20374
20374
|
}>;
|
|
20375
20375
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
20376
20376
|
id: z.ZodOptional<z.ZodString>;
|
|
20377
|
-
projectId: z.ZodString;
|
|
20378
20377
|
tenantId: z.ZodString;
|
|
20379
|
-
|
|
20378
|
+
projectId: z.ZodString;
|
|
20380
20379
|
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20381
20380
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20381
|
+
agentId: z.ZodString;
|
|
20382
20382
|
}, {
|
|
20383
20383
|
out: {};
|
|
20384
20384
|
in: {};
|
|
20385
20385
|
}>;
|
|
20386
20386
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
20387
20387
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20388
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
20389
20388
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20390
|
-
|
|
20389
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
20391
20390
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20392
20391
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
20392
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
20393
20393
|
}, {
|
|
20394
20394
|
out: {};
|
|
20395
20395
|
in: {};
|
|
@@ -20873,34 +20873,34 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
20873
20873
|
createdAt: z.ZodString;
|
|
20874
20874
|
updatedAt: z.ZodString;
|
|
20875
20875
|
subAgentId: z.ZodString;
|
|
20876
|
-
toolId: z.ZodString;
|
|
20877
20876
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20878
|
-
|
|
20877
|
+
toolId: z.ZodString;
|
|
20879
20878
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20879
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20880
20880
|
}, z.core.$strip>;
|
|
20881
20881
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
20882
20882
|
id: z.ZodString;
|
|
20883
20883
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20884
20884
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20885
20885
|
subAgentId: z.ZodString;
|
|
20886
|
-
toolId: z.ZodString;
|
|
20887
20886
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20888
|
-
|
|
20887
|
+
toolId: z.ZodString;
|
|
20889
20888
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
20890
20889
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
20891
20890
|
}, z.core.$strip>>>>;
|
|
20891
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
20892
20892
|
}, z.core.$strip>;
|
|
20893
20893
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
20894
20894
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20895
20895
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20896
20896
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20897
20897
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20898
|
-
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20899
20898
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20900
|
-
|
|
20899
|
+
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20901
20900
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
20902
20901
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
20903
20902
|
}, z.core.$strip>>>>>>;
|
|
20903
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
20904
20904
|
}, z.core.$strip>;
|
|
20905
20905
|
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20906
20906
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -23017,7 +23017,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
23017
23017
|
}, {}, {
|
|
23018
23018
|
length: 256;
|
|
23019
23019
|
}>;
|
|
23020
|
-
}, "
|
|
23020
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23021
23021
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23022
23022
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23023
23023
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23042,16 +23042,16 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23042
23042
|
in: {};
|
|
23043
23043
|
}>;
|
|
23044
23044
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23045
|
+
type: z.ZodString;
|
|
23045
23046
|
id: z.ZodString;
|
|
23046
23047
|
name: z.ZodNullable<z.ZodString>;
|
|
23047
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23048
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23049
23048
|
createdAt: z.ZodString;
|
|
23050
23049
|
updatedAt: z.ZodString;
|
|
23051
|
-
|
|
23050
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23051
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23052
|
+
taskId: z.ZodString;
|
|
23052
23053
|
contextId: z.ZodString;
|
|
23053
23054
|
visibility: z.ZodNullable<z.ZodString>;
|
|
23054
|
-
taskId: z.ZodString;
|
|
23055
23055
|
toolCallId: z.ZodNullable<z.ZodString>;
|
|
23056
23056
|
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23057
23057
|
summary: z.ZodNullable<z.ZodString>;
|
|
@@ -23060,16 +23060,16 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
23060
23060
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
23061
23061
|
}, z.core.$strip>;
|
|
23062
23062
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23063
|
+
type: z.ZodOptional<z.ZodString>;
|
|
23063
23064
|
id: z.ZodString;
|
|
23064
23065
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23065
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23066
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23067
23066
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23068
23067
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23069
|
-
|
|
23068
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23069
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23070
|
+
taskId: z.ZodString;
|
|
23070
23071
|
contextId: z.ZodString;
|
|
23071
23072
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23072
|
-
taskId: z.ZodString;
|
|
23073
23073
|
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23074
23074
|
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23075
23075
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23078,16 +23078,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
23078
23078
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23079
23079
|
}, z.core.$strip>;
|
|
23080
23080
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23081
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23081
23082
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23082
23083
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23083
|
-
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23084
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23085
23084
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23086
23085
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23087
|
-
|
|
23086
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23087
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23088
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23088
23089
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23089
23090
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23090
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23091
23091
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23092
23092
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23093
23093
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -23160,9 +23160,9 @@ declare const TeamAgentSchema: z.ZodObject<{
|
|
|
23160
23160
|
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
23161
23161
|
id: z.ZodString;
|
|
23162
23162
|
name: z.ZodString;
|
|
23163
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23164
23163
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23165
23164
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23165
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23166
23166
|
models: z.ZodOptional<z.ZodObject<{
|
|
23167
23167
|
base: z.ZodOptional<z.ZodObject<{
|
|
23168
23168
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23214,15 +23214,15 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23214
23214
|
id: z.ZodString;
|
|
23215
23215
|
name: z.ZodString;
|
|
23216
23216
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23217
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23218
23217
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23218
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23219
23219
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
23220
23220
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23221
23221
|
id: z.ZodString;
|
|
23222
23222
|
name: z.ZodString;
|
|
23223
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23224
23223
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23225
23224
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23225
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23226
23226
|
models: z.ZodOptional<z.ZodObject<{
|
|
23227
23227
|
base: z.ZodOptional<z.ZodObject<{
|
|
23228
23228
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23274,6 +23274,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23274
23274
|
id: z.ZodString;
|
|
23275
23275
|
name: z.ZodString;
|
|
23276
23276
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23277
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23277
23278
|
config: z.ZodObject<{
|
|
23278
23279
|
type: z.ZodLiteral<"mcp">;
|
|
23279
23280
|
mcp: z.ZodObject<{
|
|
@@ -23302,7 +23303,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23302
23303
|
}, z.core.$strip>;
|
|
23303
23304
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23304
23305
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
23305
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23306
23306
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
23307
23307
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
23308
23308
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23312,8 +23312,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23312
23312
|
id: z.ZodString;
|
|
23313
23313
|
name: z.ZodString;
|
|
23314
23314
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23315
|
-
baseUrl: z.ZodURL;
|
|
23316
23315
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23316
|
+
baseUrl: z.ZodURL;
|
|
23317
23317
|
}, z.core.$strip>>>;
|
|
23318
23318
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23319
23319
|
id: z.ZodString;
|
|
@@ -23336,11 +23336,11 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23336
23336
|
id: z.ZodOptional<z.ZodString>;
|
|
23337
23337
|
name: z.ZodString;
|
|
23338
23338
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23339
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23340
23339
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23340
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23341
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23341
23342
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23342
23343
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23343
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23344
23344
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23345
23345
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23346
23346
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23389,15 +23389,15 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23389
23389
|
id: z.ZodString;
|
|
23390
23390
|
name: z.ZodString;
|
|
23391
23391
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23392
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23393
23392
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23393
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23394
23394
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
23395
23395
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23396
23396
|
id: z.ZodString;
|
|
23397
23397
|
name: z.ZodString;
|
|
23398
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23399
23398
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23400
23399
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23400
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23401
23401
|
models: z.ZodOptional<z.ZodObject<{
|
|
23402
23402
|
base: z.ZodOptional<z.ZodObject<{
|
|
23403
23403
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23449,6 +23449,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23449
23449
|
id: z.ZodString;
|
|
23450
23450
|
name: z.ZodString;
|
|
23451
23451
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23452
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23452
23453
|
config: z.ZodObject<{
|
|
23453
23454
|
type: z.ZodLiteral<"mcp">;
|
|
23454
23455
|
mcp: z.ZodObject<{
|
|
@@ -23477,7 +23478,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23477
23478
|
}, z.core.$strip>;
|
|
23478
23479
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23479
23480
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
23480
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23481
23481
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
23482
23482
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
23483
23483
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23487,8 +23487,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23487
23487
|
id: z.ZodString;
|
|
23488
23488
|
name: z.ZodString;
|
|
23489
23489
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23490
|
-
baseUrl: z.ZodURL;
|
|
23491
23490
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23491
|
+
baseUrl: z.ZodURL;
|
|
23492
23492
|
}, z.core.$strip>>>;
|
|
23493
23493
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23494
23494
|
id: z.ZodString;
|
|
@@ -23511,11 +23511,11 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23511
23511
|
id: z.ZodOptional<z.ZodString>;
|
|
23512
23512
|
name: z.ZodString;
|
|
23513
23513
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23514
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23515
23514
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23515
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23516
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23516
23517
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23517
23518
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23518
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23519
23519
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23520
23520
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23521
23521
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23668,9 +23668,9 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
23668
23668
|
declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
23669
23669
|
id: z.ZodString;
|
|
23670
23670
|
name: z.ZodString;
|
|
23671
|
-
description: z.ZodNullable<z.ZodString>;
|
|
23672
23671
|
createdAt: z.ZodString;
|
|
23673
23672
|
updatedAt: z.ZodString;
|
|
23673
|
+
description: z.ZodNullable<z.ZodString>;
|
|
23674
23674
|
models: z.ZodNullable<z.ZodObject<{
|
|
23675
23675
|
base: z.ZodObject<{
|
|
23676
23676
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23770,15 +23770,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23770
23770
|
id: z.ZodString;
|
|
23771
23771
|
name: z.ZodString;
|
|
23772
23772
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23773
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23774
23773
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23774
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23775
23775
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
23776
23776
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23777
23777
|
id: z.ZodString;
|
|
23778
23778
|
name: z.ZodString;
|
|
23779
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23780
23779
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23781
23780
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23781
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23782
23782
|
models: z.ZodOptional<z.ZodObject<{
|
|
23783
23783
|
base: z.ZodOptional<z.ZodObject<{
|
|
23784
23784
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -23830,6 +23830,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23830
23830
|
id: z.ZodString;
|
|
23831
23831
|
name: z.ZodString;
|
|
23832
23832
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23833
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23833
23834
|
config: z.ZodObject<{
|
|
23834
23835
|
type: z.ZodLiteral<"mcp">;
|
|
23835
23836
|
mcp: z.ZodObject<{
|
|
@@ -23858,7 +23859,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23858
23859
|
}, z.core.$strip>;
|
|
23859
23860
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23860
23861
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
23861
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23862
23862
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
23863
23863
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
23864
23864
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23868,8 +23868,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23868
23868
|
id: z.ZodString;
|
|
23869
23869
|
name: z.ZodString;
|
|
23870
23870
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23871
|
-
baseUrl: z.ZodURL;
|
|
23872
23871
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23872
|
+
baseUrl: z.ZodURL;
|
|
23873
23873
|
}, z.core.$strip>>>;
|
|
23874
23874
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23875
23875
|
id: z.ZodString;
|
|
@@ -23892,11 +23892,11 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23892
23892
|
id: z.ZodOptional<z.ZodString>;
|
|
23893
23893
|
name: z.ZodString;
|
|
23894
23894
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23895
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23896
23895
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23896
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23897
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23897
23898
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23898
23899
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23899
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23900
23900
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23901
23901
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23902
23902
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23945,6 +23945,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23945
23945
|
id: z.ZodString;
|
|
23946
23946
|
name: z.ZodString;
|
|
23947
23947
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23948
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23948
23949
|
config: z.ZodObject<{
|
|
23949
23950
|
type: z.ZodLiteral<"mcp">;
|
|
23950
23951
|
mcp: z.ZodObject<{
|
|
@@ -23973,7 +23974,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
23973
23974
|
}, z.core.$strip>;
|
|
23974
23975
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23975
23976
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
23976
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23977
23977
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
23978
23978
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
23979
23979
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24077,8 +24077,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24077
24077
|
id: z.ZodString;
|
|
24078
24078
|
name: z.ZodString;
|
|
24079
24079
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24080
|
-
baseUrl: z.ZodURL;
|
|
24081
24080
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24081
|
+
baseUrl: z.ZodURL;
|
|
24082
24082
|
}, z.core.$strip>>>;
|
|
24083
24083
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
24084
24084
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24099,10 +24099,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24099
24099
|
id: z.ZodString;
|
|
24100
24100
|
name: z.ZodString;
|
|
24101
24101
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24102
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24103
24102
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24104
24103
|
credentialStoreId: z.ZodString;
|
|
24105
24104
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24105
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24106
24106
|
type: z.ZodEnum<{
|
|
24107
24107
|
readonly memory: "memory";
|
|
24108
24108
|
readonly keychain: "keychain";
|
|
@@ -24119,9 +24119,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24119
24119
|
declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
24120
24120
|
id: z.ZodString;
|
|
24121
24121
|
name: z.ZodString;
|
|
24122
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24123
24122
|
createdAt: z.ZodString;
|
|
24124
24123
|
updatedAt: z.ZodString;
|
|
24124
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24125
24125
|
models: z.ZodNullable<z.ZodType<{
|
|
24126
24126
|
base?: {
|
|
24127
24127
|
model?: string | undefined;
|
|
@@ -24212,9 +24212,9 @@ declare const FullAgentSubAgentSelectSchema: z.ZodObject<{
|
|
|
24212
24212
|
declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24213
24213
|
id: z.ZodString;
|
|
24214
24214
|
name: z.ZodString;
|
|
24215
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24216
24215
|
createdAt: z.ZodString;
|
|
24217
24216
|
updatedAt: z.ZodString;
|
|
24217
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24218
24218
|
models: z.ZodNullable<z.ZodType<{
|
|
24219
24219
|
base?: {
|
|
24220
24220
|
model?: string | undefined;
|
|
@@ -24311,18 +24311,18 @@ declare const FullAgentSubAgentSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24311
24311
|
declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
24312
24312
|
id: z.ZodString;
|
|
24313
24313
|
name: z.ZodString;
|
|
24314
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24315
24314
|
createdAt: z.ZodString;
|
|
24316
24315
|
updatedAt: z.ZodString;
|
|
24317
|
-
|
|
24316
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24318
24317
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24318
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24319
24319
|
executionMode: z.ZodString;
|
|
24320
24320
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24321
24321
|
id: z.ZodString;
|
|
24322
24322
|
name: z.ZodString;
|
|
24323
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24324
24323
|
createdAt: z.ZodString;
|
|
24325
24324
|
updatedAt: z.ZodString;
|
|
24325
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24326
24326
|
models: z.ZodNullable<z.ZodType<{
|
|
24327
24327
|
base?: {
|
|
24328
24328
|
model?: string | undefined;
|
|
@@ -24413,9 +24413,10 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24413
24413
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24414
24414
|
id: z.ZodString;
|
|
24415
24415
|
name: z.ZodString;
|
|
24416
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24417
24416
|
createdAt: z.ZodString;
|
|
24418
24417
|
updatedAt: z.ZodString;
|
|
24418
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24419
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24419
24420
|
config: z.ZodType<{
|
|
24420
24421
|
type: "mcp";
|
|
24421
24422
|
mcp: ToolMcpConfig;
|
|
@@ -24431,7 +24432,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24431
24432
|
}>>;
|
|
24432
24433
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
24433
24434
|
credentialScope: z.ZodString;
|
|
24434
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24435
24435
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24436
24436
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
24437
24437
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -24440,11 +24440,11 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24440
24440
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24441
24441
|
id: z.ZodString;
|
|
24442
24442
|
name: z.ZodString;
|
|
24443
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24444
24443
|
createdAt: z.ZodString;
|
|
24445
24444
|
updatedAt: z.ZodString;
|
|
24446
|
-
|
|
24445
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24447
24446
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24447
|
+
baseUrl: z.ZodString;
|
|
24448
24448
|
}, z.core.$strip>>>;
|
|
24449
24449
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24450
24450
|
id: z.ZodString;
|
|
@@ -24454,9 +24454,9 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24454
24454
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24455
24455
|
id: z.ZodString;
|
|
24456
24456
|
name: z.ZodString;
|
|
24457
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24458
24457
|
createdAt: z.ZodString;
|
|
24459
24458
|
updatedAt: z.ZodString;
|
|
24459
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24460
24460
|
agentId: z.ZodString;
|
|
24461
24461
|
functionId: z.ZodString;
|
|
24462
24462
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -24513,18 +24513,19 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
24513
24513
|
declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
24514
24514
|
id: z.ZodString;
|
|
24515
24515
|
name: z.ZodString;
|
|
24516
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24517
24516
|
createdAt: z.ZodString;
|
|
24518
24517
|
updatedAt: z.ZodString;
|
|
24519
|
-
|
|
24518
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24520
24519
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24520
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24521
24521
|
executionMode: z.ZodString;
|
|
24522
24522
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24523
24523
|
id: z.ZodString;
|
|
24524
24524
|
name: z.ZodString;
|
|
24525
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24526
24525
|
createdAt: z.ZodString;
|
|
24527
24526
|
updatedAt: z.ZodString;
|
|
24527
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24528
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24528
24529
|
config: z.ZodType<{
|
|
24529
24530
|
type: "mcp";
|
|
24530
24531
|
mcp: ToolMcpConfig;
|
|
@@ -24540,7 +24541,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24540
24541
|
}>>;
|
|
24541
24542
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
24542
24543
|
credentialScope: z.ZodString;
|
|
24543
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24544
24544
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24545
24545
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
24546
24546
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -24549,11 +24549,11 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24549
24549
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24550
24550
|
id: z.ZodString;
|
|
24551
24551
|
name: z.ZodString;
|
|
24552
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24553
24552
|
createdAt: z.ZodString;
|
|
24554
24553
|
updatedAt: z.ZodString;
|
|
24555
|
-
|
|
24554
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24556
24555
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24556
|
+
baseUrl: z.ZodString;
|
|
24557
24557
|
}, z.core.$strip>>>;
|
|
24558
24558
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24559
24559
|
id: z.ZodString;
|
|
@@ -24563,9 +24563,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24563
24563
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24564
24564
|
id: z.ZodString;
|
|
24565
24565
|
name: z.ZodString;
|
|
24566
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24567
24566
|
createdAt: z.ZodString;
|
|
24568
24567
|
updatedAt: z.ZodString;
|
|
24568
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24569
24569
|
agentId: z.ZodString;
|
|
24570
24570
|
functionId: z.ZodString;
|
|
24571
24571
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -24621,9 +24621,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24621
24621
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24622
24622
|
id: z.ZodString;
|
|
24623
24623
|
name: z.ZodString;
|
|
24624
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24625
24624
|
createdAt: z.ZodString;
|
|
24626
24625
|
updatedAt: z.ZodString;
|
|
24626
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24627
24627
|
models: z.ZodNullable<z.ZodType<{
|
|
24628
24628
|
base?: {
|
|
24629
24629
|
model?: string | undefined;
|
|
@@ -24721,9 +24721,9 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
24721
24721
|
declare const FullProjectSelectSchema: z.ZodObject<{
|
|
24722
24722
|
id: z.ZodString;
|
|
24723
24723
|
name: z.ZodString;
|
|
24724
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24725
24724
|
createdAt: z.ZodString;
|
|
24726
24725
|
updatedAt: z.ZodString;
|
|
24726
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24727
24727
|
models: z.ZodNullable<z.ZodObject<{
|
|
24728
24728
|
base: z.ZodObject<{
|
|
24729
24729
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -24745,18 +24745,18 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24745
24745
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24746
24746
|
id: z.ZodString;
|
|
24747
24747
|
name: z.ZodString;
|
|
24748
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24749
24748
|
createdAt: z.ZodString;
|
|
24750
24749
|
updatedAt: z.ZodString;
|
|
24751
|
-
|
|
24750
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24752
24751
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
24752
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
24753
24753
|
executionMode: z.ZodString;
|
|
24754
24754
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24755
24755
|
id: z.ZodString;
|
|
24756
24756
|
name: z.ZodString;
|
|
24757
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24758
24757
|
createdAt: z.ZodString;
|
|
24759
24758
|
updatedAt: z.ZodString;
|
|
24759
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24760
24760
|
models: z.ZodNullable<z.ZodType<{
|
|
24761
24761
|
base?: {
|
|
24762
24762
|
model?: string | undefined;
|
|
@@ -24847,9 +24847,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24847
24847
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24848
24848
|
id: z.ZodString;
|
|
24849
24849
|
name: z.ZodString;
|
|
24850
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24851
24850
|
createdAt: z.ZodString;
|
|
24852
24851
|
updatedAt: z.ZodString;
|
|
24852
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24853
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24853
24854
|
config: z.ZodType<{
|
|
24854
24855
|
type: "mcp";
|
|
24855
24856
|
mcp: ToolMcpConfig;
|
|
@@ -24865,7 +24866,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24865
24866
|
}>>;
|
|
24866
24867
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
24867
24868
|
credentialScope: z.ZodString;
|
|
24868
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24869
24869
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24870
24870
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
24871
24871
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -24874,11 +24874,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24874
24874
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24875
24875
|
id: z.ZodString;
|
|
24876
24876
|
name: z.ZodString;
|
|
24877
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24878
24877
|
createdAt: z.ZodString;
|
|
24879
24878
|
updatedAt: z.ZodString;
|
|
24880
|
-
|
|
24879
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24881
24880
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24881
|
+
baseUrl: z.ZodString;
|
|
24882
24882
|
}, z.core.$strip>>>;
|
|
24883
24883
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24884
24884
|
id: z.ZodString;
|
|
@@ -24888,9 +24888,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24888
24888
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24889
24889
|
id: z.ZodString;
|
|
24890
24890
|
name: z.ZodString;
|
|
24891
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24892
24891
|
createdAt: z.ZodString;
|
|
24893
24892
|
updatedAt: z.ZodString;
|
|
24893
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24894
24894
|
agentId: z.ZodString;
|
|
24895
24895
|
functionId: z.ZodString;
|
|
24896
24896
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -24947,9 +24947,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24947
24947
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24948
24948
|
id: z.ZodString;
|
|
24949
24949
|
name: z.ZodString;
|
|
24950
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24951
24950
|
createdAt: z.ZodString;
|
|
24952
24951
|
updatedAt: z.ZodString;
|
|
24952
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24953
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24953
24954
|
config: z.ZodType<{
|
|
24954
24955
|
type: "mcp";
|
|
24955
24956
|
mcp: ToolMcpConfig;
|
|
@@ -24965,7 +24966,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24965
24966
|
}>>;
|
|
24966
24967
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
24967
24968
|
credentialScope: z.ZodString;
|
|
24968
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
24969
24969
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24970
24970
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
24971
24971
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -24974,9 +24974,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24974
24974
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24975
24975
|
id: z.ZodString;
|
|
24976
24976
|
name: z.ZodString;
|
|
24977
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24978
24977
|
createdAt: z.ZodString;
|
|
24979
24978
|
updatedAt: z.ZodString;
|
|
24979
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24980
24980
|
agentId: z.ZodString;
|
|
24981
24981
|
functionId: z.ZodString;
|
|
24982
24982
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -24992,9 +24992,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24992
24992
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24993
24993
|
id: z.ZodString;
|
|
24994
24994
|
name: z.ZodString;
|
|
24995
|
-
description: z.ZodNullable<z.ZodString>;
|
|
24996
24995
|
createdAt: z.ZodString;
|
|
24997
24996
|
updatedAt: z.ZodString;
|
|
24997
|
+
description: z.ZodNullable<z.ZodString>;
|
|
24998
24998
|
props: z.ZodType<{
|
|
24999
24999
|
[x: string]: unknown;
|
|
25000
25000
|
type: "object";
|
|
@@ -25041,9 +25041,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25041
25041
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25042
25042
|
id: z.ZodString;
|
|
25043
25043
|
name: z.ZodString;
|
|
25044
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25045
25044
|
createdAt: z.ZodString;
|
|
25046
25045
|
updatedAt: z.ZodString;
|
|
25046
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25047
25047
|
props: z.ZodNullable<z.ZodType<{
|
|
25048
25048
|
[x: string]: unknown;
|
|
25049
25049
|
type: "object";
|
|
@@ -25090,11 +25090,11 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25090
25090
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25091
25091
|
id: z.ZodString;
|
|
25092
25092
|
name: z.ZodString;
|
|
25093
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25094
25093
|
createdAt: z.ZodString;
|
|
25095
25094
|
updatedAt: z.ZodString;
|
|
25096
|
-
|
|
25095
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25097
25096
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25097
|
+
baseUrl: z.ZodString;
|
|
25098
25098
|
}, z.core.$strip>>>;
|
|
25099
25099
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
25100
25100
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25117,10 +25117,10 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25117
25117
|
createdAt: z.ZodString;
|
|
25118
25118
|
updatedAt: z.ZodString;
|
|
25119
25119
|
userId: z.ZodNullable<z.ZodString>;
|
|
25120
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
25121
25120
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25122
25121
|
credentialStoreId: z.ZodString;
|
|
25123
25122
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25123
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
25124
25124
|
type: z.ZodEnum<{
|
|
25125
25125
|
readonly memory: "memory";
|
|
25126
25126
|
readonly keychain: "keychain";
|
|
@@ -25710,9 +25710,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25710
25710
|
declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
25711
25711
|
id: z.ZodString;
|
|
25712
25712
|
name: z.ZodString;
|
|
25713
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25714
25713
|
createdAt: z.ZodString;
|
|
25715
25714
|
updatedAt: z.ZodString;
|
|
25715
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25716
25716
|
models: z.ZodNullable<z.ZodObject<{
|
|
25717
25717
|
base: z.ZodObject<{
|
|
25718
25718
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -25734,9 +25734,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25734
25734
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25735
25735
|
id: z.ZodString;
|
|
25736
25736
|
name: z.ZodString;
|
|
25737
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25738
25737
|
createdAt: z.ZodString;
|
|
25739
25738
|
updatedAt: z.ZodString;
|
|
25739
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25740
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25740
25741
|
config: z.ZodType<{
|
|
25741
25742
|
type: "mcp";
|
|
25742
25743
|
mcp: ToolMcpConfig;
|
|
@@ -25752,7 +25753,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25752
25753
|
}>>;
|
|
25753
25754
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25754
25755
|
credentialScope: z.ZodString;
|
|
25755
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25756
25756
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25757
25757
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
25758
25758
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -25761,9 +25761,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25761
25761
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25762
25762
|
id: z.ZodString;
|
|
25763
25763
|
name: z.ZodString;
|
|
25764
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25765
25764
|
createdAt: z.ZodString;
|
|
25766
25765
|
updatedAt: z.ZodString;
|
|
25766
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25767
25767
|
agentId: z.ZodString;
|
|
25768
25768
|
functionId: z.ZodString;
|
|
25769
25769
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -25779,9 +25779,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25779
25779
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25780
25780
|
id: z.ZodString;
|
|
25781
25781
|
name: z.ZodString;
|
|
25782
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25783
25782
|
createdAt: z.ZodString;
|
|
25784
25783
|
updatedAt: z.ZodString;
|
|
25784
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25785
25785
|
props: z.ZodType<{
|
|
25786
25786
|
[x: string]: unknown;
|
|
25787
25787
|
type: "object";
|
|
@@ -25828,9 +25828,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25828
25828
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25829
25829
|
id: z.ZodString;
|
|
25830
25830
|
name: z.ZodString;
|
|
25831
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25832
25831
|
createdAt: z.ZodString;
|
|
25833
25832
|
updatedAt: z.ZodString;
|
|
25833
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25834
25834
|
props: z.ZodNullable<z.ZodType<{
|
|
25835
25835
|
[x: string]: unknown;
|
|
25836
25836
|
type: "object";
|
|
@@ -25877,11 +25877,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25877
25877
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25878
25878
|
id: z.ZodString;
|
|
25879
25879
|
name: z.ZodString;
|
|
25880
|
-
description: z.ZodNullable<z.ZodString>;
|
|
25881
25880
|
createdAt: z.ZodString;
|
|
25882
25881
|
updatedAt: z.ZodString;
|
|
25883
|
-
|
|
25882
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25884
25883
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25884
|
+
baseUrl: z.ZodString;
|
|
25885
25885
|
}, z.core.$strip>>>;
|
|
25886
25886
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
25887
25887
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25904,10 +25904,10 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25904
25904
|
createdAt: z.ZodString;
|
|
25905
25905
|
updatedAt: z.ZodString;
|
|
25906
25906
|
userId: z.ZodNullable<z.ZodString>;
|
|
25907
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
25908
25907
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25909
25908
|
credentialStoreId: z.ZodString;
|
|
25910
25909
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25910
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
25911
25911
|
type: z.ZodEnum<{
|
|
25912
25912
|
readonly memory: "memory";
|
|
25913
25913
|
readonly keychain: "keychain";
|
|
@@ -26493,18 +26493,19 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26493
26493
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26494
26494
|
id: z.ZodString;
|
|
26495
26495
|
name: z.ZodString;
|
|
26496
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26497
26496
|
createdAt: z.ZodString;
|
|
26498
26497
|
updatedAt: z.ZodString;
|
|
26499
|
-
|
|
26498
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26500
26499
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26500
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26501
26501
|
executionMode: z.ZodString;
|
|
26502
26502
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26503
26503
|
id: z.ZodString;
|
|
26504
26504
|
name: z.ZodString;
|
|
26505
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26506
26505
|
createdAt: z.ZodString;
|
|
26507
26506
|
updatedAt: z.ZodString;
|
|
26507
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26508
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26508
26509
|
config: z.ZodType<{
|
|
26509
26510
|
type: "mcp";
|
|
26510
26511
|
mcp: ToolMcpConfig;
|
|
@@ -26520,7 +26521,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26520
26521
|
}>>;
|
|
26521
26522
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26522
26523
|
credentialScope: z.ZodString;
|
|
26523
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26524
26524
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26525
26525
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
26526
26526
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -26529,11 +26529,11 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26529
26529
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26530
26530
|
id: z.ZodString;
|
|
26531
26531
|
name: z.ZodString;
|
|
26532
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26533
26532
|
createdAt: z.ZodString;
|
|
26534
26533
|
updatedAt: z.ZodString;
|
|
26535
|
-
|
|
26534
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26536
26535
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26536
|
+
baseUrl: z.ZodString;
|
|
26537
26537
|
}, z.core.$strip>>>;
|
|
26538
26538
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26539
26539
|
id: z.ZodString;
|
|
@@ -26543,9 +26543,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26543
26543
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26544
26544
|
id: z.ZodString;
|
|
26545
26545
|
name: z.ZodString;
|
|
26546
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26547
26546
|
createdAt: z.ZodString;
|
|
26548
26547
|
updatedAt: z.ZodString;
|
|
26548
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26549
26549
|
agentId: z.ZodString;
|
|
26550
26550
|
functionId: z.ZodString;
|
|
26551
26551
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -26601,9 +26601,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26601
26601
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26602
26602
|
id: z.ZodString;
|
|
26603
26603
|
name: z.ZodString;
|
|
26604
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26605
26604
|
createdAt: z.ZodString;
|
|
26606
26605
|
updatedAt: z.ZodString;
|
|
26606
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26607
26607
|
models: z.ZodNullable<z.ZodType<{
|
|
26608
26608
|
base?: {
|
|
26609
26609
|
model?: string | undefined;
|
|
@@ -26706,9 +26706,9 @@ declare const ProjectResponse: z.ZodObject<{
|
|
|
26706
26706
|
data: z.ZodObject<{
|
|
26707
26707
|
id: z.ZodString;
|
|
26708
26708
|
name: z.ZodString;
|
|
26709
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26710
26709
|
createdAt: z.ZodString;
|
|
26711
26710
|
updatedAt: z.ZodString;
|
|
26711
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26712
26712
|
models: z.ZodNullable<z.ZodObject<{
|
|
26713
26713
|
base: z.ZodObject<{
|
|
26714
26714
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -26736,9 +26736,9 @@ declare const SubAgentResponse: z.ZodObject<{
|
|
|
26736
26736
|
data: z.ZodObject<{
|
|
26737
26737
|
id: z.ZodString;
|
|
26738
26738
|
name: z.ZodString;
|
|
26739
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26740
26739
|
createdAt: z.ZodString;
|
|
26741
26740
|
updatedAt: z.ZodString;
|
|
26741
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26742
26742
|
models: z.ZodNullable<z.ZodType<{
|
|
26743
26743
|
base?: {
|
|
26744
26744
|
model?: string | undefined;
|
|
@@ -26809,9 +26809,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
26809
26809
|
data: z.ZodObject<{
|
|
26810
26810
|
id: z.ZodString;
|
|
26811
26811
|
name: z.ZodString;
|
|
26812
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26813
26812
|
createdAt: z.ZodString;
|
|
26814
26813
|
updatedAt: z.ZodString;
|
|
26814
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26815
26815
|
models: z.ZodNullable<z.ZodType<{
|
|
26816
26816
|
base?: {
|
|
26817
26817
|
model?: string | undefined;
|
|
@@ -26874,9 +26874,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
26874
26874
|
}, {
|
|
26875
26875
|
transferCountIs?: number | undefined;
|
|
26876
26876
|
}>>>;
|
|
26877
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
26878
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26879
26877
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
26878
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
26879
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
26880
26880
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
26881
26881
|
enabled?: boolean | undefined;
|
|
26882
26882
|
numEvents?: number | undefined;
|
|
@@ -26941,11 +26941,11 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
26941
26941
|
data: z.ZodObject<{
|
|
26942
26942
|
id: z.ZodString;
|
|
26943
26943
|
name: z.ZodString;
|
|
26944
|
-
description: z.ZodNullable<z.ZodString>;
|
|
26945
26944
|
createdAt: z.ZodString;
|
|
26946
26945
|
updatedAt: z.ZodString;
|
|
26947
|
-
|
|
26946
|
+
description: z.ZodNullable<z.ZodString>;
|
|
26948
26947
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26948
|
+
baseUrl: z.ZodString;
|
|
26949
26949
|
}, z.core.$strip>;
|
|
26950
26950
|
}, z.core.$strip>;
|
|
26951
26951
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
@@ -26980,10 +26980,10 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
26980
26980
|
createdAt: z.ZodString;
|
|
26981
26981
|
updatedAt: z.ZodString;
|
|
26982
26982
|
userId: z.ZodNullable<z.ZodString>;
|
|
26983
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26984
26983
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26985
26984
|
credentialStoreId: z.ZodString;
|
|
26986
26985
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26986
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26987
26987
|
type: z.ZodEnum<{
|
|
26988
26988
|
readonly memory: "memory";
|
|
26989
26989
|
readonly keychain: "keychain";
|
|
@@ -27581,9 +27581,9 @@ declare const FunctionToolResponse: z.ZodObject<{
|
|
|
27581
27581
|
data: z.ZodObject<{
|
|
27582
27582
|
id: z.ZodString;
|
|
27583
27583
|
name: z.ZodString;
|
|
27584
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27585
27584
|
createdAt: z.ZodString;
|
|
27586
27585
|
updatedAt: z.ZodString;
|
|
27586
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27587
27587
|
agentId: z.ZodString;
|
|
27588
27588
|
functionId: z.ZodString;
|
|
27589
27589
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -27595,17 +27595,17 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
27595
27595
|
createdAt: z.ZodString;
|
|
27596
27596
|
updatedAt: z.ZodString;
|
|
27597
27597
|
subAgentId: z.ZodString;
|
|
27598
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27599
27598
|
functionToolId: z.ZodString;
|
|
27599
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27600
27600
|
}, z.core.$strip>;
|
|
27601
27601
|
}, z.core.$strip>;
|
|
27602
27602
|
declare const DataComponentResponse: z.ZodObject<{
|
|
27603
27603
|
data: z.ZodObject<{
|
|
27604
27604
|
id: z.ZodString;
|
|
27605
27605
|
name: z.ZodString;
|
|
27606
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27607
27606
|
createdAt: z.ZodString;
|
|
27608
27607
|
updatedAt: z.ZodString;
|
|
27608
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27609
27609
|
props: z.ZodType<{
|
|
27610
27610
|
[x: string]: unknown;
|
|
27611
27611
|
type: "object";
|
|
@@ -27654,9 +27654,9 @@ declare const ArtifactComponentResponse: z.ZodObject<{
|
|
|
27654
27654
|
data: z.ZodObject<{
|
|
27655
27655
|
id: z.ZodString;
|
|
27656
27656
|
name: z.ZodString;
|
|
27657
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27658
27657
|
createdAt: z.ZodString;
|
|
27659
27658
|
updatedAt: z.ZodString;
|
|
27659
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27660
27660
|
props: z.ZodNullable<z.ZodType<{
|
|
27661
27661
|
[x: string]: unknown;
|
|
27662
27662
|
type: "object";
|
|
@@ -27717,24 +27717,24 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
27717
27717
|
createdAt: z.ZodString;
|
|
27718
27718
|
updatedAt: z.ZodString;
|
|
27719
27719
|
subAgentId: z.ZodString;
|
|
27720
|
-
toolId: z.ZodString;
|
|
27721
27720
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27722
|
-
|
|
27721
|
+
toolId: z.ZodString;
|
|
27723
27722
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27723
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27724
27724
|
}, z.core.$strip>;
|
|
27725
27725
|
}, z.core.$strip>;
|
|
27726
27726
|
declare const TriggerResponse: z.ZodObject<{
|
|
27727
27727
|
data: z.ZodObject<{
|
|
27728
27728
|
id: z.ZodString;
|
|
27729
27729
|
name: z.ZodString;
|
|
27730
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27731
27730
|
createdAt: z.ZodString;
|
|
27732
27731
|
updatedAt: z.ZodString;
|
|
27733
|
-
|
|
27732
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27734
27733
|
enabled: z.ZodBoolean;
|
|
27734
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27735
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27735
27736
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27736
27737
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27737
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27738
27738
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27739
27739
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27740
27740
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -27789,7 +27789,6 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
27789
27789
|
data: z.ZodObject<{
|
|
27790
27790
|
id: z.ZodString;
|
|
27791
27791
|
createdAt: z.ZodString;
|
|
27792
|
-
status: z.ZodString;
|
|
27793
27792
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27794
27793
|
type: z.ZodEnum<{
|
|
27795
27794
|
commit: "commit";
|
|
@@ -27799,6 +27798,7 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
27799
27798
|
name: z.ZodString;
|
|
27800
27799
|
hash: z.ZodString;
|
|
27801
27800
|
}, z.core.$strip>>>;
|
|
27801
|
+
status: z.ZodString;
|
|
27802
27802
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
27803
27803
|
triggerId: z.ZodString;
|
|
27804
27804
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -27810,9 +27810,9 @@ declare const ProjectListResponse: z.ZodObject<{
|
|
|
27810
27810
|
data: z.ZodArray<z.ZodObject<{
|
|
27811
27811
|
id: z.ZodString;
|
|
27812
27812
|
name: z.ZodString;
|
|
27813
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27814
27813
|
createdAt: z.ZodString;
|
|
27815
27814
|
updatedAt: z.ZodString;
|
|
27815
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27816
27816
|
models: z.ZodNullable<z.ZodObject<{
|
|
27817
27817
|
base: z.ZodObject<{
|
|
27818
27818
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -27846,9 +27846,9 @@ declare const SubAgentListResponse: z.ZodObject<{
|
|
|
27846
27846
|
data: z.ZodArray<z.ZodObject<{
|
|
27847
27847
|
id: z.ZodString;
|
|
27848
27848
|
name: z.ZodString;
|
|
27849
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27850
27849
|
createdAt: z.ZodString;
|
|
27851
27850
|
updatedAt: z.ZodString;
|
|
27851
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27852
27852
|
models: z.ZodNullable<z.ZodType<{
|
|
27853
27853
|
base?: {
|
|
27854
27854
|
model?: string | undefined;
|
|
@@ -27925,9 +27925,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
27925
27925
|
data: z.ZodArray<z.ZodObject<{
|
|
27926
27926
|
id: z.ZodString;
|
|
27927
27927
|
name: z.ZodString;
|
|
27928
|
-
description: z.ZodNullable<z.ZodString>;
|
|
27929
27928
|
createdAt: z.ZodString;
|
|
27930
27929
|
updatedAt: z.ZodString;
|
|
27930
|
+
description: z.ZodNullable<z.ZodString>;
|
|
27931
27931
|
models: z.ZodNullable<z.ZodType<{
|
|
27932
27932
|
base?: {
|
|
27933
27933
|
model?: string | undefined;
|
|
@@ -27990,9 +27990,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
27990
27990
|
}, {
|
|
27991
27991
|
transferCountIs?: number | undefined;
|
|
27992
27992
|
}>>>;
|
|
27993
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
27994
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27995
27993
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27994
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27995
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
27996
27996
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
27997
27997
|
enabled?: boolean | undefined;
|
|
27998
27998
|
numEvents?: number | undefined;
|
|
@@ -28063,11 +28063,11 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
28063
28063
|
data: z.ZodArray<z.ZodObject<{
|
|
28064
28064
|
id: z.ZodString;
|
|
28065
28065
|
name: z.ZodString;
|
|
28066
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28067
28066
|
createdAt: z.ZodString;
|
|
28068
28067
|
updatedAt: z.ZodString;
|
|
28069
|
-
|
|
28068
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28070
28069
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28070
|
+
baseUrl: z.ZodString;
|
|
28071
28071
|
}, z.core.$strip>>;
|
|
28072
28072
|
pagination: z.ZodObject<{
|
|
28073
28073
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -28115,19 +28115,19 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
28115
28115
|
}, z.core.$strip>;
|
|
28116
28116
|
declare const AppResponse: z.ZodObject<{
|
|
28117
28117
|
data: z.ZodObject<{
|
|
28118
|
+
type: z.ZodString;
|
|
28118
28119
|
id: z.ZodString;
|
|
28119
28120
|
name: z.ZodString;
|
|
28120
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28121
28121
|
createdAt: z.ZodString;
|
|
28122
28122
|
updatedAt: z.ZodString;
|
|
28123
|
-
|
|
28123
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28124
28124
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
28125
|
-
|
|
28125
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
28126
|
+
enabled: z.ZodBoolean;
|
|
28127
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28126
28128
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28127
28129
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28128
28130
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
28129
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28130
|
-
enabled: z.ZodBoolean;
|
|
28131
28131
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28132
28132
|
type: z.ZodLiteral<"web_client">;
|
|
28133
28133
|
webClient: z.ZodObject<{
|
|
@@ -28163,19 +28163,19 @@ declare const AppResponse: z.ZodObject<{
|
|
|
28163
28163
|
}, z.core.$strip>;
|
|
28164
28164
|
declare const AppListResponse: z.ZodObject<{
|
|
28165
28165
|
data: z.ZodArray<z.ZodObject<{
|
|
28166
|
+
type: z.ZodString;
|
|
28166
28167
|
id: z.ZodString;
|
|
28167
28168
|
name: z.ZodString;
|
|
28168
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28169
28169
|
createdAt: z.ZodString;
|
|
28170
28170
|
updatedAt: z.ZodString;
|
|
28171
|
-
|
|
28171
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28172
28172
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
28173
|
-
|
|
28173
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
28174
|
+
enabled: z.ZodBoolean;
|
|
28175
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28174
28176
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28175
28177
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
28176
28178
|
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
28177
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28178
|
-
enabled: z.ZodBoolean;
|
|
28179
28179
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
28180
28180
|
type: z.ZodLiteral<"web_client">;
|
|
28181
28181
|
webClient: z.ZodObject<{
|
|
@@ -28222,10 +28222,10 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
28222
28222
|
createdAt: z.ZodString;
|
|
28223
28223
|
updatedAt: z.ZodString;
|
|
28224
28224
|
userId: z.ZodNullable<z.ZodString>;
|
|
28225
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28226
28225
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28227
28226
|
credentialStoreId: z.ZodString;
|
|
28228
28227
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28228
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28229
28229
|
type: z.ZodEnum<{
|
|
28230
28230
|
readonly memory: "memory";
|
|
28231
28231
|
readonly keychain: "keychain";
|
|
@@ -28835,9 +28835,9 @@ declare const FunctionToolListResponse: z.ZodObject<{
|
|
|
28835
28835
|
data: z.ZodArray<z.ZodObject<{
|
|
28836
28836
|
id: z.ZodString;
|
|
28837
28837
|
name: z.ZodString;
|
|
28838
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28839
28838
|
createdAt: z.ZodString;
|
|
28840
28839
|
updatedAt: z.ZodString;
|
|
28840
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28841
28841
|
agentId: z.ZodString;
|
|
28842
28842
|
functionId: z.ZodString;
|
|
28843
28843
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -28855,8 +28855,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
28855
28855
|
createdAt: z.ZodString;
|
|
28856
28856
|
updatedAt: z.ZodString;
|
|
28857
28857
|
subAgentId: z.ZodString;
|
|
28858
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28859
28858
|
functionToolId: z.ZodString;
|
|
28859
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28860
28860
|
}, z.core.$strip>>;
|
|
28861
28861
|
pagination: z.ZodObject<{
|
|
28862
28862
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -28869,9 +28869,9 @@ declare const DataComponentListResponse: z.ZodObject<{
|
|
|
28869
28869
|
data: z.ZodArray<z.ZodObject<{
|
|
28870
28870
|
id: z.ZodString;
|
|
28871
28871
|
name: z.ZodString;
|
|
28872
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28873
28872
|
createdAt: z.ZodString;
|
|
28874
28873
|
updatedAt: z.ZodString;
|
|
28874
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28875
28875
|
props: z.ZodType<{
|
|
28876
28876
|
[x: string]: unknown;
|
|
28877
28877
|
type: "object";
|
|
@@ -28926,9 +28926,9 @@ declare const ArtifactComponentListResponse: z.ZodObject<{
|
|
|
28926
28926
|
data: z.ZodArray<z.ZodObject<{
|
|
28927
28927
|
id: z.ZodString;
|
|
28928
28928
|
name: z.ZodString;
|
|
28929
|
-
description: z.ZodNullable<z.ZodString>;
|
|
28930
28929
|
createdAt: z.ZodString;
|
|
28931
28930
|
updatedAt: z.ZodString;
|
|
28931
|
+
description: z.ZodNullable<z.ZodString>;
|
|
28932
28932
|
props: z.ZodNullable<z.ZodType<{
|
|
28933
28933
|
[x: string]: unknown;
|
|
28934
28934
|
type: "object";
|
|
@@ -29001,10 +29001,10 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
29001
29001
|
createdAt: z.ZodString;
|
|
29002
29002
|
updatedAt: z.ZodString;
|
|
29003
29003
|
subAgentId: z.ZodString;
|
|
29004
|
-
toolId: z.ZodString;
|
|
29005
29004
|
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29006
|
-
|
|
29005
|
+
toolId: z.ZodString;
|
|
29007
29006
|
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29007
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29008
29008
|
}, z.core.$strip>>;
|
|
29009
29009
|
pagination: z.ZodObject<{
|
|
29010
29010
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29017,14 +29017,14 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29017
29017
|
data: z.ZodArray<z.ZodObject<{
|
|
29018
29018
|
id: z.ZodString;
|
|
29019
29019
|
name: z.ZodString;
|
|
29020
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29021
29020
|
createdAt: z.ZodString;
|
|
29022
29021
|
updatedAt: z.ZodString;
|
|
29023
|
-
|
|
29022
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29024
29023
|
enabled: z.ZodBoolean;
|
|
29024
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29025
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29025
29026
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29026
29027
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29027
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29028
29028
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29029
29029
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29030
29030
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29085,7 +29085,6 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
29085
29085
|
data: z.ZodArray<z.ZodObject<{
|
|
29086
29086
|
id: z.ZodString;
|
|
29087
29087
|
createdAt: z.ZodString;
|
|
29088
|
-
status: z.ZodString;
|
|
29089
29088
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29090
29089
|
type: z.ZodEnum<{
|
|
29091
29090
|
commit: "commit";
|
|
@@ -29095,6 +29094,7 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
29095
29094
|
name: z.ZodString;
|
|
29096
29095
|
hash: z.ZodString;
|
|
29097
29096
|
}, z.core.$strip>>>;
|
|
29097
|
+
status: z.ZodString;
|
|
29098
29098
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29099
29099
|
triggerId: z.ZodString;
|
|
29100
29100
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
@@ -29112,14 +29112,14 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29112
29112
|
data: z.ZodObject<{
|
|
29113
29113
|
id: z.ZodString;
|
|
29114
29114
|
name: z.ZodString;
|
|
29115
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29116
29115
|
createdAt: z.ZodString;
|
|
29117
29116
|
updatedAt: z.ZodString;
|
|
29118
|
-
|
|
29117
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29119
29118
|
enabled: z.ZodBoolean;
|
|
29119
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29120
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29120
29121
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29121
29122
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29122
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29123
29123
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29124
29124
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29125
29125
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29175,14 +29175,14 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29175
29175
|
data: z.ZodObject<{
|
|
29176
29176
|
id: z.ZodString;
|
|
29177
29177
|
name: z.ZodString;
|
|
29178
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29179
29178
|
createdAt: z.ZodString;
|
|
29180
29179
|
updatedAt: z.ZodString;
|
|
29181
|
-
|
|
29180
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29182
29181
|
enabled: z.ZodBoolean;
|
|
29182
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29183
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29183
29184
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29184
29185
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29185
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29186
29186
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29187
29187
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29188
29188
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29239,14 +29239,14 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
29239
29239
|
data: z.ZodArray<z.ZodObject<{
|
|
29240
29240
|
id: z.ZodString;
|
|
29241
29241
|
name: z.ZodString;
|
|
29242
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29243
29242
|
createdAt: z.ZodString;
|
|
29244
29243
|
updatedAt: z.ZodString;
|
|
29245
|
-
|
|
29244
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29246
29245
|
enabled: z.ZodBoolean;
|
|
29246
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29247
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29247
29248
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29248
29249
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29249
|
-
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29250
29250
|
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29251
29251
|
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29252
29252
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29307,12 +29307,12 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
29307
29307
|
declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
29308
29308
|
id: z.ZodString;
|
|
29309
29309
|
name: z.ZodString;
|
|
29310
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29311
29310
|
createdAt: z.ZodString;
|
|
29312
29311
|
updatedAt: z.ZodString;
|
|
29313
29312
|
ref: z.ZodString;
|
|
29314
|
-
|
|
29313
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29315
29314
|
enabled: z.ZodBoolean;
|
|
29315
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29316
29316
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
29317
29317
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
29318
29318
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29335,12 +29335,12 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
29335
29335
|
data: z.ZodObject<{
|
|
29336
29336
|
id: z.ZodString;
|
|
29337
29337
|
name: z.ZodString;
|
|
29338
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29339
29338
|
createdAt: z.ZodString;
|
|
29340
29339
|
updatedAt: z.ZodString;
|
|
29341
29340
|
ref: z.ZodString;
|
|
29342
|
-
|
|
29341
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29343
29342
|
enabled: z.ZodBoolean;
|
|
29343
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29344
29344
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
29345
29345
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
29346
29346
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29357,12 +29357,12 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
29357
29357
|
data: z.ZodArray<z.ZodObject<{
|
|
29358
29358
|
id: z.ZodString;
|
|
29359
29359
|
name: z.ZodString;
|
|
29360
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29361
29360
|
createdAt: z.ZodString;
|
|
29362
29361
|
updatedAt: z.ZodString;
|
|
29363
29362
|
ref: z.ZodString;
|
|
29364
|
-
|
|
29363
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29365
29364
|
enabled: z.ZodBoolean;
|
|
29365
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29366
29366
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
29367
29367
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
29368
29368
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29385,12 +29385,12 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
29385
29385
|
data: z.ZodArray<z.ZodObject<{
|
|
29386
29386
|
id: z.ZodString;
|
|
29387
29387
|
name: z.ZodString;
|
|
29388
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29389
29388
|
createdAt: z.ZodString;
|
|
29390
29389
|
updatedAt: z.ZodString;
|
|
29391
29390
|
ref: z.ZodString;
|
|
29392
|
-
|
|
29391
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29393
29392
|
enabled: z.ZodBoolean;
|
|
29393
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29394
29394
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
29395
29395
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
29396
29396
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29419,13 +29419,6 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
29419
29419
|
data: z.ZodObject<{
|
|
29420
29420
|
id: z.ZodString;
|
|
29421
29421
|
createdAt: z.ZodString;
|
|
29422
|
-
status: z.ZodEnum<{
|
|
29423
|
-
pending: "pending";
|
|
29424
|
-
running: "running";
|
|
29425
|
-
completed: "completed";
|
|
29426
|
-
failed: "failed";
|
|
29427
|
-
cancelled: "cancelled";
|
|
29428
|
-
}>;
|
|
29429
29422
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29430
29423
|
type: z.ZodEnum<{
|
|
29431
29424
|
commit: "commit";
|
|
@@ -29435,6 +29428,13 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
29435
29428
|
name: z.ZodString;
|
|
29436
29429
|
hash: z.ZodString;
|
|
29437
29430
|
}, z.core.$strip>>>;
|
|
29431
|
+
status: z.ZodEnum<{
|
|
29432
|
+
pending: "pending";
|
|
29433
|
+
running: "running";
|
|
29434
|
+
completed: "completed";
|
|
29435
|
+
failed: "failed";
|
|
29436
|
+
cancelled: "cancelled";
|
|
29437
|
+
}>;
|
|
29438
29438
|
scheduledTriggerId: z.ZodString;
|
|
29439
29439
|
scheduledFor: z.ZodString;
|
|
29440
29440
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29449,13 +29449,6 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
29449
29449
|
data: z.ZodArray<z.ZodObject<{
|
|
29450
29450
|
id: z.ZodString;
|
|
29451
29451
|
createdAt: z.ZodString;
|
|
29452
|
-
status: z.ZodEnum<{
|
|
29453
|
-
pending: "pending";
|
|
29454
|
-
running: "running";
|
|
29455
|
-
completed: "completed";
|
|
29456
|
-
failed: "failed";
|
|
29457
|
-
cancelled: "cancelled";
|
|
29458
|
-
}>;
|
|
29459
29452
|
ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29460
29453
|
type: z.ZodEnum<{
|
|
29461
29454
|
commit: "commit";
|
|
@@ -29465,6 +29458,13 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
29465
29458
|
name: z.ZodString;
|
|
29466
29459
|
hash: z.ZodString;
|
|
29467
29460
|
}, z.core.$strip>>>;
|
|
29461
|
+
status: z.ZodEnum<{
|
|
29462
|
+
pending: "pending";
|
|
29463
|
+
running: "running";
|
|
29464
|
+
completed: "completed";
|
|
29465
|
+
failed: "failed";
|
|
29466
|
+
cancelled: "cancelled";
|
|
29467
|
+
}>;
|
|
29468
29468
|
scheduledTriggerId: z.ZodString;
|
|
29469
29469
|
scheduledFor: z.ZodString;
|
|
29470
29470
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -29524,15 +29524,15 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29524
29524
|
id: z.ZodString;
|
|
29525
29525
|
name: z.ZodString;
|
|
29526
29526
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29527
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29528
29527
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29528
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29529
29529
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
29530
29530
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29531
29531
|
id: z.ZodString;
|
|
29532
29532
|
name: z.ZodString;
|
|
29533
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29534
29533
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
29535
29534
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29535
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29536
29536
|
models: z.ZodOptional<z.ZodObject<{
|
|
29537
29537
|
base: z.ZodOptional<z.ZodObject<{
|
|
29538
29538
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29584,6 +29584,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29584
29584
|
id: z.ZodString;
|
|
29585
29585
|
name: z.ZodString;
|
|
29586
29586
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29587
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
29587
29588
|
config: z.ZodObject<{
|
|
29588
29589
|
type: z.ZodLiteral<"mcp">;
|
|
29589
29590
|
mcp: z.ZodObject<{
|
|
@@ -29612,7 +29613,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29612
29613
|
}, z.core.$strip>;
|
|
29613
29614
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29614
29615
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
29615
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
29616
29616
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
29617
29617
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
29618
29618
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29622,8 +29622,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29622
29622
|
id: z.ZodString;
|
|
29623
29623
|
name: z.ZodString;
|
|
29624
29624
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29625
|
-
baseUrl: z.ZodURL;
|
|
29626
29625
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29626
|
+
baseUrl: z.ZodURL;
|
|
29627
29627
|
}, z.core.$strip>>>;
|
|
29628
29628
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29629
29629
|
id: z.ZodString;
|
|
@@ -29646,11 +29646,11 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29646
29646
|
id: z.ZodOptional<z.ZodString>;
|
|
29647
29647
|
name: z.ZodString;
|
|
29648
29648
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29649
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29650
29649
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
29650
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29651
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
29651
29652
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29652
29653
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29653
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
29654
29654
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
29655
29655
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
29656
29656
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29699,6 +29699,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29699
29699
|
id: z.ZodString;
|
|
29700
29700
|
name: z.ZodString;
|
|
29701
29701
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29702
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
29702
29703
|
config: z.ZodObject<{
|
|
29703
29704
|
type: z.ZodLiteral<"mcp">;
|
|
29704
29705
|
mcp: z.ZodObject<{
|
|
@@ -29727,7 +29728,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29727
29728
|
}, z.core.$strip>;
|
|
29728
29729
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29729
29730
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
29730
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
29731
29731
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
29732
29732
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
29733
29733
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29831,8 +29831,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29831
29831
|
id: z.ZodString;
|
|
29832
29832
|
name: z.ZodString;
|
|
29833
29833
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29834
|
-
baseUrl: z.ZodURL;
|
|
29835
29834
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29835
|
+
baseUrl: z.ZodURL;
|
|
29836
29836
|
}, z.core.$strip>>>;
|
|
29837
29837
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
29838
29838
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29853,10 +29853,10 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
29853
29853
|
id: z.ZodString;
|
|
29854
29854
|
name: z.ZodString;
|
|
29855
29855
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29856
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29857
29856
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29858
29857
|
credentialStoreId: z.ZodString;
|
|
29859
29858
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
29859
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29860
29860
|
type: z.ZodEnum<{
|
|
29861
29861
|
readonly memory: "memory";
|
|
29862
29862
|
readonly keychain: "keychain";
|
|
@@ -29875,9 +29875,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29875
29875
|
data: z.ZodObject<{
|
|
29876
29876
|
id: z.ZodString;
|
|
29877
29877
|
name: z.ZodString;
|
|
29878
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29879
29878
|
createdAt: z.ZodString;
|
|
29880
29879
|
updatedAt: z.ZodString;
|
|
29880
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29881
29881
|
models: z.ZodNullable<z.ZodObject<{
|
|
29882
29882
|
base: z.ZodObject<{
|
|
29883
29883
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -29899,18 +29899,18 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29899
29899
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29900
29900
|
id: z.ZodString;
|
|
29901
29901
|
name: z.ZodString;
|
|
29902
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29903
29902
|
createdAt: z.ZodString;
|
|
29904
29903
|
updatedAt: z.ZodString;
|
|
29905
|
-
|
|
29904
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29906
29905
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29906
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29907
29907
|
executionMode: z.ZodString;
|
|
29908
29908
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29909
29909
|
id: z.ZodString;
|
|
29910
29910
|
name: z.ZodString;
|
|
29911
|
-
description: z.ZodNullable<z.ZodString>;
|
|
29912
29911
|
createdAt: z.ZodString;
|
|
29913
29912
|
updatedAt: z.ZodString;
|
|
29913
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29914
29914
|
models: z.ZodNullable<z.ZodType<{
|
|
29915
29915
|
base?: {
|
|
29916
29916
|
model?: string | undefined;
|
|
@@ -30001,9 +30001,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30001
30001
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30002
30002
|
id: z.ZodString;
|
|
30003
30003
|
name: z.ZodString;
|
|
30004
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30005
30004
|
createdAt: z.ZodString;
|
|
30006
30005
|
updatedAt: z.ZodString;
|
|
30006
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30007
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30007
30008
|
config: z.ZodType<{
|
|
30008
30009
|
type: "mcp";
|
|
30009
30010
|
mcp: ToolMcpConfig;
|
|
@@ -30019,7 +30020,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30019
30020
|
}>>;
|
|
30020
30021
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
30021
30022
|
credentialScope: z.ZodString;
|
|
30022
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30023
30023
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
30024
30024
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
30025
30025
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -30028,11 +30028,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30028
30028
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30029
30029
|
id: z.ZodString;
|
|
30030
30030
|
name: z.ZodString;
|
|
30031
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30032
30031
|
createdAt: z.ZodString;
|
|
30033
30032
|
updatedAt: z.ZodString;
|
|
30034
|
-
|
|
30033
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30035
30034
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30035
|
+
baseUrl: z.ZodString;
|
|
30036
30036
|
}, z.core.$strip>>>;
|
|
30037
30037
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30038
30038
|
id: z.ZodString;
|
|
@@ -30042,9 +30042,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30042
30042
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30043
30043
|
id: z.ZodString;
|
|
30044
30044
|
name: z.ZodString;
|
|
30045
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30046
30045
|
createdAt: z.ZodString;
|
|
30047
30046
|
updatedAt: z.ZodString;
|
|
30047
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30048
30048
|
agentId: z.ZodString;
|
|
30049
30049
|
functionId: z.ZodString;
|
|
30050
30050
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -30101,9 +30101,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30101
30101
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30102
30102
|
id: z.ZodString;
|
|
30103
30103
|
name: z.ZodString;
|
|
30104
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30105
30104
|
createdAt: z.ZodString;
|
|
30106
30105
|
updatedAt: z.ZodString;
|
|
30106
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30107
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30107
30108
|
config: z.ZodType<{
|
|
30108
30109
|
type: "mcp";
|
|
30109
30110
|
mcp: ToolMcpConfig;
|
|
@@ -30119,7 +30120,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30119
30120
|
}>>;
|
|
30120
30121
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
30121
30122
|
credentialScope: z.ZodString;
|
|
30122
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30123
30123
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
30124
30124
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
30125
30125
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -30128,9 +30128,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30128
30128
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30129
30129
|
id: z.ZodString;
|
|
30130
30130
|
name: z.ZodString;
|
|
30131
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30132
30131
|
createdAt: z.ZodString;
|
|
30133
30132
|
updatedAt: z.ZodString;
|
|
30133
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30134
30134
|
agentId: z.ZodString;
|
|
30135
30135
|
functionId: z.ZodString;
|
|
30136
30136
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -30146,9 +30146,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30146
30146
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30147
30147
|
id: z.ZodString;
|
|
30148
30148
|
name: z.ZodString;
|
|
30149
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30150
30149
|
createdAt: z.ZodString;
|
|
30151
30150
|
updatedAt: z.ZodString;
|
|
30151
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30152
30152
|
props: z.ZodType<{
|
|
30153
30153
|
[x: string]: unknown;
|
|
30154
30154
|
type: "object";
|
|
@@ -30195,9 +30195,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30195
30195
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30196
30196
|
id: z.ZodString;
|
|
30197
30197
|
name: z.ZodString;
|
|
30198
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30199
30198
|
createdAt: z.ZodString;
|
|
30200
30199
|
updatedAt: z.ZodString;
|
|
30200
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30201
30201
|
props: z.ZodNullable<z.ZodType<{
|
|
30202
30202
|
[x: string]: unknown;
|
|
30203
30203
|
type: "object";
|
|
@@ -30244,11 +30244,11 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30244
30244
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30245
30245
|
id: z.ZodString;
|
|
30246
30246
|
name: z.ZodString;
|
|
30247
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30248
30247
|
createdAt: z.ZodString;
|
|
30249
30248
|
updatedAt: z.ZodString;
|
|
30250
|
-
|
|
30249
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30251
30250
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30251
|
+
baseUrl: z.ZodString;
|
|
30252
30252
|
}, z.core.$strip>>>;
|
|
30253
30253
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
30254
30254
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30271,10 +30271,10 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30271
30271
|
createdAt: z.ZodString;
|
|
30272
30272
|
updatedAt: z.ZodString;
|
|
30273
30273
|
userId: z.ZodNullable<z.ZodString>;
|
|
30274
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30275
30274
|
toolId: z.ZodNullable<z.ZodString>;
|
|
30276
30275
|
credentialStoreId: z.ZodString;
|
|
30277
30276
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30277
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30278
30278
|
type: z.ZodEnum<{
|
|
30279
30279
|
readonly memory: "memory";
|
|
30280
30280
|
readonly keychain: "keychain";
|
|
@@ -30866,9 +30866,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30866
30866
|
data: z.ZodObject<{
|
|
30867
30867
|
id: z.ZodString;
|
|
30868
30868
|
name: z.ZodString;
|
|
30869
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30870
30869
|
createdAt: z.ZodString;
|
|
30871
30870
|
updatedAt: z.ZodString;
|
|
30871
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30872
30872
|
models: z.ZodNullable<z.ZodObject<{
|
|
30873
30873
|
base: z.ZodObject<{
|
|
30874
30874
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -30890,9 +30890,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30890
30890
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30891
30891
|
id: z.ZodString;
|
|
30892
30892
|
name: z.ZodString;
|
|
30893
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30894
30893
|
createdAt: z.ZodString;
|
|
30895
30894
|
updatedAt: z.ZodString;
|
|
30895
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30896
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30896
30897
|
config: z.ZodType<{
|
|
30897
30898
|
type: "mcp";
|
|
30898
30899
|
mcp: ToolMcpConfig;
|
|
@@ -30908,7 +30909,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30908
30909
|
}>>;
|
|
30909
30910
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
30910
30911
|
credentialScope: z.ZodString;
|
|
30911
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30912
30912
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
30913
30913
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
30914
30914
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -30917,9 +30917,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30917
30917
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30918
30918
|
id: z.ZodString;
|
|
30919
30919
|
name: z.ZodString;
|
|
30920
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30921
30920
|
createdAt: z.ZodString;
|
|
30922
30921
|
updatedAt: z.ZodString;
|
|
30922
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30923
30923
|
agentId: z.ZodString;
|
|
30924
30924
|
functionId: z.ZodString;
|
|
30925
30925
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -30935,9 +30935,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30935
30935
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30936
30936
|
id: z.ZodString;
|
|
30937
30937
|
name: z.ZodString;
|
|
30938
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30939
30938
|
createdAt: z.ZodString;
|
|
30940
30939
|
updatedAt: z.ZodString;
|
|
30940
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30941
30941
|
props: z.ZodType<{
|
|
30942
30942
|
[x: string]: unknown;
|
|
30943
30943
|
type: "object";
|
|
@@ -30984,9 +30984,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
30984
30984
|
artifactComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30985
30985
|
id: z.ZodString;
|
|
30986
30986
|
name: z.ZodString;
|
|
30987
|
-
description: z.ZodNullable<z.ZodString>;
|
|
30988
30987
|
createdAt: z.ZodString;
|
|
30989
30988
|
updatedAt: z.ZodString;
|
|
30989
|
+
description: z.ZodNullable<z.ZodString>;
|
|
30990
30990
|
props: z.ZodNullable<z.ZodType<{
|
|
30991
30991
|
[x: string]: unknown;
|
|
30992
30992
|
type: "object";
|
|
@@ -31033,11 +31033,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31033
31033
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31034
31034
|
id: z.ZodString;
|
|
31035
31035
|
name: z.ZodString;
|
|
31036
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31037
31036
|
createdAt: z.ZodString;
|
|
31038
31037
|
updatedAt: z.ZodString;
|
|
31039
|
-
|
|
31038
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31040
31039
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31040
|
+
baseUrl: z.ZodString;
|
|
31041
31041
|
}, z.core.$strip>>>;
|
|
31042
31042
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
31043
31043
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31060,10 +31060,10 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31060
31060
|
createdAt: z.ZodString;
|
|
31061
31061
|
updatedAt: z.ZodString;
|
|
31062
31062
|
userId: z.ZodNullable<z.ZodString>;
|
|
31063
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31064
31063
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31065
31064
|
credentialStoreId: z.ZodString;
|
|
31066
31065
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31066
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31067
31067
|
type: z.ZodEnum<{
|
|
31068
31068
|
readonly memory: "memory";
|
|
31069
31069
|
readonly keychain: "keychain";
|
|
@@ -31649,18 +31649,19 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31649
31649
|
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31650
31650
|
id: z.ZodString;
|
|
31651
31651
|
name: z.ZodString;
|
|
31652
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31653
31652
|
createdAt: z.ZodString;
|
|
31654
31653
|
updatedAt: z.ZodString;
|
|
31655
|
-
|
|
31654
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31656
31655
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
31656
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
31657
31657
|
executionMode: z.ZodString;
|
|
31658
31658
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31659
31659
|
id: z.ZodString;
|
|
31660
31660
|
name: z.ZodString;
|
|
31661
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31662
31661
|
createdAt: z.ZodString;
|
|
31663
31662
|
updatedAt: z.ZodString;
|
|
31663
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31664
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31664
31665
|
config: z.ZodType<{
|
|
31665
31666
|
type: "mcp";
|
|
31666
31667
|
mcp: ToolMcpConfig;
|
|
@@ -31676,7 +31677,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31676
31677
|
}>>;
|
|
31677
31678
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31678
31679
|
credentialScope: z.ZodString;
|
|
31679
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31680
31680
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31681
31681
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
31682
31682
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -31685,11 +31685,11 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31685
31685
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31686
31686
|
id: z.ZodString;
|
|
31687
31687
|
name: z.ZodString;
|
|
31688
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31689
31688
|
createdAt: z.ZodString;
|
|
31690
31689
|
updatedAt: z.ZodString;
|
|
31691
|
-
|
|
31690
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31692
31691
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31692
|
+
baseUrl: z.ZodString;
|
|
31693
31693
|
}, z.core.$strip>>>;
|
|
31694
31694
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31695
31695
|
id: z.ZodString;
|
|
@@ -31699,9 +31699,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31699
31699
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31700
31700
|
id: z.ZodString;
|
|
31701
31701
|
name: z.ZodString;
|
|
31702
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31703
31702
|
createdAt: z.ZodString;
|
|
31704
31703
|
updatedAt: z.ZodString;
|
|
31704
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31705
31705
|
agentId: z.ZodString;
|
|
31706
31706
|
functionId: z.ZodString;
|
|
31707
31707
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -31757,9 +31757,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31757
31757
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31758
31758
|
id: z.ZodString;
|
|
31759
31759
|
name: z.ZodString;
|
|
31760
|
-
description: z.ZodNullable<z.ZodString>;
|
|
31761
31760
|
createdAt: z.ZodString;
|
|
31762
31761
|
updatedAt: z.ZodString;
|
|
31762
|
+
description: z.ZodNullable<z.ZodString>;
|
|
31763
31763
|
models: z.ZodNullable<z.ZodType<{
|
|
31764
31764
|
base?: {
|
|
31765
31765
|
model?: string | undefined;
|
|
@@ -31864,15 +31864,15 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
31864
31864
|
id: z.ZodString;
|
|
31865
31865
|
name: z.ZodString;
|
|
31866
31866
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31867
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31868
31867
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31868
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31869
31869
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
31870
31870
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31871
31871
|
id: z.ZodString;
|
|
31872
31872
|
name: z.ZodString;
|
|
31873
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31874
31873
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
31875
31874
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31875
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31876
31876
|
models: z.ZodOptional<z.ZodObject<{
|
|
31877
31877
|
base: z.ZodOptional<z.ZodObject<{
|
|
31878
31878
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -31924,6 +31924,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
31924
31924
|
id: z.ZodString;
|
|
31925
31925
|
name: z.ZodString;
|
|
31926
31926
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31927
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31927
31928
|
config: z.ZodObject<{
|
|
31928
31929
|
type: z.ZodLiteral<"mcp">;
|
|
31929
31930
|
mcp: z.ZodObject<{
|
|
@@ -31952,7 +31953,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
31952
31953
|
}, z.core.$strip>;
|
|
31953
31954
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31954
31955
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31955
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31956
31956
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31957
31957
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
31958
31958
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31962,8 +31962,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
31962
31962
|
id: z.ZodString;
|
|
31963
31963
|
name: z.ZodString;
|
|
31964
31964
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31965
|
-
baseUrl: z.ZodURL;
|
|
31966
31965
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31966
|
+
baseUrl: z.ZodURL;
|
|
31967
31967
|
}, z.core.$strip>>>;
|
|
31968
31968
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31969
31969
|
id: z.ZodString;
|
|
@@ -31986,11 +31986,11 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
31986
31986
|
id: z.ZodOptional<z.ZodString>;
|
|
31987
31987
|
name: z.ZodString;
|
|
31988
31988
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31989
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31990
31989
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31990
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31991
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31991
31992
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31992
31993
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31993
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31994
31994
|
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31995
31995
|
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
31996
31996
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -32040,18 +32040,18 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32040
32040
|
data: z.ZodObject<{
|
|
32041
32041
|
id: z.ZodString;
|
|
32042
32042
|
name: z.ZodString;
|
|
32043
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32044
32043
|
createdAt: z.ZodString;
|
|
32045
32044
|
updatedAt: z.ZodString;
|
|
32046
|
-
|
|
32045
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32047
32046
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
32047
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
32048
32048
|
executionMode: z.ZodString;
|
|
32049
32049
|
subAgents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32050
32050
|
id: z.ZodString;
|
|
32051
32051
|
name: z.ZodString;
|
|
32052
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32053
32052
|
createdAt: z.ZodString;
|
|
32054
32053
|
updatedAt: z.ZodString;
|
|
32054
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32055
32055
|
models: z.ZodNullable<z.ZodType<{
|
|
32056
32056
|
base?: {
|
|
32057
32057
|
model?: string | undefined;
|
|
@@ -32142,9 +32142,10 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32142
32142
|
tools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32143
32143
|
id: z.ZodString;
|
|
32144
32144
|
name: z.ZodString;
|
|
32145
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32146
32145
|
createdAt: z.ZodString;
|
|
32147
32146
|
updatedAt: z.ZodString;
|
|
32147
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32148
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32148
32149
|
config: z.ZodType<{
|
|
32149
32150
|
type: "mcp";
|
|
32150
32151
|
mcp: ToolMcpConfig;
|
|
@@ -32160,7 +32161,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32160
32161
|
}>>;
|
|
32161
32162
|
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32162
32163
|
credentialScope: z.ZodString;
|
|
32163
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32164
32164
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32165
32165
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
32166
32166
|
lastError: z.ZodNullable<z.ZodString>;
|
|
@@ -32169,11 +32169,11 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32169
32169
|
externalAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32170
32170
|
id: z.ZodString;
|
|
32171
32171
|
name: z.ZodString;
|
|
32172
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32173
32172
|
createdAt: z.ZodString;
|
|
32174
32173
|
updatedAt: z.ZodString;
|
|
32175
|
-
|
|
32174
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32176
32175
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32176
|
+
baseUrl: z.ZodString;
|
|
32177
32177
|
}, z.core.$strip>>>;
|
|
32178
32178
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32179
32179
|
id: z.ZodString;
|
|
@@ -32183,9 +32183,9 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
32183
32183
|
functionTools: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32184
32184
|
id: z.ZodString;
|
|
32185
32185
|
name: z.ZodString;
|
|
32186
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32187
32186
|
createdAt: z.ZodString;
|
|
32188
32187
|
updatedAt: z.ZodString;
|
|
32188
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32189
32189
|
agentId: z.ZodString;
|
|
32190
32190
|
functionId: z.ZodString;
|
|
32191
32191
|
relationshipId: z.ZodOptional<z.ZodString>;
|
|
@@ -32264,8 +32264,9 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
32264
32264
|
id: z.ZodString;
|
|
32265
32265
|
name: z.ZodString;
|
|
32266
32266
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32267
|
-
projectId: z.ZodString;
|
|
32268
32267
|
tenantId: z.ZodString;
|
|
32268
|
+
projectId: z.ZodString;
|
|
32269
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32269
32270
|
config: z.ZodObject<{
|
|
32270
32271
|
type: z.ZodLiteral<"mcp">;
|
|
32271
32272
|
mcp: z.ZodObject<{
|
|
@@ -32294,7 +32295,6 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
32294
32295
|
}, z.core.$strip>;
|
|
32295
32296
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32296
32297
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32297
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32298
32298
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
32299
32299
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32300
32300
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32305,9 +32305,9 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
32305
32305
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
32306
32306
|
}, z.core.$strip>>>;
|
|
32307
32307
|
status: z.ZodDefault<z.ZodEnum<{
|
|
32308
|
+
unknown: "unknown";
|
|
32308
32309
|
healthy: "healthy";
|
|
32309
32310
|
unhealthy: "unhealthy";
|
|
32310
|
-
unknown: "unknown";
|
|
32311
32311
|
needs_auth: "needs_auth";
|
|
32312
32312
|
unavailable: "unavailable";
|
|
32313
32313
|
}>>;
|
|
@@ -32325,8 +32325,9 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
32325
32325
|
id: z.ZodString;
|
|
32326
32326
|
name: z.ZodString;
|
|
32327
32327
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32328
|
-
projectId: z.ZodString;
|
|
32329
32328
|
tenantId: z.ZodString;
|
|
32329
|
+
projectId: z.ZodString;
|
|
32330
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32330
32331
|
config: z.ZodObject<{
|
|
32331
32332
|
type: z.ZodLiteral<"mcp">;
|
|
32332
32333
|
mcp: z.ZodObject<{
|
|
@@ -32355,7 +32356,6 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
32355
32356
|
}, z.core.$strip>;
|
|
32356
32357
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32357
32358
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
32358
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32359
32359
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
32360
32360
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32361
32361
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32366,9 +32366,9 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
32366
32366
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
32367
32367
|
}, z.core.$strip>>>;
|
|
32368
32368
|
status: z.ZodDefault<z.ZodEnum<{
|
|
32369
|
+
unknown: "unknown";
|
|
32369
32370
|
healthy: "healthy";
|
|
32370
32371
|
unhealthy: "unhealthy";
|
|
32371
|
-
unknown: "unknown";
|
|
32372
32372
|
needs_auth: "needs_auth";
|
|
32373
32373
|
unavailable: "unavailable";
|
|
32374
32374
|
}>>;
|
|
@@ -32443,9 +32443,9 @@ declare const DataComponentArrayResponse: z.ZodObject<{
|
|
|
32443
32443
|
data: z.ZodArray<z.ZodObject<{
|
|
32444
32444
|
id: z.ZodString;
|
|
32445
32445
|
name: z.ZodString;
|
|
32446
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32447
32446
|
createdAt: z.ZodString;
|
|
32448
32447
|
updatedAt: z.ZodString;
|
|
32448
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32449
32449
|
props: z.ZodType<{
|
|
32450
32450
|
[x: string]: unknown;
|
|
32451
32451
|
type: "object";
|
|
@@ -32494,9 +32494,9 @@ declare const ArtifactComponentArrayResponse: z.ZodObject<{
|
|
|
32494
32494
|
data: z.ZodArray<z.ZodObject<{
|
|
32495
32495
|
id: z.ZodString;
|
|
32496
32496
|
name: z.ZodString;
|
|
32497
|
-
description: z.ZodNullable<z.ZodString>;
|
|
32498
32497
|
createdAt: z.ZodString;
|
|
32499
32498
|
updatedAt: z.ZodString;
|
|
32499
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32500
32500
|
props: z.ZodNullable<z.ZodType<{
|
|
32501
32501
|
[x: string]: unknown;
|
|
32502
32502
|
type: "object";
|
|
@@ -32863,8 +32863,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
32863
32863
|
disconnected: "disconnected";
|
|
32864
32864
|
}>;
|
|
32865
32865
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
32866
|
-
Organization: "Organization";
|
|
32867
32866
|
User: "User";
|
|
32867
|
+
Organization: "Organization";
|
|
32868
32868
|
}>;
|
|
32869
32869
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
32870
32870
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
@@ -32959,7 +32959,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
32959
32959
|
tableName: "work_app_github_installations";
|
|
32960
32960
|
dataType: "string";
|
|
32961
32961
|
columnType: "PgVarchar";
|
|
32962
|
-
data: "
|
|
32962
|
+
data: "User" | "Organization";
|
|
32963
32963
|
driverParam: string;
|
|
32964
32964
|
notNull: true;
|
|
32965
32965
|
hasDefault: false;
|
|
@@ -32972,7 +32972,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
32972
32972
|
generated: undefined;
|
|
32973
32973
|
}, {}, {
|
|
32974
32974
|
length: 20;
|
|
32975
|
-
$type: "
|
|
32975
|
+
$type: "User" | "Organization";
|
|
32976
32976
|
}>;
|
|
32977
32977
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
32978
32978
|
name: "status";
|
|
@@ -33125,7 +33125,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
33125
33125
|
tableName: "work_app_github_installations";
|
|
33126
33126
|
dataType: "string";
|
|
33127
33127
|
columnType: "PgVarchar";
|
|
33128
|
-
data: "
|
|
33128
|
+
data: "User" | "Organization";
|
|
33129
33129
|
driverParam: string;
|
|
33130
33130
|
notNull: true;
|
|
33131
33131
|
hasDefault: false;
|
|
@@ -33138,7 +33138,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
33138
33138
|
generated: undefined;
|
|
33139
33139
|
}, {}, {
|
|
33140
33140
|
length: 20;
|
|
33141
|
-
$type: "
|
|
33141
|
+
$type: "User" | "Organization";
|
|
33142
33142
|
}>;
|
|
33143
33143
|
status: drizzle_orm_pg_core220.PgColumn<{
|
|
33144
33144
|
name: "status";
|
|
@@ -33201,13 +33201,13 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
33201
33201
|
}, undefined>, undefined>;
|
|
33202
33202
|
declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
33203
33203
|
id: z.ZodString;
|
|
33204
|
-
tenantId: z.ZodString;
|
|
33205
33204
|
accountId: z.ZodString;
|
|
33205
|
+
tenantId: z.ZodString;
|
|
33206
33206
|
installationId: z.ZodString;
|
|
33207
33207
|
accountLogin: z.ZodString;
|
|
33208
33208
|
accountType: z.ZodEnum<{
|
|
33209
|
-
Organization: "Organization";
|
|
33210
33209
|
User: "User";
|
|
33210
|
+
Organization: "Organization";
|
|
33211
33211
|
}>;
|
|
33212
33212
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
33213
33213
|
pending: "pending";
|
|
@@ -33223,26 +33223,26 @@ declare const WorkAppGithubInstallationApiSelectSchema: z.ZodObject<{
|
|
|
33223
33223
|
id: z.ZodString;
|
|
33224
33224
|
createdAt: z.ZodString;
|
|
33225
33225
|
updatedAt: z.ZodString;
|
|
33226
|
-
status: z.ZodString;
|
|
33227
33226
|
accountId: z.ZodString;
|
|
33227
|
+
status: z.ZodString;
|
|
33228
33228
|
installationId: z.ZodString;
|
|
33229
33229
|
accountLogin: z.ZodString;
|
|
33230
33230
|
accountType: z.ZodString;
|
|
33231
33231
|
}, z.core.$strip>;
|
|
33232
33232
|
declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
33233
|
-
|
|
33233
|
+
accountId: z.ZodString;
|
|
33234
33234
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
33235
33235
|
pending: "pending";
|
|
33236
33236
|
active: "active";
|
|
33237
33237
|
suspended: "suspended";
|
|
33238
33238
|
disconnected: "disconnected";
|
|
33239
33239
|
}>>>;
|
|
33240
|
-
|
|
33240
|
+
tenantId: z.ZodString;
|
|
33241
33241
|
installationId: z.ZodString;
|
|
33242
33242
|
accountLogin: z.ZodString;
|
|
33243
33243
|
accountType: z.ZodEnum<{
|
|
33244
|
-
Organization: "Organization";
|
|
33245
33244
|
User: "User";
|
|
33245
|
+
Organization: "Organization";
|
|
33246
33246
|
}>;
|
|
33247
33247
|
}, z.core.$strip>;
|
|
33248
33248
|
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -35444,8 +35444,8 @@ declare const ChannelAccessModeSchema: z.ZodEnum<{
|
|
|
35444
35444
|
selected: "selected";
|
|
35445
35445
|
}>;
|
|
35446
35446
|
declare const WorkAppSlackMcpToolAccessConfigInsertSchema: z.ZodObject<{
|
|
35447
|
-
projectId: z.ZodString;
|
|
35448
35447
|
tenantId: z.ZodString;
|
|
35448
|
+
projectId: z.ZodString;
|
|
35449
35449
|
toolId: z.ZodString;
|
|
35450
35450
|
channelAccessMode: z.ZodEnum<{
|
|
35451
35451
|
all: "all";
|
|
@@ -35736,11 +35736,11 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
35736
35736
|
declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
35737
35737
|
id: z.ZodString;
|
|
35738
35738
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
35739
|
-
projectId: z.ZodString;
|
|
35740
35739
|
tenantId: z.ZodString;
|
|
35741
|
-
|
|
35740
|
+
projectId: z.ZodString;
|
|
35742
35741
|
agentId: z.ZodString;
|
|
35743
35742
|
conversationId: z.ZodString;
|
|
35743
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35744
35744
|
status: z.ZodDefault<z.ZodEnum<{
|
|
35745
35745
|
running: "running";
|
|
35746
35746
|
completed: "completed";
|
|
@@ -35754,11 +35754,11 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
35754
35754
|
declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
35755
35755
|
id: z.ZodOptional<z.ZodString>;
|
|
35756
35756
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
35757
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
35758
35757
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
35759
|
-
|
|
35758
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
35760
35759
|
agentId: z.ZodOptional<z.ZodString>;
|
|
35761
35760
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
35761
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
35762
35762
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
35763
35763
|
running: "running";
|
|
35764
35764
|
completed: "completed";
|