@inkeep/agents-core 0.70.2 → 0.70.3
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/data-access/manage/agents.d.ts +20 -20
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +3 -3
- package/dist/data-access/manage/subAgentRelations.d.ts +2 -2
- package/dist/data-access/manage/tools.d.ts +6 -6
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apps.d.ts +1 -1
- package/dist/data-access/runtime/apps.js +2 -2
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +362 -362
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +25 -25
- package/dist/validation/schemas.d.ts +425 -425
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { JsonSchemaProperty } from "./json-schemas.js";
|
|
|
4
4
|
import "../index.js";
|
|
5
5
|
import { z } from "@hono/zod-openapi";
|
|
6
6
|
import * as drizzle_orm_pg_core297 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod15 from "drizzle-zod";
|
|
8
8
|
|
|
9
9
|
//#region src/validation/schemas.d.ts
|
|
10
10
|
declare const TextPartSchema: z.ZodObject<{
|
|
@@ -123,7 +123,7 @@ declare const FunctionToolConfigSchema: z.ZodObject<{
|
|
|
123
123
|
type FunctionToolConfig = Omit<z.infer<typeof FunctionToolConfigSchema>, 'execute'> & {
|
|
124
124
|
execute: ((params: any) => Promise<any>) | string;
|
|
125
125
|
};
|
|
126
|
-
declare const SubAgentSelectSchema:
|
|
126
|
+
declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
127
127
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
128
128
|
name: "created_at";
|
|
129
129
|
tableName: "sub_agents";
|
|
@@ -386,7 +386,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
386
386
|
}, {}, {
|
|
387
387
|
length: 256;
|
|
388
388
|
}>;
|
|
389
|
-
},
|
|
389
|
+
}, drizzle_zod15.BuildRefine<{
|
|
390
390
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
391
391
|
name: "created_at";
|
|
392
392
|
tableName: "sub_agents";
|
|
@@ -909,7 +909,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
909
909
|
}>>>>>>;
|
|
910
910
|
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
911
911
|
}, z.core.$strip>;
|
|
912
|
-
declare const SubAgentRelationSelectSchema:
|
|
912
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
913
913
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
914
914
|
name: "created_at";
|
|
915
915
|
tableName: "sub_agent_relations";
|
|
@@ -1077,7 +1077,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
1077
1077
|
}, {}, {
|
|
1078
1078
|
length: 256;
|
|
1079
1079
|
}>;
|
|
1080
|
-
},
|
|
1080
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1081
1081
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1082
1082
|
name: "created_at";
|
|
1083
1083
|
tableName: "sub_agent_relations";
|
|
@@ -1343,7 +1343,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
1343
1343
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1344
1344
|
externalSubAgentId: z.ZodString;
|
|
1345
1345
|
}, z.core.$strip>;
|
|
1346
|
-
declare const AgentSelectSchema:
|
|
1346
|
+
declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
1347
1347
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1348
1348
|
name: "created_at";
|
|
1349
1349
|
tableName: "agent";
|
|
@@ -1673,7 +1673,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
1673
1673
|
}, {}, {
|
|
1674
1674
|
length: 256;
|
|
1675
1675
|
}>;
|
|
1676
|
-
},
|
|
1676
|
+
}, drizzle_zod15.BuildRefine<{
|
|
1677
1677
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
1678
1678
|
name: "created_at";
|
|
1679
1679
|
tableName: "agent";
|
|
@@ -2004,7 +2004,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
2004
2004
|
length: 256;
|
|
2005
2005
|
}>;
|
|
2006
2006
|
}, undefined>, undefined>;
|
|
2007
|
-
declare const AgentInsertSchema:
|
|
2007
|
+
declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
2008
2008
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
2009
2009
|
name: "created_at";
|
|
2010
2010
|
tableName: "agent";
|
|
@@ -2334,7 +2334,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2334
2334
|
}, {}, {
|
|
2335
2335
|
length: 256;
|
|
2336
2336
|
}>;
|
|
2337
|
-
},
|
|
2337
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
2338
2338
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
2339
2339
|
name: "created_at";
|
|
2340
2340
|
tableName: "agent";
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "prompt" | "tenantId" | "projectId" | "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "prompt" | "tenantId" | "projectId" | "defaultSubAgentId" | "contextConfigId" | "models" | "statusUpdates" | "stopWhen" | "executionMode">, undefined>, undefined>;
|
|
2668
2668
|
declare const AgentUpdateSchema: z.ZodObject<{
|
|
2669
2669
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2670
2670
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2831,6 +2831,8 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2831
2831
|
updatedAt: z.ZodString;
|
|
2832
2832
|
description: z.ZodNullable<z.ZodString>;
|
|
2833
2833
|
prompt: z.ZodNullable<z.ZodString>;
|
|
2834
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2835
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2834
2836
|
models: z.ZodNullable<z.ZodType<{
|
|
2835
2837
|
base?: {
|
|
2836
2838
|
model?: string | undefined;
|
|
@@ -2908,17 +2910,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2908
2910
|
allowedProviders?: string[] | undefined;
|
|
2909
2911
|
} | undefined;
|
|
2910
2912
|
}>>>;
|
|
2911
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
2912
|
-
transferCountIs?: number | undefined;
|
|
2913
|
-
}, {
|
|
2914
|
-
transferCountIs?: number | undefined;
|
|
2915
|
-
}, z.core.$ZodTypeInternals<{
|
|
2916
|
-
transferCountIs?: number | undefined;
|
|
2917
|
-
}, {
|
|
2918
|
-
transferCountIs?: number | undefined;
|
|
2919
|
-
}>>>;
|
|
2920
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2921
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2922
2913
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2923
2914
|
enabled?: boolean | undefined;
|
|
2924
2915
|
numEvents?: number | undefined;
|
|
@@ -2976,6 +2967,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2976
2967
|
} | undefined;
|
|
2977
2968
|
}[] | undefined;
|
|
2978
2969
|
}>>>;
|
|
2970
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
2971
|
+
transferCountIs?: number | undefined;
|
|
2972
|
+
}, {
|
|
2973
|
+
transferCountIs?: number | undefined;
|
|
2974
|
+
}, z.core.$ZodTypeInternals<{
|
|
2975
|
+
transferCountIs?: number | undefined;
|
|
2976
|
+
}, {
|
|
2977
|
+
transferCountIs?: number | undefined;
|
|
2978
|
+
}>>>;
|
|
2979
2979
|
executionMode: z.ZodString;
|
|
2980
2980
|
}, z.core.$strip>;
|
|
2981
2981
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
@@ -2983,6 +2983,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
2983
2983
|
name: z.ZodString;
|
|
2984
2984
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
2985
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2986
|
+
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2987
|
+
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2986
2988
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2987
2989
|
base?: {
|
|
2988
2990
|
model?: string | undefined;
|
|
@@ -3060,17 +3062,6 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3060
3062
|
allowedProviders?: string[] | undefined;
|
|
3061
3063
|
} | undefined;
|
|
3062
3064
|
}>>>>;
|
|
3063
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3064
|
-
transferCountIs?: number | undefined;
|
|
3065
|
-
}, {
|
|
3066
|
-
transferCountIs?: number | undefined;
|
|
3067
|
-
}, z.core.$ZodTypeInternals<{
|
|
3068
|
-
transferCountIs?: number | undefined;
|
|
3069
|
-
}, {
|
|
3070
|
-
transferCountIs?: number | undefined;
|
|
3071
|
-
}>>>>;
|
|
3072
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3074
3065
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3075
3066
|
enabled?: boolean | undefined;
|
|
3076
3067
|
numEvents?: number | undefined;
|
|
@@ -3128,12 +3119,23 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3128
3119
|
} | undefined;
|
|
3129
3120
|
}[] | undefined;
|
|
3130
3121
|
}>>>>;
|
|
3122
|
+
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3123
|
+
transferCountIs?: number | undefined;
|
|
3124
|
+
}, {
|
|
3125
|
+
transferCountIs?: number | undefined;
|
|
3126
|
+
}, z.core.$ZodTypeInternals<{
|
|
3127
|
+
transferCountIs?: number | undefined;
|
|
3128
|
+
}, {
|
|
3129
|
+
transferCountIs?: number | undefined;
|
|
3130
|
+
}>>>>;
|
|
3131
3131
|
executionMode: z.ZodOptional<z.ZodString>;
|
|
3132
3132
|
}, z.core.$strip>;
|
|
3133
3133
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
3134
3134
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3135
3135
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3136
3136
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3137
|
+
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3138
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3137
3139
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3138
3140
|
base?: {
|
|
3139
3141
|
model?: string | undefined;
|
|
@@ -3211,17 +3213,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3211
3213
|
allowedProviders?: string[] | undefined;
|
|
3212
3214
|
} | undefined;
|
|
3213
3215
|
}>>>>>>;
|
|
3214
|
-
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3215
|
-
transferCountIs?: number | undefined;
|
|
3216
|
-
}, {
|
|
3217
|
-
transferCountIs?: number | undefined;
|
|
3218
|
-
}, z.core.$ZodTypeInternals<{
|
|
3219
|
-
transferCountIs?: number | undefined;
|
|
3220
|
-
}, {
|
|
3221
|
-
transferCountIs?: number | undefined;
|
|
3222
|
-
}>>>>>>;
|
|
3223
|
-
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3225
3216
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3226
3217
|
enabled?: boolean | undefined;
|
|
3227
3218
|
numEvents?: number | undefined;
|
|
@@ -3279,6 +3270,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3279
3270
|
} | undefined;
|
|
3280
3271
|
}[] | undefined;
|
|
3281
3272
|
}>>>>>>;
|
|
3273
|
+
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3274
|
+
transferCountIs?: number | undefined;
|
|
3275
|
+
}, {
|
|
3276
|
+
transferCountIs?: number | undefined;
|
|
3277
|
+
}, z.core.$ZodTypeInternals<{
|
|
3278
|
+
transferCountIs?: number | undefined;
|
|
3279
|
+
}, {
|
|
3280
|
+
transferCountIs?: number | undefined;
|
|
3281
|
+
}>>>>>>;
|
|
3282
3282
|
executionMode: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3283
3283
|
}, z.core.$strip>;
|
|
3284
3284
|
declare const TriggerAuthHeaderInputSchema: z.ZodObject<{
|
|
@@ -3473,15 +3473,15 @@ declare const SignatureValidationOptionsSchema: z.ZodObject<{
|
|
|
3473
3473
|
*/
|
|
3474
3474
|
declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
3475
3475
|
algorithm: z.ZodEnum<{
|
|
3476
|
+
md5: "md5";
|
|
3476
3477
|
sha256: "sha256";
|
|
3477
3478
|
sha512: "sha512";
|
|
3478
3479
|
sha384: "sha384";
|
|
3479
3480
|
sha1: "sha1";
|
|
3480
|
-
md5: "md5";
|
|
3481
3481
|
}>;
|
|
3482
3482
|
encoding: z.ZodEnum<{
|
|
3483
|
-
hex: "hex";
|
|
3484
3483
|
base64: "base64";
|
|
3484
|
+
hex: "hex";
|
|
3485
3485
|
}>;
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
@@ -3557,10 +3557,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3557
3557
|
createdAt: z.ZodString;
|
|
3558
3558
|
updatedAt: z.ZodString;
|
|
3559
3559
|
enabled: z.ZodBoolean;
|
|
3560
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3561
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3560
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3561
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3562
3562
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3563
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3563
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
3564
3564
|
name: z.ZodString;
|
|
3565
3565
|
description: z.ZodNullable<z.ZodString>;
|
|
3566
3566
|
agentId: z.ZodString;
|
|
@@ -3570,15 +3570,15 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3570
3570
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3571
3571
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3572
3572
|
algorithm: z.ZodEnum<{
|
|
3573
|
+
md5: "md5";
|
|
3573
3574
|
sha256: "sha256";
|
|
3574
3575
|
sha512: "sha512";
|
|
3575
3576
|
sha384: "sha384";
|
|
3576
3577
|
sha1: "sha1";
|
|
3577
|
-
md5: "md5";
|
|
3578
3578
|
}>;
|
|
3579
3579
|
encoding: z.ZodEnum<{
|
|
3580
|
-
hex: "hex";
|
|
3581
3580
|
base64: "base64";
|
|
3581
|
+
hex: "hex";
|
|
3582
3582
|
}>;
|
|
3583
3583
|
signature: z.ZodObject<{
|
|
3584
3584
|
source: z.ZodEnum<{
|
|
@@ -3620,7 +3620,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3620
3620
|
out: {};
|
|
3621
3621
|
in: {};
|
|
3622
3622
|
}>;
|
|
3623
|
-
declare const TriggerInsertSchema:
|
|
3623
|
+
declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
3624
3624
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
3625
3625
|
name: "created_at";
|
|
3626
3626
|
tableName: "triggers";
|
|
@@ -3777,8 +3777,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3777
3777
|
dataType: "json";
|
|
3778
3778
|
columnType: "PgJsonb";
|
|
3779
3779
|
data: {
|
|
3780
|
-
algorithm: "
|
|
3781
|
-
encoding: "
|
|
3780
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3781
|
+
encoding: "base64" | "hex";
|
|
3782
3782
|
signature: {
|
|
3783
3783
|
source: "query" | "body" | "header";
|
|
3784
3784
|
key: string;
|
|
@@ -3814,8 +3814,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
3814
3814
|
generated: undefined;
|
|
3815
3815
|
}, {}, {
|
|
3816
3816
|
$type: {
|
|
3817
|
-
algorithm: "
|
|
3818
|
-
encoding: "
|
|
3817
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3818
|
+
encoding: "base64" | "hex";
|
|
3819
3819
|
signature: {
|
|
3820
3820
|
source: "query" | "body" | "header";
|
|
3821
3821
|
key: string;
|
|
@@ -4007,7 +4007,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4007
4007
|
}, {}, {
|
|
4008
4008
|
length: 256;
|
|
4009
4009
|
}>;
|
|
4010
|
-
},
|
|
4010
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4011
4011
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
4012
4012
|
name: "created_at";
|
|
4013
4013
|
tableName: "triggers";
|
|
@@ -4164,8 +4164,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4164
4164
|
dataType: "json";
|
|
4165
4165
|
columnType: "PgJsonb";
|
|
4166
4166
|
data: {
|
|
4167
|
-
algorithm: "
|
|
4168
|
-
encoding: "
|
|
4167
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4168
|
+
encoding: "base64" | "hex";
|
|
4169
4169
|
signature: {
|
|
4170
4170
|
source: "query" | "body" | "header";
|
|
4171
4171
|
key: string;
|
|
@@ -4201,8 +4201,8 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
4201
4201
|
generated: undefined;
|
|
4202
4202
|
}, {}, {
|
|
4203
4203
|
$type: {
|
|
4204
|
-
algorithm: "
|
|
4205
|
-
encoding: "
|
|
4204
|
+
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4205
|
+
encoding: "base64" | "hex";
|
|
4206
4206
|
signature: {
|
|
4207
4207
|
source: "query" | "body" | "header";
|
|
4208
4208
|
key: string;
|
|
@@ -4399,11 +4399,11 @@ declare const runAsUserIdsSchema: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
|
4399
4399
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4400
4400
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4401
4401
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4402
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4403
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4402
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4403
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4404
4404
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4405
4405
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4406
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4406
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
4407
4407
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4408
4408
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>;
|
|
4409
4409
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4432,22 +4432,22 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4432
4432
|
updatedAt: z.ZodString;
|
|
4433
4433
|
description: z.ZodNullable<z.ZodString>;
|
|
4434
4434
|
enabled: z.ZodBoolean;
|
|
4435
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4436
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4435
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4436
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4437
4437
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4438
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4438
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4439
4439
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4440
4440
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4441
4441
|
algorithm: z.ZodEnum<{
|
|
4442
|
+
md5: "md5";
|
|
4442
4443
|
sha256: "sha256";
|
|
4443
4444
|
sha512: "sha512";
|
|
4444
4445
|
sha384: "sha384";
|
|
4445
4446
|
sha1: "sha1";
|
|
4446
|
-
md5: "md5";
|
|
4447
4447
|
}>;
|
|
4448
4448
|
encoding: z.ZodEnum<{
|
|
4449
|
-
hex: "hex";
|
|
4450
4449
|
base64: "base64";
|
|
4450
|
+
hex: "hex";
|
|
4451
4451
|
}>;
|
|
4452
4452
|
signature: z.ZodObject<{
|
|
4453
4453
|
source: z.ZodEnum<{
|
|
@@ -4491,12 +4491,12 @@ declare const TriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
4491
4491
|
name: z.ZodString;
|
|
4492
4492
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4493
4493
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4494
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4495
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4494
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4495
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4496
4496
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4497
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4497
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4498
4498
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4499
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4499
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4500
4500
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4501
4501
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4502
4502
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4507,12 +4507,12 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4507
4507
|
name: z.ZodString;
|
|
4508
4508
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4509
4509
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4510
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4511
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4510
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4511
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4512
4512
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4513
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4513
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4514
4514
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4515
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4515
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
4516
4516
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4517
4517
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
4518
4518
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4525,8 +4525,8 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4525
4525
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4526
4526
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4527
4527
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4528
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4529
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4528
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4529
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4530
4530
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4531
4531
|
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4532
4532
|
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4536,7 +4536,7 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4536
4536
|
}, z.core.$strip>>>;
|
|
4537
4537
|
}, z.core.$strip>>>>;
|
|
4538
4538
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4539
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4539
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
4540
4540
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4541
4541
|
dispatchDelayMs: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodInt>>>>;
|
|
4542
4542
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -4549,22 +4549,22 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4549
4549
|
updatedAt: z.ZodString;
|
|
4550
4550
|
description: z.ZodNullable<z.ZodString>;
|
|
4551
4551
|
enabled: z.ZodBoolean;
|
|
4552
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4553
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4552
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4553
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4554
4554
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4555
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4555
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4556
4556
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4557
4557
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4558
4558
|
algorithm: z.ZodEnum<{
|
|
4559
|
+
md5: "md5";
|
|
4559
4560
|
sha256: "sha256";
|
|
4560
4561
|
sha512: "sha512";
|
|
4561
4562
|
sha384: "sha384";
|
|
4562
4563
|
sha1: "sha1";
|
|
4563
|
-
md5: "md5";
|
|
4564
4564
|
}>;
|
|
4565
4565
|
encoding: z.ZodEnum<{
|
|
4566
|
-
hex: "hex";
|
|
4567
4566
|
base64: "base64";
|
|
4567
|
+
hex: "hex";
|
|
4568
4568
|
}>;
|
|
4569
4569
|
signature: z.ZodObject<{
|
|
4570
4570
|
source: z.ZodEnum<{
|
|
@@ -4611,8 +4611,8 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4611
4611
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4612
4612
|
batchId: z.ZodNullable<z.ZodString>;
|
|
4613
4613
|
status: z.ZodString;
|
|
4614
|
-
requestPayload: z.ZodType<
|
|
4615
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4614
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
4615
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
4616
4616
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4617
4617
|
createdAt: z.ZodString;
|
|
4618
4618
|
agentId: z.ZodString;
|
|
@@ -4633,7 +4633,7 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4633
4633
|
out: {};
|
|
4634
4634
|
in: {};
|
|
4635
4635
|
}>;
|
|
4636
|
-
declare const TriggerInvocationInsertSchema:
|
|
4636
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
4637
4637
|
triggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
4638
4638
|
name: "trigger_id";
|
|
4639
4639
|
tableName: "trigger_invocations";
|
|
@@ -4900,7 +4900,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4900
4900
|
}, {}, {
|
|
4901
4901
|
length: 256;
|
|
4902
4902
|
}>;
|
|
4903
|
-
},
|
|
4903
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
4904
4904
|
triggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
4905
4905
|
name: "trigger_id";
|
|
4906
4906
|
tableName: "trigger_invocations";
|
|
@@ -5200,8 +5200,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5200
5200
|
hash: string;
|
|
5201
5201
|
}>>>>>;
|
|
5202
5202
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5203
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
5204
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5203
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
5204
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
5205
5205
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5206
5206
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5207
5207
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5229,8 +5229,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5229
5229
|
triggerId: z.ZodString;
|
|
5230
5230
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5231
5231
|
batchId: z.ZodNullable<z.ZodString>;
|
|
5232
|
-
requestPayload: z.ZodType<
|
|
5233
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
5232
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5233
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
5234
5234
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5235
5235
|
}, z.core.$strip>;
|
|
5236
5236
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
@@ -5257,8 +5257,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5257
5257
|
triggerId: z.ZodString;
|
|
5258
5258
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5259
5259
|
batchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5260
|
-
requestPayload: z.ZodType<
|
|
5261
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5260
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
5261
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5262
5262
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5263
5263
|
id: z.ZodString;
|
|
5264
5264
|
}, z.core.$strip>;
|
|
@@ -5287,8 +5287,8 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5287
5287
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5288
5288
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5289
5289
|
batchId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5290
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5291
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5290
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
5291
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
5292
5292
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5293
5293
|
}, z.core.$strip>;
|
|
5294
5294
|
declare const CronExpressionSchema: z.ZodString;
|
|
@@ -5497,7 +5497,7 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
5497
5497
|
out: {};
|
|
5498
5498
|
in: {};
|
|
5499
5499
|
}>;
|
|
5500
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
5500
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
5501
5501
|
scheduledTriggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
5502
5502
|
name: "scheduled_trigger_id";
|
|
5503
5503
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -5801,7 +5801,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
5801
5801
|
}, {}, {
|
|
5802
5802
|
length: 256;
|
|
5803
5803
|
}>;
|
|
5804
|
-
},
|
|
5804
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
5805
5805
|
scheduledTriggerId: drizzle_orm_pg_core297.PgColumn<{
|
|
5806
5806
|
name: "scheduled_trigger_id";
|
|
5807
5807
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -6105,7 +6105,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6105
6105
|
}, {}, {
|
|
6106
6106
|
length: 256;
|
|
6107
6107
|
}>;
|
|
6108
|
-
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "
|
|
6108
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "runAsUserId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "conversationIds" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
6109
6109
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
6110
6110
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
6111
6111
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6129,7 +6129,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
6129
6129
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
6130
6130
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6131
6131
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6132
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6132
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
6133
6133
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
6134
6134
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
6135
6135
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6163,12 +6163,12 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
6163
6163
|
cancelled: "cancelled";
|
|
6164
6164
|
}>;
|
|
6165
6165
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
6166
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6167
6166
|
scheduledTriggerId: z.ZodString;
|
|
6168
6167
|
scheduledFor: z.ZodString;
|
|
6169
6168
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
6170
6169
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
6171
6170
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6171
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
6172
6172
|
attemptNumber: z.ZodInt;
|
|
6173
6173
|
idempotencyKey: z.ZodString;
|
|
6174
6174
|
}, z.core.$strip>;
|
|
@@ -6193,12 +6193,12 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
6193
6193
|
}>>>>;
|
|
6194
6194
|
status: z.ZodString;
|
|
6195
6195
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6196
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6197
6196
|
scheduledTriggerId: z.ZodString;
|
|
6198
6197
|
scheduledFor: z.ZodString;
|
|
6199
6198
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6200
6199
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6201
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6200
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
6201
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
6202
6202
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
6203
6203
|
idempotencyKey: z.ZodString;
|
|
6204
6204
|
id: z.ZodString;
|
|
@@ -6225,17 +6225,17 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
6225
6225
|
}>>>>>>;
|
|
6226
6226
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6227
6227
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6228
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6229
6228
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6230
6229
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6231
6230
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6232
6231
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6233
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6232
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
6233
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6234
6234
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6235
6235
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6236
6236
|
}, z.core.$strip>;
|
|
6237
6237
|
type ScheduledTriggerInvocationStatus = z.infer<typeof ScheduledTriggerInvocationStatusEnum>;
|
|
6238
|
-
declare const SchedulerStateSelectSchema:
|
|
6238
|
+
declare const SchedulerStateSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6239
6239
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
6240
6240
|
name: "created_at";
|
|
6241
6241
|
tableName: "scheduler_state";
|
|
@@ -6308,7 +6308,7 @@ declare const SchedulerStateSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6308
6308
|
}, {}, {
|
|
6309
6309
|
length: 256;
|
|
6310
6310
|
}>;
|
|
6311
|
-
},
|
|
6311
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6312
6312
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
6313
6313
|
name: "created_at";
|
|
6314
6314
|
tableName: "scheduler_state";
|
|
@@ -6515,7 +6515,7 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6515
6515
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6516
6516
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6517
6517
|
}, z.core.$strip>;
|
|
6518
|
-
declare const TaskRelationSelectSchema:
|
|
6518
|
+
declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6519
6519
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
6520
6520
|
name: "created_at";
|
|
6521
6521
|
tableName: "task_relations";
|
|
@@ -6664,7 +6664,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6664
6664
|
}, {}, {
|
|
6665
6665
|
length: 256;
|
|
6666
6666
|
}>;
|
|
6667
|
-
},
|
|
6667
|
+
}, drizzle_zod15.BuildRefine<{
|
|
6668
6668
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
6669
6669
|
name: "created_at";
|
|
6670
6670
|
tableName: "task_relations";
|
|
@@ -6886,7 +6886,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
6886
6886
|
description: z.ZodOptional<z.ZodString>;
|
|
6887
6887
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6888
6888
|
}, z.core.$strip>;
|
|
6889
|
-
declare const ToolSelectSchema:
|
|
6889
|
+
declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
6890
6890
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
6891
6891
|
name: "created_at";
|
|
6892
6892
|
tableName: "tools";
|
|
@@ -7166,7 +7166,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7166
7166
|
}, {}, {
|
|
7167
7167
|
length: 256;
|
|
7168
7168
|
}>;
|
|
7169
|
-
},
|
|
7169
|
+
}, drizzle_zod15.BuildRefine<{
|
|
7170
7170
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7171
7171
|
name: "created_at";
|
|
7172
7172
|
tableName: "tools";
|
|
@@ -7454,7 +7454,6 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7454
7454
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7455
7455
|
tenantId: z.ZodString;
|
|
7456
7456
|
projectId: z.ZodString;
|
|
7457
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7458
7457
|
config: z.ZodObject<{
|
|
7459
7458
|
type: z.ZodLiteral<"mcp">;
|
|
7460
7459
|
mcp: z.ZodObject<{
|
|
@@ -7481,6 +7480,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7481
7480
|
prompt: z.ZodOptional<z.ZodString>;
|
|
7482
7481
|
}, z.core.$strip>;
|
|
7483
7482
|
}, z.core.$strip>;
|
|
7483
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7484
7484
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
7485
7485
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7486
7486
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -7629,7 +7629,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7629
7629
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7630
7630
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7631
7631
|
}, z.core.$strip>;
|
|
7632
|
-
declare const MessageSelectSchema:
|
|
7632
|
+
declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
7633
7633
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
7634
7634
|
name: "created_at";
|
|
7635
7635
|
tableName: "messages";
|
|
@@ -8025,7 +8025,7 @@ declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8025
8025
|
}, {}, {
|
|
8026
8026
|
length: 256;
|
|
8027
8027
|
}>;
|
|
8028
|
-
},
|
|
8028
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8029
8029
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
8030
8030
|
name: "created_at";
|
|
8031
8031
|
tableName: "messages";
|
|
@@ -8537,7 +8537,7 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8537
8537
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8538
8538
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8539
8539
|
}, z.core.$strip>;
|
|
8540
|
-
declare const FeedbackSelectSchema:
|
|
8540
|
+
declare const FeedbackSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
8541
8541
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
8542
8542
|
name: "created_at";
|
|
8543
8543
|
tableName: "feedback";
|
|
@@ -8704,7 +8704,7 @@ declare const FeedbackSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8704
8704
|
}, {}, {
|
|
8705
8705
|
length: 256;
|
|
8706
8706
|
}>;
|
|
8707
|
-
},
|
|
8707
|
+
}, drizzle_zod15.BuildRefine<{
|
|
8708
8708
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
8709
8709
|
name: "created_at";
|
|
8710
8710
|
tableName: "feedback";
|
|
@@ -8942,7 +8942,7 @@ declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
|
8942
8942
|
conversationId: z.ZodString;
|
|
8943
8943
|
contextConfigId: z.ZodString;
|
|
8944
8944
|
contextVariableKey: z.ZodString;
|
|
8945
|
-
value: z.ZodType<
|
|
8945
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8946
8946
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8947
8947
|
fetchedAt: z.ZodString;
|
|
8948
8948
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8968,7 +8968,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8968
8968
|
conversationId: z.ZodString;
|
|
8969
8969
|
contextConfigId: z.ZodString;
|
|
8970
8970
|
contextVariableKey: z.ZodString;
|
|
8971
|
-
value: z.ZodType<
|
|
8971
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
8972
8972
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8973
8973
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8974
8974
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8994,7 +8994,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8994
8994
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8995
8995
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8996
8996
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8997
|
-
value: z.ZodOptional<z.ZodType<
|
|
8997
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
8998
8998
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8999
8999
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9000
9000
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -9027,7 +9027,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
9027
9027
|
name: z.ZodString;
|
|
9028
9028
|
hash: z.ZodString;
|
|
9029
9029
|
}, z.core.$strip>>>;
|
|
9030
|
-
value: z.ZodType<
|
|
9030
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9031
9031
|
contextConfigId: z.ZodString;
|
|
9032
9032
|
conversationId: z.ZodString;
|
|
9033
9033
|
contextVariableKey: z.ZodString;
|
|
@@ -9048,7 +9048,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
9048
9048
|
name: z.ZodString;
|
|
9049
9049
|
hash: z.ZodString;
|
|
9050
9050
|
}, z.core.$strip>;
|
|
9051
|
-
value: z.ZodType<
|
|
9051
|
+
value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
9052
9052
|
contextConfigId: z.ZodString;
|
|
9053
9053
|
conversationId: z.ZodString;
|
|
9054
9054
|
contextVariableKey: z.ZodString;
|
|
@@ -9069,7 +9069,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
9069
9069
|
name: z.ZodString;
|
|
9070
9070
|
hash: z.ZodString;
|
|
9071
9071
|
}, z.core.$strip>>>;
|
|
9072
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
9072
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
9073
9073
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9074
9074
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9075
9075
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -9173,8 +9173,8 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
9173
9173
|
hash: z.ZodString;
|
|
9174
9174
|
}, z.core.$strip>>>;
|
|
9175
9175
|
datasetId: z.ZodString;
|
|
9176
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9177
9176
|
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9177
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9178
9178
|
}, z.core.$strip>;
|
|
9179
9179
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
9180
9180
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -9197,8 +9197,8 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9197
9197
|
hash: string;
|
|
9198
9198
|
}>>>>;
|
|
9199
9199
|
datasetId: z.ZodString;
|
|
9200
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9201
9200
|
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9201
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9202
9202
|
}, z.core.$strip>;
|
|
9203
9203
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9204
9204
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9221,10 +9221,10 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
9221
9221
|
hash: string;
|
|
9222
9222
|
}>>>>>>;
|
|
9223
9223
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9224
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9225
9224
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9225
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9226
9226
|
}, z.core.$strip>;
|
|
9227
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9227
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9228
9228
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9229
9229
|
name: "created_at";
|
|
9230
9230
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9367,7 +9367,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
|
|
|
9367
9367
|
}, {}, {
|
|
9368
9368
|
length: 256;
|
|
9369
9369
|
}>;
|
|
9370
|
-
},
|
|
9370
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9371
9371
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9372
9372
|
name: "created_at";
|
|
9373
9373
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9559,7 +9559,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9559
9559
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9560
9560
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9561
9561
|
}, z.core.$strip>;
|
|
9562
|
-
declare const EvaluationResultSelectSchema:
|
|
9562
|
+
declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
9563
9563
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9564
9564
|
name: "created_at";
|
|
9565
9565
|
tableName: "evaluation_result";
|
|
@@ -9721,7 +9721,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
9721
9721
|
}, {}, {
|
|
9722
9722
|
length: 256;
|
|
9723
9723
|
}>;
|
|
9724
|
-
},
|
|
9724
|
+
}, drizzle_zod15.BuildRefine<{
|
|
9725
9725
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
9726
9726
|
name: "created_at";
|
|
9727
9727
|
tableName: "evaluation_result";
|
|
@@ -9917,24 +9917,24 @@ declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
|
9917
9917
|
id: z.ZodString;
|
|
9918
9918
|
createdAt: z.ZodString;
|
|
9919
9919
|
updatedAt: z.ZodString;
|
|
9920
|
-
evaluatorId: z.ZodString;
|
|
9921
9920
|
conversationId: z.ZodString;
|
|
9921
|
+
evaluatorId: z.ZodString;
|
|
9922
9922
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
9923
9923
|
}, z.core.$strip>;
|
|
9924
9924
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9925
9925
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9926
9926
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9927
9927
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9928
|
-
evaluatorId: z.ZodString;
|
|
9929
9928
|
conversationId: z.ZodString;
|
|
9929
|
+
evaluatorId: z.ZodString;
|
|
9930
9930
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9931
9931
|
}, z.core.$strip>;
|
|
9932
9932
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9933
9933
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9934
9934
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9935
9935
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9936
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9937
9936
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9937
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9938
9938
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9939
9939
|
}, z.core.$strip>;
|
|
9940
9940
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -10029,8 +10029,8 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
10029
10029
|
name: z.ZodString;
|
|
10030
10030
|
hash: z.ZodString;
|
|
10031
10031
|
}, z.core.$strip>>>;
|
|
10032
|
-
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10033
10032
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
10033
|
+
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
10034
10034
|
}, z.core.$strip>;
|
|
10035
10035
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10036
10036
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -10052,8 +10052,8 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
10052
10052
|
name: string;
|
|
10053
10053
|
hash: string;
|
|
10054
10054
|
}>>>>;
|
|
10055
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10056
10055
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10056
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10057
10057
|
}, z.core.$strip>;
|
|
10058
10058
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10059
10059
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -10075,10 +10075,10 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
10075
10075
|
name: string;
|
|
10076
10076
|
hash: string;
|
|
10077
10077
|
}>>>>>>;
|
|
10078
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10079
10078
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10079
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10080
10080
|
}, z.core.$strip>;
|
|
10081
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10081
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10082
10082
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10083
10083
|
name: "created_at";
|
|
10084
10084
|
tableName: "evaluation_run_config";
|
|
@@ -10223,7 +10223,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10223
10223
|
}, {}, {
|
|
10224
10224
|
length: 256;
|
|
10225
10225
|
}>;
|
|
10226
|
-
},
|
|
10226
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10227
10227
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10228
10228
|
name: "created_at";
|
|
10229
10229
|
tableName: "evaluation_run_config";
|
|
@@ -10428,7 +10428,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
10428
10428
|
isActive: z.ZodBoolean;
|
|
10429
10429
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10430
10430
|
}, z.core.$strip>;
|
|
10431
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10431
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10432
10432
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10433
10433
|
name: "created_at";
|
|
10434
10434
|
tableName: "evaluation_job_config";
|
|
@@ -10553,7 +10553,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
10553
10553
|
}, {}, {
|
|
10554
10554
|
length: 256;
|
|
10555
10555
|
}>;
|
|
10556
|
-
},
|
|
10556
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10557
10557
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10558
10558
|
name: "created_at";
|
|
10559
10559
|
tableName: "evaluation_job_config";
|
|
@@ -10858,7 +10858,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10858
10858
|
} | undefined;
|
|
10859
10859
|
}>>>>>>>;
|
|
10860
10860
|
}, z.core.$strip>;
|
|
10861
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10861
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
10862
10862
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10863
10863
|
name: "created_at";
|
|
10864
10864
|
tableName: "evaluation_suite_config";
|
|
@@ -10986,7 +10986,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
10986
10986
|
}, {}, {
|
|
10987
10987
|
length: 256;
|
|
10988
10988
|
}>;
|
|
10989
|
-
},
|
|
10989
|
+
}, drizzle_zod15.BuildRefine<{
|
|
10990
10990
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
10991
10991
|
name: "created_at";
|
|
10992
10992
|
tableName: "evaluation_suite_config";
|
|
@@ -11160,7 +11160,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11160
11160
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11161
11161
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11162
11162
|
}, z.core.$strip>;
|
|
11163
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11163
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11164
11164
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11165
11165
|
name: "created_at";
|
|
11166
11166
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11290,7 +11290,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11290
11290
|
}, {}, {
|
|
11291
11291
|
length: 256;
|
|
11292
11292
|
}>;
|
|
11293
|
-
},
|
|
11293
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11294
11294
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11295
11295
|
name: "created_at";
|
|
11296
11296
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11449,22 +11449,22 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11449
11449
|
id: z.ZodString;
|
|
11450
11450
|
createdAt: z.ZodString;
|
|
11451
11451
|
updatedAt: z.ZodString;
|
|
11452
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11453
11452
|
evaluationRunConfigId: z.ZodString;
|
|
11453
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11454
11454
|
}, z.core.$strip>;
|
|
11455
11455
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11456
11456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11457
11457
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11458
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
11459
11458
|
evaluationRunConfigId: z.ZodString;
|
|
11459
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
11460
11460
|
}, z.core.$strip>;
|
|
11461
11461
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11462
11462
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11463
11463
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11464
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11465
11464
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11465
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11466
11466
|
}, z.core.$strip>;
|
|
11467
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11467
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11468
11468
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11469
11469
|
name: "created_at";
|
|
11470
11470
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11594,7 +11594,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
|
|
|
11594
11594
|
}, {}, {
|
|
11595
11595
|
length: 256;
|
|
11596
11596
|
}>;
|
|
11597
|
-
},
|
|
11597
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11598
11598
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11599
11599
|
name: "created_at";
|
|
11600
11600
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11753,22 +11753,22 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
11753
11753
|
id: z.ZodString;
|
|
11754
11754
|
createdAt: z.ZodString;
|
|
11755
11755
|
updatedAt: z.ZodString;
|
|
11756
|
-
evaluatorId: z.ZodString;
|
|
11757
11756
|
evaluationJobConfigId: z.ZodString;
|
|
11757
|
+
evaluatorId: z.ZodString;
|
|
11758
11758
|
}, z.core.$strip>;
|
|
11759
11759
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11760
11760
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11761
11761
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11762
|
-
evaluatorId: z.ZodString;
|
|
11763
11762
|
evaluationJobConfigId: z.ZodString;
|
|
11763
|
+
evaluatorId: z.ZodString;
|
|
11764
11764
|
}, z.core.$strip>;
|
|
11765
11765
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11766
11766
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11767
11767
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11768
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11769
11768
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11769
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11770
11770
|
}, z.core.$strip>;
|
|
11771
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11771
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
11772
11772
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11773
11773
|
name: "created_at";
|
|
11774
11774
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11898,7 +11898,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
|
|
|
11898
11898
|
}, {}, {
|
|
11899
11899
|
length: 256;
|
|
11900
11900
|
}>;
|
|
11901
|
-
},
|
|
11901
|
+
}, drizzle_zod15.BuildRefine<{
|
|
11902
11902
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
11903
11903
|
name: "created_at";
|
|
11904
11904
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12057,22 +12057,22 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
12057
12057
|
id: z.ZodString;
|
|
12058
12058
|
createdAt: z.ZodString;
|
|
12059
12059
|
updatedAt: z.ZodString;
|
|
12060
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12061
12060
|
evaluatorId: z.ZodString;
|
|
12061
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12062
12062
|
}, z.core.$strip>;
|
|
12063
12063
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12064
12064
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12065
12065
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12066
|
-
evaluationSuiteConfigId: z.ZodString;
|
|
12067
12066
|
evaluatorId: z.ZodString;
|
|
12067
|
+
evaluationSuiteConfigId: z.ZodString;
|
|
12068
12068
|
}, z.core.$strip>;
|
|
12069
12069
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12070
12070
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12071
12071
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12072
|
-
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12073
12072
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12073
|
+
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12074
12074
|
}, z.core.$strip>;
|
|
12075
|
-
declare const EvaluatorSelectSchema:
|
|
12075
|
+
declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12076
12076
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12077
12077
|
name: "created_at";
|
|
12078
12078
|
tableName: "evaluator";
|
|
@@ -12284,7 +12284,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12284
12284
|
}, {}, {
|
|
12285
12285
|
length: 256;
|
|
12286
12286
|
}>;
|
|
12287
|
-
},
|
|
12287
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12288
12288
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12289
12289
|
name: "created_at";
|
|
12290
12290
|
tableName: "evaluator";
|
|
@@ -12660,7 +12660,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12660
12660
|
}>>>>;
|
|
12661
12661
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12662
12662
|
}, z.core.$strip>;
|
|
12663
|
-
declare const DatasetSelectSchema:
|
|
12663
|
+
declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12664
12664
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12665
12665
|
name: "created_at";
|
|
12666
12666
|
tableName: "dataset";
|
|
@@ -12771,7 +12771,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
12771
12771
|
}, {}, {
|
|
12772
12772
|
length: 256;
|
|
12773
12773
|
}>;
|
|
12774
|
-
},
|
|
12774
|
+
}, drizzle_zod15.BuildRefine<{
|
|
12775
12775
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12776
12776
|
name: "created_at";
|
|
12777
12777
|
tableName: "dataset";
|
|
@@ -12921,7 +12921,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12921
12921
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12922
12922
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12923
12923
|
}, z.core.$strip>;
|
|
12924
|
-
declare const DatasetItemSelectSchema:
|
|
12924
|
+
declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
12925
12925
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
12926
12926
|
name: "created_at";
|
|
12927
12927
|
tableName: "dataset_item";
|
|
@@ -13070,7 +13070,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
13070
13070
|
}, {}, {
|
|
13071
13071
|
length: 256;
|
|
13072
13072
|
}>;
|
|
13073
|
-
},
|
|
13073
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13074
13074
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13075
13075
|
name: "created_at";
|
|
13076
13076
|
tableName: "dataset_item";
|
|
@@ -13302,7 +13302,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13302
13302
|
}, z.core.$strip>>;
|
|
13303
13303
|
}, z.core.$strip>>>;
|
|
13304
13304
|
}, z.core.$strip>;
|
|
13305
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13305
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13306
13306
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13307
13307
|
name: "created_at";
|
|
13308
13308
|
tableName: "dataset_run_config";
|
|
@@ -13449,7 +13449,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
13449
13449
|
}, {}, {
|
|
13450
13450
|
length: 256;
|
|
13451
13451
|
}>;
|
|
13452
|
-
},
|
|
13452
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13453
13453
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13454
13454
|
name: "created_at";
|
|
13455
13455
|
tableName: "dataset_run_config";
|
|
@@ -13645,7 +13645,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13645
13645
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13646
13646
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13647
13647
|
}, z.core.$strip>;
|
|
13648
|
-
declare const AgentDatasetRelationSelectSchema:
|
|
13648
|
+
declare const AgentDatasetRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13649
13649
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13650
13650
|
name: "created_at";
|
|
13651
13651
|
tableName: "agent_dataset_relations";
|
|
@@ -13775,7 +13775,7 @@ declare const AgentDatasetRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
13775
13775
|
}, {}, {
|
|
13776
13776
|
length: 256;
|
|
13777
13777
|
}>;
|
|
13778
|
-
},
|
|
13778
|
+
}, drizzle_zod15.BuildRefine<{
|
|
13779
13779
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13780
13780
|
name: "created_at";
|
|
13781
13781
|
tableName: "agent_dataset_relations";
|
|
@@ -13943,7 +13943,7 @@ declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
|
13943
13943
|
agentId: z.ZodString;
|
|
13944
13944
|
datasetId: z.ZodString;
|
|
13945
13945
|
}, z.core.$strip>;
|
|
13946
|
-
declare const AgentEvaluatorRelationSelectSchema:
|
|
13946
|
+
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
13947
13947
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
13948
13948
|
name: "created_at";
|
|
13949
13949
|
tableName: "agent_evaluator_relations";
|
|
@@ -14073,7 +14073,7 @@ declare const AgentEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"sel
|
|
|
14073
14073
|
}, {}, {
|
|
14074
14074
|
length: 256;
|
|
14075
14075
|
}>;
|
|
14076
|
-
},
|
|
14076
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14077
14077
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14078
14078
|
name: "created_at";
|
|
14079
14079
|
tableName: "agent_evaluator_relations";
|
|
@@ -14241,7 +14241,7 @@ declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
|
14241
14241
|
agentId: z.ZodString;
|
|
14242
14242
|
evaluatorId: z.ZodString;
|
|
14243
14243
|
}, z.core.$strip>;
|
|
14244
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
14244
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14245
14245
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14246
14246
|
name: "created_at";
|
|
14247
14247
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14371,7 +14371,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
14371
14371
|
}, {}, {
|
|
14372
14372
|
length: 256;
|
|
14373
14373
|
}>;
|
|
14374
|
-
},
|
|
14374
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14375
14375
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14376
14376
|
name: "created_at";
|
|
14377
14377
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14526,7 +14526,7 @@ declare const DatasetRunConfigAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
14526
14526
|
out: {};
|
|
14527
14527
|
in: {};
|
|
14528
14528
|
}>;
|
|
14529
|
-
declare const DataComponentSelectSchema:
|
|
14529
|
+
declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
14530
14530
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14531
14531
|
name: "created_at";
|
|
14532
14532
|
tableName: "data_components";
|
|
@@ -14712,7 +14712,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
14712
14712
|
}, {}, {
|
|
14713
14713
|
length: 256;
|
|
14714
14714
|
}>;
|
|
14715
|
-
},
|
|
14715
|
+
}, drizzle_zod15.BuildRefine<{
|
|
14716
14716
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
14717
14717
|
name: "created_at";
|
|
14718
14718
|
tableName: "data_components";
|
|
@@ -15102,7 +15102,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15102
15102
|
description: z.ZodOptional<z.ZodString>;
|
|
15103
15103
|
}, z.core.$loose>;
|
|
15104
15104
|
}, z.core.$strip>;
|
|
15105
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
15105
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15106
15106
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
15107
15107
|
name: "data_component_id";
|
|
15108
15108
|
tableName: "sub_agent_data_components";
|
|
@@ -15234,7 +15234,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
15234
15234
|
}, {}, {
|
|
15235
15235
|
length: 256;
|
|
15236
15236
|
}>;
|
|
15237
|
-
},
|
|
15237
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15238
15238
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
15239
15239
|
name: "data_component_id";
|
|
15240
15240
|
tableName: "sub_agent_data_components";
|
|
@@ -15367,7 +15367,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
15367
15367
|
length: 256;
|
|
15368
15368
|
}>;
|
|
15369
15369
|
}, undefined>, undefined>;
|
|
15370
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
15370
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
15371
15371
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
15372
15372
|
name: "data_component_id";
|
|
15373
15373
|
tableName: "sub_agent_data_components";
|
|
@@ -15499,7 +15499,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
|
|
|
15499
15499
|
}, {}, {
|
|
15500
15500
|
length: 256;
|
|
15501
15501
|
}>;
|
|
15502
|
-
},
|
|
15502
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
15503
15503
|
dataComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
15504
15504
|
name: "data_component_id";
|
|
15505
15505
|
tableName: "sub_agent_data_components";
|
|
@@ -15664,7 +15664,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15664
15664
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15665
15665
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15666
15666
|
}, z.core.$strip>;
|
|
15667
|
-
declare const ArtifactComponentSelectSchema:
|
|
15667
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
15668
15668
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15669
15669
|
name: "created_at";
|
|
15670
15670
|
tableName: "artifact_components";
|
|
@@ -15850,7 +15850,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
|
|
|
15850
15850
|
}, {}, {
|
|
15851
15851
|
length: 256;
|
|
15852
15852
|
}>;
|
|
15853
|
-
},
|
|
15853
|
+
}, drizzle_zod15.BuildRefine<{
|
|
15854
15854
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
15855
15855
|
name: "created_at";
|
|
15856
15856
|
tableName: "artifact_components";
|
|
@@ -16271,7 +16271,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
16271
16271
|
mockData: Record<string, unknown>;
|
|
16272
16272
|
}>>>>>>;
|
|
16273
16273
|
}, z.core.$strip>;
|
|
16274
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
16274
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16275
16275
|
artifactComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16276
16276
|
name: "artifact_component_id";
|
|
16277
16277
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16403,7 +16403,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
16403
16403
|
}, {}, {
|
|
16404
16404
|
length: 256;
|
|
16405
16405
|
}>;
|
|
16406
|
-
},
|
|
16406
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16407
16407
|
artifactComponentId: drizzle_orm_pg_core297.PgColumn<{
|
|
16408
16408
|
name: "artifact_component_id";
|
|
16409
16409
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16600,8 +16600,8 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
16600
16600
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16601
16601
|
tenantId: z.ZodString;
|
|
16602
16602
|
projectId: z.ZodString;
|
|
16603
|
-
baseUrl: z.ZodURL;
|
|
16604
16603
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16604
|
+
baseUrl: z.ZodURL;
|
|
16605
16605
|
}, {
|
|
16606
16606
|
out: {};
|
|
16607
16607
|
in: {};
|
|
@@ -16612,8 +16612,8 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
16612
16612
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16613
16613
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16614
16614
|
projectId: z.ZodOptional<z.ZodString>;
|
|
16615
|
-
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16616
16615
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16616
|
+
baseUrl: z.ZodOptional<z.ZodURL>;
|
|
16617
16617
|
}, {
|
|
16618
16618
|
out: {};
|
|
16619
16619
|
in: {};
|
|
@@ -16624,22 +16624,22 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
|
16624
16624
|
createdAt: z.ZodString;
|
|
16625
16625
|
updatedAt: z.ZodString;
|
|
16626
16626
|
description: z.ZodNullable<z.ZodString>;
|
|
16627
|
-
baseUrl: z.ZodString;
|
|
16628
16627
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16628
|
+
baseUrl: z.ZodString;
|
|
16629
16629
|
}, z.core.$strip>;
|
|
16630
16630
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
16631
16631
|
id: z.ZodString;
|
|
16632
16632
|
name: z.ZodString;
|
|
16633
16633
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16634
|
-
baseUrl: z.ZodURL;
|
|
16635
16634
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16635
|
+
baseUrl: z.ZodURL;
|
|
16636
16636
|
}, z.core.$strip>;
|
|
16637
16637
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
16638
16638
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16639
16639
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16640
16640
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16641
|
-
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16642
16641
|
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
16642
|
+
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodURL>>;
|
|
16643
16643
|
}, z.core.$strip>;
|
|
16644
16644
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
16645
16645
|
id: z.ZodString;
|
|
@@ -16742,11 +16742,11 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16742
16742
|
createdAt: z.ZodString;
|
|
16743
16743
|
updatedAt: z.ZodString;
|
|
16744
16744
|
description: z.ZodNullable<z.ZodString>;
|
|
16745
|
-
baseUrl: z.ZodString;
|
|
16746
16745
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16746
|
+
baseUrl: z.ZodString;
|
|
16747
16747
|
type: z.ZodLiteral<"external">;
|
|
16748
16748
|
}, z.core.$strip>], "type">;
|
|
16749
|
-
declare const ApiKeySelectSchema:
|
|
16749
|
+
declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
16750
16750
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
16751
16751
|
name: "created_at";
|
|
16752
16752
|
tableName: "api_keys";
|
|
@@ -16967,7 +16967,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
16967
16967
|
}, {}, {
|
|
16968
16968
|
length: 256;
|
|
16969
16969
|
}>;
|
|
16970
|
-
},
|
|
16970
|
+
}, drizzle_zod15.BuildRefine<{
|
|
16971
16971
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
16972
16972
|
name: "created_at";
|
|
16973
16973
|
tableName: "api_keys";
|
|
@@ -17494,7 +17494,7 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17494
17494
|
}, z.core.$strip>>>;
|
|
17495
17495
|
}, z.core.$strip>;
|
|
17496
17496
|
}, z.core.$strip>], "type">;
|
|
17497
|
-
declare const AppSelectSchema:
|
|
17497
|
+
declare const AppSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
17498
17498
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
17499
17499
|
name: "created_at";
|
|
17500
17500
|
tableName: "apps";
|
|
@@ -17808,7 +17808,7 @@ declare const AppSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
17808
17808
|
identity: undefined;
|
|
17809
17809
|
generated: undefined;
|
|
17810
17810
|
}, {}, {}>;
|
|
17811
|
-
},
|
|
17811
|
+
}, drizzle_zod15.BuildRefine<{
|
|
17812
17812
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
17813
17813
|
name: "created_at";
|
|
17814
17814
|
tableName: "apps";
|
|
@@ -18240,7 +18240,7 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
18240
18240
|
out: {};
|
|
18241
18241
|
in: {};
|
|
18242
18242
|
}>;
|
|
18243
|
-
declare const AppApiSelectSchema:
|
|
18243
|
+
declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
18244
18244
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
18245
18245
|
name: "created_at";
|
|
18246
18246
|
tableName: "apps";
|
|
@@ -18554,7 +18554,7 @@ declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
18554
18554
|
identity: undefined;
|
|
18555
18555
|
generated: undefined;
|
|
18556
18556
|
}, {}, {}>;
|
|
18557
|
-
},
|
|
18557
|
+
}, drizzle_zod15.BuildRefine<{
|
|
18558
18558
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
18559
18559
|
name: "created_at";
|
|
18560
18560
|
tableName: "apps";
|
|
@@ -19104,7 +19104,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
19104
19104
|
}>;
|
|
19105
19105
|
}, z.core.$strip>;
|
|
19106
19106
|
}, z.core.$strip>;
|
|
19107
|
-
declare const CredentialReferenceSelectSchema:
|
|
19107
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
19108
19108
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19109
19109
|
name: "created_at";
|
|
19110
19110
|
tableName: "credential_references";
|
|
@@ -19329,7 +19329,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
|
|
|
19329
19329
|
}, {}, {
|
|
19330
19330
|
length: 256;
|
|
19331
19331
|
}>;
|
|
19332
|
-
},
|
|
19332
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19333
19333
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19334
19334
|
name: "created_at";
|
|
19335
19335
|
tableName: "credential_references";
|
|
@@ -19601,7 +19601,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19601
19601
|
readonly nango: "nango";
|
|
19602
19602
|
readonly composio: "composio";
|
|
19603
19603
|
}>;
|
|
19604
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
19604
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
19605
19605
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19606
19606
|
name: "created_at";
|
|
19607
19607
|
tableName: "tools";
|
|
@@ -19881,7 +19881,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19881
19881
|
}, {}, {
|
|
19882
19882
|
length: 256;
|
|
19883
19883
|
}>;
|
|
19884
|
-
},
|
|
19884
|
+
}, drizzle_zod15.BuildRefine<{
|
|
19885
19885
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
19886
19886
|
name: "created_at";
|
|
19887
19887
|
tableName: "tools";
|
|
@@ -20270,7 +20270,6 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20270
20270
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20271
20271
|
tenantId: z.ZodString;
|
|
20272
20272
|
projectId: z.ZodString;
|
|
20273
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20274
20273
|
config: z.ZodObject<{
|
|
20275
20274
|
type: z.ZodLiteral<"mcp">;
|
|
20276
20275
|
mcp: z.ZodObject<{
|
|
@@ -20297,6 +20296,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
20297
20296
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20298
20297
|
}, z.core.$strip>;
|
|
20299
20298
|
}, z.core.$strip>;
|
|
20299
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20300
20300
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20301
20301
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
20302
20302
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20391,7 +20391,6 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20391
20391
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
20392
20392
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
20393
20393
|
projectId: z.ZodOptional<z.ZodString>;
|
|
20394
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20395
20394
|
config: z.ZodOptional<z.ZodObject<{
|
|
20396
20395
|
type: z.ZodLiteral<"mcp">;
|
|
20397
20396
|
mcp: z.ZodObject<{
|
|
@@ -20418,6 +20417,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
20418
20417
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20419
20418
|
}, z.core.$strip>;
|
|
20420
20419
|
}, z.core.$strip>>;
|
|
20420
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20421
20421
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20422
20422
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20423
20423
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>;
|
|
@@ -20434,7 +20434,6 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20434
20434
|
updatedAt: z.ZodString;
|
|
20435
20435
|
description: z.ZodNullable<z.ZodString>;
|
|
20436
20436
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20437
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
20438
20437
|
config: z.ZodType<{
|
|
20439
20438
|
type: "mcp";
|
|
20440
20439
|
mcp: ToolMcpConfig;
|
|
@@ -20448,6 +20447,7 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
20448
20447
|
type: "mcp";
|
|
20449
20448
|
mcp: ToolMcpConfig;
|
|
20450
20449
|
}>>;
|
|
20450
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
20451
20451
|
credentialScope: z.ZodString;
|
|
20452
20452
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
20453
20453
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -20459,7 +20459,6 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20459
20459
|
name: z.ZodString;
|
|
20460
20460
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20461
20461
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20462
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20463
20462
|
config: z.ZodObject<{
|
|
20464
20463
|
type: z.ZodLiteral<"mcp">;
|
|
20465
20464
|
mcp: z.ZodObject<{
|
|
@@ -20486,6 +20485,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
20486
20485
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20487
20486
|
}, z.core.$strip>;
|
|
20488
20487
|
}, z.core.$strip>;
|
|
20488
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20489
20489
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
20490
20490
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
20491
20491
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -20497,7 +20497,6 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20497
20497
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20498
20498
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20499
20499
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20500
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20501
20500
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20502
20501
|
type: z.ZodLiteral<"mcp">;
|
|
20503
20502
|
mcp: z.ZodObject<{
|
|
@@ -20524,13 +20523,14 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
20524
20523
|
prompt: z.ZodOptional<z.ZodString>;
|
|
20525
20524
|
}, z.core.$strip>;
|
|
20526
20525
|
}, z.core.$strip>>>;
|
|
20526
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20527
20527
|
credentialScope: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20528
20528
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20529
20529
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
20530
20530
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20531
20531
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
20532
20532
|
}, z.core.$strip>;
|
|
20533
|
-
declare const FunctionToolSelectSchema:
|
|
20533
|
+
declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20534
20534
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20535
20535
|
name: "created_at";
|
|
20536
20536
|
tableName: "function_tools";
|
|
@@ -20696,7 +20696,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
20696
20696
|
}, {}, {
|
|
20697
20697
|
length: 256;
|
|
20698
20698
|
}>;
|
|
20699
|
-
},
|
|
20699
|
+
}, drizzle_zod15.BuildRefine<{
|
|
20700
20700
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20701
20701
|
name: "created_at";
|
|
20702
20702
|
tableName: "function_tools";
|
|
@@ -20910,7 +20910,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
20910
20910
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20911
20911
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20912
20912
|
}, z.core.$strip>;
|
|
20913
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
20913
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
20914
20914
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
20915
20915
|
name: "created_at";
|
|
20916
20916
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -21082,7 +21082,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
21082
21082
|
}, {}, {
|
|
21083
21083
|
length: 256;
|
|
21084
21084
|
}>;
|
|
21085
|
-
},
|
|
21085
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21086
21086
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21087
21087
|
name: "created_at";
|
|
21088
21088
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -21258,7 +21258,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
|
|
|
21258
21258
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
21259
21259
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21260
21260
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21261
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
21261
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21262
21262
|
agentId: z.ZodString;
|
|
21263
21263
|
projectId: z.ZodString;
|
|
21264
21264
|
tenantId: z.ZodString;
|
|
@@ -21274,18 +21274,18 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
21274
21274
|
createdAt: z.ZodString;
|
|
21275
21275
|
updatedAt: z.ZodString;
|
|
21276
21276
|
subAgentId: z.ZodString;
|
|
21277
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21278
21277
|
functionToolId: z.ZodString;
|
|
21278
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21279
21279
|
}, z.core.$strip>;
|
|
21280
21280
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
21281
21281
|
subAgentId: z.ZodString;
|
|
21282
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
21283
21282
|
functionToolId: z.ZodString;
|
|
21283
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
21284
21284
|
}, {
|
|
21285
21285
|
out: {};
|
|
21286
21286
|
in: {};
|
|
21287
21287
|
}>;
|
|
21288
|
-
declare const FunctionSelectSchema:
|
|
21288
|
+
declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
21289
21289
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21290
21290
|
name: "created_at";
|
|
21291
21291
|
tableName: "functions";
|
|
@@ -21432,7 +21432,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
21432
21432
|
}, {}, {
|
|
21433
21433
|
length: 256;
|
|
21434
21434
|
}>;
|
|
21435
|
-
},
|
|
21435
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21436
21436
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21437
21437
|
name: "created_at";
|
|
21438
21438
|
tableName: "functions";
|
|
@@ -21611,22 +21611,22 @@ declare const FunctionApiSelectSchema: z.ZodObject<{
|
|
|
21611
21611
|
createdAt: z.ZodString;
|
|
21612
21612
|
updatedAt: z.ZodString;
|
|
21613
21613
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
21614
|
-
executeCode: z.ZodString;
|
|
21615
21614
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
21615
|
+
executeCode: z.ZodString;
|
|
21616
21616
|
}, z.core.$strip>;
|
|
21617
21617
|
declare const FunctionApiInsertSchema: z.ZodObject<{
|
|
21618
21618
|
id: z.ZodString;
|
|
21619
21619
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21620
|
-
executeCode: z.ZodString;
|
|
21621
21620
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21621
|
+
executeCode: z.ZodString;
|
|
21622
21622
|
}, z.core.$strip>;
|
|
21623
21623
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
21624
21624
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21625
21625
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21626
21626
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21627
21627
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21628
|
-
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21629
21628
|
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21629
|
+
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21630
21630
|
}, z.core.$strip>;
|
|
21631
21631
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
21632
21632
|
url: z.ZodString;
|
|
@@ -21735,7 +21735,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
21735
21735
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21736
21736
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
21737
21737
|
}, z.core.$strip>;
|
|
21738
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
21738
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
21739
21739
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21740
21740
|
name: "created_at";
|
|
21741
21741
|
tableName: "sub_agent_tool_relations";
|
|
@@ -21945,7 +21945,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
|
|
|
21945
21945
|
}, {}, {
|
|
21946
21946
|
length: 256;
|
|
21947
21947
|
}>;
|
|
21948
|
-
},
|
|
21948
|
+
}, drizzle_zod15.BuildRefine<{
|
|
21949
21949
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
21950
21950
|
name: "created_at";
|
|
21951
21951
|
tableName: "sub_agent_tool_relations";
|
|
@@ -22196,11 +22196,11 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
22196
22196
|
id: z.ZodString;
|
|
22197
22197
|
createdAt: z.ZodString;
|
|
22198
22198
|
updatedAt: z.ZodString;
|
|
22199
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22199
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22200
22200
|
subAgentId: z.ZodString;
|
|
22201
22201
|
toolId: z.ZodString;
|
|
22202
|
-
|
|
22203
|
-
|
|
22202
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22203
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22204
22204
|
}, z.core.$strip>;
|
|
22205
22205
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
22206
22206
|
id: z.ZodString;
|
|
@@ -22209,10 +22209,10 @@ declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
|
22209
22209
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
22210
22210
|
subAgentId: z.ZodString;
|
|
22211
22211
|
toolId: z.ZodString;
|
|
22212
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
22213
22212
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22214
22213
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22215
22214
|
}, z.core.$strip>>>>;
|
|
22215
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
22216
22216
|
}, z.core.$strip>;
|
|
22217
22217
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
22218
22218
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22221,12 +22221,12 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22221
22221
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22222
22222
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22223
22223
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22224
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22225
22224
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22226
22225
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
22227
22226
|
}, z.core.$strip>>>>>>;
|
|
22227
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
22228
22228
|
}, z.core.$strip>;
|
|
22229
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
22229
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
22230
22230
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22231
22231
|
name: "created_at";
|
|
22232
22232
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22394,7 +22394,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
|
|
|
22394
22394
|
}, {}, {
|
|
22395
22395
|
length: 256;
|
|
22396
22396
|
}>;
|
|
22397
|
-
},
|
|
22397
|
+
}, drizzle_zod15.BuildRefine<{
|
|
22398
22398
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22399
22399
|
name: "created_at";
|
|
22400
22400
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -22595,7 +22595,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
22595
22595
|
id: z.ZodString;
|
|
22596
22596
|
createdAt: z.ZodString;
|
|
22597
22597
|
updatedAt: z.ZodString;
|
|
22598
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22598
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22599
22599
|
subAgentId: z.ZodString;
|
|
22600
22600
|
externalAgentId: z.ZodString;
|
|
22601
22601
|
}, z.core.$strip>;
|
|
@@ -22613,7 +22613,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22613
22613
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22614
22614
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22615
22615
|
}, z.core.$strip>;
|
|
22616
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
22616
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
22617
22617
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22618
22618
|
name: "created_at";
|
|
22619
22619
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -22781,7 +22781,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
22781
22781
|
}, {}, {
|
|
22782
22782
|
length: 256;
|
|
22783
22783
|
}>;
|
|
22784
|
-
},
|
|
22784
|
+
}, drizzle_zod15.BuildRefine<{
|
|
22785
22785
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
22786
22786
|
name: "created_at";
|
|
22787
22787
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -22982,7 +22982,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
22982
22982
|
id: z.ZodString;
|
|
22983
22983
|
createdAt: z.ZodString;
|
|
22984
22984
|
updatedAt: z.ZodString;
|
|
22985
|
-
headers: z.ZodNullable<z.ZodType<
|
|
22985
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22986
22986
|
subAgentId: z.ZodString;
|
|
22987
22987
|
targetAgentId: z.ZodString;
|
|
22988
22988
|
}, z.core.$strip>;
|
|
@@ -23000,7 +23000,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
23000
23000
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23001
23001
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23002
23002
|
}, z.core.$strip>;
|
|
23003
|
-
declare const LedgerArtifactSelectSchema:
|
|
23003
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
23004
23004
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23005
23005
|
name: "created_at";
|
|
23006
23006
|
tableName: "ledger_artifacts";
|
|
@@ -23335,7 +23335,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
23335
23335
|
}, {}, {
|
|
23336
23336
|
length: 256;
|
|
23337
23337
|
}>;
|
|
23338
|
-
},
|
|
23338
|
+
}, drizzle_zod15.BuildRefine<{
|
|
23339
23339
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23340
23340
|
name: "created_at";
|
|
23341
23341
|
tableName: "ledger_artifacts";
|
|
@@ -23671,7 +23671,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
23671
23671
|
length: 256;
|
|
23672
23672
|
}>;
|
|
23673
23673
|
}, undefined>, undefined>;
|
|
23674
|
-
declare const LedgerArtifactInsertSchema:
|
|
23674
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
23675
23675
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
23676
23676
|
name: "created_at";
|
|
23677
23677
|
tableName: "ledger_artifacts";
|
|
@@ -24006,7 +24006,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24006
24006
|
}, {}, {
|
|
24007
24007
|
length: 256;
|
|
24008
24008
|
}>;
|
|
24009
|
-
},
|
|
24009
|
+
}, drizzle_zod15.BuildRefine<Pick<{
|
|
24010
24010
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
24011
24011
|
name: "created_at";
|
|
24012
24012
|
tableName: "ledger_artifacts";
|
|
@@ -24341,7 +24341,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24341
24341
|
}, {}, {
|
|
24342
24342
|
length: 256;
|
|
24343
24343
|
}>;
|
|
24344
|
-
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "
|
|
24344
|
+
}, "type" | "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24345
24345
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24346
24346
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24347
24347
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24351,12 +24351,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
24351
24351
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24352
24352
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24353
24353
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24354
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24355
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24354
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
24355
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
24356
24356
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24357
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24357
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
24358
24358
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24359
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24359
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
|
|
24360
24360
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24361
24361
|
projectId: z.ZodOptional<z.ZodString>;
|
|
24362
24362
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -24371,16 +24371,16 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
24371
24371
|
name: z.ZodNullable<z.ZodString>;
|
|
24372
24372
|
createdAt: z.ZodString;
|
|
24373
24373
|
updatedAt: z.ZodString;
|
|
24374
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
24374
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24375
24375
|
description: z.ZodNullable<z.ZodString>;
|
|
24376
|
-
toolCallId: z.ZodNullable<z.ZodString>;
|
|
24377
24376
|
contextId: z.ZodString;
|
|
24378
24377
|
visibility: z.ZodNullable<z.ZodString>;
|
|
24379
24378
|
taskId: z.ZodString;
|
|
24380
|
-
|
|
24379
|
+
toolCallId: z.ZodNullable<z.ZodString>;
|
|
24380
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24381
24381
|
summary: z.ZodNullable<z.ZodString>;
|
|
24382
|
-
mime: z.ZodNullable<z.ZodType<
|
|
24383
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
24382
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24383
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
24384
24384
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
24385
24385
|
}, z.core.$strip>;
|
|
24386
24386
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
@@ -24389,16 +24389,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
24389
24389
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24390
24390
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
24391
24391
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
24392
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24392
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24393
24393
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24394
|
-
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24395
24394
|
contextId: z.ZodString;
|
|
24396
24395
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24397
24396
|
taskId: z.ZodString;
|
|
24398
|
-
|
|
24397
|
+
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24398
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24399
24399
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24400
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24401
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24400
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24401
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24402
24402
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24403
24403
|
}, z.core.$strip>;
|
|
24404
24404
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
@@ -24407,16 +24407,16 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
|
24407
24407
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24408
24408
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24409
24409
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24410
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24410
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24411
24411
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24412
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24413
24412
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24414
24413
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24415
24414
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24416
|
-
|
|
24415
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24416
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24417
24417
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24418
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24419
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24418
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24419
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
24420
24420
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24421
24421
|
}, z.core.$strip>;
|
|
24422
24422
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -24611,7 +24611,6 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24611
24611
|
name: z.ZodString;
|
|
24612
24612
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24613
24613
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24614
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24615
24614
|
config: z.ZodObject<{
|
|
24616
24615
|
type: z.ZodLiteral<"mcp">;
|
|
24617
24616
|
mcp: z.ZodObject<{
|
|
@@ -24638,6 +24637,7 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24638
24637
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24639
24638
|
}, z.core.$strip>;
|
|
24640
24639
|
}, z.core.$strip>;
|
|
24640
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24641
24641
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24642
24642
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24643
24643
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -24648,8 +24648,8 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24648
24648
|
id: z.ZodString;
|
|
24649
24649
|
name: z.ZodString;
|
|
24650
24650
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24651
|
-
baseUrl: z.ZodURL;
|
|
24652
24651
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24652
|
+
baseUrl: z.ZodURL;
|
|
24653
24653
|
}, z.core.$strip>>>;
|
|
24654
24654
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24655
24655
|
id: z.ZodString;
|
|
@@ -24665,20 +24665,20 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
24665
24665
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24666
24666
|
id: z.ZodString;
|
|
24667
24667
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24668
|
-
executeCode: z.ZodString;
|
|
24669
24668
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24669
|
+
executeCode: z.ZodString;
|
|
24670
24670
|
}, z.core.$strip>>>;
|
|
24671
24671
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24672
24672
|
id: z.ZodOptional<z.ZodString>;
|
|
24673
24673
|
name: z.ZodString;
|
|
24674
24674
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24675
24675
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24676
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24677
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24676
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24677
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24678
24678
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24679
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24679
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24680
24680
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24681
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24681
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24682
24682
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24683
24683
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
24684
24684
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24800,7 +24800,6 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24800
24800
|
name: z.ZodString;
|
|
24801
24801
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24802
24802
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24803
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24804
24803
|
config: z.ZodObject<{
|
|
24805
24804
|
type: z.ZodLiteral<"mcp">;
|
|
24806
24805
|
mcp: z.ZodObject<{
|
|
@@ -24827,6 +24826,7 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24827
24826
|
prompt: z.ZodOptional<z.ZodString>;
|
|
24828
24827
|
}, z.core.$strip>;
|
|
24829
24828
|
}, z.core.$strip>;
|
|
24829
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24830
24830
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
24831
24831
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
24832
24832
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -24837,8 +24837,8 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24837
24837
|
id: z.ZodString;
|
|
24838
24838
|
name: z.ZodString;
|
|
24839
24839
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24840
|
-
baseUrl: z.ZodURL;
|
|
24841
24840
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24841
|
+
baseUrl: z.ZodURL;
|
|
24842
24842
|
}, z.core.$strip>>>;
|
|
24843
24843
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24844
24844
|
id: z.ZodString;
|
|
@@ -24854,20 +24854,20 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
24854
24854
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24855
24855
|
id: z.ZodString;
|
|
24856
24856
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24857
|
-
executeCode: z.ZodString;
|
|
24858
24857
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24858
|
+
executeCode: z.ZodString;
|
|
24859
24859
|
}, z.core.$strip>>>;
|
|
24860
24860
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24861
24861
|
id: z.ZodOptional<z.ZodString>;
|
|
24862
24862
|
name: z.ZodString;
|
|
24863
24863
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24864
24864
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24865
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24866
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24865
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24866
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24867
24867
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24868
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24868
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24869
24869
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24870
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24870
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
24871
24871
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24872
24872
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
24873
24873
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25237,7 +25237,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25237
25237
|
name: z.ZodString;
|
|
25238
25238
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25239
25239
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25240
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25241
25240
|
config: z.ZodObject<{
|
|
25242
25241
|
type: z.ZodLiteral<"mcp">;
|
|
25243
25242
|
mcp: z.ZodObject<{
|
|
@@ -25264,6 +25263,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25264
25263
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25265
25264
|
}, z.core.$strip>;
|
|
25266
25265
|
}, z.core.$strip>;
|
|
25266
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25267
25267
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25268
25268
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25269
25269
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25274,8 +25274,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25274
25274
|
id: z.ZodString;
|
|
25275
25275
|
name: z.ZodString;
|
|
25276
25276
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25277
|
-
baseUrl: z.ZodURL;
|
|
25278
25277
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25278
|
+
baseUrl: z.ZodURL;
|
|
25279
25279
|
}, z.core.$strip>>>;
|
|
25280
25280
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25281
25281
|
id: z.ZodString;
|
|
@@ -25291,20 +25291,20 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25291
25291
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25292
25292
|
id: z.ZodString;
|
|
25293
25293
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25294
|
-
executeCode: z.ZodString;
|
|
25295
25294
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25295
|
+
executeCode: z.ZodString;
|
|
25296
25296
|
}, z.core.$strip>>>;
|
|
25297
25297
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25298
25298
|
id: z.ZodOptional<z.ZodString>;
|
|
25299
25299
|
name: z.ZodString;
|
|
25300
25300
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25301
25301
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
25302
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25303
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25302
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25303
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25304
25304
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25305
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25305
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25306
25306
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25307
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
25307
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
25308
25308
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25309
25309
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
25310
25310
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -25360,7 +25360,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25360
25360
|
name: z.ZodString;
|
|
25361
25361
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25362
25362
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25363
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25364
25363
|
config: z.ZodObject<{
|
|
25365
25364
|
type: z.ZodLiteral<"mcp">;
|
|
25366
25365
|
mcp: z.ZodObject<{
|
|
@@ -25387,6 +25386,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25387
25386
|
prompt: z.ZodOptional<z.ZodString>;
|
|
25388
25387
|
}, z.core.$strip>;
|
|
25389
25388
|
}, z.core.$strip>;
|
|
25389
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25390
25390
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
25391
25391
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
25392
25392
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -25402,8 +25402,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25402
25402
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25403
25403
|
id: z.ZodString;
|
|
25404
25404
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25405
|
-
executeCode: z.ZodString;
|
|
25406
25405
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
25406
|
+
executeCode: z.ZodString;
|
|
25407
25407
|
}, z.core.$strip>>>;
|
|
25408
25408
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
25409
25409
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -25491,8 +25491,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25491
25491
|
id: z.ZodString;
|
|
25492
25492
|
name: z.ZodString;
|
|
25493
25493
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25494
|
-
baseUrl: z.ZodURL;
|
|
25495
25494
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25495
|
+
baseUrl: z.ZodURL;
|
|
25496
25496
|
}, z.core.$strip>>>;
|
|
25497
25497
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
25498
25498
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25903,7 +25903,6 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25903
25903
|
updatedAt: z.ZodString;
|
|
25904
25904
|
description: z.ZodNullable<z.ZodString>;
|
|
25905
25905
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25906
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25907
25906
|
config: z.ZodType<{
|
|
25908
25907
|
type: "mcp";
|
|
25909
25908
|
mcp: ToolMcpConfig;
|
|
@@ -25917,6 +25916,7 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25917
25916
|
type: "mcp";
|
|
25918
25917
|
mcp: ToolMcpConfig;
|
|
25919
25918
|
}>>;
|
|
25919
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
25920
25920
|
credentialScope: z.ZodString;
|
|
25921
25921
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
25922
25922
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -25929,8 +25929,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25929
25929
|
createdAt: z.ZodString;
|
|
25930
25930
|
updatedAt: z.ZodString;
|
|
25931
25931
|
description: z.ZodNullable<z.ZodString>;
|
|
25932
|
-
baseUrl: z.ZodString;
|
|
25933
25932
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25933
|
+
baseUrl: z.ZodString;
|
|
25934
25934
|
}, z.core.$strip>>>;
|
|
25935
25935
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25936
25936
|
id: z.ZodString;
|
|
@@ -25952,8 +25952,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25952
25952
|
createdAt: z.ZodString;
|
|
25953
25953
|
updatedAt: z.ZodString;
|
|
25954
25954
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25955
|
-
executeCode: z.ZodString;
|
|
25956
25955
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25956
|
+
executeCode: z.ZodString;
|
|
25957
25957
|
}, z.core.$strip>>>;
|
|
25958
25958
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25959
25959
|
id: z.ZodString;
|
|
@@ -26018,7 +26018,6 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26018
26018
|
updatedAt: z.ZodString;
|
|
26019
26019
|
description: z.ZodNullable<z.ZodString>;
|
|
26020
26020
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26021
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26022
26021
|
config: z.ZodType<{
|
|
26023
26022
|
type: "mcp";
|
|
26024
26023
|
mcp: ToolMcpConfig;
|
|
@@ -26032,6 +26031,7 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26032
26031
|
type: "mcp";
|
|
26033
26032
|
mcp: ToolMcpConfig;
|
|
26034
26033
|
}>>;
|
|
26034
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26035
26035
|
credentialScope: z.ZodString;
|
|
26036
26036
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26037
26037
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26044,8 +26044,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26044
26044
|
createdAt: z.ZodString;
|
|
26045
26045
|
updatedAt: z.ZodString;
|
|
26046
26046
|
description: z.ZodNullable<z.ZodString>;
|
|
26047
|
-
baseUrl: z.ZodString;
|
|
26048
26047
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26048
|
+
baseUrl: z.ZodString;
|
|
26049
26049
|
}, z.core.$strip>>>;
|
|
26050
26050
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26051
26051
|
id: z.ZodString;
|
|
@@ -26067,8 +26067,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
26067
26067
|
createdAt: z.ZodString;
|
|
26068
26068
|
updatedAt: z.ZodString;
|
|
26069
26069
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26070
|
-
executeCode: z.ZodString;
|
|
26071
26070
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26071
|
+
executeCode: z.ZodString;
|
|
26072
26072
|
}, z.core.$strip>>>;
|
|
26073
26073
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26074
26074
|
id: z.ZodString;
|
|
@@ -26403,7 +26403,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26403
26403
|
updatedAt: z.ZodString;
|
|
26404
26404
|
description: z.ZodNullable<z.ZodString>;
|
|
26405
26405
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26406
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26407
26406
|
config: z.ZodType<{
|
|
26408
26407
|
type: "mcp";
|
|
26409
26408
|
mcp: ToolMcpConfig;
|
|
@@ -26417,6 +26416,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26417
26416
|
type: "mcp";
|
|
26418
26417
|
mcp: ToolMcpConfig;
|
|
26419
26418
|
}>>;
|
|
26419
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26420
26420
|
credentialScope: z.ZodString;
|
|
26421
26421
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26422
26422
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26429,8 +26429,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26429
26429
|
createdAt: z.ZodString;
|
|
26430
26430
|
updatedAt: z.ZodString;
|
|
26431
26431
|
description: z.ZodNullable<z.ZodString>;
|
|
26432
|
-
baseUrl: z.ZodString;
|
|
26433
26432
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26433
|
+
baseUrl: z.ZodString;
|
|
26434
26434
|
}, z.core.$strip>>>;
|
|
26435
26435
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26436
26436
|
id: z.ZodString;
|
|
@@ -26452,8 +26452,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26452
26452
|
createdAt: z.ZodString;
|
|
26453
26453
|
updatedAt: z.ZodString;
|
|
26454
26454
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26455
|
-
executeCode: z.ZodString;
|
|
26456
26455
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26456
|
+
executeCode: z.ZodString;
|
|
26457
26457
|
}, z.core.$strip>>>;
|
|
26458
26458
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
26459
26459
|
id: z.ZodString;
|
|
@@ -26509,7 +26509,6 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26509
26509
|
updatedAt: z.ZodString;
|
|
26510
26510
|
description: z.ZodNullable<z.ZodString>;
|
|
26511
26511
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26512
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26513
26512
|
config: z.ZodType<{
|
|
26514
26513
|
type: "mcp";
|
|
26515
26514
|
mcp: ToolMcpConfig;
|
|
@@ -26523,6 +26522,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26523
26522
|
type: "mcp";
|
|
26524
26523
|
mcp: ToolMcpConfig;
|
|
26525
26524
|
}>>;
|
|
26525
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
26526
26526
|
credentialScope: z.ZodString;
|
|
26527
26527
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
26528
26528
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -26544,8 +26544,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26544
26544
|
createdAt: z.ZodString;
|
|
26545
26545
|
updatedAt: z.ZodString;
|
|
26546
26546
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26547
|
-
executeCode: z.ZodString;
|
|
26548
26547
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26548
|
+
executeCode: z.ZodString;
|
|
26549
26549
|
}, z.core.$strip>>>;
|
|
26550
26550
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26551
26551
|
id: z.ZodString;
|
|
@@ -26651,8 +26651,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26651
26651
|
createdAt: z.ZodString;
|
|
26652
26652
|
updatedAt: z.ZodString;
|
|
26653
26653
|
description: z.ZodNullable<z.ZodString>;
|
|
26654
|
-
baseUrl: z.ZodString;
|
|
26655
26654
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26655
|
+
baseUrl: z.ZodString;
|
|
26656
26656
|
}, z.core.$strip>>>;
|
|
26657
26657
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
26658
26658
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26685,7 +26685,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26685
26685
|
readonly nango: "nango";
|
|
26686
26686
|
readonly composio: "composio";
|
|
26687
26687
|
}>;
|
|
26688
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26688
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
26689
26689
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
26690
26690
|
name: "created_at";
|
|
26691
26691
|
tableName: "tools";
|
|
@@ -26965,7 +26965,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26965
26965
|
}, {}, {
|
|
26966
26966
|
length: 256;
|
|
26967
26967
|
}>;
|
|
26968
|
-
},
|
|
26968
|
+
}, drizzle_zod15.BuildRefine<{
|
|
26969
26969
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
26970
26970
|
name: "created_at";
|
|
26971
26971
|
tableName: "tools";
|
|
@@ -27302,7 +27302,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27302
27302
|
updatedAt: z.ZodString;
|
|
27303
27303
|
description: z.ZodNullable<z.ZodString>;
|
|
27304
27304
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27305
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27306
27305
|
config: z.ZodType<{
|
|
27307
27306
|
type: "mcp";
|
|
27308
27307
|
mcp: ToolMcpConfig;
|
|
@@ -27316,6 +27315,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27316
27315
|
type: "mcp";
|
|
27317
27316
|
mcp: ToolMcpConfig;
|
|
27318
27317
|
}>>;
|
|
27318
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
27319
27319
|
credentialScope: z.ZodString;
|
|
27320
27320
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
27321
27321
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -27337,8 +27337,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27337
27337
|
createdAt: z.ZodString;
|
|
27338
27338
|
updatedAt: z.ZodString;
|
|
27339
27339
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27340
|
-
executeCode: z.ZodString;
|
|
27341
27340
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27341
|
+
executeCode: z.ZodString;
|
|
27342
27342
|
}, z.core.$strip>>>;
|
|
27343
27343
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27344
27344
|
id: z.ZodString;
|
|
@@ -27444,8 +27444,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27444
27444
|
createdAt: z.ZodString;
|
|
27445
27445
|
updatedAt: z.ZodString;
|
|
27446
27446
|
description: z.ZodNullable<z.ZodString>;
|
|
27447
|
-
baseUrl: z.ZodString;
|
|
27448
27447
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27448
|
+
baseUrl: z.ZodString;
|
|
27449
27449
|
}, z.core.$strip>>>;
|
|
27450
27450
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
27451
27451
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27478,7 +27478,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27478
27478
|
readonly nango: "nango";
|
|
27479
27479
|
readonly composio: "composio";
|
|
27480
27480
|
}>;
|
|
27481
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27481
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
27482
27482
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
27483
27483
|
name: "created_at";
|
|
27484
27484
|
tableName: "tools";
|
|
@@ -27758,7 +27758,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27758
27758
|
}, {}, {
|
|
27759
27759
|
length: 256;
|
|
27760
27760
|
}>;
|
|
27761
|
-
},
|
|
27761
|
+
}, drizzle_zod15.BuildRefine<{
|
|
27762
27762
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
27763
27763
|
name: "created_at";
|
|
27764
27764
|
tableName: "tools";
|
|
@@ -28070,7 +28070,6 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28070
28070
|
updatedAt: z.ZodString;
|
|
28071
28071
|
description: z.ZodNullable<z.ZodString>;
|
|
28072
28072
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28073
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28074
28073
|
config: z.ZodType<{
|
|
28075
28074
|
type: "mcp";
|
|
28076
28075
|
mcp: ToolMcpConfig;
|
|
@@ -28084,6 +28083,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28084
28083
|
type: "mcp";
|
|
28085
28084
|
mcp: ToolMcpConfig;
|
|
28086
28085
|
}>>;
|
|
28086
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
28087
28087
|
credentialScope: z.ZodString;
|
|
28088
28088
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
28089
28089
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -28096,8 +28096,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28096
28096
|
createdAt: z.ZodString;
|
|
28097
28097
|
updatedAt: z.ZodString;
|
|
28098
28098
|
description: z.ZodNullable<z.ZodString>;
|
|
28099
|
-
baseUrl: z.ZodString;
|
|
28100
28099
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28100
|
+
baseUrl: z.ZodString;
|
|
28101
28101
|
}, z.core.$strip>>>;
|
|
28102
28102
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28103
28103
|
id: z.ZodString;
|
|
@@ -28119,8 +28119,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
28119
28119
|
createdAt: z.ZodString;
|
|
28120
28120
|
updatedAt: z.ZodString;
|
|
28121
28121
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28122
|
-
executeCode: z.ZodString;
|
|
28123
28122
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28123
|
+
executeCode: z.ZodString;
|
|
28124
28124
|
}, z.core.$strip>>>;
|
|
28125
28125
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
28126
28126
|
id: z.ZodString;
|
|
@@ -28437,6 +28437,8 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28437
28437
|
updatedAt: z.ZodString;
|
|
28438
28438
|
description: z.ZodNullable<z.ZodString>;
|
|
28439
28439
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28440
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28441
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28440
28442
|
models: z.ZodNullable<z.ZodType<{
|
|
28441
28443
|
base?: {
|
|
28442
28444
|
model?: string | undefined;
|
|
@@ -28514,17 +28516,6 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28514
28516
|
allowedProviders?: string[] | undefined;
|
|
28515
28517
|
} | undefined;
|
|
28516
28518
|
}>>>;
|
|
28517
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
28518
|
-
transferCountIs?: number | undefined;
|
|
28519
|
-
}, {
|
|
28520
|
-
transferCountIs?: number | undefined;
|
|
28521
|
-
}, z.core.$ZodTypeInternals<{
|
|
28522
|
-
transferCountIs?: number | undefined;
|
|
28523
|
-
}, {
|
|
28524
|
-
transferCountIs?: number | undefined;
|
|
28525
|
-
}>>>;
|
|
28526
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28527
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28528
28519
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
28529
28520
|
enabled?: boolean | undefined;
|
|
28530
28521
|
numEvents?: number | undefined;
|
|
@@ -28582,6 +28573,15 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
28582
28573
|
} | undefined;
|
|
28583
28574
|
}[] | undefined;
|
|
28584
28575
|
}>>>;
|
|
28576
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
28577
|
+
transferCountIs?: number | undefined;
|
|
28578
|
+
}, {
|
|
28579
|
+
transferCountIs?: number | undefined;
|
|
28580
|
+
}, z.core.$ZodTypeInternals<{
|
|
28581
|
+
transferCountIs?: number | undefined;
|
|
28582
|
+
}, {
|
|
28583
|
+
transferCountIs?: number | undefined;
|
|
28584
|
+
}>>>;
|
|
28585
28585
|
executionMode: z.ZodString;
|
|
28586
28586
|
}, z.core.$strip>;
|
|
28587
28587
|
}, z.core.$strip>;
|
|
@@ -28592,8 +28592,8 @@ declare const ExternalAgentResponse: z.ZodObject<{
|
|
|
28592
28592
|
createdAt: z.ZodString;
|
|
28593
28593
|
updatedAt: z.ZodString;
|
|
28594
28594
|
description: z.ZodNullable<z.ZodString>;
|
|
28595
|
-
baseUrl: z.ZodString;
|
|
28596
28595
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28596
|
+
baseUrl: z.ZodString;
|
|
28597
28597
|
}, z.core.$strip>;
|
|
28598
28598
|
}, z.core.$strip>;
|
|
28599
28599
|
declare const ContextConfigResponse: z.ZodObject<{
|
|
@@ -28638,7 +28638,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28638
28638
|
readonly nango: "nango";
|
|
28639
28639
|
readonly composio: "composio";
|
|
28640
28640
|
}>;
|
|
28641
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28641
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
28642
28642
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
28643
28643
|
name: "created_at";
|
|
28644
28644
|
tableName: "tools";
|
|
@@ -28918,7 +28918,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28918
28918
|
}, {}, {
|
|
28919
28919
|
length: 256;
|
|
28920
28920
|
}>;
|
|
28921
|
-
},
|
|
28921
|
+
}, drizzle_zod15.BuildRefine<{
|
|
28922
28922
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
28923
28923
|
name: "created_at";
|
|
28924
28924
|
tableName: "tools";
|
|
@@ -29221,8 +29221,8 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
29221
29221
|
createdAt: z.ZodString;
|
|
29222
29222
|
updatedAt: z.ZodString;
|
|
29223
29223
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29224
|
-
executeCode: z.ZodString;
|
|
29225
29224
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29225
|
+
executeCode: z.ZodString;
|
|
29226
29226
|
}, z.core.$strip>;
|
|
29227
29227
|
}, z.core.$strip>;
|
|
29228
29228
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
@@ -29243,8 +29243,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
29243
29243
|
createdAt: z.ZodString;
|
|
29244
29244
|
updatedAt: z.ZodString;
|
|
29245
29245
|
subAgentId: z.ZodString;
|
|
29246
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29247
29246
|
functionToolId: z.ZodString;
|
|
29247
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29248
29248
|
}, z.core.$strip>;
|
|
29249
29249
|
}, z.core.$strip>;
|
|
29250
29250
|
declare const DataComponentResponse: z.ZodObject<{
|
|
@@ -29364,11 +29364,11 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
29364
29364
|
id: z.ZodString;
|
|
29365
29365
|
createdAt: z.ZodString;
|
|
29366
29366
|
updatedAt: z.ZodString;
|
|
29367
|
-
headers: z.ZodNullable<z.ZodType<
|
|
29367
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29368
29368
|
subAgentId: z.ZodString;
|
|
29369
29369
|
toolId: z.ZodString;
|
|
29370
|
-
|
|
29371
|
-
|
|
29370
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29371
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29372
29372
|
}, z.core.$strip>;
|
|
29373
29373
|
}, z.core.$strip>;
|
|
29374
29374
|
declare const TriggerResponse: z.ZodObject<{
|
|
@@ -29379,22 +29379,22 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
29379
29379
|
updatedAt: z.ZodString;
|
|
29380
29380
|
description: z.ZodNullable<z.ZodString>;
|
|
29381
29381
|
enabled: z.ZodBoolean;
|
|
29382
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
29383
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
29382
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29383
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29384
29384
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29385
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
29385
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29386
29386
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29387
29387
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29388
29388
|
algorithm: z.ZodEnum<{
|
|
29389
|
+
md5: "md5";
|
|
29389
29390
|
sha256: "sha256";
|
|
29390
29391
|
sha512: "sha512";
|
|
29391
29392
|
sha384: "sha384";
|
|
29392
29393
|
sha1: "sha1";
|
|
29393
|
-
md5: "md5";
|
|
29394
29394
|
}>;
|
|
29395
29395
|
encoding: z.ZodEnum<{
|
|
29396
|
-
hex: "hex";
|
|
29397
29396
|
base64: "base64";
|
|
29397
|
+
hex: "hex";
|
|
29398
29398
|
}>;
|
|
29399
29399
|
signature: z.ZodObject<{
|
|
29400
29400
|
source: z.ZodEnum<{
|
|
@@ -29452,8 +29452,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
29452
29452
|
triggerId: z.ZodString;
|
|
29453
29453
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29454
29454
|
batchId: z.ZodNullable<z.ZodString>;
|
|
29455
|
-
requestPayload: z.ZodType<
|
|
29456
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
29455
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
29456
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29457
29457
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
29458
29458
|
}, z.core.$strip>;
|
|
29459
29459
|
}, z.core.$strip>;
|
|
@@ -29621,6 +29621,8 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29621
29621
|
updatedAt: z.ZodString;
|
|
29622
29622
|
description: z.ZodNullable<z.ZodString>;
|
|
29623
29623
|
prompt: z.ZodNullable<z.ZodString>;
|
|
29624
|
+
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29625
|
+
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29624
29626
|
models: z.ZodNullable<z.ZodType<{
|
|
29625
29627
|
base?: {
|
|
29626
29628
|
model?: string | undefined;
|
|
@@ -29698,17 +29700,6 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29698
29700
|
allowedProviders?: string[] | undefined;
|
|
29699
29701
|
} | undefined;
|
|
29700
29702
|
}>>>;
|
|
29701
|
-
stopWhen: z.ZodNullable<z.ZodType<{
|
|
29702
|
-
transferCountIs?: number | undefined;
|
|
29703
|
-
}, {
|
|
29704
|
-
transferCountIs?: number | undefined;
|
|
29705
|
-
}, z.core.$ZodTypeInternals<{
|
|
29706
|
-
transferCountIs?: number | undefined;
|
|
29707
|
-
}, {
|
|
29708
|
-
transferCountIs?: number | undefined;
|
|
29709
|
-
}>>>;
|
|
29710
|
-
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
29711
|
-
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
29712
29703
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
29713
29704
|
enabled?: boolean | undefined;
|
|
29714
29705
|
numEvents?: number | undefined;
|
|
@@ -29766,6 +29757,15 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
29766
29757
|
} | undefined;
|
|
29767
29758
|
}[] | undefined;
|
|
29768
29759
|
}>>>;
|
|
29760
|
+
stopWhen: z.ZodNullable<z.ZodType<{
|
|
29761
|
+
transferCountIs?: number | undefined;
|
|
29762
|
+
}, {
|
|
29763
|
+
transferCountIs?: number | undefined;
|
|
29764
|
+
}, z.core.$ZodTypeInternals<{
|
|
29765
|
+
transferCountIs?: number | undefined;
|
|
29766
|
+
}, {
|
|
29767
|
+
transferCountIs?: number | undefined;
|
|
29768
|
+
}>>>;
|
|
29769
29769
|
executionMode: z.ZodString;
|
|
29770
29770
|
}, z.core.$strip>>;
|
|
29771
29771
|
pagination: z.ZodObject<{
|
|
@@ -29782,8 +29782,8 @@ declare const ExternalAgentListResponse: z.ZodObject<{
|
|
|
29782
29782
|
createdAt: z.ZodString;
|
|
29783
29783
|
updatedAt: z.ZodString;
|
|
29784
29784
|
description: z.ZodNullable<z.ZodString>;
|
|
29785
|
-
baseUrl: z.ZodString;
|
|
29786
29785
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29786
|
+
baseUrl: z.ZodString;
|
|
29787
29787
|
}, z.core.$strip>>;
|
|
29788
29788
|
pagination: z.ZodObject<{
|
|
29789
29789
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29972,7 +29972,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29972
29972
|
readonly nango: "nango";
|
|
29973
29973
|
readonly composio: "composio";
|
|
29974
29974
|
}>;
|
|
29975
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29975
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
29976
29976
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
29977
29977
|
name: "created_at";
|
|
29978
29978
|
tableName: "tools";
|
|
@@ -30252,7 +30252,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
30252
30252
|
}, {}, {
|
|
30253
30253
|
length: 256;
|
|
30254
30254
|
}>;
|
|
30255
|
-
},
|
|
30255
|
+
}, drizzle_zod15.BuildRefine<{
|
|
30256
30256
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
30257
30257
|
name: "created_at";
|
|
30258
30258
|
tableName: "tools";
|
|
@@ -30561,8 +30561,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
30561
30561
|
createdAt: z.ZodString;
|
|
30562
30562
|
updatedAt: z.ZodString;
|
|
30563
30563
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30564
|
-
executeCode: z.ZodString;
|
|
30565
30564
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30565
|
+
executeCode: z.ZodString;
|
|
30566
30566
|
}, z.core.$strip>>;
|
|
30567
30567
|
pagination: z.ZodObject<{
|
|
30568
30568
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30595,8 +30595,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
30595
30595
|
createdAt: z.ZodString;
|
|
30596
30596
|
updatedAt: z.ZodString;
|
|
30597
30597
|
subAgentId: z.ZodString;
|
|
30598
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30599
30598
|
functionToolId: z.ZodString;
|
|
30599
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30600
30600
|
}, z.core.$strip>>;
|
|
30601
30601
|
pagination: z.ZodObject<{
|
|
30602
30602
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30758,11 +30758,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
30758
30758
|
id: z.ZodString;
|
|
30759
30759
|
createdAt: z.ZodString;
|
|
30760
30760
|
updatedAt: z.ZodString;
|
|
30761
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30761
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30762
30762
|
subAgentId: z.ZodString;
|
|
30763
30763
|
toolId: z.ZodString;
|
|
30764
|
-
|
|
30765
|
-
|
|
30764
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30765
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30766
30766
|
}, z.core.$strip>>;
|
|
30767
30767
|
pagination: z.ZodObject<{
|
|
30768
30768
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -30779,22 +30779,22 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
30779
30779
|
updatedAt: z.ZodString;
|
|
30780
30780
|
description: z.ZodNullable<z.ZodString>;
|
|
30781
30781
|
enabled: z.ZodBoolean;
|
|
30782
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30783
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30782
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30783
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30784
30784
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30785
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30785
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30786
30786
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30787
30787
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30788
30788
|
algorithm: z.ZodEnum<{
|
|
30789
|
+
md5: "md5";
|
|
30789
30790
|
sha256: "sha256";
|
|
30790
30791
|
sha512: "sha512";
|
|
30791
30792
|
sha384: "sha384";
|
|
30792
30793
|
sha1: "sha1";
|
|
30793
|
-
md5: "md5";
|
|
30794
30794
|
}>;
|
|
30795
30795
|
encoding: z.ZodEnum<{
|
|
30796
|
-
hex: "hex";
|
|
30797
30796
|
base64: "base64";
|
|
30797
|
+
hex: "hex";
|
|
30798
30798
|
}>;
|
|
30799
30799
|
signature: z.ZodObject<{
|
|
30800
30800
|
source: z.ZodEnum<{
|
|
@@ -30858,8 +30858,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
30858
30858
|
triggerId: z.ZodString;
|
|
30859
30859
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
30860
30860
|
batchId: z.ZodNullable<z.ZodString>;
|
|
30861
|
-
requestPayload: z.ZodType<
|
|
30862
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
30861
|
+
requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
|
|
30862
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30863
30863
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
30864
30864
|
}, z.core.$strip>>;
|
|
30865
30865
|
pagination: z.ZodObject<{
|
|
@@ -30877,22 +30877,22 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
30877
30877
|
updatedAt: z.ZodString;
|
|
30878
30878
|
description: z.ZodNullable<z.ZodString>;
|
|
30879
30879
|
enabled: z.ZodBoolean;
|
|
30880
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30881
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30880
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30881
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30882
30882
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30883
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30883
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30884
30884
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30885
30885
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30886
30886
|
algorithm: z.ZodEnum<{
|
|
30887
|
+
md5: "md5";
|
|
30887
30888
|
sha256: "sha256";
|
|
30888
30889
|
sha512: "sha512";
|
|
30889
30890
|
sha384: "sha384";
|
|
30890
30891
|
sha1: "sha1";
|
|
30891
|
-
md5: "md5";
|
|
30892
30892
|
}>;
|
|
30893
30893
|
encoding: z.ZodEnum<{
|
|
30894
|
-
hex: "hex";
|
|
30895
30894
|
base64: "base64";
|
|
30895
|
+
hex: "hex";
|
|
30896
30896
|
}>;
|
|
30897
30897
|
signature: z.ZodObject<{
|
|
30898
30898
|
source: z.ZodEnum<{
|
|
@@ -30943,22 +30943,22 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30943
30943
|
updatedAt: z.ZodString;
|
|
30944
30944
|
description: z.ZodNullable<z.ZodString>;
|
|
30945
30945
|
enabled: z.ZodBoolean;
|
|
30946
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
30947
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
30946
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30947
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30948
30948
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30949
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30949
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
30950
30950
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30951
30951
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30952
30952
|
algorithm: z.ZodEnum<{
|
|
30953
|
+
md5: "md5";
|
|
30953
30954
|
sha256: "sha256";
|
|
30954
30955
|
sha512: "sha512";
|
|
30955
30956
|
sha384: "sha384";
|
|
30956
30957
|
sha1: "sha1";
|
|
30957
|
-
md5: "md5";
|
|
30958
30958
|
}>;
|
|
30959
30959
|
encoding: z.ZodEnum<{
|
|
30960
|
-
hex: "hex";
|
|
30961
30960
|
base64: "base64";
|
|
30961
|
+
hex: "hex";
|
|
30962
30962
|
}>;
|
|
30963
30963
|
signature: z.ZodObject<{
|
|
30964
30964
|
source: z.ZodEnum<{
|
|
@@ -31010,22 +31010,22 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
31010
31010
|
updatedAt: z.ZodString;
|
|
31011
31011
|
description: z.ZodNullable<z.ZodString>;
|
|
31012
31012
|
enabled: z.ZodBoolean;
|
|
31013
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
31014
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
31013
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31014
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31015
31015
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
31016
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
31016
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
31017
31017
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31018
31018
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
31019
31019
|
algorithm: z.ZodEnum<{
|
|
31020
|
+
md5: "md5";
|
|
31020
31021
|
sha256: "sha256";
|
|
31021
31022
|
sha512: "sha512";
|
|
31022
31023
|
sha384: "sha384";
|
|
31023
31024
|
sha1: "sha1";
|
|
31024
|
-
md5: "md5";
|
|
31025
31025
|
}>;
|
|
31026
31026
|
encoding: z.ZodEnum<{
|
|
31027
|
-
hex: "hex";
|
|
31028
31027
|
base64: "base64";
|
|
31028
|
+
hex: "hex";
|
|
31029
31029
|
}>;
|
|
31030
31030
|
signature: z.ZodObject<{
|
|
31031
31031
|
source: z.ZodEnum<{
|
|
@@ -31235,12 +31235,12 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
31235
31235
|
cancelled: "cancelled";
|
|
31236
31236
|
}>;
|
|
31237
31237
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31238
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31239
31238
|
scheduledTriggerId: z.ZodString;
|
|
31240
31239
|
scheduledFor: z.ZodString;
|
|
31241
31240
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
31242
31241
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
31243
31242
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31243
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31244
31244
|
attemptNumber: z.ZodInt;
|
|
31245
31245
|
idempotencyKey: z.ZodString;
|
|
31246
31246
|
}, z.core.$strip>;
|
|
@@ -31266,12 +31266,12 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31266
31266
|
cancelled: "cancelled";
|
|
31267
31267
|
}>;
|
|
31268
31268
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
31269
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31270
31269
|
scheduledTriggerId: z.ZodString;
|
|
31271
31270
|
scheduledFor: z.ZodString;
|
|
31272
31271
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
31273
31272
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
31274
31273
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31274
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
31275
31275
|
attemptNumber: z.ZodInt;
|
|
31276
31276
|
idempotencyKey: z.ZodString;
|
|
31277
31277
|
}, z.core.$strip>>;
|
|
@@ -31398,7 +31398,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31398
31398
|
name: z.ZodString;
|
|
31399
31399
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31400
31400
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31401
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31402
31401
|
config: z.ZodObject<{
|
|
31403
31402
|
type: z.ZodLiteral<"mcp">;
|
|
31404
31403
|
mcp: z.ZodObject<{
|
|
@@ -31425,6 +31424,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31425
31424
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31426
31425
|
}, z.core.$strip>;
|
|
31427
31426
|
}, z.core.$strip>;
|
|
31427
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31428
31428
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31429
31429
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31430
31430
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -31435,8 +31435,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31435
31435
|
id: z.ZodString;
|
|
31436
31436
|
name: z.ZodString;
|
|
31437
31437
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31438
|
-
baseUrl: z.ZodURL;
|
|
31439
31438
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31439
|
+
baseUrl: z.ZodURL;
|
|
31440
31440
|
}, z.core.$strip>>>;
|
|
31441
31441
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31442
31442
|
id: z.ZodString;
|
|
@@ -31452,20 +31452,20 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31452
31452
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31453
31453
|
id: z.ZodString;
|
|
31454
31454
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31455
|
-
executeCode: z.ZodString;
|
|
31456
31455
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31456
|
+
executeCode: z.ZodString;
|
|
31457
31457
|
}, z.core.$strip>>>;
|
|
31458
31458
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31459
31459
|
id: z.ZodOptional<z.ZodString>;
|
|
31460
31460
|
name: z.ZodString;
|
|
31461
31461
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31462
31462
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
31463
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31464
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31463
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31464
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31465
31465
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31466
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31466
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31467
31467
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31468
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
31468
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
31469
31469
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31470
31470
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
31471
31471
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -31521,7 +31521,6 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31521
31521
|
name: z.ZodString;
|
|
31522
31522
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31523
31523
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31524
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31525
31524
|
config: z.ZodObject<{
|
|
31526
31525
|
type: z.ZodLiteral<"mcp">;
|
|
31527
31526
|
mcp: z.ZodObject<{
|
|
@@ -31548,6 +31547,7 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31548
31547
|
prompt: z.ZodOptional<z.ZodString>;
|
|
31549
31548
|
}, z.core.$strip>;
|
|
31550
31549
|
}, z.core.$strip>;
|
|
31550
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31551
31551
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
31552
31552
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
31553
31553
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -31563,8 +31563,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31563
31563
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31564
31564
|
id: z.ZodString;
|
|
31565
31565
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31566
|
-
executeCode: z.ZodString;
|
|
31567
31566
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
31567
|
+
executeCode: z.ZodString;
|
|
31568
31568
|
}, z.core.$strip>>>;
|
|
31569
31569
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
31570
31570
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -31652,8 +31652,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31652
31652
|
id: z.ZodString;
|
|
31653
31653
|
name: z.ZodString;
|
|
31654
31654
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31655
|
-
baseUrl: z.ZodURL;
|
|
31656
31655
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31656
|
+
baseUrl: z.ZodURL;
|
|
31657
31657
|
}, z.core.$strip>>>;
|
|
31658
31658
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
31659
31659
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31856,7 +31856,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31856
31856
|
updatedAt: z.ZodString;
|
|
31857
31857
|
description: z.ZodNullable<z.ZodString>;
|
|
31858
31858
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31859
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31860
31859
|
config: z.ZodType<{
|
|
31861
31860
|
type: "mcp";
|
|
31862
31861
|
mcp: ToolMcpConfig;
|
|
@@ -31870,6 +31869,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31870
31869
|
type: "mcp";
|
|
31871
31870
|
mcp: ToolMcpConfig;
|
|
31872
31871
|
}>>;
|
|
31872
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31873
31873
|
credentialScope: z.ZodString;
|
|
31874
31874
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31875
31875
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -31882,8 +31882,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31882
31882
|
createdAt: z.ZodString;
|
|
31883
31883
|
updatedAt: z.ZodString;
|
|
31884
31884
|
description: z.ZodNullable<z.ZodString>;
|
|
31885
|
-
baseUrl: z.ZodString;
|
|
31886
31885
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31886
|
+
baseUrl: z.ZodString;
|
|
31887
31887
|
}, z.core.$strip>>>;
|
|
31888
31888
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31889
31889
|
id: z.ZodString;
|
|
@@ -31905,8 +31905,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31905
31905
|
createdAt: z.ZodString;
|
|
31906
31906
|
updatedAt: z.ZodString;
|
|
31907
31907
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31908
|
-
executeCode: z.ZodString;
|
|
31909
31908
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31909
|
+
executeCode: z.ZodString;
|
|
31910
31910
|
}, z.core.$strip>>>;
|
|
31911
31911
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
31912
31912
|
id: z.ZodString;
|
|
@@ -31962,7 +31962,6 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31962
31962
|
updatedAt: z.ZodString;
|
|
31963
31963
|
description: z.ZodNullable<z.ZodString>;
|
|
31964
31964
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31965
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31966
31965
|
config: z.ZodType<{
|
|
31967
31966
|
type: "mcp";
|
|
31968
31967
|
mcp: ToolMcpConfig;
|
|
@@ -31976,6 +31975,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31976
31975
|
type: "mcp";
|
|
31977
31976
|
mcp: ToolMcpConfig;
|
|
31978
31977
|
}>>;
|
|
31978
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
31979
31979
|
credentialScope: z.ZodString;
|
|
31980
31980
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
31981
31981
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -31997,8 +31997,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31997
31997
|
createdAt: z.ZodString;
|
|
31998
31998
|
updatedAt: z.ZodString;
|
|
31999
31999
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32000
|
-
executeCode: z.ZodString;
|
|
32001
32000
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32001
|
+
executeCode: z.ZodString;
|
|
32002
32002
|
}, z.core.$strip>>>;
|
|
32003
32003
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32004
32004
|
id: z.ZodString;
|
|
@@ -32104,8 +32104,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32104
32104
|
createdAt: z.ZodString;
|
|
32105
32105
|
updatedAt: z.ZodString;
|
|
32106
32106
|
description: z.ZodNullable<z.ZodString>;
|
|
32107
|
-
baseUrl: z.ZodString;
|
|
32108
32107
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32108
|
+
baseUrl: z.ZodString;
|
|
32109
32109
|
}, z.core.$strip>>>;
|
|
32110
32110
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
32111
32111
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32138,7 +32138,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32138
32138
|
readonly nango: "nango";
|
|
32139
32139
|
readonly composio: "composio";
|
|
32140
32140
|
}>;
|
|
32141
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
32141
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
32142
32142
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
32143
32143
|
name: "created_at";
|
|
32144
32144
|
tableName: "tools";
|
|
@@ -32418,7 +32418,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
32418
32418
|
}, {}, {
|
|
32419
32419
|
length: 256;
|
|
32420
32420
|
}>;
|
|
32421
|
-
},
|
|
32421
|
+
}, drizzle_zod15.BuildRefine<{
|
|
32422
32422
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
32423
32423
|
name: "created_at";
|
|
32424
32424
|
tableName: "tools";
|
|
@@ -32757,7 +32757,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32757
32757
|
updatedAt: z.ZodString;
|
|
32758
32758
|
description: z.ZodNullable<z.ZodString>;
|
|
32759
32759
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32760
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32761
32760
|
config: z.ZodType<{
|
|
32762
32761
|
type: "mcp";
|
|
32763
32762
|
mcp: ToolMcpConfig;
|
|
@@ -32771,6 +32770,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32771
32770
|
type: "mcp";
|
|
32772
32771
|
mcp: ToolMcpConfig;
|
|
32773
32772
|
}>>;
|
|
32773
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
32774
32774
|
credentialScope: z.ZodString;
|
|
32775
32775
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
32776
32776
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -32792,8 +32792,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32792
32792
|
createdAt: z.ZodString;
|
|
32793
32793
|
updatedAt: z.ZodString;
|
|
32794
32794
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32795
|
-
executeCode: z.ZodString;
|
|
32796
32795
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32796
|
+
executeCode: z.ZodString;
|
|
32797
32797
|
}, z.core.$strip>>>;
|
|
32798
32798
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32799
32799
|
id: z.ZodString;
|
|
@@ -32899,8 +32899,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32899
32899
|
createdAt: z.ZodString;
|
|
32900
32900
|
updatedAt: z.ZodString;
|
|
32901
32901
|
description: z.ZodNullable<z.ZodString>;
|
|
32902
|
-
baseUrl: z.ZodString;
|
|
32903
32902
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32903
|
+
baseUrl: z.ZodString;
|
|
32904
32904
|
}, z.core.$strip>>>;
|
|
32905
32905
|
statusUpdates: z.ZodNullable<z.ZodObject<{
|
|
32906
32906
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32933,7 +32933,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32933
32933
|
readonly nango: "nango";
|
|
32934
32934
|
readonly composio: "composio";
|
|
32935
32935
|
}>;
|
|
32936
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
32936
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
32937
32937
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
32938
32938
|
name: "created_at";
|
|
32939
32939
|
tableName: "tools";
|
|
@@ -33213,7 +33213,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33213
33213
|
}, {}, {
|
|
33214
33214
|
length: 256;
|
|
33215
33215
|
}>;
|
|
33216
|
-
},
|
|
33216
|
+
}, drizzle_zod15.BuildRefine<{
|
|
33217
33217
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
33218
33218
|
name: "created_at";
|
|
33219
33219
|
tableName: "tools";
|
|
@@ -33525,7 +33525,6 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33525
33525
|
updatedAt: z.ZodString;
|
|
33526
33526
|
description: z.ZodNullable<z.ZodString>;
|
|
33527
33527
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33528
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33529
33528
|
config: z.ZodType<{
|
|
33530
33529
|
type: "mcp";
|
|
33531
33530
|
mcp: ToolMcpConfig;
|
|
@@ -33539,6 +33538,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33539
33538
|
type: "mcp";
|
|
33540
33539
|
mcp: ToolMcpConfig;
|
|
33541
33540
|
}>>;
|
|
33541
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
33542
33542
|
credentialScope: z.ZodString;
|
|
33543
33543
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
33544
33544
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -33551,8 +33551,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33551
33551
|
createdAt: z.ZodString;
|
|
33552
33552
|
updatedAt: z.ZodString;
|
|
33553
33553
|
description: z.ZodNullable<z.ZodString>;
|
|
33554
|
-
baseUrl: z.ZodString;
|
|
33555
33554
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33555
|
+
baseUrl: z.ZodString;
|
|
33556
33556
|
}, z.core.$strip>>>;
|
|
33557
33557
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33558
33558
|
id: z.ZodString;
|
|
@@ -33574,8 +33574,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
33574
33574
|
createdAt: z.ZodString;
|
|
33575
33575
|
updatedAt: z.ZodString;
|
|
33576
33576
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33577
|
-
executeCode: z.ZodString;
|
|
33578
33577
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33578
|
+
executeCode: z.ZodString;
|
|
33579
33579
|
}, z.core.$strip>>>;
|
|
33580
33580
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33581
33581
|
id: z.ZodString;
|
|
@@ -33824,7 +33824,6 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33824
33824
|
name: z.ZodString;
|
|
33825
33825
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33826
33826
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33827
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33828
33827
|
config: z.ZodObject<{
|
|
33829
33828
|
type: z.ZodLiteral<"mcp">;
|
|
33830
33829
|
mcp: z.ZodObject<{
|
|
@@ -33851,6 +33850,7 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33851
33850
|
prompt: z.ZodOptional<z.ZodString>;
|
|
33852
33851
|
}, z.core.$strip>;
|
|
33853
33852
|
}, z.core.$strip>;
|
|
33853
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33854
33854
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
33855
33855
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
33856
33856
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
@@ -33861,8 +33861,8 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33861
33861
|
id: z.ZodString;
|
|
33862
33862
|
name: z.ZodString;
|
|
33863
33863
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33864
|
-
baseUrl: z.ZodURL;
|
|
33865
33864
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33865
|
+
baseUrl: z.ZodURL;
|
|
33866
33866
|
}, z.core.$strip>>>;
|
|
33867
33867
|
teamAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33868
33868
|
id: z.ZodString;
|
|
@@ -33878,20 +33878,20 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
33878
33878
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33879
33879
|
id: z.ZodString;
|
|
33880
33880
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
33881
|
-
executeCode: z.ZodString;
|
|
33882
33881
|
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33882
|
+
executeCode: z.ZodString;
|
|
33883
33883
|
}, z.core.$strip>>>;
|
|
33884
33884
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33885
33885
|
id: z.ZodOptional<z.ZodString>;
|
|
33886
33886
|
name: z.ZodString;
|
|
33887
33887
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33888
33888
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
33889
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33890
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33889
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
33890
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
33891
33891
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33892
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33892
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
33893
33893
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33894
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
33894
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
33895
33895
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33896
33896
|
dispatchDelayMs: z.ZodOptional<z.ZodNullable<z.ZodInt>>;
|
|
33897
33897
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34077,7 +34077,6 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34077
34077
|
updatedAt: z.ZodString;
|
|
34078
34078
|
description: z.ZodNullable<z.ZodString>;
|
|
34079
34079
|
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34080
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34081
34080
|
config: z.ZodType<{
|
|
34082
34081
|
type: "mcp";
|
|
34083
34082
|
mcp: ToolMcpConfig;
|
|
@@ -34091,6 +34090,7 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34091
34090
|
type: "mcp";
|
|
34092
34091
|
mcp: ToolMcpConfig;
|
|
34093
34092
|
}>>;
|
|
34093
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
34094
34094
|
credentialScope: z.ZodString;
|
|
34095
34095
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
34096
34096
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
@@ -34103,8 +34103,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34103
34103
|
createdAt: z.ZodString;
|
|
34104
34104
|
updatedAt: z.ZodString;
|
|
34105
34105
|
description: z.ZodNullable<z.ZodString>;
|
|
34106
|
-
baseUrl: z.ZodString;
|
|
34107
34106
|
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34107
|
+
baseUrl: z.ZodString;
|
|
34108
34108
|
}, z.core.$strip>>>;
|
|
34109
34109
|
teamAgents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34110
34110
|
id: z.ZodString;
|
|
@@ -34126,8 +34126,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
34126
34126
|
createdAt: z.ZodString;
|
|
34127
34127
|
updatedAt: z.ZodString;
|
|
34128
34128
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
34129
|
-
executeCode: z.ZodString;
|
|
34130
34129
|
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
34130
|
+
executeCode: z.ZodString;
|
|
34131
34131
|
}, z.core.$strip>>>;
|
|
34132
34132
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
34133
34133
|
id: z.ZodString;
|
|
@@ -34204,7 +34204,6 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34204
34204
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34205
34205
|
tenantId: z.ZodString;
|
|
34206
34206
|
projectId: z.ZodString;
|
|
34207
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34208
34207
|
config: z.ZodObject<{
|
|
34209
34208
|
type: z.ZodLiteral<"mcp">;
|
|
34210
34209
|
mcp: z.ZodObject<{
|
|
@@ -34231,6 +34230,7 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
34231
34230
|
prompt: z.ZodOptional<z.ZodString>;
|
|
34232
34231
|
}, z.core.$strip>;
|
|
34233
34232
|
}, z.core.$strip>;
|
|
34233
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34234
34234
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
34235
34235
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
34236
34236
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34265,7 +34265,6 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
34265
34265
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
34266
34266
|
tenantId: z.ZodString;
|
|
34267
34267
|
projectId: z.ZodString;
|
|
34268
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34269
34268
|
config: z.ZodObject<{
|
|
34270
34269
|
type: z.ZodLiteral<"mcp">;
|
|
34271
34270
|
mcp: z.ZodObject<{
|
|
@@ -34292,6 +34291,7 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
34292
34291
|
prompt: z.ZodOptional<z.ZodString>;
|
|
34293
34292
|
}, z.core.$strip>;
|
|
34294
34293
|
}, z.core.$strip>;
|
|
34294
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34295
34295
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
34296
34296
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
34297
34297
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -34329,7 +34329,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
34329
34329
|
id: z.ZodString;
|
|
34330
34330
|
createdAt: z.ZodString;
|
|
34331
34331
|
updatedAt: z.ZodString;
|
|
34332
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34332
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34333
34333
|
subAgentId: z.ZodString;
|
|
34334
34334
|
targetAgentId: z.ZodString;
|
|
34335
34335
|
}, z.core.$strip>;
|
|
@@ -34339,7 +34339,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
34339
34339
|
id: z.ZodString;
|
|
34340
34340
|
createdAt: z.ZodString;
|
|
34341
34341
|
updatedAt: z.ZodString;
|
|
34342
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34342
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34343
34343
|
subAgentId: z.ZodString;
|
|
34344
34344
|
targetAgentId: z.ZodString;
|
|
34345
34345
|
}, z.core.$strip>>;
|
|
@@ -34355,7 +34355,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
34355
34355
|
id: z.ZodString;
|
|
34356
34356
|
createdAt: z.ZodString;
|
|
34357
34357
|
updatedAt: z.ZodString;
|
|
34358
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34358
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34359
34359
|
subAgentId: z.ZodString;
|
|
34360
34360
|
externalAgentId: z.ZodString;
|
|
34361
34361
|
}, z.core.$strip>;
|
|
@@ -34365,7 +34365,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
34365
34365
|
id: z.ZodString;
|
|
34366
34366
|
createdAt: z.ZodString;
|
|
34367
34367
|
updatedAt: z.ZodString;
|
|
34368
|
-
headers: z.ZodNullable<z.ZodType<
|
|
34368
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
34369
34369
|
subAgentId: z.ZodString;
|
|
34370
34370
|
externalAgentId: z.ZodString;
|
|
34371
34371
|
}, z.core.$strip>>;
|
|
@@ -34595,7 +34595,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
34595
34595
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
34596
34596
|
ref: z.ZodOptional<z.ZodString>;
|
|
34597
34597
|
}, z.core.$strip>;
|
|
34598
|
-
declare const ProjectMetadataSelectSchema:
|
|
34598
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
34599
34599
|
id: drizzle_orm_pg_core297.PgColumn<{
|
|
34600
34600
|
name: "id";
|
|
34601
34601
|
tableName: "project_metadata";
|
|
@@ -34689,7 +34689,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
34689
34689
|
}, {}, {
|
|
34690
34690
|
length: 512;
|
|
34691
34691
|
}>;
|
|
34692
|
-
},
|
|
34692
|
+
}, drizzle_zod15.BuildRefine<{
|
|
34693
34693
|
id: drizzle_orm_pg_core297.PgColumn<{
|
|
34694
34694
|
name: "id";
|
|
34695
34695
|
tableName: "project_metadata";
|
|
@@ -34803,7 +34803,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
34803
34803
|
User: "User";
|
|
34804
34804
|
Organization: "Organization";
|
|
34805
34805
|
}>;
|
|
34806
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
34806
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
34807
34807
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
34808
34808
|
name: "created_at";
|
|
34809
34809
|
tableName: "work_app_github_installations";
|
|
@@ -34969,7 +34969,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34969
34969
|
}, {}, {
|
|
34970
34970
|
length: 256;
|
|
34971
34971
|
}>;
|
|
34972
|
-
},
|
|
34972
|
+
}, drizzle_zod15.BuildRefine<{
|
|
34973
34973
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
34974
34974
|
name: "created_at";
|
|
34975
34975
|
tableName: "work_app_github_installations";
|
|
@@ -35182,7 +35182,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
35182
35182
|
Organization: "Organization";
|
|
35183
35183
|
}>;
|
|
35184
35184
|
}, z.core.$strip>;
|
|
35185
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
35185
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
35186
35186
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35187
35187
|
name: "created_at";
|
|
35188
35188
|
tableName: "work_app_github_repositories";
|
|
@@ -35327,7 +35327,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"se
|
|
|
35327
35327
|
identity: undefined;
|
|
35328
35328
|
generated: undefined;
|
|
35329
35329
|
}, {}, {}>;
|
|
35330
|
-
},
|
|
35330
|
+
}, drizzle_zod15.BuildRefine<{
|
|
35331
35331
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35332
35332
|
name: "created_at";
|
|
35333
35333
|
tableName: "work_app_github_repositories";
|
|
@@ -35488,7 +35488,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<{
|
|
|
35488
35488
|
repositoryFullName: z.ZodString;
|
|
35489
35489
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
35490
35490
|
}, z.core.$strip>;
|
|
35491
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
35491
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
35492
35492
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35493
35493
|
name: "created_at";
|
|
35494
35494
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35599,7 +35599,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
35599
35599
|
}, {}, {
|
|
35600
35600
|
length: 256;
|
|
35601
35601
|
}>;
|
|
35602
|
-
},
|
|
35602
|
+
}, drizzle_zod15.BuildRefine<{
|
|
35603
35603
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35604
35604
|
name: "created_at";
|
|
35605
35605
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -35711,7 +35711,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
35711
35711
|
length: 256;
|
|
35712
35712
|
}>;
|
|
35713
35713
|
}, undefined>, undefined>;
|
|
35714
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
35714
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
35715
35715
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35716
35716
|
name: "created_at";
|
|
35717
35717
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35841,7 +35841,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.Bu
|
|
|
35841
35841
|
}, {}, {
|
|
35842
35842
|
length: 256;
|
|
35843
35843
|
}>;
|
|
35844
|
-
},
|
|
35844
|
+
}, drizzle_zod15.BuildRefine<{
|
|
35845
35845
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
35846
35846
|
name: "created_at";
|
|
35847
35847
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -35995,7 +35995,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35995
35995
|
selected: "selected";
|
|
35996
35996
|
all: "all";
|
|
35997
35997
|
}>;
|
|
35998
|
-
repositories: z.ZodArray<
|
|
35998
|
+
repositories: z.ZodArray<drizzle_zod15.BuildSchema<"select", {
|
|
35999
35999
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36000
36000
|
name: "created_at";
|
|
36001
36001
|
tableName: "work_app_github_repositories";
|
|
@@ -36140,7 +36140,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
36140
36140
|
identity: undefined;
|
|
36141
36141
|
generated: undefined;
|
|
36142
36142
|
}, {}, {}>;
|
|
36143
|
-
},
|
|
36143
|
+
}, drizzle_zod15.BuildRefine<{
|
|
36144
36144
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36145
36145
|
name: "created_at";
|
|
36146
36146
|
tableName: "work_app_github_repositories";
|
|
@@ -36287,7 +36287,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
36287
36287
|
}, {}, {}>;
|
|
36288
36288
|
}, undefined>, undefined>>;
|
|
36289
36289
|
}, z.core.$strip>;
|
|
36290
|
-
declare const WorkAppSlackChannelAgentConfigSelectSchema:
|
|
36290
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36291
36291
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36292
36292
|
name: "created_at";
|
|
36293
36293
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -36525,7 +36525,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSch
|
|
|
36525
36525
|
identity: undefined;
|
|
36526
36526
|
generated: undefined;
|
|
36527
36527
|
}, {}, {}>;
|
|
36528
|
-
},
|
|
36528
|
+
}, drizzle_zod15.BuildRefine<{
|
|
36529
36529
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36530
36530
|
name: "created_at";
|
|
36531
36531
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -36764,7 +36764,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSch
|
|
|
36764
36764
|
generated: undefined;
|
|
36765
36765
|
}, {}, {}>;
|
|
36766
36766
|
}, undefined>, undefined>;
|
|
36767
|
-
declare const WorkAppSlackWorkspaceSelectSchema:
|
|
36767
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
36768
36768
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
36769
36769
|
name: "created_at";
|
|
36770
36770
|
tableName: "work_app_slack_workspaces";
|
|
@@ -37059,7 +37059,7 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"sele
|
|
|
37059
37059
|
identity: undefined;
|
|
37060
37060
|
generated: undefined;
|
|
37061
37061
|
}, {}, {}>;
|
|
37062
|
-
},
|
|
37062
|
+
}, drizzle_zod15.BuildRefine<{
|
|
37063
37063
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37064
37064
|
name: "created_at";
|
|
37065
37065
|
tableName: "work_app_slack_workspaces";
|
|
@@ -37399,7 +37399,7 @@ declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
|
37399
37399
|
dmEnabled: z.ZodBoolean;
|
|
37400
37400
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
37401
37401
|
}, z.core.$strip>;
|
|
37402
|
-
declare const UserProfileSelectSchema:
|
|
37402
|
+
declare const UserProfileSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
37403
37403
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37404
37404
|
name: "created_at";
|
|
37405
37405
|
tableName: "user_profile";
|
|
@@ -37504,7 +37504,7 @@ declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
37504
37504
|
}, {}, {
|
|
37505
37505
|
$type: Record<string, unknown>;
|
|
37506
37506
|
}>;
|
|
37507
|
-
},
|
|
37507
|
+
}, drizzle_zod15.BuildRefine<{
|
|
37508
37508
|
createdAt: drizzle_orm_pg_core297.PgColumn<{
|
|
37509
37509
|
name: "created_at";
|
|
37510
37510
|
tableName: "user_profile";
|