@inkeep/agents-core 0.0.0-dev-20260401215620 → 0.0.0-dev-20260402155205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-validation-schemas.d.ts +17 -17
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +4 -4
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +9 -9
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apps.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +2 -2
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +8 -8
- package/dist/validation/schemas.d.ts +439 -439
- 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_core220 from "drizzle-orm/pg-core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as drizzle_zod19 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_zod19.BuildSchema<"select", {
|
|
127
127
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
128
128
|
name: "created_at";
|
|
129
129
|
tableName: "sub_agents";
|
|
@@ -386,7 +386,7 @@ declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
386
386
|
}, {}, {
|
|
387
387
|
length: 256;
|
|
388
388
|
}>;
|
|
389
|
-
},
|
|
389
|
+
}, drizzle_zod19.BuildRefine<{
|
|
390
390
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
391
391
|
name: "created_at";
|
|
392
392
|
tableName: "sub_agents";
|
|
@@ -909,7 +909,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
909
909
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
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_zod19.BuildSchema<"select", {
|
|
913
913
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
914
914
|
name: "created_at";
|
|
915
915
|
tableName: "sub_agent_relations";
|
|
@@ -1077,7 +1077,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
1077
1077
|
}, {}, {
|
|
1078
1078
|
length: 256;
|
|
1079
1079
|
}>;
|
|
1080
|
-
},
|
|
1080
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1081
1081
|
createdAt: drizzle_orm_pg_core220.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_zod19.BuildSchema<"select", {
|
|
1347
1347
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1348
1348
|
name: "created_at";
|
|
1349
1349
|
tableName: "agent";
|
|
@@ -1673,7 +1673,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1673
1673
|
}, {}, {
|
|
1674
1674
|
length: 256;
|
|
1675
1675
|
}>;
|
|
1676
|
-
},
|
|
1676
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1677
1677
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
1678
1678
|
name: "created_at";
|
|
1679
1679
|
tableName: "agent";
|
|
@@ -2004,7 +2004,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
2004
2004
|
length: 256;
|
|
2005
2005
|
}>;
|
|
2006
2006
|
}, undefined>, undefined>;
|
|
2007
|
-
declare const AgentInsertSchema:
|
|
2007
|
+
declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
2008
2008
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
2009
2009
|
name: "created_at";
|
|
2010
2010
|
tableName: "agent";
|
|
@@ -2334,7 +2334,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2334
2334
|
}, {}, {
|
|
2335
2335
|
length: 256;
|
|
2336
2336
|
}>;
|
|
2337
|
-
},
|
|
2337
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
2338
2338
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
2339
2339
|
name: "created_at";
|
|
2340
2340
|
tableName: "agent";
|
|
@@ -2664,7 +2664,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2664
2664
|
}, {}, {
|
|
2665
2665
|
length: 256;
|
|
2666
2666
|
}>;
|
|
2667
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "models" | "stopWhen" | "
|
|
2667
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "tenantId" | "projectId" | "models" | "stopWhen" | "defaultSubAgentId" | "contextConfigId" | "prompt" | "statusUpdates" | "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>>;
|
|
@@ -2916,9 +2916,9 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
2916
2916
|
}, {
|
|
2917
2917
|
transferCountIs?: number | undefined;
|
|
2918
2918
|
}>>>;
|
|
2919
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
2920
2919
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
2921
2920
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
2921
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
2922
2922
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
2923
2923
|
enabled?: boolean | undefined;
|
|
2924
2924
|
numEvents?: number | undefined;
|
|
@@ -3068,9 +3068,9 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
3068
3068
|
}, {
|
|
3069
3069
|
transferCountIs?: number | undefined;
|
|
3070
3070
|
}>>>>;
|
|
3071
|
-
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3072
3071
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
3072
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3073
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3074
3074
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3075
3075
|
enabled?: boolean | undefined;
|
|
3076
3076
|
numEvents?: number | undefined;
|
|
@@ -3219,9 +3219,9 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
3219
3219
|
}, {
|
|
3220
3220
|
transferCountIs?: number | undefined;
|
|
3221
3221
|
}>>>>>>;
|
|
3222
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3223
3222
|
defaultSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
3223
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3224
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3225
3225
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3226
3226
|
enabled?: boolean | undefined;
|
|
3227
3227
|
numEvents?: number | undefined;
|
|
@@ -3346,8 +3346,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3346
3346
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3347
3347
|
source: z.ZodEnum<{
|
|
3348
3348
|
query: "query";
|
|
3349
|
-
body: "body";
|
|
3350
3349
|
header: "header";
|
|
3350
|
+
body: "body";
|
|
3351
3351
|
}>;
|
|
3352
3352
|
key: z.ZodString;
|
|
3353
3353
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3376,8 +3376,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3376
3376
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3377
3377
|
source: z.ZodEnum<{
|
|
3378
3378
|
literal: "literal";
|
|
3379
|
-
body: "body";
|
|
3380
3379
|
header: "header";
|
|
3380
|
+
body: "body";
|
|
3381
3381
|
}>;
|
|
3382
3382
|
key: z.ZodOptional<z.ZodString>;
|
|
3383
3383
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3486,8 +3486,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3486
3486
|
signature: z.ZodObject<{
|
|
3487
3487
|
source: z.ZodEnum<{
|
|
3488
3488
|
query: "query";
|
|
3489
|
-
body: "body";
|
|
3490
3489
|
header: "header";
|
|
3490
|
+
body: "body";
|
|
3491
3491
|
}>;
|
|
3492
3492
|
key: z.ZodString;
|
|
3493
3493
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3496,8 +3496,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3496
3496
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3497
3497
|
source: z.ZodEnum<{
|
|
3498
3498
|
literal: "literal";
|
|
3499
|
-
body: "body";
|
|
3500
3499
|
header: "header";
|
|
3500
|
+
body: "body";
|
|
3501
3501
|
}>;
|
|
3502
3502
|
key: z.ZodOptional<z.ZodString>;
|
|
3503
3503
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3556,10 +3556,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3556
3556
|
createdAt: z.ZodString;
|
|
3557
3557
|
updatedAt: z.ZodString;
|
|
3558
3558
|
enabled: z.ZodBoolean;
|
|
3559
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3560
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3559
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3560
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3561
3561
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3562
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3562
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3563
3563
|
name: z.ZodString;
|
|
3564
3564
|
description: z.ZodNullable<z.ZodString>;
|
|
3565
3565
|
agentId: z.ZodString;
|
|
@@ -3582,8 +3582,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3582
3582
|
signature: z.ZodObject<{
|
|
3583
3583
|
source: z.ZodEnum<{
|
|
3584
3584
|
query: "query";
|
|
3585
|
-
body: "body";
|
|
3586
3585
|
header: "header";
|
|
3586
|
+
body: "body";
|
|
3587
3587
|
}>;
|
|
3588
3588
|
key: z.ZodString;
|
|
3589
3589
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3592,8 +3592,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3592
3592
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3593
3593
|
source: z.ZodEnum<{
|
|
3594
3594
|
literal: "literal";
|
|
3595
|
-
body: "body";
|
|
3596
3595
|
header: "header";
|
|
3596
|
+
body: "body";
|
|
3597
3597
|
}>;
|
|
3598
3598
|
key: z.ZodOptional<z.ZodString>;
|
|
3599
3599
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3618,7 +3618,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3618
3618
|
out: {};
|
|
3619
3619
|
in: {};
|
|
3620
3620
|
}>;
|
|
3621
|
-
declare const TriggerInsertSchema:
|
|
3621
|
+
declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
3622
3622
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
3623
3623
|
name: "created_at";
|
|
3624
3624
|
tableName: "triggers";
|
|
@@ -3778,13 +3778,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3778
3778
|
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3779
3779
|
encoding: "base64" | "hex";
|
|
3780
3780
|
signature: {
|
|
3781
|
-
source: "query" | "
|
|
3781
|
+
source: "query" | "header" | "body";
|
|
3782
3782
|
key: string;
|
|
3783
3783
|
prefix?: string | undefined;
|
|
3784
3784
|
regex?: string | undefined;
|
|
3785
3785
|
};
|
|
3786
3786
|
signedComponents: {
|
|
3787
|
-
source: "literal" | "
|
|
3787
|
+
source: "literal" | "header" | "body";
|
|
3788
3788
|
required: boolean;
|
|
3789
3789
|
key?: string | undefined;
|
|
3790
3790
|
value?: string | undefined;
|
|
@@ -3815,13 +3815,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3815
3815
|
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
3816
3816
|
encoding: "base64" | "hex";
|
|
3817
3817
|
signature: {
|
|
3818
|
-
source: "query" | "
|
|
3818
|
+
source: "query" | "header" | "body";
|
|
3819
3819
|
key: string;
|
|
3820
3820
|
prefix?: string | undefined;
|
|
3821
3821
|
regex?: string | undefined;
|
|
3822
3822
|
};
|
|
3823
3823
|
signedComponents: {
|
|
3824
|
-
source: "literal" | "
|
|
3824
|
+
source: "literal" | "header" | "body";
|
|
3825
3825
|
required: boolean;
|
|
3826
3826
|
key?: string | undefined;
|
|
3827
3827
|
value?: string | undefined;
|
|
@@ -3988,7 +3988,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3988
3988
|
}, {}, {
|
|
3989
3989
|
length: 256;
|
|
3990
3990
|
}>;
|
|
3991
|
-
},
|
|
3991
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
3992
3992
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
3993
3993
|
name: "created_at";
|
|
3994
3994
|
tableName: "triggers";
|
|
@@ -4148,13 +4148,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4148
4148
|
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4149
4149
|
encoding: "base64" | "hex";
|
|
4150
4150
|
signature: {
|
|
4151
|
-
source: "query" | "
|
|
4151
|
+
source: "query" | "header" | "body";
|
|
4152
4152
|
key: string;
|
|
4153
4153
|
prefix?: string | undefined;
|
|
4154
4154
|
regex?: string | undefined;
|
|
4155
4155
|
};
|
|
4156
4156
|
signedComponents: {
|
|
4157
|
-
source: "literal" | "
|
|
4157
|
+
source: "literal" | "header" | "body";
|
|
4158
4158
|
required: boolean;
|
|
4159
4159
|
key?: string | undefined;
|
|
4160
4160
|
value?: string | undefined;
|
|
@@ -4185,13 +4185,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4185
4185
|
algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
|
|
4186
4186
|
encoding: "base64" | "hex";
|
|
4187
4187
|
signature: {
|
|
4188
|
-
source: "query" | "
|
|
4188
|
+
source: "query" | "header" | "body";
|
|
4189
4189
|
key: string;
|
|
4190
4190
|
prefix?: string | undefined;
|
|
4191
4191
|
regex?: string | undefined;
|
|
4192
4192
|
};
|
|
4193
4193
|
signedComponents: {
|
|
4194
|
-
source: "literal" | "
|
|
4194
|
+
source: "literal" | "header" | "body";
|
|
4195
4195
|
required: boolean;
|
|
4196
4196
|
key?: string | undefined;
|
|
4197
4197
|
value?: string | undefined;
|
|
@@ -4358,16 +4358,16 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4358
4358
|
}, {}, {
|
|
4359
4359
|
length: 256;
|
|
4360
4360
|
}>;
|
|
4361
|
-
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "tenantId" | "projectId" | "agentId" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId"
|
|
4361
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "description" | "enabled" | "tenantId" | "projectId" | "agentId" | "createdBy" | "inputSchema" | "outputTransform" | "messageTemplate" | "authentication" | "signingSecretCredentialReferenceId" | "signatureVerification" | "runAsUserId">, undefined>, undefined>;
|
|
4362
4362
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4363
4363
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4364
4364
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4365
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4366
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4365
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4366
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4367
4367
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4368
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4368
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4369
4369
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4370
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4370
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4371
4371
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4372
4372
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4373
4373
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4388,10 +4388,11 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4388
4388
|
updatedAt: z.ZodString;
|
|
4389
4389
|
description: z.ZodNullable<z.ZodString>;
|
|
4390
4390
|
enabled: z.ZodBoolean;
|
|
4391
|
-
|
|
4392
|
-
|
|
4391
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4392
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4393
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4393
4394
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4394
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4395
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4395
4396
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4396
4397
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4397
4398
|
algorithm: z.ZodEnum<{
|
|
@@ -4408,8 +4409,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4408
4409
|
signature: z.ZodObject<{
|
|
4409
4410
|
source: z.ZodEnum<{
|
|
4410
4411
|
query: "query";
|
|
4411
|
-
body: "body";
|
|
4412
4412
|
header: "header";
|
|
4413
|
+
body: "body";
|
|
4413
4414
|
}>;
|
|
4414
4415
|
key: z.ZodString;
|
|
4415
4416
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4418,8 +4419,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4418
4419
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4419
4420
|
source: z.ZodEnum<{
|
|
4420
4421
|
literal: "literal";
|
|
4421
|
-
body: "body";
|
|
4422
4422
|
header: "header";
|
|
4423
|
+
body: "body";
|
|
4423
4424
|
}>;
|
|
4424
4425
|
key: z.ZodOptional<z.ZodString>;
|
|
4425
4426
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4439,21 +4440,20 @@ declare const TriggerApiSelectSchema: z.ZodObject<{
|
|
|
4439
4440
|
}, z.core.$strip>>;
|
|
4440
4441
|
}, z.core.$strip>>>;
|
|
4441
4442
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4442
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4443
4443
|
}, z.core.$strip>;
|
|
4444
4444
|
declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
4445
4445
|
id: z.ZodOptional<z.ZodString>;
|
|
4446
4446
|
name: z.ZodString;
|
|
4447
4447
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4448
4448
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4449
|
-
|
|
4450
|
-
|
|
4449
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4450
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4451
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4451
4452
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4452
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4453
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4453
4454
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4454
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4455
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4455
4456
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4456
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4457
4457
|
}, z.core.$strip>;
|
|
4458
4458
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4459
4459
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4462,14 +4462,14 @@ declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
|
4462
4462
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4463
4463
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4464
4464
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
4465
|
-
|
|
4466
|
-
|
|
4465
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4466
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4467
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4467
4468
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4468
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4469
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4469
4470
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4470
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4471
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
4471
4472
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4472
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4473
4473
|
}, z.core.$strip>;
|
|
4474
4474
|
declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
4475
4475
|
id: z.ZodString;
|
|
@@ -4478,10 +4478,11 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4478
4478
|
updatedAt: z.ZodString;
|
|
4479
4479
|
description: z.ZodNullable<z.ZodString>;
|
|
4480
4480
|
enabled: z.ZodBoolean;
|
|
4481
|
-
|
|
4482
|
-
|
|
4481
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4482
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4483
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4483
4484
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4484
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4485
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4485
4486
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4486
4487
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4487
4488
|
algorithm: z.ZodEnum<{
|
|
@@ -4498,8 +4499,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4498
4499
|
signature: z.ZodObject<{
|
|
4499
4500
|
source: z.ZodEnum<{
|
|
4500
4501
|
query: "query";
|
|
4501
|
-
body: "body";
|
|
4502
4502
|
header: "header";
|
|
4503
|
+
body: "body";
|
|
4503
4504
|
}>;
|
|
4504
4505
|
key: z.ZodString;
|
|
4505
4506
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4508,8 +4509,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4508
4509
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4509
4510
|
source: z.ZodEnum<{
|
|
4510
4511
|
literal: "literal";
|
|
4511
|
-
body: "body";
|
|
4512
4512
|
header: "header";
|
|
4513
|
+
body: "body";
|
|
4513
4514
|
}>;
|
|
4514
4515
|
key: z.ZodOptional<z.ZodString>;
|
|
4515
4516
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4529,15 +4530,14 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4529
4530
|
}, z.core.$strip>>;
|
|
4530
4531
|
}, z.core.$strip>>>;
|
|
4531
4532
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4532
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4533
4533
|
webhookUrl: z.ZodString;
|
|
4534
4534
|
}, z.core.$strip>;
|
|
4535
4535
|
declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
4536
4536
|
triggerId: z.ZodString;
|
|
4537
4537
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4538
4538
|
status: z.ZodString;
|
|
4539
|
-
requestPayload: z.ZodType<
|
|
4540
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
4539
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
4540
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4541
4541
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
4542
4542
|
createdAt: z.ZodString;
|
|
4543
4543
|
agentId: z.ZodString;
|
|
@@ -4557,7 +4557,7 @@ declare const TriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
4557
4557
|
out: {};
|
|
4558
4558
|
in: {};
|
|
4559
4559
|
}>;
|
|
4560
|
-
declare const TriggerInvocationInsertSchema:
|
|
4560
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
4561
4561
|
triggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
4562
4562
|
name: "trigger_id";
|
|
4563
4563
|
tableName: "trigger_invocations";
|
|
@@ -4786,7 +4786,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4786
4786
|
}, {}, {
|
|
4787
4787
|
length: 256;
|
|
4788
4788
|
}>;
|
|
4789
|
-
},
|
|
4789
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
4790
4790
|
triggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
4791
4791
|
name: "trigger_id";
|
|
4792
4792
|
tableName: "trigger_invocations";
|
|
@@ -5015,7 +5015,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
5015
5015
|
}, {}, {
|
|
5016
5016
|
length: 256;
|
|
5017
5017
|
}>;
|
|
5018
|
-
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "
|
|
5018
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "conversationId" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
5019
5019
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5020
5020
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
5021
5021
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5037,8 +5037,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5037
5037
|
hash: string;
|
|
5038
5038
|
}>>>>>;
|
|
5039
5039
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5040
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
5041
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5040
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
5041
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
5042
5042
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5043
5043
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5044
5044
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5062,10 +5062,10 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5062
5062
|
hash: z.ZodString;
|
|
5063
5063
|
}, z.core.$strip>>>;
|
|
5064
5064
|
status: z.ZodString;
|
|
5065
|
-
triggerId: z.ZodString;
|
|
5066
5065
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5067
|
-
|
|
5068
|
-
|
|
5066
|
+
triggerId: z.ZodString;
|
|
5067
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5068
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
5069
5069
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5070
5070
|
}, z.core.$strip>;
|
|
5071
5071
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
@@ -5088,10 +5088,10 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5088
5088
|
hash: string;
|
|
5089
5089
|
}>>>>;
|
|
5090
5090
|
status: z.ZodOptional<z.ZodString>;
|
|
5091
|
-
triggerId: z.ZodString;
|
|
5092
5091
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5093
|
-
|
|
5094
|
-
|
|
5092
|
+
triggerId: z.ZodString;
|
|
5093
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5094
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5095
5095
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5096
5096
|
id: z.ZodString;
|
|
5097
5097
|
}, z.core.$strip>;
|
|
@@ -5116,10 +5116,10 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5116
5116
|
hash: string;
|
|
5117
5117
|
}>>>>>>;
|
|
5118
5118
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5119
|
-
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5120
5119
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5121
|
-
|
|
5122
|
-
|
|
5120
|
+
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5121
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5122
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5123
5123
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5124
5124
|
}, z.core.$strip>;
|
|
5125
5125
|
declare const CronExpressionSchema: z.ZodString;
|
|
@@ -5158,9 +5158,9 @@ declare const ScheduledTriggerInsertSchema: z.ZodObject<{
|
|
|
5158
5158
|
tenantId: z.ZodString;
|
|
5159
5159
|
projectId: z.ZodString;
|
|
5160
5160
|
agentId: z.ZodString;
|
|
5161
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5161
5162
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5162
5163
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5163
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5164
5164
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5165
5165
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5166
5166
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5179,9 +5179,9 @@ declare const ScheduledTriggerUpdateSchema: z.ZodObject<{
|
|
|
5179
5179
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5180
5180
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5181
5181
|
agentId: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5182
5183
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5183
5184
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5184
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5185
5185
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5186
5186
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5187
5187
|
payload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
@@ -5203,9 +5203,9 @@ declare const ScheduledTriggerApiSelectSchema: z.ZodObject<{
|
|
|
5203
5203
|
ref: z.ZodString;
|
|
5204
5204
|
description: z.ZodNullable<z.ZodString>;
|
|
5205
5205
|
enabled: z.ZodBoolean;
|
|
5206
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
5206
5207
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
5207
5208
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
5208
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
5209
5209
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
5210
5210
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
5211
5211
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5220,9 +5220,9 @@ declare const ScheduledTriggerApiInsertBaseSchema: z.ZodObject<{
|
|
|
5220
5220
|
ref: z.ZodOptional<z.ZodString>;
|
|
5221
5221
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5222
5222
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5223
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5223
5224
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5224
5225
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5225
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5226
5226
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5227
5227
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5228
5228
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5237,9 +5237,9 @@ declare const ScheduledTriggerApiInsertSchema: z.ZodObject<{
|
|
|
5237
5237
|
ref: z.ZodOptional<z.ZodString>;
|
|
5238
5238
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5239
5239
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5240
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5240
5241
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5241
5242
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5242
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5243
5243
|
cronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5244
5244
|
cronTimezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5245
5245
|
runAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5255,9 +5255,9 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
5255
5255
|
ref: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5256
5256
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5257
5257
|
enabled: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
5258
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5258
5259
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5259
5260
|
runAsUserId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5260
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5261
5261
|
cronExpression: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5262
5262
|
cronTimezone: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5263
5263
|
runAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5268,9 +5268,9 @@ declare const ScheduledTriggerApiUpdateSchema: z.ZodObject<{
|
|
|
5268
5268
|
}, z.core.$strip>;
|
|
5269
5269
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
5270
5270
|
pending: "pending";
|
|
5271
|
-
failed: "failed";
|
|
5272
5271
|
running: "running";
|
|
5273
5272
|
completed: "completed";
|
|
5273
|
+
failed: "failed";
|
|
5274
5274
|
cancelled: "cancelled";
|
|
5275
5275
|
}>;
|
|
5276
5276
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -5298,16 +5298,16 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
5298
5298
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5299
5299
|
status: z.ZodEnum<{
|
|
5300
5300
|
pending: "pending";
|
|
5301
|
-
failed: "failed";
|
|
5302
5301
|
running: "running";
|
|
5303
5302
|
completed: "completed";
|
|
5303
|
+
failed: "failed";
|
|
5304
5304
|
cancelled: "cancelled";
|
|
5305
5305
|
}>;
|
|
5306
5306
|
}, {
|
|
5307
5307
|
out: {};
|
|
5308
5308
|
in: {};
|
|
5309
5309
|
}>;
|
|
5310
|
-
declare const ScheduledTriggerInvocationInsertSchema:
|
|
5310
|
+
declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
5311
5311
|
scheduledTriggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
5312
5312
|
name: "scheduled_trigger_id";
|
|
5313
5313
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -5359,7 +5359,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5359
5359
|
tableName: "scheduled_trigger_invocations";
|
|
5360
5360
|
dataType: "string";
|
|
5361
5361
|
columnType: "PgVarchar";
|
|
5362
|
-
data: "pending" | "
|
|
5362
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5363
5363
|
driverParam: string;
|
|
5364
5364
|
notNull: true;
|
|
5365
5365
|
hasDefault: false;
|
|
@@ -5372,7 +5372,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5372
5372
|
generated: undefined;
|
|
5373
5373
|
}, {}, {
|
|
5374
5374
|
length: 50;
|
|
5375
|
-
$type: "pending" | "
|
|
5375
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5376
5376
|
}>;
|
|
5377
5377
|
scheduledFor: drizzle_orm_pg_core220.PgColumn<{
|
|
5378
5378
|
name: "scheduled_for";
|
|
@@ -5592,7 +5592,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5592
5592
|
}, {}, {
|
|
5593
5593
|
length: 256;
|
|
5594
5594
|
}>;
|
|
5595
|
-
},
|
|
5595
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
5596
5596
|
scheduledTriggerId: drizzle_orm_pg_core220.PgColumn<{
|
|
5597
5597
|
name: "scheduled_trigger_id";
|
|
5598
5598
|
tableName: "scheduled_trigger_invocations";
|
|
@@ -5644,7 +5644,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5644
5644
|
tableName: "scheduled_trigger_invocations";
|
|
5645
5645
|
dataType: "string";
|
|
5646
5646
|
columnType: "PgVarchar";
|
|
5647
|
-
data: "pending" | "
|
|
5647
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5648
5648
|
driverParam: string;
|
|
5649
5649
|
notNull: true;
|
|
5650
5650
|
hasDefault: false;
|
|
@@ -5657,7 +5657,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5657
5657
|
generated: undefined;
|
|
5658
5658
|
}, {}, {
|
|
5659
5659
|
length: 50;
|
|
5660
|
-
$type: "pending" | "
|
|
5660
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
5661
5661
|
}>;
|
|
5662
5662
|
scheduledFor: drizzle_orm_pg_core220.PgColumn<{
|
|
5663
5663
|
name: "scheduled_for";
|
|
@@ -5877,7 +5877,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<
|
|
|
5877
5877
|
}, {}, {
|
|
5878
5878
|
length: 256;
|
|
5879
5879
|
}>;
|
|
5880
|
-
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "
|
|
5880
|
+
}, "id" | "createdAt" | "ref" | "status" | "tenantId" | "projectId" | "agentId" | "conversationIds" | "scheduledTriggerId" | "scheduledFor" | "startedAt" | "completedAt" | "resolvedPayload" | "attemptNumber" | "idempotencyKey">, undefined>, undefined>;
|
|
5881
5881
|
declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
5882
5882
|
scheduledTriggerId: z.ZodOptional<z.ZodString>;
|
|
5883
5883
|
ref: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5901,7 +5901,7 @@ declare const ScheduledTriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
5901
5901
|
scheduledFor: z.ZodOptional<z.ZodString>;
|
|
5902
5902
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5903
5903
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5904
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5904
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
5905
5905
|
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>;
|
|
5906
5906
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodInt>>;
|
|
5907
5907
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -5928,17 +5928,17 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<{
|
|
|
5928
5928
|
}, z.core.$strip>>>;
|
|
5929
5929
|
status: z.ZodEnum<{
|
|
5930
5930
|
pending: "pending";
|
|
5931
|
-
failed: "failed";
|
|
5932
5931
|
running: "running";
|
|
5933
5932
|
completed: "completed";
|
|
5933
|
+
failed: "failed";
|
|
5934
5934
|
cancelled: "cancelled";
|
|
5935
5935
|
}>;
|
|
5936
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5936
5937
|
scheduledTriggerId: z.ZodString;
|
|
5937
5938
|
scheduledFor: z.ZodString;
|
|
5938
5939
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
5939
5940
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
5940
5941
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
5941
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
5942
5942
|
attemptNumber: z.ZodInt;
|
|
5943
5943
|
idempotencyKey: z.ZodString;
|
|
5944
5944
|
}, z.core.$strip>;
|
|
@@ -5962,12 +5962,12 @@ declare const ScheduledTriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5962
5962
|
hash: string;
|
|
5963
5963
|
}>>>>;
|
|
5964
5964
|
status: z.ZodString;
|
|
5965
|
+
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
5965
5966
|
scheduledTriggerId: z.ZodString;
|
|
5966
5967
|
scheduledFor: z.ZodString;
|
|
5967
5968
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5968
5969
|
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5969
|
-
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5970
|
-
conversationIds: z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>;
|
|
5970
|
+
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5971
5971
|
attemptNumber: z.ZodOptional<z.ZodInt>;
|
|
5972
5972
|
idempotencyKey: z.ZodString;
|
|
5973
5973
|
id: z.ZodString;
|
|
@@ -5993,17 +5993,17 @@ declare const ScheduledTriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5993
5993
|
hash: string;
|
|
5994
5994
|
}>>>>>>;
|
|
5995
5995
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5996
|
+
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
5996
5997
|
scheduledTriggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5997
5998
|
scheduledFor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5998
5999
|
startedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5999
6000
|
completedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6000
|
-
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
6001
|
-
conversationIds: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>>>>;
|
|
6001
|
+
resolvedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
6002
6002
|
attemptNumber: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodInt>>>;
|
|
6003
6003
|
idempotencyKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6004
6004
|
}, z.core.$strip>;
|
|
6005
6005
|
type ScheduledTriggerInvocationStatus = z.infer<typeof ScheduledTriggerInvocationStatusEnum>;
|
|
6006
|
-
declare const SchedulerStateSelectSchema:
|
|
6006
|
+
declare const SchedulerStateSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6007
6007
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6008
6008
|
name: "created_at";
|
|
6009
6009
|
tableName: "scheduler_state";
|
|
@@ -6076,7 +6076,7 @@ declare const SchedulerStateSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6076
6076
|
}, {}, {
|
|
6077
6077
|
length: 256;
|
|
6078
6078
|
}>;
|
|
6079
|
-
},
|
|
6079
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6080
6080
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6081
6081
|
name: "created_at";
|
|
6082
6082
|
tableName: "scheduler_state";
|
|
@@ -6260,8 +6260,8 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
6260
6260
|
status: z.ZodString;
|
|
6261
6261
|
agentId: z.ZodString;
|
|
6262
6262
|
subAgentId: z.ZodString;
|
|
6263
|
-
conversationId: z.ZodOptional<z.ZodString>;
|
|
6264
6263
|
contextId: z.ZodString;
|
|
6264
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
6265
6265
|
}, z.core.$strip>;
|
|
6266
6266
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
6267
6267
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6280,10 +6280,10 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
6280
6280
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6281
6281
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6282
6282
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6283
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6284
6283
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6284
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6285
6285
|
}, z.core.$strip>;
|
|
6286
|
-
declare const TaskRelationSelectSchema:
|
|
6286
|
+
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6287
6287
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6288
6288
|
name: "created_at";
|
|
6289
6289
|
tableName: "task_relations";
|
|
@@ -6432,7 +6432,7 @@ declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6432
6432
|
}, {}, {
|
|
6433
6433
|
length: 256;
|
|
6434
6434
|
}>;
|
|
6435
|
-
},
|
|
6435
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6436
6436
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6437
6437
|
name: "created_at";
|
|
6438
6438
|
tableName: "task_relations";
|
|
@@ -6654,7 +6654,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
6654
6654
|
description: z.ZodOptional<z.ZodString>;
|
|
6655
6655
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6656
6656
|
}, z.core.$strip>;
|
|
6657
|
-
declare const ToolSelectSchema:
|
|
6657
|
+
declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6658
6658
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6659
6659
|
name: "created_at";
|
|
6660
6660
|
tableName: "tools";
|
|
@@ -6934,7 +6934,7 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6934
6934
|
}, {}, {
|
|
6935
6935
|
length: 256;
|
|
6936
6936
|
}>;
|
|
6937
|
-
},
|
|
6937
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6938
6938
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
6939
6939
|
name: "created_at";
|
|
6940
6940
|
tableName: "tools";
|
|
@@ -7219,9 +7219,9 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
7219
7219
|
id: z.ZodString;
|
|
7220
7220
|
name: z.ZodString;
|
|
7221
7221
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7222
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7223
7222
|
tenantId: z.ZodString;
|
|
7224
7223
|
projectId: z.ZodString;
|
|
7224
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7225
7225
|
config: z.ZodObject<{
|
|
7226
7226
|
type: z.ZodLiteral<"mcp">;
|
|
7227
7227
|
mcp: z.ZodObject<{
|
|
@@ -7350,8 +7350,8 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
7350
7350
|
}, z.core.$strip>>>;
|
|
7351
7351
|
userId: z.ZodNullable<z.ZodString>;
|
|
7352
7352
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
7353
|
-
title: z.ZodNullable<z.ZodString>;
|
|
7354
7353
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7354
|
+
title: z.ZodNullable<z.ZodString>;
|
|
7355
7355
|
activeSubAgentId: z.ZodString;
|
|
7356
7356
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
7357
7357
|
}, z.core.$strip>;
|
|
@@ -7370,8 +7370,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
7370
7370
|
}, z.core.$strip>;
|
|
7371
7371
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7372
7372
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
7373
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7374
7373
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7374
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7375
7375
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7376
7376
|
activeSubAgentId: z.ZodString;
|
|
7377
7377
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7391,13 +7391,13 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7391
7391
|
}, z.core.$strip>>>;
|
|
7392
7392
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7393
7393
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7394
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7395
7394
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7395
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7396
7396
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7397
7397
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7398
7398
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7399
7399
|
}, z.core.$strip>;
|
|
7400
|
-
declare const MessageSelectSchema:
|
|
7400
|
+
declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7401
7401
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
7402
7402
|
name: "created_at";
|
|
7403
7403
|
tableName: "messages";
|
|
@@ -7793,7 +7793,7 @@ declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7793
7793
|
}, {}, {
|
|
7794
7794
|
length: 256;
|
|
7795
7795
|
}>;
|
|
7796
|
-
},
|
|
7796
|
+
}, drizzle_zod19.BuildRefine<{
|
|
7797
7797
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
7798
7798
|
name: "created_at";
|
|
7799
7799
|
tableName: "messages";
|
|
@@ -8249,18 +8249,18 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
8249
8249
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
8250
8250
|
role: z.ZodString;
|
|
8251
8251
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8252
|
-
conversationId: z.ZodString;
|
|
8253
8252
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8254
8253
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
8255
8254
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8256
8255
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
8256
|
+
taskId: z.ZodNullable<z.ZodString>;
|
|
8257
|
+
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8258
|
+
visibility: z.ZodString;
|
|
8259
|
+
conversationId: z.ZodString;
|
|
8257
8260
|
fromTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8258
8261
|
toTeamAgentId: z.ZodNullable<z.ZodString>;
|
|
8259
|
-
visibility: z.ZodString;
|
|
8260
8262
|
messageType: z.ZodString;
|
|
8261
|
-
taskId: z.ZodNullable<z.ZodString>;
|
|
8262
8263
|
parentMessageId: z.ZodNullable<z.ZodString>;
|
|
8263
|
-
a2aTaskId: z.ZodNullable<z.ZodString>;
|
|
8264
8264
|
a2aSessionId: z.ZodNullable<z.ZodString>;
|
|
8265
8265
|
}, z.core.$strip>;
|
|
8266
8266
|
declare const MessageApiInsertSchema: z.ZodObject<{
|
|
@@ -8270,18 +8270,18 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
8270
8270
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
8271
8271
|
role: z.ZodString;
|
|
8272
8272
|
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
8273
|
-
conversationId: z.ZodString;
|
|
8274
8273
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8275
8274
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8276
8275
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8277
8276
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8277
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
8278
|
+
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8279
|
+
visibility: z.ZodOptional<z.ZodString>;
|
|
8280
|
+
conversationId: z.ZodString;
|
|
8278
8281
|
fromTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8279
8282
|
toTeamAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8280
|
-
visibility: z.ZodOptional<z.ZodString>;
|
|
8281
8283
|
messageType: z.ZodOptional<z.ZodString>;
|
|
8282
|
-
taskId: z.ZodOptional<z.ZodString>;
|
|
8283
8284
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8284
|
-
a2aTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8285
8285
|
a2aSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8286
8286
|
}, z.core.$strip>;
|
|
8287
8287
|
declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
@@ -8291,18 +8291,18 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8291
8291
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8292
8292
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8293
8293
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8294
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8295
8294
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8296
8295
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8297
8296
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8298
8297
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8298
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8299
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8300
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8301
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8299
8302
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8300
8303
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8301
|
-
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8302
8304
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8303
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8304
8305
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8305
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8306
8306
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8307
8307
|
}, z.core.$strip>;
|
|
8308
8308
|
declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
@@ -8311,7 +8311,7 @@ declare const ContextCacheSelectSchema: z.ZodObject<{
|
|
|
8311
8311
|
conversationId: z.ZodString;
|
|
8312
8312
|
contextConfigId: z.ZodString;
|
|
8313
8313
|
contextVariableKey: z.ZodString;
|
|
8314
|
-
value: z.ZodType<
|
|
8314
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8315
8315
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8316
8316
|
fetchedAt: z.ZodString;
|
|
8317
8317
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8337,7 +8337,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8337
8337
|
conversationId: z.ZodString;
|
|
8338
8338
|
contextConfigId: z.ZodString;
|
|
8339
8339
|
contextVariableKey: z.ZodString;
|
|
8340
|
-
value: z.ZodType<
|
|
8340
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8341
8341
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8342
8342
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8343
8343
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8363,7 +8363,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8363
8363
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8364
8364
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8365
8365
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8366
|
-
value: z.ZodOptional<z.ZodType<
|
|
8366
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
8367
8367
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8368
8368
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8369
8369
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8396,7 +8396,7 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<{
|
|
|
8396
8396
|
name: z.ZodString;
|
|
8397
8397
|
hash: z.ZodString;
|
|
8398
8398
|
}, z.core.$strip>>>;
|
|
8399
|
-
value: z.ZodType<
|
|
8399
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8400
8400
|
contextConfigId: z.ZodString;
|
|
8401
8401
|
conversationId: z.ZodString;
|
|
8402
8402
|
contextVariableKey: z.ZodString;
|
|
@@ -8417,7 +8417,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<{
|
|
|
8417
8417
|
name: z.ZodString;
|
|
8418
8418
|
hash: z.ZodString;
|
|
8419
8419
|
}, z.core.$strip>;
|
|
8420
|
-
value: z.ZodType<
|
|
8420
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8421
8421
|
contextConfigId: z.ZodString;
|
|
8422
8422
|
conversationId: z.ZodString;
|
|
8423
8423
|
contextVariableKey: z.ZodString;
|
|
@@ -8438,7 +8438,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8438
8438
|
name: z.ZodString;
|
|
8439
8439
|
hash: z.ZodString;
|
|
8440
8440
|
}, z.core.$strip>>>;
|
|
8441
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
8441
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8442
8442
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8443
8443
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8444
8444
|
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -8542,8 +8542,8 @@ declare const DatasetRunApiSelectSchema: z.ZodObject<{
|
|
|
8542
8542
|
hash: z.ZodString;
|
|
8543
8543
|
}, z.core.$strip>>>;
|
|
8544
8544
|
datasetId: z.ZodString;
|
|
8545
|
-
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
8546
8545
|
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
8546
|
+
datasetRunConfigId: z.ZodNullable<z.ZodString>;
|
|
8547
8547
|
}, z.core.$strip>;
|
|
8548
8548
|
declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
8549
8549
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -8566,8 +8566,8 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
8566
8566
|
hash: string;
|
|
8567
8567
|
}>>>>;
|
|
8568
8568
|
datasetId: z.ZodString;
|
|
8569
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8570
8569
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8570
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8571
8571
|
}, z.core.$strip>;
|
|
8572
8572
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
8573
8573
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -8590,10 +8590,10 @@ declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
|
8590
8590
|
hash: string;
|
|
8591
8591
|
}>>>>>>;
|
|
8592
8592
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8593
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8594
8593
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8594
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8595
8595
|
}, z.core.$strip>;
|
|
8596
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
8596
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8597
8597
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
8598
8598
|
name: "created_at";
|
|
8599
8599
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -8736,7 +8736,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSch
|
|
|
8736
8736
|
}, {}, {
|
|
8737
8737
|
length: 256;
|
|
8738
8738
|
}>;
|
|
8739
|
-
},
|
|
8739
|
+
}, drizzle_zod19.BuildRefine<{
|
|
8740
8740
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
8741
8741
|
name: "created_at";
|
|
8742
8742
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -8928,7 +8928,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
8928
8928
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8929
8929
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8930
8930
|
}, z.core.$strip>;
|
|
8931
|
-
declare const EvaluationResultSelectSchema:
|
|
8931
|
+
declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8932
8932
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
8933
8933
|
name: "created_at";
|
|
8934
8934
|
tableName: "evaluation_result";
|
|
@@ -9090,7 +9090,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
9090
9090
|
}, {}, {
|
|
9091
9091
|
length: 256;
|
|
9092
9092
|
}>;
|
|
9093
|
-
},
|
|
9093
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9094
9094
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9095
9095
|
name: "created_at";
|
|
9096
9096
|
tableName: "evaluation_result";
|
|
@@ -9282,28 +9282,28 @@ declare const EvaluationResultUpdateSchema: z.ZodObject<{
|
|
|
9282
9282
|
in: {};
|
|
9283
9283
|
}>;
|
|
9284
9284
|
declare const EvaluationResultApiSelectSchema: z.ZodObject<{
|
|
9285
|
-
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9286
9285
|
id: z.ZodString;
|
|
9287
9286
|
createdAt: z.ZodString;
|
|
9288
9287
|
updatedAt: z.ZodString;
|
|
9289
|
-
|
|
9288
|
+
output: z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>;
|
|
9290
9289
|
evaluatorId: z.ZodString;
|
|
9290
|
+
conversationId: z.ZodString;
|
|
9291
9291
|
evaluationRunId: z.ZodNullable<z.ZodString>;
|
|
9292
9292
|
}, z.core.$strip>;
|
|
9293
9293
|
declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
9294
|
-
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9295
9294
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9296
9295
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9297
|
-
|
|
9296
|
+
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9298
9297
|
evaluatorId: z.ZodString;
|
|
9298
|
+
conversationId: z.ZodString;
|
|
9299
9299
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9300
9300
|
}, z.core.$strip>;
|
|
9301
9301
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9302
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9303
9302
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9304
9303
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9305
|
-
|
|
9304
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9306
9305
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9306
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9307
9307
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9308
9308
|
}, z.core.$strip>;
|
|
9309
9309
|
declare const EvaluationRunSelectSchema: z.ZodObject<{
|
|
@@ -9398,8 +9398,8 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<{
|
|
|
9398
9398
|
name: z.ZodString;
|
|
9399
9399
|
hash: z.ZodString;
|
|
9400
9400
|
}, z.core.$strip>>>;
|
|
9401
|
-
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9402
9401
|
evaluationRunConfigId: z.ZodNullable<z.ZodString>;
|
|
9402
|
+
evaluationJobConfigId: z.ZodNullable<z.ZodString>;
|
|
9403
9403
|
}, z.core.$strip>;
|
|
9404
9404
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
9405
9405
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -9421,8 +9421,8 @@ declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
|
9421
9421
|
name: string;
|
|
9422
9422
|
hash: string;
|
|
9423
9423
|
}>>>>;
|
|
9424
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9425
9424
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9425
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9426
9426
|
}, z.core.$strip>;
|
|
9427
9427
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
9428
9428
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -9444,10 +9444,10 @@ declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
|
9444
9444
|
name: string;
|
|
9445
9445
|
hash: string;
|
|
9446
9446
|
}>>>>>>;
|
|
9447
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9448
9447
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9448
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9449
9449
|
}, z.core.$strip>;
|
|
9450
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
9450
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9451
9451
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9452
9452
|
name: "created_at";
|
|
9453
9453
|
tableName: "evaluation_run_config";
|
|
@@ -9592,7 +9592,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
9592
9592
|
}, {}, {
|
|
9593
9593
|
length: 256;
|
|
9594
9594
|
}>;
|
|
9595
|
-
},
|
|
9595
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9596
9596
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9597
9597
|
name: "created_at";
|
|
9598
9598
|
tableName: "evaluation_run_config";
|
|
@@ -9797,7 +9797,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
9797
9797
|
isActive: z.ZodBoolean;
|
|
9798
9798
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
9799
9799
|
}, z.core.$strip>;
|
|
9800
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
9800
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9801
9801
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9802
9802
|
name: "created_at";
|
|
9803
9803
|
tableName: "evaluation_job_config";
|
|
@@ -9922,7 +9922,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
9922
9922
|
}, {}, {
|
|
9923
9923
|
length: 256;
|
|
9924
9924
|
}>;
|
|
9925
|
-
},
|
|
9925
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9926
9926
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
9927
9927
|
name: "created_at";
|
|
9928
9928
|
tableName: "evaluation_job_config";
|
|
@@ -10227,7 +10227,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10227
10227
|
} | undefined;
|
|
10228
10228
|
}>>>>>>>;
|
|
10229
10229
|
}, z.core.$strip>;
|
|
10230
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10230
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10231
10231
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10232
10232
|
name: "created_at";
|
|
10233
10233
|
tableName: "evaluation_suite_config";
|
|
@@ -10355,7 +10355,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
10355
10355
|
}, {}, {
|
|
10356
10356
|
length: 256;
|
|
10357
10357
|
}>;
|
|
10358
|
-
},
|
|
10358
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10359
10359
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10360
10360
|
name: "created_at";
|
|
10361
10361
|
tableName: "evaluation_suite_config";
|
|
@@ -10529,7 +10529,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10529
10529
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
10530
10530
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10531
10531
|
}, z.core.$strip>;
|
|
10532
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
10532
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10533
10533
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10534
10534
|
name: "created_at";
|
|
10535
10535
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -10659,7 +10659,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
10659
10659
|
}, {}, {
|
|
10660
10660
|
length: 256;
|
|
10661
10661
|
}>;
|
|
10662
|
-
},
|
|
10662
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10663
10663
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10664
10664
|
name: "created_at";
|
|
10665
10665
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -10818,22 +10818,22 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
10818
10818
|
id: z.ZodString;
|
|
10819
10819
|
createdAt: z.ZodString;
|
|
10820
10820
|
updatedAt: z.ZodString;
|
|
10821
|
-
evaluationRunConfigId: z.ZodString;
|
|
10822
10821
|
evaluationSuiteConfigId: z.ZodString;
|
|
10822
|
+
evaluationRunConfigId: z.ZodString;
|
|
10823
10823
|
}, z.core.$strip>;
|
|
10824
10824
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
10825
10825
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10826
10826
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10827
|
-
evaluationRunConfigId: z.ZodString;
|
|
10828
10827
|
evaluationSuiteConfigId: z.ZodString;
|
|
10828
|
+
evaluationRunConfigId: z.ZodString;
|
|
10829
10829
|
}, z.core.$strip>;
|
|
10830
10830
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
10831
10831
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10832
10832
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10833
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10834
10833
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10834
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10835
10835
|
}, z.core.$strip>;
|
|
10836
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
10836
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10837
10837
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10838
10838
|
name: "created_at";
|
|
10839
10839
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -10963,7 +10963,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.Bu
|
|
|
10963
10963
|
}, {}, {
|
|
10964
10964
|
length: 256;
|
|
10965
10965
|
}>;
|
|
10966
|
-
},
|
|
10966
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10967
10967
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
10968
10968
|
name: "created_at";
|
|
10969
10969
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11122,22 +11122,22 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<{
|
|
|
11122
11122
|
id: z.ZodString;
|
|
11123
11123
|
createdAt: z.ZodString;
|
|
11124
11124
|
updatedAt: z.ZodString;
|
|
11125
|
-
evaluationJobConfigId: z.ZodString;
|
|
11126
11125
|
evaluatorId: z.ZodString;
|
|
11126
|
+
evaluationJobConfigId: z.ZodString;
|
|
11127
11127
|
}, z.core.$strip>;
|
|
11128
11128
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11129
11129
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11130
11130
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11131
|
-
evaluationJobConfigId: z.ZodString;
|
|
11132
11131
|
evaluatorId: z.ZodString;
|
|
11132
|
+
evaluationJobConfigId: z.ZodString;
|
|
11133
11133
|
}, z.core.$strip>;
|
|
11134
11134
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11135
11135
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11136
11136
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11137
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11138
11137
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11138
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11139
11139
|
}, z.core.$strip>;
|
|
11140
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11140
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11141
11141
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11142
11142
|
name: "created_at";
|
|
11143
11143
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11267,7 +11267,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.
|
|
|
11267
11267
|
}, {}, {
|
|
11268
11268
|
length: 256;
|
|
11269
11269
|
}>;
|
|
11270
|
-
},
|
|
11270
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11271
11271
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11272
11272
|
name: "created_at";
|
|
11273
11273
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11426,22 +11426,22 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
11426
11426
|
id: z.ZodString;
|
|
11427
11427
|
createdAt: z.ZodString;
|
|
11428
11428
|
updatedAt: z.ZodString;
|
|
11429
|
-
evaluatorId: z.ZodString;
|
|
11430
11429
|
evaluationSuiteConfigId: z.ZodString;
|
|
11430
|
+
evaluatorId: z.ZodString;
|
|
11431
11431
|
}, z.core.$strip>;
|
|
11432
11432
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11433
11433
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11434
11434
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11435
|
-
evaluatorId: z.ZodString;
|
|
11436
11435
|
evaluationSuiteConfigId: z.ZodString;
|
|
11436
|
+
evaluatorId: z.ZodString;
|
|
11437
11437
|
}, z.core.$strip>;
|
|
11438
11438
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11439
11439
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11440
11440
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11441
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11442
11441
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11442
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11443
11443
|
}, z.core.$strip>;
|
|
11444
|
-
declare const EvaluatorSelectSchema:
|
|
11444
|
+
declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11445
11445
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11446
11446
|
name: "created_at";
|
|
11447
11447
|
tableName: "evaluator";
|
|
@@ -11653,7 +11653,7 @@ declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
11653
11653
|
}, {}, {
|
|
11654
11654
|
length: 256;
|
|
11655
11655
|
}>;
|
|
11656
|
-
},
|
|
11656
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11657
11657
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
11658
11658
|
name: "created_at";
|
|
11659
11659
|
tableName: "evaluator";
|
|
@@ -12029,7 +12029,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12029
12029
|
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12030
12030
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12031
12031
|
}, z.core.$strip>;
|
|
12032
|
-
declare const DatasetSelectSchema:
|
|
12032
|
+
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12033
12033
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12034
12034
|
name: "created_at";
|
|
12035
12035
|
tableName: "dataset";
|
|
@@ -12140,7 +12140,7 @@ declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12140
12140
|
}, {}, {
|
|
12141
12141
|
length: 256;
|
|
12142
12142
|
}>;
|
|
12143
|
-
},
|
|
12143
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12144
12144
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12145
12145
|
name: "created_at";
|
|
12146
12146
|
tableName: "dataset";
|
|
@@ -12290,7 +12290,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12290
12290
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12291
12291
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12292
12292
|
}, z.core.$strip>;
|
|
12293
|
-
declare const DatasetItemSelectSchema:
|
|
12293
|
+
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12294
12294
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12295
12295
|
name: "created_at";
|
|
12296
12296
|
tableName: "dataset_item";
|
|
@@ -12439,7 +12439,7 @@ declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12439
12439
|
}, {}, {
|
|
12440
12440
|
length: 256;
|
|
12441
12441
|
}>;
|
|
12442
|
-
},
|
|
12442
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12443
12443
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12444
12444
|
name: "created_at";
|
|
12445
12445
|
tableName: "dataset_item";
|
|
@@ -12616,28 +12616,28 @@ declare const DatasetItemUpdateSchema: z.ZodObject<{
|
|
|
12616
12616
|
in: {};
|
|
12617
12617
|
}>;
|
|
12618
12618
|
declare const DatasetItemApiSelectSchema: z.ZodObject<{
|
|
12619
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12620
12619
|
id: z.ZodString;
|
|
12621
12620
|
createdAt: z.ZodString;
|
|
12622
12621
|
updatedAt: z.ZodString;
|
|
12622
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12623
12623
|
datasetId: z.ZodString;
|
|
12624
12624
|
expectedOutput: z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>;
|
|
12625
12625
|
}, z.core.$strip>;
|
|
12626
12626
|
declare const DatasetItemApiInsertSchema: z.ZodObject<{
|
|
12627
|
-
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12628
12627
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12629
12628
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12629
|
+
input: z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>;
|
|
12630
12630
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
12631
12631
|
}, z.core.$strip>;
|
|
12632
12632
|
declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
12633
|
-
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
12634
12633
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12635
12634
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12635
|
+
input: z.ZodOptional<z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>>;
|
|
12636
12636
|
expectedOutput: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>>>;
|
|
12637
12637
|
}, z.core.$strip>;
|
|
12638
12638
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
12639
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
12640
12639
|
id: z.ZodOptional<z.ZodString>;
|
|
12640
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
12641
12641
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
12642
12642
|
agentId: z.ZodString;
|
|
12643
12643
|
}, z.core.$strip>;
|
|
@@ -12671,7 +12671,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
12671
12671
|
}, z.core.$strip>>;
|
|
12672
12672
|
}, z.core.$strip>>>;
|
|
12673
12673
|
}, z.core.$strip>;
|
|
12674
|
-
declare const DatasetRunConfigSelectSchema:
|
|
12674
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12675
12675
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12676
12676
|
name: "created_at";
|
|
12677
12677
|
tableName: "dataset_run_config";
|
|
@@ -12818,7 +12818,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
12818
12818
|
}, {}, {
|
|
12819
12819
|
length: 256;
|
|
12820
12820
|
}>;
|
|
12821
|
-
},
|
|
12821
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12822
12822
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
12823
12823
|
name: "created_at";
|
|
12824
12824
|
tableName: "dataset_run_config";
|
|
@@ -13014,7 +13014,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13014
13014
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
13015
13015
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13016
13016
|
}, z.core.$strip>;
|
|
13017
|
-
declare const AgentDatasetRelationSelectSchema:
|
|
13017
|
+
declare const AgentDatasetRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13018
13018
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13019
13019
|
name: "created_at";
|
|
13020
13020
|
tableName: "agent_dataset_relations";
|
|
@@ -13144,7 +13144,7 @@ declare const AgentDatasetRelationSelectSchema: drizzle_zod15.BuildSchema<"selec
|
|
|
13144
13144
|
}, {}, {
|
|
13145
13145
|
length: 256;
|
|
13146
13146
|
}>;
|
|
13147
|
-
},
|
|
13147
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13148
13148
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13149
13149
|
name: "created_at";
|
|
13150
13150
|
tableName: "agent_dataset_relations";
|
|
@@ -13312,7 +13312,7 @@ declare const AgentDatasetRelationApiInsertSchema: z.ZodObject<{
|
|
|
13312
13312
|
agentId: z.ZodString;
|
|
13313
13313
|
datasetId: z.ZodString;
|
|
13314
13314
|
}, z.core.$strip>;
|
|
13315
|
-
declare const AgentEvaluatorRelationSelectSchema:
|
|
13315
|
+
declare const AgentEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13316
13316
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13317
13317
|
name: "created_at";
|
|
13318
13318
|
tableName: "agent_evaluator_relations";
|
|
@@ -13442,7 +13442,7 @@ declare const AgentEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"sel
|
|
|
13442
13442
|
}, {}, {
|
|
13443
13443
|
length: 256;
|
|
13444
13444
|
}>;
|
|
13445
|
-
},
|
|
13445
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13446
13446
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13447
13447
|
name: "created_at";
|
|
13448
13448
|
tableName: "agent_evaluator_relations";
|
|
@@ -13610,7 +13610,7 @@ declare const AgentEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
|
13610
13610
|
agentId: z.ZodString;
|
|
13611
13611
|
evaluatorId: z.ZodString;
|
|
13612
13612
|
}, z.core.$strip>;
|
|
13613
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13613
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13614
13614
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13615
13615
|
name: "created_at";
|
|
13616
13616
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -13740,7 +13740,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
13740
13740
|
}, {}, {
|
|
13741
13741
|
length: 256;
|
|
13742
13742
|
}>;
|
|
13743
|
-
},
|
|
13743
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13744
13744
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13745
13745
|
name: "created_at";
|
|
13746
13746
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -13895,7 +13895,7 @@ declare const DatasetRunConfigAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
13895
13895
|
out: {};
|
|
13896
13896
|
in: {};
|
|
13897
13897
|
}>;
|
|
13898
|
-
declare const DataComponentSelectSchema:
|
|
13898
|
+
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13899
13899
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
13900
13900
|
name: "created_at";
|
|
13901
13901
|
tableName: "data_components";
|
|
@@ -14081,7 +14081,7 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14081
14081
|
}, {}, {
|
|
14082
14082
|
length: 256;
|
|
14083
14083
|
}>;
|
|
14084
|
-
},
|
|
14084
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14085
14085
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
14086
14086
|
name: "created_at";
|
|
14087
14087
|
tableName: "data_components";
|
|
@@ -14471,7 +14471,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14471
14471
|
description: z.ZodOptional<z.ZodString>;
|
|
14472
14472
|
}, z.core.$loose>;
|
|
14473
14473
|
}, z.core.$strip>;
|
|
14474
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14474
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14475
14475
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14476
14476
|
name: "data_component_id";
|
|
14477
14477
|
tableName: "sub_agent_data_components";
|
|
@@ -14603,7 +14603,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
14603
14603
|
}, {}, {
|
|
14604
14604
|
length: 256;
|
|
14605
14605
|
}>;
|
|
14606
|
-
},
|
|
14606
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14607
14607
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14608
14608
|
name: "data_component_id";
|
|
14609
14609
|
tableName: "sub_agent_data_components";
|
|
@@ -14736,7 +14736,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
14736
14736
|
length: 256;
|
|
14737
14737
|
}>;
|
|
14738
14738
|
}, undefined>, undefined>;
|
|
14739
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
14739
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
14740
14740
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14741
14741
|
name: "data_component_id";
|
|
14742
14742
|
tableName: "sub_agent_data_components";
|
|
@@ -14868,7 +14868,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
14868
14868
|
}, {}, {
|
|
14869
14869
|
length: 256;
|
|
14870
14870
|
}>;
|
|
14871
|
-
},
|
|
14871
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
14872
14872
|
dataComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
14873
14873
|
name: "data_component_id";
|
|
14874
14874
|
tableName: "sub_agent_data_components";
|
|
@@ -15033,7 +15033,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15033
15033
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15034
15034
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15035
15035
|
}, z.core.$strip>;
|
|
15036
|
-
declare const ArtifactComponentSelectSchema:
|
|
15036
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15037
15037
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
15038
15038
|
name: "created_at";
|
|
15039
15039
|
tableName: "artifact_components";
|
|
@@ -15219,7 +15219,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
15219
15219
|
}, {}, {
|
|
15220
15220
|
length: 256;
|
|
15221
15221
|
}>;
|
|
15222
|
-
},
|
|
15222
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15223
15223
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
15224
15224
|
name: "created_at";
|
|
15225
15225
|
tableName: "artifact_components";
|
|
@@ -15640,7 +15640,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15640
15640
|
mockData: Record<string, unknown>;
|
|
15641
15641
|
}>>>>>>;
|
|
15642
15642
|
}, z.core.$strip>;
|
|
15643
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
15643
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15644
15644
|
artifactComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
15645
15645
|
name: "artifact_component_id";
|
|
15646
15646
|
tableName: "sub_agent_artifact_components";
|
|
@@ -15772,7 +15772,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
15772
15772
|
}, {}, {
|
|
15773
15773
|
length: 256;
|
|
15774
15774
|
}>;
|
|
15775
|
-
},
|
|
15775
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15776
15776
|
artifactComponentId: drizzle_orm_pg_core220.PgColumn<{
|
|
15777
15777
|
name: "artifact_component_id";
|
|
15778
15778
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16115,7 +16115,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16115
16115
|
baseUrl: z.ZodString;
|
|
16116
16116
|
type: z.ZodLiteral<"external">;
|
|
16117
16117
|
}, z.core.$strip>], "type">;
|
|
16118
|
-
declare const ApiKeySelectSchema:
|
|
16118
|
+
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16119
16119
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
16120
16120
|
name: "created_at";
|
|
16121
16121
|
tableName: "api_keys";
|
|
@@ -16336,7 +16336,7 @@ declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
16336
16336
|
}, {}, {
|
|
16337
16337
|
length: 256;
|
|
16338
16338
|
}>;
|
|
16339
|
-
},
|
|
16339
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16340
16340
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
16341
16341
|
name: "created_at";
|
|
16342
16342
|
tableName: "api_keys";
|
|
@@ -16803,7 +16803,7 @@ declare const AppConfigResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16803
16803
|
type: z.ZodLiteral<"api">;
|
|
16804
16804
|
api: z.ZodDefault<z.ZodObject<{}, z.core.$strip>>;
|
|
16805
16805
|
}, z.core.$strip>], "type">;
|
|
16806
|
-
declare const AppSelectSchema:
|
|
16806
|
+
declare const AppSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16807
16807
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
16808
16808
|
name: "created_at";
|
|
16809
16809
|
tableName: "apps";
|
|
@@ -17091,7 +17091,7 @@ declare const AppSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
17091
17091
|
identity: undefined;
|
|
17092
17092
|
generated: undefined;
|
|
17093
17093
|
}, {}, {}>;
|
|
17094
|
-
},
|
|
17094
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17095
17095
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17096
17096
|
name: "created_at";
|
|
17097
17097
|
tableName: "apps";
|
|
@@ -17466,7 +17466,7 @@ declare const AppUpdateSchema: z.ZodObject<{
|
|
|
17466
17466
|
out: {};
|
|
17467
17467
|
in: {};
|
|
17468
17468
|
}>;
|
|
17469
|
-
declare const AppApiSelectSchema:
|
|
17469
|
+
declare const AppApiSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
17470
17470
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17471
17471
|
name: "created_at";
|
|
17472
17472
|
tableName: "apps";
|
|
@@ -17754,7 +17754,7 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
17754
17754
|
identity: undefined;
|
|
17755
17755
|
generated: undefined;
|
|
17756
17756
|
}, {}, {}>;
|
|
17757
|
-
},
|
|
17757
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17758
17758
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
17759
17759
|
name: "created_at";
|
|
17760
17760
|
tableName: "apps";
|
|
@@ -18044,7 +18044,6 @@ declare const AppApiSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
18044
18044
|
}, {}, {}>;
|
|
18045
18045
|
}, undefined>, undefined>;
|
|
18046
18046
|
declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
18047
|
-
type: z.ZodString;
|
|
18048
18047
|
id: z.ZodString;
|
|
18049
18048
|
name: z.ZodString;
|
|
18050
18049
|
createdAt: z.ZodString;
|
|
@@ -18053,6 +18052,7 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18053
18052
|
enabled: z.ZodBoolean;
|
|
18054
18053
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18055
18054
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18055
|
+
type: z.ZodString;
|
|
18056
18056
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18057
18057
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18058
18058
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18087,10 +18087,6 @@ declare const AppApiResponseSelectSchema: z.ZodObject<{
|
|
|
18087
18087
|
in: {};
|
|
18088
18088
|
}>;
|
|
18089
18089
|
declare const AppApiInsertSchema: z.ZodObject<{
|
|
18090
|
-
type: z.ZodEnum<{
|
|
18091
|
-
web_client: "web_client";
|
|
18092
|
-
api: "api";
|
|
18093
|
-
}>;
|
|
18094
18090
|
name: z.ZodString;
|
|
18095
18091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18096
18092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -18098,6 +18094,10 @@ declare const AppApiInsertSchema: z.ZodObject<{
|
|
|
18098
18094
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
18099
18095
|
tenantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18100
18096
|
projectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18097
|
+
type: z.ZodEnum<{
|
|
18098
|
+
web_client: "web_client";
|
|
18099
|
+
api: "api";
|
|
18100
|
+
}>;
|
|
18101
18101
|
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18102
18102
|
config: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
18103
18103
|
type: z.ZodLiteral<"web_client">;
|
|
@@ -18173,7 +18173,6 @@ declare const AppApiUpdateSchema: z.ZodObject<{
|
|
|
18173
18173
|
declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
18174
18174
|
data: z.ZodObject<{
|
|
18175
18175
|
app: z.ZodObject<{
|
|
18176
|
-
type: z.ZodString;
|
|
18177
18176
|
id: z.ZodString;
|
|
18178
18177
|
name: z.ZodString;
|
|
18179
18178
|
createdAt: z.ZodString;
|
|
@@ -18182,6 +18181,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
18182
18181
|
enabled: z.ZodBoolean;
|
|
18183
18182
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
18184
18183
|
projectId: z.ZodNullable<z.ZodString>;
|
|
18184
|
+
type: z.ZodString;
|
|
18185
18185
|
prompt: z.ZodNullable<z.ZodString>;
|
|
18186
18186
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
18187
18187
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -18217,7 +18217,7 @@ declare const AppApiCreationResponseSchema: z.ZodObject<{
|
|
|
18217
18217
|
}>;
|
|
18218
18218
|
}, z.core.$strip>;
|
|
18219
18219
|
}, z.core.$strip>;
|
|
18220
|
-
declare const CredentialReferenceSelectSchema:
|
|
18220
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18221
18221
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18222
18222
|
name: "created_at";
|
|
18223
18223
|
tableName: "credential_references";
|
|
@@ -18442,7 +18442,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
18442
18442
|
}, {}, {
|
|
18443
18443
|
length: 256;
|
|
18444
18444
|
}>;
|
|
18445
|
-
},
|
|
18445
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18446
18446
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18447
18447
|
name: "created_at";
|
|
18448
18448
|
tableName: "credential_references";
|
|
@@ -18669,31 +18669,31 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
18669
18669
|
}>;
|
|
18670
18670
|
}, undefined>, undefined>;
|
|
18671
18671
|
declare const CredentialReferenceInsertSchema: z.ZodObject<{
|
|
18672
|
-
type: z.ZodString;
|
|
18673
18672
|
id: z.ZodString;
|
|
18674
18673
|
name: z.ZodString;
|
|
18675
18674
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18676
18675
|
tenantId: z.ZodString;
|
|
18677
18676
|
projectId: z.ZodString;
|
|
18677
|
+
type: z.ZodString;
|
|
18678
18678
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18679
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18680
18679
|
credentialStoreId: z.ZodString;
|
|
18681
18680
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18681
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18682
18682
|
}, {
|
|
18683
18683
|
out: {};
|
|
18684
18684
|
in: {};
|
|
18685
18685
|
}>;
|
|
18686
18686
|
declare const CredentialReferenceUpdateSchema: z.ZodObject<{
|
|
18687
|
-
type: z.ZodOptional<z.ZodString>;
|
|
18688
18687
|
id: z.ZodOptional<z.ZodString>;
|
|
18689
18688
|
name: z.ZodOptional<z.ZodString>;
|
|
18690
18689
|
userId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18691
18690
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18692
18691
|
projectId: z.ZodOptional<z.ZodString>;
|
|
18692
|
+
type: z.ZodOptional<z.ZodString>;
|
|
18693
18693
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18694
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18695
18694
|
credentialStoreId: z.ZodOptional<z.ZodString>;
|
|
18696
18695
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
18696
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
18697
18697
|
}, {
|
|
18698
18698
|
out: {};
|
|
18699
18699
|
in: {};
|
|
@@ -18705,16 +18705,16 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
18705
18705
|
updatedAt: z.ZodString;
|
|
18706
18706
|
userId: z.ZodNullable<z.ZodString>;
|
|
18707
18707
|
toolId: z.ZodNullable<z.ZodString>;
|
|
18708
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
18709
18708
|
credentialStoreId: z.ZodString;
|
|
18710
18709
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
18710
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
18711
18711
|
type: z.ZodEnum<{
|
|
18712
18712
|
readonly memory: "memory";
|
|
18713
18713
|
readonly keychain: "keychain";
|
|
18714
18714
|
readonly nango: "nango";
|
|
18715
18715
|
readonly composio: "composio";
|
|
18716
18716
|
}>;
|
|
18717
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
18717
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
18718
18718
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18719
18719
|
name: "created_at";
|
|
18720
18720
|
tableName: "tools";
|
|
@@ -18994,7 +18994,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
18994
18994
|
}, {}, {
|
|
18995
18995
|
length: 256;
|
|
18996
18996
|
}>;
|
|
18997
|
-
},
|
|
18997
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18998
18998
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
18999
18999
|
name: "created_at";
|
|
19000
19000
|
tableName: "tools";
|
|
@@ -19295,9 +19295,9 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
19295
19295
|
name: z.ZodString;
|
|
19296
19296
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19297
19297
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19298
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19299
19298
|
credentialStoreId: z.ZodString;
|
|
19300
19299
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19300
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19301
19301
|
type: z.ZodEnum<{
|
|
19302
19302
|
readonly memory: "memory";
|
|
19303
19303
|
readonly keychain: "keychain";
|
|
@@ -19310,9 +19310,9 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
19310
19310
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19311
19311
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19312
19312
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19313
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19314
19313
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19315
19314
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
19315
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19316
19316
|
type: z.ZodOptional<z.ZodEnum<{
|
|
19317
19317
|
readonly memory: "memory";
|
|
19318
19318
|
readonly keychain: "keychain";
|
|
@@ -19380,9 +19380,9 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
19380
19380
|
id: z.ZodString;
|
|
19381
19381
|
name: z.ZodString;
|
|
19382
19382
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19383
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19384
19383
|
tenantId: z.ZodString;
|
|
19385
19384
|
projectId: z.ZodString;
|
|
19385
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19386
19386
|
config: z.ZodObject<{
|
|
19387
19387
|
type: z.ZodLiteral<"mcp">;
|
|
19388
19388
|
mcp: z.ZodObject<{
|
|
@@ -19440,18 +19440,18 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19440
19440
|
name: z.ZodString;
|
|
19441
19441
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
19442
19442
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19443
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
19444
19443
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
19445
19444
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
19446
19445
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
19447
19446
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19448
19447
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
19448
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
19449
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19449
19450
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19450
19451
|
name: z.ZodString;
|
|
19451
19452
|
description: z.ZodOptional<z.ZodString>;
|
|
19452
19453
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19453
19454
|
}, z.core.$strip>>>;
|
|
19454
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
19455
19455
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19456
19456
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19457
19457
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -19476,9 +19476,9 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
19476
19476
|
name: z.ZodString;
|
|
19477
19477
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19478
19478
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19479
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19480
19479
|
credentialStoreId: z.ZodString;
|
|
19481
19480
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19481
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19482
19482
|
type: z.ZodEnum<{
|
|
19483
19483
|
readonly memory: "memory";
|
|
19484
19484
|
readonly keychain: "keychain";
|
|
@@ -19501,9 +19501,9 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
19501
19501
|
id: z.ZodOptional<z.ZodString>;
|
|
19502
19502
|
name: z.ZodOptional<z.ZodString>;
|
|
19503
19503
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19504
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19505
19504
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19506
19505
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19506
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
19507
19507
|
config: z.ZodOptional<z.ZodObject<{
|
|
19508
19508
|
type: z.ZodLiteral<"mcp">;
|
|
19509
19509
|
mcp: z.ZodObject<{
|
|
@@ -19643,7 +19643,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
19643
19643
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
19644
19644
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
19645
19645
|
}, z.core.$strip>;
|
|
19646
|
-
declare const FunctionToolSelectSchema:
|
|
19646
|
+
declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
19647
19647
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
19648
19648
|
name: "created_at";
|
|
19649
19649
|
tableName: "function_tools";
|
|
@@ -19809,7 +19809,7 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
19809
19809
|
}, {}, {
|
|
19810
19810
|
length: 256;
|
|
19811
19811
|
}>;
|
|
19812
|
-
},
|
|
19812
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19813
19813
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
19814
19814
|
name: "created_at";
|
|
19815
19815
|
tableName: "function_tools";
|
|
@@ -20023,7 +20023,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
20023
20023
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20024
20024
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20025
20025
|
}, z.core.$strip>;
|
|
20026
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
20026
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20027
20027
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20028
20028
|
name: "created_at";
|
|
20029
20029
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -20195,7 +20195,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
20195
20195
|
}, {}, {
|
|
20196
20196
|
length: 256;
|
|
20197
20197
|
}>;
|
|
20198
|
-
},
|
|
20198
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20199
20199
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20200
20200
|
name: "created_at";
|
|
20201
20201
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -20371,7 +20371,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
20371
20371
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
20372
20372
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
20373
20373
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20374
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
20374
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20375
20375
|
agentId: z.ZodString;
|
|
20376
20376
|
projectId: z.ZodString;
|
|
20377
20377
|
tenantId: z.ZodString;
|
|
@@ -20387,18 +20387,18 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
20387
20387
|
createdAt: z.ZodString;
|
|
20388
20388
|
updatedAt: z.ZodString;
|
|
20389
20389
|
subAgentId: z.ZodString;
|
|
20390
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20390
20391
|
functionToolId: z.ZodString;
|
|
20391
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
20392
20392
|
}, z.core.$strip>;
|
|
20393
20393
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
20394
20394
|
subAgentId: z.ZodString;
|
|
20395
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
20395
20396
|
functionToolId: z.ZodString;
|
|
20396
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
20397
20397
|
}, {
|
|
20398
20398
|
out: {};
|
|
20399
20399
|
in: {};
|
|
20400
20400
|
}>;
|
|
20401
|
-
declare const FunctionSelectSchema:
|
|
20401
|
+
declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20402
20402
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20403
20403
|
name: "created_at";
|
|
20404
20404
|
tableName: "functions";
|
|
@@ -20545,7 +20545,7 @@ declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
20545
20545
|
}, {}, {
|
|
20546
20546
|
length: 256;
|
|
20547
20547
|
}>;
|
|
20548
|
-
},
|
|
20548
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20549
20549
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20550
20550
|
name: "created_at";
|
|
20551
20551
|
tableName: "functions";
|
|
@@ -20724,22 +20724,22 @@ declare const FunctionApiSelectSchema: z.ZodObject<{
|
|
|
20724
20724
|
createdAt: z.ZodString;
|
|
20725
20725
|
updatedAt: z.ZodString;
|
|
20726
20726
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
20727
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20728
20727
|
executeCode: z.ZodString;
|
|
20728
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
20729
20729
|
}, z.core.$strip>;
|
|
20730
20730
|
declare const FunctionApiInsertSchema: z.ZodObject<{
|
|
20731
20731
|
id: z.ZodString;
|
|
20732
20732
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20733
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20734
20733
|
executeCode: z.ZodString;
|
|
20734
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
20735
20735
|
}, z.core.$strip>;
|
|
20736
20736
|
declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
20737
20737
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20738
20738
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20739
20739
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20740
20740
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20741
|
-
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20742
20741
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20742
|
+
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
20743
20743
|
}, z.core.$strip>;
|
|
20744
20744
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
20745
20745
|
url: z.ZodString;
|
|
@@ -20785,9 +20785,9 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
20785
20785
|
name: z.ZodString;
|
|
20786
20786
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20787
20787
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20788
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20789
20788
|
credentialStoreId: z.ZodString;
|
|
20790
20789
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20790
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20791
20791
|
type: z.ZodEnum<{
|
|
20792
20792
|
readonly memory: "memory";
|
|
20793
20793
|
readonly keychain: "keychain";
|
|
@@ -20848,7 +20848,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
20848
20848
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20849
20849
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20850
20850
|
}, z.core.$strip>;
|
|
20851
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
20851
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20852
20852
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
20853
20853
|
name: "created_at";
|
|
20854
20854
|
tableName: "sub_agent_tool_relations";
|
|
@@ -21058,7 +21058,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"selec
|
|
|
21058
21058
|
}, {}, {
|
|
21059
21059
|
length: 256;
|
|
21060
21060
|
}>;
|
|
21061
|
-
},
|
|
21061
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21062
21062
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21063
21063
|
name: "created_at";
|
|
21064
21064
|
tableName: "sub_agent_tool_relations";
|
|
@@ -21309,37 +21309,37 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
21309
21309
|
id: z.ZodString;
|
|
21310
21310
|
createdAt: z.ZodString;
|
|
21311
21311
|
updatedAt: z.ZodString;
|
|
21312
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21313
21312
|
subAgentId: z.ZodString;
|
|
21314
21313
|
toolId: z.ZodString;
|
|
21315
|
-
|
|
21316
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
21314
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21315
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21316
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21317
21317
|
}, z.core.$strip>;
|
|
21318
21318
|
declare const SubAgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
21319
21319
|
id: z.ZodString;
|
|
21320
21320
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
21321
21321
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21322
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21323
21322
|
subAgentId: z.ZodString;
|
|
21324
21323
|
toolId: z.ZodString;
|
|
21324
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
21325
|
+
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
21325
21326
|
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21326
21327
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21327
21328
|
}, z.core.$strip>>>>;
|
|
21328
|
-
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
21329
21329
|
}, z.core.$strip>;
|
|
21330
21330
|
declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
21331
21331
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21332
21332
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21333
21333
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21334
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21335
21334
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21336
21335
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21336
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21337
|
+
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21337
21338
|
toolPolicies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21338
21339
|
needsApproval: z.ZodOptional<z.ZodBoolean>;
|
|
21339
21340
|
}, z.core.$strip>>>>>>;
|
|
21340
|
-
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
21341
21341
|
}, z.core.$strip>;
|
|
21342
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
21342
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21343
21343
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21344
21344
|
name: "created_at";
|
|
21345
21345
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -21507,7 +21507,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
21507
21507
|
}, {}, {
|
|
21508
21508
|
length: 256;
|
|
21509
21509
|
}>;
|
|
21510
|
-
},
|
|
21510
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21511
21511
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21512
21512
|
name: "created_at";
|
|
21513
21513
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -21708,8 +21708,8 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
21708
21708
|
id: z.ZodString;
|
|
21709
21709
|
createdAt: z.ZodString;
|
|
21710
21710
|
updatedAt: z.ZodString;
|
|
21711
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
21712
21711
|
subAgentId: z.ZodString;
|
|
21712
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
21713
21713
|
externalAgentId: z.ZodString;
|
|
21714
21714
|
}, z.core.$strip>;
|
|
21715
21715
|
declare const SubAgentExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -21722,11 +21722,11 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
21722
21722
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21723
21723
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21724
21724
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21725
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21726
21725
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21726
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
21727
21727
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21728
21728
|
}, z.core.$strip>;
|
|
21729
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
21729
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
21730
21730
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21731
21731
|
name: "created_at";
|
|
21732
21732
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -21894,7 +21894,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
21894
21894
|
}, {}, {
|
|
21895
21895
|
length: 256;
|
|
21896
21896
|
}>;
|
|
21897
|
-
},
|
|
21897
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21898
21898
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
21899
21899
|
name: "created_at";
|
|
21900
21900
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -22095,8 +22095,8 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<{
|
|
|
22095
22095
|
id: z.ZodString;
|
|
22096
22096
|
createdAt: z.ZodString;
|
|
22097
22097
|
updatedAt: z.ZodString;
|
|
22098
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
22099
22098
|
subAgentId: z.ZodString;
|
|
22099
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22100
22100
|
targetAgentId: z.ZodString;
|
|
22101
22101
|
}, z.core.$strip>;
|
|
22102
22102
|
declare const SubAgentTeamAgentRelationApiInsertSchema: z.ZodObject<{
|
|
@@ -22109,11 +22109,11 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
22109
22109
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22110
22110
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22111
22111
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22112
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22113
22112
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22113
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
22114
22114
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22115
22115
|
}, z.core.$strip>;
|
|
22116
|
-
declare const LedgerArtifactSelectSchema:
|
|
22116
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
22117
22117
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22118
22118
|
name: "created_at";
|
|
22119
22119
|
tableName: "ledger_artifacts";
|
|
@@ -22448,7 +22448,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
22448
22448
|
}, {}, {
|
|
22449
22449
|
length: 256;
|
|
22450
22450
|
}>;
|
|
22451
|
-
},
|
|
22451
|
+
}, drizzle_zod19.BuildRefine<{
|
|
22452
22452
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22453
22453
|
name: "created_at";
|
|
22454
22454
|
tableName: "ledger_artifacts";
|
|
@@ -22784,7 +22784,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
22784
22784
|
length: 256;
|
|
22785
22785
|
}>;
|
|
22786
22786
|
}, undefined>, undefined>;
|
|
22787
|
-
declare const LedgerArtifactInsertSchema:
|
|
22787
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
22788
22788
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
22789
22789
|
name: "created_at";
|
|
22790
22790
|
tableName: "ledger_artifacts";
|
|
@@ -23119,7 +23119,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
23119
23119
|
}, {}, {
|
|
23120
23120
|
length: 256;
|
|
23121
23121
|
}>;
|
|
23122
|
-
},
|
|
23122
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
23123
23123
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
23124
23124
|
name: "created_at";
|
|
23125
23125
|
tableName: "ledger_artifacts";
|
|
@@ -23454,7 +23454,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
23454
23454
|
}, {}, {
|
|
23455
23455
|
length: 256;
|
|
23456
23456
|
}>;
|
|
23457
|
-
}, "
|
|
23457
|
+
}, "id" | "name" | "createdAt" | "updatedAt" | "metadata" | "description" | "tenantId" | "projectId" | "type" | "taskId" | "toolCallId" | "contextId" | "parts" | "summary" | "mime" | "visibility" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
23458
23458
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
23459
23459
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23460
23460
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -23464,12 +23464,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23464
23464
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23465
23465
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23466
23466
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23467
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23468
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23467
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
23468
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
23469
23469
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23470
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23470
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
23471
23471
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23472
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23472
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
23473
23473
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23474
23474
|
projectId: z.ZodOptional<z.ZodString>;
|
|
23475
23475
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -23479,57 +23479,57 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
23479
23479
|
in: {};
|
|
23480
23480
|
}>;
|
|
23481
23481
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
23482
|
-
type: z.ZodString;
|
|
23483
23482
|
id: z.ZodString;
|
|
23484
23483
|
name: z.ZodNullable<z.ZodString>;
|
|
23485
23484
|
createdAt: z.ZodString;
|
|
23486
23485
|
updatedAt: z.ZodString;
|
|
23487
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
23486
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23488
23487
|
description: z.ZodNullable<z.ZodString>;
|
|
23488
|
+
type: z.ZodString;
|
|
23489
|
+
taskId: z.ZodString;
|
|
23489
23490
|
toolCallId: z.ZodNullable<z.ZodString>;
|
|
23490
23491
|
contextId: z.ZodString;
|
|
23491
|
-
|
|
23492
|
-
taskId: z.ZodString;
|
|
23493
|
-
parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
23492
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23494
23493
|
summary: z.ZodNullable<z.ZodString>;
|
|
23495
|
-
mime: z.ZodNullable<z.ZodType<
|
|
23496
|
-
|
|
23494
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23495
|
+
visibility: z.ZodNullable<z.ZodString>;
|
|
23496
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
23497
23497
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
23498
23498
|
}, z.core.$strip>;
|
|
23499
23499
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
23500
|
-
type: z.ZodOptional<z.ZodString>;
|
|
23501
23500
|
id: z.ZodString;
|
|
23502
23501
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23503
23502
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
23504
23503
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
23505
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23504
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23506
23505
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23506
|
+
type: z.ZodOptional<z.ZodString>;
|
|
23507
|
+
taskId: z.ZodString;
|
|
23507
23508
|
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23508
23509
|
contextId: z.ZodString;
|
|
23509
|
-
|
|
23510
|
-
taskId: z.ZodString;
|
|
23511
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
|
|
23510
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23512
23511
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23513
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23514
|
-
|
|
23512
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23513
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23514
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23515
23515
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23516
23516
|
}, z.core.$strip>;
|
|
23517
23517
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
23518
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23519
23518
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23520
23519
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23521
23520
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23522
23521
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23523
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23522
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23524
23523
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23524
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
23525
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23525
23526
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23526
23527
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23527
|
-
|
|
23528
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23529
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
23528
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23530
23529
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23531
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23532
|
-
|
|
23530
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23531
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23532
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
23533
23533
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
23534
23534
|
}, z.core.$strip>;
|
|
23535
23535
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -23778,22 +23778,22 @@ declare const AgentWithinContextOfProjectSchemaBase: z.ZodObject<{
|
|
|
23778
23778
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23779
23779
|
id: z.ZodString;
|
|
23780
23780
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
23781
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23782
23781
|
executeCode: z.ZodString;
|
|
23782
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23783
23783
|
}, z.core.$strip>>>;
|
|
23784
23784
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23785
23785
|
id: z.ZodOptional<z.ZodString>;
|
|
23786
23786
|
name: z.ZodString;
|
|
23787
23787
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23788
23788
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23789
|
-
|
|
23790
|
-
|
|
23789
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23790
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23791
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23791
23792
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23792
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23793
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23793
23794
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23794
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23795
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23795
23796
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23796
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23797
23797
|
}, z.core.$strip>>>;
|
|
23798
23798
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
23799
23799
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -23965,22 +23965,22 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
23965
23965
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23966
23966
|
id: z.ZodString;
|
|
23967
23967
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
23968
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23969
23968
|
executeCode: z.ZodString;
|
|
23969
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
23970
23970
|
}, z.core.$strip>>>;
|
|
23971
23971
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23972
23972
|
id: z.ZodOptional<z.ZodString>;
|
|
23973
23973
|
name: z.ZodString;
|
|
23974
23974
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23975
23975
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
23976
|
-
|
|
23977
|
-
|
|
23976
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23977
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23978
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23978
23979
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23979
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23980
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23980
23981
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23981
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
23982
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
23982
23983
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23983
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23984
23984
|
}, z.core.$strip>>>;
|
|
23985
23985
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
23986
23986
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24400,22 +24400,22 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24400
24400
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24401
24401
|
id: z.ZodString;
|
|
24402
24402
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24403
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24404
24403
|
executeCode: z.ZodString;
|
|
24404
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24405
24405
|
}, z.core.$strip>>>;
|
|
24406
24406
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24407
24407
|
id: z.ZodOptional<z.ZodString>;
|
|
24408
24408
|
name: z.ZodString;
|
|
24409
24409
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24410
24410
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24411
|
-
|
|
24412
|
-
|
|
24411
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24412
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24413
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24413
24414
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24414
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24415
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24415
24416
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24416
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
24417
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
24417
24418
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24418
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24419
24419
|
}, z.core.$strip>>>;
|
|
24420
24420
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
24421
24421
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -24509,8 +24509,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24509
24509
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24510
24510
|
id: z.ZodString;
|
|
24511
24511
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24512
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24513
24512
|
executeCode: z.ZodString;
|
|
24513
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
24514
24514
|
}, z.core.$strip>>>;
|
|
24515
24515
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
24516
24516
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -24621,9 +24621,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
24621
24621
|
name: z.ZodString;
|
|
24622
24622
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24623
24623
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24624
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24625
24624
|
credentialStoreId: z.ZodString;
|
|
24626
24625
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
24626
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24627
24627
|
type: z.ZodEnum<{
|
|
24628
24628
|
readonly memory: "memory";
|
|
24629
24629
|
readonly keychain: "keychain";
|
|
@@ -25059,8 +25059,8 @@ declare const AgentWithinContextOfProjectSelectSchema: z.ZodObject<{
|
|
|
25059
25059
|
createdAt: z.ZodString;
|
|
25060
25060
|
updatedAt: z.ZodString;
|
|
25061
25061
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25062
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25063
25062
|
executeCode: z.ZodString;
|
|
25063
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25064
25064
|
}, z.core.$strip>>>;
|
|
25065
25065
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25066
25066
|
id: z.ZodString;
|
|
@@ -25174,8 +25174,8 @@ declare const AgentWithinContextOfProjectSelectSchemaWithRelationIds: z.ZodObjec
|
|
|
25174
25174
|
createdAt: z.ZodString;
|
|
25175
25175
|
updatedAt: z.ZodString;
|
|
25176
25176
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25177
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25178
25177
|
executeCode: z.ZodString;
|
|
25178
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25179
25179
|
}, z.core.$strip>>>;
|
|
25180
25180
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25181
25181
|
id: z.ZodString;
|
|
@@ -25559,8 +25559,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25559
25559
|
createdAt: z.ZodString;
|
|
25560
25560
|
updatedAt: z.ZodString;
|
|
25561
25561
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25562
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25563
25562
|
executeCode: z.ZodString;
|
|
25563
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25564
25564
|
}, z.core.$strip>>>;
|
|
25565
25565
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
25566
25566
|
id: z.ZodString;
|
|
@@ -25651,8 +25651,8 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25651
25651
|
createdAt: z.ZodString;
|
|
25652
25652
|
updatedAt: z.ZodString;
|
|
25653
25653
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25654
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25655
25654
|
executeCode: z.ZodString;
|
|
25655
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
25656
25656
|
}, z.core.$strip>>>;
|
|
25657
25657
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25658
25658
|
id: z.ZodString;
|
|
@@ -25783,16 +25783,16 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
25783
25783
|
updatedAt: z.ZodString;
|
|
25784
25784
|
userId: z.ZodNullable<z.ZodString>;
|
|
25785
25785
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25786
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
25787
25786
|
credentialStoreId: z.ZodString;
|
|
25788
25787
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25788
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
25789
25789
|
type: z.ZodEnum<{
|
|
25790
25790
|
readonly memory: "memory";
|
|
25791
25791
|
readonly keychain: "keychain";
|
|
25792
25792
|
readonly nango: "nango";
|
|
25793
25793
|
readonly composio: "composio";
|
|
25794
25794
|
}>;
|
|
25795
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
25795
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
25796
25796
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
25797
25797
|
name: "created_at";
|
|
25798
25798
|
tableName: "tools";
|
|
@@ -26072,7 +26072,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26072
26072
|
}, {}, {
|
|
26073
26073
|
length: 256;
|
|
26074
26074
|
}>;
|
|
26075
|
-
},
|
|
26075
|
+
}, drizzle_zod19.BuildRefine<{
|
|
26076
26076
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
26077
26077
|
name: "created_at";
|
|
26078
26078
|
tableName: "tools";
|
|
@@ -26444,8 +26444,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26444
26444
|
createdAt: z.ZodString;
|
|
26445
26445
|
updatedAt: z.ZodString;
|
|
26446
26446
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26447
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26448
26447
|
executeCode: z.ZodString;
|
|
26448
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
26449
26449
|
}, z.core.$strip>>>;
|
|
26450
26450
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26451
26451
|
id: z.ZodString;
|
|
@@ -26576,16 +26576,16 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26576
26576
|
updatedAt: z.ZodString;
|
|
26577
26577
|
userId: z.ZodNullable<z.ZodString>;
|
|
26578
26578
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26579
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26580
26579
|
credentialStoreId: z.ZodString;
|
|
26581
26580
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26581
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26582
26582
|
type: z.ZodEnum<{
|
|
26583
26583
|
readonly memory: "memory";
|
|
26584
26584
|
readonly keychain: "keychain";
|
|
26585
26585
|
readonly nango: "nango";
|
|
26586
26586
|
readonly composio: "composio";
|
|
26587
26587
|
}>;
|
|
26588
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
26588
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
26589
26589
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
26590
26590
|
name: "created_at";
|
|
26591
26591
|
tableName: "tools";
|
|
@@ -26865,7 +26865,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
26865
26865
|
}, {}, {
|
|
26866
26866
|
length: 256;
|
|
26867
26867
|
}>;
|
|
26868
|
-
},
|
|
26868
|
+
}, drizzle_zod19.BuildRefine<{
|
|
26869
26869
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
26870
26870
|
name: "created_at";
|
|
26871
26871
|
tableName: "tools";
|
|
@@ -27226,8 +27226,8 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27226
27226
|
createdAt: z.ZodString;
|
|
27227
27227
|
updatedAt: z.ZodString;
|
|
27228
27228
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27229
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27230
27229
|
executeCode: z.ZodString;
|
|
27230
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
27231
27231
|
}, z.core.$strip>>>;
|
|
27232
27232
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
27233
27233
|
id: z.ZodString;
|
|
@@ -27629,9 +27629,9 @@ declare const AgentResponse: z.ZodObject<{
|
|
|
27629
27629
|
}, {
|
|
27630
27630
|
transferCountIs?: number | undefined;
|
|
27631
27631
|
}>>>;
|
|
27632
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
27633
27632
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
27634
27633
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
27634
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
27635
27635
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
27636
27636
|
enabled?: boolean | undefined;
|
|
27637
27637
|
numEvents?: number | undefined;
|
|
@@ -27736,16 +27736,16 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
27736
27736
|
updatedAt: z.ZodString;
|
|
27737
27737
|
userId: z.ZodNullable<z.ZodString>;
|
|
27738
27738
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27739
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27740
27739
|
credentialStoreId: z.ZodString;
|
|
27741
27740
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27741
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27742
27742
|
type: z.ZodEnum<{
|
|
27743
27743
|
readonly memory: "memory";
|
|
27744
27744
|
readonly keychain: "keychain";
|
|
27745
27745
|
readonly nango: "nango";
|
|
27746
27746
|
readonly composio: "composio";
|
|
27747
27747
|
}>;
|
|
27748
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27748
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
27749
27749
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
27750
27750
|
name: "created_at";
|
|
27751
27751
|
tableName: "tools";
|
|
@@ -28025,7 +28025,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28025
28025
|
}, {}, {
|
|
28026
28026
|
length: 256;
|
|
28027
28027
|
}>;
|
|
28028
|
-
},
|
|
28028
|
+
}, drizzle_zod19.BuildRefine<{
|
|
28029
28029
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
28030
28030
|
name: "created_at";
|
|
28031
28031
|
tableName: "tools";
|
|
@@ -28328,8 +28328,8 @@ declare const FunctionResponse: z.ZodObject<{
|
|
|
28328
28328
|
createdAt: z.ZodString;
|
|
28329
28329
|
updatedAt: z.ZodString;
|
|
28330
28330
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28331
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28332
28331
|
executeCode: z.ZodString;
|
|
28332
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
28333
28333
|
}, z.core.$strip>;
|
|
28334
28334
|
}, z.core.$strip>;
|
|
28335
28335
|
declare const FunctionToolResponse: z.ZodObject<{
|
|
@@ -28350,8 +28350,8 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
28350
28350
|
createdAt: z.ZodString;
|
|
28351
28351
|
updatedAt: z.ZodString;
|
|
28352
28352
|
subAgentId: z.ZodString;
|
|
28353
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28353
28354
|
functionToolId: z.ZodString;
|
|
28354
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28355
28355
|
}, z.core.$strip>;
|
|
28356
28356
|
}, z.core.$strip>;
|
|
28357
28357
|
declare const DataComponentResponse: z.ZodObject<{
|
|
@@ -28471,11 +28471,11 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
28471
28471
|
id: z.ZodString;
|
|
28472
28472
|
createdAt: z.ZodString;
|
|
28473
28473
|
updatedAt: z.ZodString;
|
|
28474
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
28475
28474
|
subAgentId: z.ZodString;
|
|
28476
28475
|
toolId: z.ZodString;
|
|
28477
|
-
|
|
28478
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
28476
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28477
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28478
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28479
28479
|
}, z.core.$strip>;
|
|
28480
28480
|
}, z.core.$strip>;
|
|
28481
28481
|
declare const TriggerResponse: z.ZodObject<{
|
|
@@ -28486,10 +28486,11 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28486
28486
|
updatedAt: z.ZodString;
|
|
28487
28487
|
description: z.ZodNullable<z.ZodString>;
|
|
28488
28488
|
enabled: z.ZodBoolean;
|
|
28489
|
-
|
|
28490
|
-
|
|
28489
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28490
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28491
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28491
28492
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
28492
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
28493
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28493
28494
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28494
28495
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28495
28496
|
algorithm: z.ZodEnum<{
|
|
@@ -28506,8 +28507,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28506
28507
|
signature: z.ZodObject<{
|
|
28507
28508
|
source: z.ZodEnum<{
|
|
28508
28509
|
query: "query";
|
|
28509
|
-
body: "body";
|
|
28510
28510
|
header: "header";
|
|
28511
|
+
body: "body";
|
|
28511
28512
|
}>;
|
|
28512
28513
|
key: z.ZodString;
|
|
28513
28514
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28516,8 +28517,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28516
28517
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28517
28518
|
source: z.ZodEnum<{
|
|
28518
28519
|
literal: "literal";
|
|
28519
|
-
body: "body";
|
|
28520
28520
|
header: "header";
|
|
28521
|
+
body: "body";
|
|
28521
28522
|
}>;
|
|
28522
28523
|
key: z.ZodOptional<z.ZodString>;
|
|
28523
28524
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28537,7 +28538,6 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
28537
28538
|
}, z.core.$strip>>;
|
|
28538
28539
|
}, z.core.$strip>>>;
|
|
28539
28540
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28540
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28541
28541
|
}, z.core.$strip>;
|
|
28542
28542
|
}, z.core.$strip>;
|
|
28543
28543
|
declare const TriggerInvocationResponse: z.ZodObject<{
|
|
@@ -28554,10 +28554,10 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
28554
28554
|
hash: z.ZodString;
|
|
28555
28555
|
}, z.core.$strip>>>;
|
|
28556
28556
|
status: z.ZodString;
|
|
28557
|
-
triggerId: z.ZodString;
|
|
28558
28557
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
28559
|
-
|
|
28560
|
-
|
|
28558
|
+
triggerId: z.ZodString;
|
|
28559
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
28560
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28561
28561
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
28562
28562
|
}, z.core.$strip>;
|
|
28563
28563
|
}, z.core.$strip>;
|
|
@@ -28799,9 +28799,9 @@ declare const AgentListResponse: z.ZodObject<{
|
|
|
28799
28799
|
}, {
|
|
28800
28800
|
transferCountIs?: number | undefined;
|
|
28801
28801
|
}>>>;
|
|
28802
|
-
prompt: z.ZodNullable<z.ZodString>;
|
|
28803
28802
|
defaultSubAgentId: z.ZodNullable<z.ZodString>;
|
|
28804
28803
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
28804
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
28805
28805
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
28806
28806
|
enabled?: boolean | undefined;
|
|
28807
28807
|
numEvents?: number | undefined;
|
|
@@ -28924,7 +28924,6 @@ declare const ApiKeyListResponse: z.ZodObject<{
|
|
|
28924
28924
|
}, z.core.$strip>;
|
|
28925
28925
|
declare const AppResponse: z.ZodObject<{
|
|
28926
28926
|
data: z.ZodObject<{
|
|
28927
|
-
type: z.ZodString;
|
|
28928
28927
|
id: z.ZodString;
|
|
28929
28928
|
name: z.ZodString;
|
|
28930
28929
|
createdAt: z.ZodString;
|
|
@@ -28933,6 +28932,7 @@ declare const AppResponse: z.ZodObject<{
|
|
|
28933
28932
|
enabled: z.ZodBoolean;
|
|
28934
28933
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
28935
28934
|
projectId: z.ZodNullable<z.ZodString>;
|
|
28935
|
+
type: z.ZodString;
|
|
28936
28936
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28937
28937
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28938
28938
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -28969,7 +28969,6 @@ declare const AppResponse: z.ZodObject<{
|
|
|
28969
28969
|
}, z.core.$strip>;
|
|
28970
28970
|
declare const AppListResponse: z.ZodObject<{
|
|
28971
28971
|
data: z.ZodArray<z.ZodObject<{
|
|
28972
|
-
type: z.ZodString;
|
|
28973
28972
|
id: z.ZodString;
|
|
28974
28973
|
name: z.ZodString;
|
|
28975
28974
|
createdAt: z.ZodString;
|
|
@@ -28978,6 +28977,7 @@ declare const AppListResponse: z.ZodObject<{
|
|
|
28978
28977
|
enabled: z.ZodBoolean;
|
|
28979
28978
|
tenantId: z.ZodNullable<z.ZodString>;
|
|
28980
28979
|
projectId: z.ZodNullable<z.ZodString>;
|
|
28980
|
+
type: z.ZodString;
|
|
28981
28981
|
prompt: z.ZodNullable<z.ZodString>;
|
|
28982
28982
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
28983
28983
|
defaultProjectId: z.ZodNullable<z.ZodString>;
|
|
@@ -29026,16 +29026,16 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29026
29026
|
updatedAt: z.ZodString;
|
|
29027
29027
|
userId: z.ZodNullable<z.ZodString>;
|
|
29028
29028
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29029
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29030
29029
|
credentialStoreId: z.ZodString;
|
|
29031
29030
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29031
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29032
29032
|
type: z.ZodEnum<{
|
|
29033
29033
|
readonly memory: "memory";
|
|
29034
29034
|
readonly keychain: "keychain";
|
|
29035
29035
|
readonly nango: "nango";
|
|
29036
29036
|
readonly composio: "composio";
|
|
29037
29037
|
}>;
|
|
29038
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29038
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
29039
29039
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
29040
29040
|
name: "created_at";
|
|
29041
29041
|
tableName: "tools";
|
|
@@ -29315,7 +29315,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29315
29315
|
}, {}, {
|
|
29316
29316
|
length: 256;
|
|
29317
29317
|
}>;
|
|
29318
|
-
},
|
|
29318
|
+
}, drizzle_zod19.BuildRefine<{
|
|
29319
29319
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
29320
29320
|
name: "created_at";
|
|
29321
29321
|
tableName: "tools";
|
|
@@ -29624,8 +29624,8 @@ declare const FunctionListResponse: z.ZodObject<{
|
|
|
29624
29624
|
createdAt: z.ZodString;
|
|
29625
29625
|
updatedAt: z.ZodString;
|
|
29626
29626
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29627
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29628
29627
|
executeCode: z.ZodString;
|
|
29628
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
29629
29629
|
}, z.core.$strip>>;
|
|
29630
29630
|
pagination: z.ZodObject<{
|
|
29631
29631
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29658,8 +29658,8 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
29658
29658
|
createdAt: z.ZodString;
|
|
29659
29659
|
updatedAt: z.ZodString;
|
|
29660
29660
|
subAgentId: z.ZodString;
|
|
29661
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29661
29662
|
functionToolId: z.ZodString;
|
|
29662
|
-
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29663
29663
|
}, z.core.$strip>>;
|
|
29664
29664
|
pagination: z.ZodObject<{
|
|
29665
29665
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29803,11 +29803,11 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
29803
29803
|
id: z.ZodString;
|
|
29804
29804
|
createdAt: z.ZodString;
|
|
29805
29805
|
updatedAt: z.ZodString;
|
|
29806
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
29807
29806
|
subAgentId: z.ZodString;
|
|
29808
29807
|
toolId: z.ZodString;
|
|
29809
|
-
|
|
29810
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
29808
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29809
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29810
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29811
29811
|
}, z.core.$strip>>;
|
|
29812
29812
|
pagination: z.ZodObject<{
|
|
29813
29813
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29824,10 +29824,11 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29824
29824
|
updatedAt: z.ZodString;
|
|
29825
29825
|
description: z.ZodNullable<z.ZodString>;
|
|
29826
29826
|
enabled: z.ZodBoolean;
|
|
29827
|
-
|
|
29828
|
-
|
|
29827
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29828
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29829
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29829
29830
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29830
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
29831
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29831
29832
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29832
29833
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29833
29834
|
algorithm: z.ZodEnum<{
|
|
@@ -29844,8 +29845,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29844
29845
|
signature: z.ZodObject<{
|
|
29845
29846
|
source: z.ZodEnum<{
|
|
29846
29847
|
query: "query";
|
|
29847
|
-
body: "body";
|
|
29848
29848
|
header: "header";
|
|
29849
|
+
body: "body";
|
|
29849
29850
|
}>;
|
|
29850
29851
|
key: z.ZodString;
|
|
29851
29852
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29854,8 +29855,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29854
29855
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29855
29856
|
source: z.ZodEnum<{
|
|
29856
29857
|
literal: "literal";
|
|
29857
|
-
body: "body";
|
|
29858
29858
|
header: "header";
|
|
29859
|
+
body: "body";
|
|
29859
29860
|
}>;
|
|
29860
29861
|
key: z.ZodOptional<z.ZodString>;
|
|
29861
29862
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29875,7 +29876,6 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
29875
29876
|
}, z.core.$strip>>;
|
|
29876
29877
|
}, z.core.$strip>>>;
|
|
29877
29878
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29878
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29879
29879
|
}, z.core.$strip>>;
|
|
29880
29880
|
pagination: z.ZodObject<{
|
|
29881
29881
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -29898,10 +29898,10 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
29898
29898
|
hash: z.ZodString;
|
|
29899
29899
|
}, z.core.$strip>>>;
|
|
29900
29900
|
status: z.ZodString;
|
|
29901
|
-
triggerId: z.ZodString;
|
|
29902
29901
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
29903
|
-
|
|
29904
|
-
|
|
29902
|
+
triggerId: z.ZodString;
|
|
29903
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
29904
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29905
29905
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
29906
29906
|
}, z.core.$strip>>;
|
|
29907
29907
|
pagination: z.ZodObject<{
|
|
@@ -29919,10 +29919,11 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29919
29919
|
updatedAt: z.ZodString;
|
|
29920
29920
|
description: z.ZodNullable<z.ZodString>;
|
|
29921
29921
|
enabled: z.ZodBoolean;
|
|
29922
|
-
|
|
29923
|
-
|
|
29922
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29923
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29924
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29924
29925
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29925
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
29926
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29926
29927
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29927
29928
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29928
29929
|
algorithm: z.ZodEnum<{
|
|
@@ -29939,8 +29940,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29939
29940
|
signature: z.ZodObject<{
|
|
29940
29941
|
source: z.ZodEnum<{
|
|
29941
29942
|
query: "query";
|
|
29942
|
-
body: "body";
|
|
29943
29943
|
header: "header";
|
|
29944
|
+
body: "body";
|
|
29944
29945
|
}>;
|
|
29945
29946
|
key: z.ZodString;
|
|
29946
29947
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -29949,8 +29950,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29949
29950
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
29950
29951
|
source: z.ZodEnum<{
|
|
29951
29952
|
literal: "literal";
|
|
29952
|
-
body: "body";
|
|
29953
29953
|
header: "header";
|
|
29954
|
+
body: "body";
|
|
29954
29955
|
}>;
|
|
29955
29956
|
key: z.ZodOptional<z.ZodString>;
|
|
29956
29957
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -29970,7 +29971,6 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
29970
29971
|
}, z.core.$strip>>;
|
|
29971
29972
|
}, z.core.$strip>>>;
|
|
29972
29973
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29973
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29974
29974
|
webhookUrl: z.ZodString;
|
|
29975
29975
|
}, z.core.$strip>;
|
|
29976
29976
|
}, z.core.$strip>;
|
|
@@ -29982,10 +29982,11 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
29982
29982
|
updatedAt: z.ZodString;
|
|
29983
29983
|
description: z.ZodNullable<z.ZodString>;
|
|
29984
29984
|
enabled: z.ZodBoolean;
|
|
29985
|
-
|
|
29986
|
-
|
|
29985
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29986
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29987
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29987
29988
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
29988
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
29989
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
29989
29990
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29990
29991
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29991
29992
|
algorithm: z.ZodEnum<{
|
|
@@ -30002,8 +30003,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30002
30003
|
signature: z.ZodObject<{
|
|
30003
30004
|
source: z.ZodEnum<{
|
|
30004
30005
|
query: "query";
|
|
30005
|
-
body: "body";
|
|
30006
30006
|
header: "header";
|
|
30007
|
+
body: "body";
|
|
30007
30008
|
}>;
|
|
30008
30009
|
key: z.ZodString;
|
|
30009
30010
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30012,8 +30013,8 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30012
30013
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30013
30014
|
source: z.ZodEnum<{
|
|
30014
30015
|
literal: "literal";
|
|
30015
|
-
body: "body";
|
|
30016
30016
|
header: "header";
|
|
30017
|
+
body: "body";
|
|
30017
30018
|
}>;
|
|
30018
30019
|
key: z.ZodOptional<z.ZodString>;
|
|
30019
30020
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30033,7 +30034,6 @@ declare const TriggerWithWebhookUrlWithWarningResponse: z.ZodObject<{
|
|
|
30033
30034
|
}, z.core.$strip>>;
|
|
30034
30035
|
}, z.core.$strip>>>;
|
|
30035
30036
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30036
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30037
30037
|
webhookUrl: z.ZodString;
|
|
30038
30038
|
}, z.core.$strip>;
|
|
30039
30039
|
warning: z.ZodOptional<z.ZodString>;
|
|
@@ -30046,10 +30046,11 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30046
30046
|
updatedAt: z.ZodString;
|
|
30047
30047
|
description: z.ZodNullable<z.ZodString>;
|
|
30048
30048
|
enabled: z.ZodBoolean;
|
|
30049
|
-
|
|
30050
|
-
|
|
30049
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30050
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30051
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30051
30052
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30052
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
30053
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30053
30054
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30054
30055
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30055
30056
|
algorithm: z.ZodEnum<{
|
|
@@ -30066,8 +30067,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30066
30067
|
signature: z.ZodObject<{
|
|
30067
30068
|
source: z.ZodEnum<{
|
|
30068
30069
|
query: "query";
|
|
30069
|
-
body: "body";
|
|
30070
30070
|
header: "header";
|
|
30071
|
+
body: "body";
|
|
30071
30072
|
}>;
|
|
30072
30073
|
key: z.ZodString;
|
|
30073
30074
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -30076,8 +30077,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30076
30077
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
30077
30078
|
source: z.ZodEnum<{
|
|
30078
30079
|
literal: "literal";
|
|
30079
|
-
body: "body";
|
|
30080
30080
|
header: "header";
|
|
30081
|
+
body: "body";
|
|
30081
30082
|
}>;
|
|
30082
30083
|
key: z.ZodOptional<z.ZodString>;
|
|
30083
30084
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -30097,7 +30098,6 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
30097
30098
|
}, z.core.$strip>>;
|
|
30098
30099
|
}, z.core.$strip>>>;
|
|
30099
30100
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30100
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30101
30101
|
webhookUrl: z.ZodString;
|
|
30102
30102
|
}, z.core.$strip>>;
|
|
30103
30103
|
pagination: z.ZodObject<{
|
|
@@ -30115,9 +30115,9 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30115
30115
|
ref: z.ZodString;
|
|
30116
30116
|
description: z.ZodNullable<z.ZodString>;
|
|
30117
30117
|
enabled: z.ZodBoolean;
|
|
30118
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30118
30119
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30119
30120
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30120
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30121
30121
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30122
30122
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30123
30123
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30127,8 +30127,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30127
30127
|
timeoutSeconds: z.ZodInt;
|
|
30128
30128
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30129
30129
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30130
|
-
failed: "failed";
|
|
30131
30130
|
completed: "completed";
|
|
30131
|
+
failed: "failed";
|
|
30132
30132
|
}>>;
|
|
30133
30133
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30134
30134
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30143,9 +30143,9 @@ declare const ScheduledTriggerResponse: z.ZodObject<{
|
|
|
30143
30143
|
ref: z.ZodString;
|
|
30144
30144
|
description: z.ZodNullable<z.ZodString>;
|
|
30145
30145
|
enabled: z.ZodBoolean;
|
|
30146
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30146
30147
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30147
30148
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30148
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30149
30149
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30150
30150
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30151
30151
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30165,9 +30165,9 @@ declare const ScheduledTriggerListResponse: z.ZodObject<{
|
|
|
30165
30165
|
ref: z.ZodString;
|
|
30166
30166
|
description: z.ZodNullable<z.ZodString>;
|
|
30167
30167
|
enabled: z.ZodBoolean;
|
|
30168
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30168
30169
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30169
30170
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30170
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30171
30171
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30172
30172
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30173
30173
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30193,9 +30193,9 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30193
30193
|
ref: z.ZodString;
|
|
30194
30194
|
description: z.ZodNullable<z.ZodString>;
|
|
30195
30195
|
enabled: z.ZodBoolean;
|
|
30196
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
30196
30197
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
30197
30198
|
runAsUserId: z.ZodNullable<z.ZodString>;
|
|
30198
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
30199
30199
|
cronExpression: z.ZodNullable<z.ZodString>;
|
|
30200
30200
|
cronTimezone: z.ZodNullable<z.ZodString>;
|
|
30201
30201
|
runAt: z.ZodNullable<z.ZodString>;
|
|
@@ -30205,8 +30205,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30205
30205
|
timeoutSeconds: z.ZodInt;
|
|
30206
30206
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30207
30207
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30208
|
-
failed: "failed";
|
|
30209
30208
|
completed: "completed";
|
|
30209
|
+
failed: "failed";
|
|
30210
30210
|
}>>;
|
|
30211
30211
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30212
30212
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30233,17 +30233,17 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30233
30233
|
}, z.core.$strip>>>;
|
|
30234
30234
|
status: z.ZodEnum<{
|
|
30235
30235
|
pending: "pending";
|
|
30236
|
-
failed: "failed";
|
|
30237
30236
|
running: "running";
|
|
30238
30237
|
completed: "completed";
|
|
30238
|
+
failed: "failed";
|
|
30239
30239
|
cancelled: "cancelled";
|
|
30240
30240
|
}>;
|
|
30241
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30241
30242
|
scheduledTriggerId: z.ZodString;
|
|
30242
30243
|
scheduledFor: z.ZodString;
|
|
30243
30244
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
30244
30245
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
30245
30246
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30246
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30247
30247
|
attemptNumber: z.ZodInt;
|
|
30248
30248
|
idempotencyKey: z.ZodString;
|
|
30249
30249
|
}, z.core.$strip>;
|
|
@@ -30263,17 +30263,17 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
30263
30263
|
}, z.core.$strip>>>;
|
|
30264
30264
|
status: z.ZodEnum<{
|
|
30265
30265
|
pending: "pending";
|
|
30266
|
-
failed: "failed";
|
|
30267
30266
|
running: "running";
|
|
30268
30267
|
completed: "completed";
|
|
30268
|
+
failed: "failed";
|
|
30269
30269
|
cancelled: "cancelled";
|
|
30270
30270
|
}>;
|
|
30271
|
+
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30271
30272
|
scheduledTriggerId: z.ZodString;
|
|
30272
30273
|
scheduledFor: z.ZodString;
|
|
30273
30274
|
startedAt: z.ZodNullable<z.ZodString>;
|
|
30274
30275
|
completedAt: z.ZodNullable<z.ZodString>;
|
|
30275
30276
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30276
|
-
conversationIds: z.ZodNullable<z.ZodType<string[], string[], z.core.$ZodTypeInternals<string[], string[]>>>;
|
|
30277
30277
|
attemptNumber: z.ZodInt;
|
|
30278
30278
|
idempotencyKey: z.ZodString;
|
|
30279
30279
|
}, z.core.$strip>>;
|
|
@@ -30454,22 +30454,22 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30454
30454
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30455
30455
|
id: z.ZodString;
|
|
30456
30456
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30457
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30458
30457
|
executeCode: z.ZodString;
|
|
30458
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30459
30459
|
}, z.core.$strip>>>;
|
|
30460
30460
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30461
30461
|
id: z.ZodOptional<z.ZodString>;
|
|
30462
30462
|
name: z.ZodString;
|
|
30463
30463
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30464
30464
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30465
|
-
|
|
30466
|
-
|
|
30465
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30466
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30467
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30467
30468
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30468
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30469
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30469
30470
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30470
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30471
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30471
30472
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30472
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30473
30473
|
}, z.core.$strip>>>;
|
|
30474
30474
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
30475
30475
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -30563,8 +30563,8 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30563
30563
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30564
30564
|
id: z.ZodString;
|
|
30565
30565
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30566
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30567
30566
|
executeCode: z.ZodString;
|
|
30567
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
30568
30568
|
}, z.core.$strip>>>;
|
|
30569
30569
|
skills: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodObject<{
|
|
30570
30570
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -30675,9 +30675,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
30675
30675
|
name: z.ZodString;
|
|
30676
30676
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30677
30677
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30678
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30679
30678
|
credentialStoreId: z.ZodString;
|
|
30680
30679
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30680
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30681
30681
|
type: z.ZodEnum<{
|
|
30682
30682
|
readonly memory: "memory";
|
|
30683
30683
|
readonly keychain: "keychain";
|
|
@@ -30905,8 +30905,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30905
30905
|
createdAt: z.ZodString;
|
|
30906
30906
|
updatedAt: z.ZodString;
|
|
30907
30907
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
30908
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30909
30908
|
executeCode: z.ZodString;
|
|
30909
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
30910
30910
|
}, z.core.$strip>>>;
|
|
30911
30911
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
30912
30912
|
id: z.ZodString;
|
|
@@ -30997,8 +30997,8 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
30997
30997
|
createdAt: z.ZodString;
|
|
30998
30998
|
updatedAt: z.ZodString;
|
|
30999
30999
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31000
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31001
31000
|
executeCode: z.ZodString;
|
|
31001
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31002
31002
|
}, z.core.$strip>>>;
|
|
31003
31003
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31004
31004
|
id: z.ZodString;
|
|
@@ -31129,16 +31129,16 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31129
31129
|
updatedAt: z.ZodString;
|
|
31130
31130
|
userId: z.ZodNullable<z.ZodString>;
|
|
31131
31131
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31132
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31133
31132
|
credentialStoreId: z.ZodString;
|
|
31134
31133
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31134
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31135
31135
|
type: z.ZodEnum<{
|
|
31136
31136
|
readonly memory: "memory";
|
|
31137
31137
|
readonly keychain: "keychain";
|
|
31138
31138
|
readonly nango: "nango";
|
|
31139
31139
|
readonly composio: "composio";
|
|
31140
31140
|
}>;
|
|
31141
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31141
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
31142
31142
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
31143
31143
|
name: "created_at";
|
|
31144
31144
|
tableName: "tools";
|
|
@@ -31418,7 +31418,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31418
31418
|
}, {}, {
|
|
31419
31419
|
length: 256;
|
|
31420
31420
|
}>;
|
|
31421
|
-
},
|
|
31421
|
+
}, drizzle_zod19.BuildRefine<{
|
|
31422
31422
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
31423
31423
|
name: "created_at";
|
|
31424
31424
|
tableName: "tools";
|
|
@@ -31792,8 +31792,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31792
31792
|
createdAt: z.ZodString;
|
|
31793
31793
|
updatedAt: z.ZodString;
|
|
31794
31794
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31795
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31796
31795
|
executeCode: z.ZodString;
|
|
31796
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
31797
31797
|
}, z.core.$strip>>>;
|
|
31798
31798
|
dataComponents: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31799
31799
|
id: z.ZodString;
|
|
@@ -31924,16 +31924,16 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
31924
31924
|
updatedAt: z.ZodString;
|
|
31925
31925
|
userId: z.ZodNullable<z.ZodString>;
|
|
31926
31926
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31927
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31928
31927
|
credentialStoreId: z.ZodString;
|
|
31929
31928
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31929
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31930
31930
|
type: z.ZodEnum<{
|
|
31931
31931
|
readonly memory: "memory";
|
|
31932
31932
|
readonly keychain: "keychain";
|
|
31933
31933
|
readonly nango: "nango";
|
|
31934
31934
|
readonly composio: "composio";
|
|
31935
31935
|
}>;
|
|
31936
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
31936
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
31937
31937
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
31938
31938
|
name: "created_at";
|
|
31939
31939
|
tableName: "tools";
|
|
@@ -32213,7 +32213,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32213
32213
|
}, {}, {
|
|
32214
32214
|
length: 256;
|
|
32215
32215
|
}>;
|
|
32216
|
-
},
|
|
32216
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32217
32217
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
32218
32218
|
name: "created_at";
|
|
32219
32219
|
tableName: "tools";
|
|
@@ -32574,8 +32574,8 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32574
32574
|
createdAt: z.ZodString;
|
|
32575
32575
|
updatedAt: z.ZodString;
|
|
32576
32576
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32577
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32578
32577
|
executeCode: z.ZodString;
|
|
32578
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
32579
32579
|
}, z.core.$strip>>>;
|
|
32580
32580
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
32581
32581
|
id: z.ZodString;
|
|
@@ -32878,22 +32878,22 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
32878
32878
|
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32879
32879
|
id: z.ZodString;
|
|
32880
32880
|
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
32881
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32882
32881
|
executeCode: z.ZodString;
|
|
32882
|
+
dependencies: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
32883
32883
|
}, z.core.$strip>>>;
|
|
32884
32884
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32885
32885
|
id: z.ZodOptional<z.ZodString>;
|
|
32886
32886
|
name: z.ZodString;
|
|
32887
32887
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32888
32888
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
32889
|
-
|
|
32890
|
-
|
|
32889
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32890
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32891
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32891
32892
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32892
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32893
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32893
32894
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32894
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
32895
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
32895
32896
|
runAsUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32896
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32897
32897
|
}, z.core.$strip>>>;
|
|
32898
32898
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
32899
32899
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -33124,8 +33124,8 @@ declare const AgentWithinContextOfProjectSelectResponse: z.ZodObject<{
|
|
|
33124
33124
|
createdAt: z.ZodString;
|
|
33125
33125
|
updatedAt: z.ZodString;
|
|
33126
33126
|
inputSchema: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
33127
|
-
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33128
33127
|
executeCode: z.ZodString;
|
|
33128
|
+
dependencies: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
33129
33129
|
}, z.core.$strip>>>;
|
|
33130
33130
|
contextConfig: z.ZodNullable<z.ZodObject<{
|
|
33131
33131
|
id: z.ZodString;
|
|
@@ -33199,9 +33199,9 @@ declare const McpToolResponse: z.ZodObject<{
|
|
|
33199
33199
|
id: z.ZodString;
|
|
33200
33200
|
name: z.ZodString;
|
|
33201
33201
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33202
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33203
33202
|
tenantId: z.ZodString;
|
|
33204
33203
|
projectId: z.ZodString;
|
|
33204
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33205
33205
|
config: z.ZodObject<{
|
|
33206
33206
|
type: z.ZodLiteral<"mcp">;
|
|
33207
33207
|
mcp: z.ZodObject<{
|
|
@@ -33260,9 +33260,9 @@ declare const McpToolListResponse: z.ZodObject<{
|
|
|
33260
33260
|
id: z.ZodString;
|
|
33261
33261
|
name: z.ZodString;
|
|
33262
33262
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33263
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33264
33263
|
tenantId: z.ZodString;
|
|
33265
33264
|
projectId: z.ZodString;
|
|
33265
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
33266
33266
|
config: z.ZodObject<{
|
|
33267
33267
|
type: z.ZodLiteral<"mcp">;
|
|
33268
33268
|
mcp: z.ZodObject<{
|
|
@@ -33327,8 +33327,8 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
33327
33327
|
id: z.ZodString;
|
|
33328
33328
|
createdAt: z.ZodString;
|
|
33329
33329
|
updatedAt: z.ZodString;
|
|
33330
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33331
33330
|
subAgentId: z.ZodString;
|
|
33331
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33332
33332
|
targetAgentId: z.ZodString;
|
|
33333
33333
|
}, z.core.$strip>;
|
|
33334
33334
|
}, z.core.$strip>;
|
|
@@ -33337,8 +33337,8 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
33337
33337
|
id: z.ZodString;
|
|
33338
33338
|
createdAt: z.ZodString;
|
|
33339
33339
|
updatedAt: z.ZodString;
|
|
33340
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33341
33340
|
subAgentId: z.ZodString;
|
|
33341
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33342
33342
|
targetAgentId: z.ZodString;
|
|
33343
33343
|
}, z.core.$strip>>;
|
|
33344
33344
|
pagination: z.ZodObject<{
|
|
@@ -33353,8 +33353,8 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
33353
33353
|
id: z.ZodString;
|
|
33354
33354
|
createdAt: z.ZodString;
|
|
33355
33355
|
updatedAt: z.ZodString;
|
|
33356
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33357
33356
|
subAgentId: z.ZodString;
|
|
33357
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33358
33358
|
externalAgentId: z.ZodString;
|
|
33359
33359
|
}, z.core.$strip>;
|
|
33360
33360
|
}, z.core.$strip>;
|
|
@@ -33363,8 +33363,8 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
33363
33363
|
id: z.ZodString;
|
|
33364
33364
|
createdAt: z.ZodString;
|
|
33365
33365
|
updatedAt: z.ZodString;
|
|
33366
|
-
headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
|
|
33367
33366
|
subAgentId: z.ZodString;
|
|
33367
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
33368
33368
|
externalAgentId: z.ZodString;
|
|
33369
33369
|
}, z.core.$strip>>;
|
|
33370
33370
|
pagination: z.ZodObject<{
|
|
@@ -33593,7 +33593,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
33593
33593
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
33594
33594
|
ref: z.ZodOptional<z.ZodString>;
|
|
33595
33595
|
}, z.core.$strip>;
|
|
33596
|
-
declare const ProjectMetadataSelectSchema:
|
|
33596
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
33597
33597
|
id: drizzle_orm_pg_core220.PgColumn<{
|
|
33598
33598
|
name: "id";
|
|
33599
33599
|
tableName: "project_metadata";
|
|
@@ -33687,7 +33687,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
33687
33687
|
}, {}, {
|
|
33688
33688
|
length: 512;
|
|
33689
33689
|
}>;
|
|
33690
|
-
},
|
|
33690
|
+
}, drizzle_zod19.BuildRefine<{
|
|
33691
33691
|
id: drizzle_orm_pg_core220.PgColumn<{
|
|
33692
33692
|
name: "id";
|
|
33693
33693
|
tableName: "project_metadata";
|
|
@@ -33801,7 +33801,7 @@ declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
|
33801
33801
|
User: "User";
|
|
33802
33802
|
Organization: "Organization";
|
|
33803
33803
|
}>;
|
|
33804
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
33804
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
33805
33805
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
33806
33806
|
name: "created_at";
|
|
33807
33807
|
tableName: "work_app_github_installations";
|
|
@@ -33967,7 +33967,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
33967
33967
|
}, {}, {
|
|
33968
33968
|
length: 256;
|
|
33969
33969
|
}>;
|
|
33970
|
-
},
|
|
33970
|
+
}, drizzle_zod19.BuildRefine<{
|
|
33971
33971
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
33972
33972
|
name: "created_at";
|
|
33973
33973
|
tableName: "work_app_github_installations";
|
|
@@ -34180,7 +34180,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<{
|
|
|
34180
34180
|
Organization: "Organization";
|
|
34181
34181
|
}>;
|
|
34182
34182
|
}, z.core.$strip>;
|
|
34183
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
34183
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34184
34184
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34185
34185
|
name: "created_at";
|
|
34186
34186
|
tableName: "work_app_github_repositories";
|
|
@@ -34325,7 +34325,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"se
|
|
|
34325
34325
|
identity: undefined;
|
|
34326
34326
|
generated: undefined;
|
|
34327
34327
|
}, {}, {}>;
|
|
34328
|
-
},
|
|
34328
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34329
34329
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34330
34330
|
name: "created_at";
|
|
34331
34331
|
tableName: "work_app_github_repositories";
|
|
@@ -34486,7 +34486,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<{
|
|
|
34486
34486
|
repositoryFullName: z.ZodString;
|
|
34487
34487
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
34488
34488
|
}, z.core.$strip>;
|
|
34489
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
34489
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34490
34490
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34491
34491
|
name: "created_at";
|
|
34492
34492
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -34597,7 +34597,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
34597
34597
|
}, {}, {
|
|
34598
34598
|
length: 256;
|
|
34599
34599
|
}>;
|
|
34600
|
-
},
|
|
34600
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34601
34601
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34602
34602
|
name: "created_at";
|
|
34603
34603
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -34709,7 +34709,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
34709
34709
|
length: 256;
|
|
34710
34710
|
}>;
|
|
34711
34711
|
}, undefined>, undefined>;
|
|
34712
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
34712
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34713
34713
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34714
34714
|
name: "created_at";
|
|
34715
34715
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -34839,7 +34839,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
34839
34839
|
}, {}, {
|
|
34840
34840
|
length: 256;
|
|
34841
34841
|
}>;
|
|
34842
|
-
},
|
|
34842
|
+
}, drizzle_zod19.BuildRefine<{
|
|
34843
34843
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34844
34844
|
name: "created_at";
|
|
34845
34845
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -34993,7 +34993,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
34993
34993
|
all: "all";
|
|
34994
34994
|
selected: "selected";
|
|
34995
34995
|
}>;
|
|
34996
|
-
repositories: z.ZodArray<
|
|
34996
|
+
repositories: z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
34997
34997
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
34998
34998
|
name: "created_at";
|
|
34999
34999
|
tableName: "work_app_github_repositories";
|
|
@@ -35138,7 +35138,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35138
35138
|
identity: undefined;
|
|
35139
35139
|
generated: undefined;
|
|
35140
35140
|
}, {}, {}>;
|
|
35141
|
-
},
|
|
35141
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35142
35142
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35143
35143
|
name: "created_at";
|
|
35144
35144
|
tableName: "work_app_github_repositories";
|
|
@@ -35285,7 +35285,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
35285
35285
|
}, {}, {}>;
|
|
35286
35286
|
}, undefined>, undefined>>;
|
|
35287
35287
|
}, z.core.$strip>;
|
|
35288
|
-
declare const WorkAppSlackChannelAgentConfigSelectSchema:
|
|
35288
|
+
declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35289
35289
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35290
35290
|
name: "created_at";
|
|
35291
35291
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -35523,7 +35523,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSch
|
|
|
35523
35523
|
identity: undefined;
|
|
35524
35524
|
generated: undefined;
|
|
35525
35525
|
}, {}, {}>;
|
|
35526
|
-
},
|
|
35526
|
+
}, drizzle_zod19.BuildRefine<{
|
|
35527
35527
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35528
35528
|
name: "created_at";
|
|
35529
35529
|
tableName: "work_app_slack_channel_agent_configs";
|
|
@@ -35762,7 +35762,7 @@ declare const WorkAppSlackChannelAgentConfigSelectSchema: drizzle_zod15.BuildSch
|
|
|
35762
35762
|
generated: undefined;
|
|
35763
35763
|
}, {}, {}>;
|
|
35764
35764
|
}, undefined>, undefined>;
|
|
35765
|
-
declare const WorkAppSlackWorkspaceSelectSchema:
|
|
35765
|
+
declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
35766
35766
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
35767
35767
|
name: "created_at";
|
|
35768
35768
|
tableName: "work_app_slack_workspaces";
|
|
@@ -36057,7 +36057,7 @@ declare const WorkAppSlackWorkspaceSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
36057
36057
|
identity: undefined;
|
|
36058
36058
|
generated: undefined;
|
|
36059
36059
|
}, {}, {}>;
|
|
36060
|
-
},
|
|
36060
|
+
}, drizzle_zod19.BuildRefine<{
|
|
36061
36061
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36062
36062
|
name: "created_at";
|
|
36063
36063
|
tableName: "work_app_slack_workspaces";
|
|
@@ -36397,7 +36397,7 @@ declare const WorkAppSlackMcpToolAccessConfigApiInsertSchema: z.ZodObject<{
|
|
|
36397
36397
|
dmEnabled: z.ZodBoolean;
|
|
36398
36398
|
channelIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
36399
36399
|
}, z.core.$strip>;
|
|
36400
|
-
declare const UserProfileSelectSchema:
|
|
36400
|
+
declare const UserProfileSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
36401
36401
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36402
36402
|
name: "created_at";
|
|
36403
36403
|
tableName: "user_profile";
|
|
@@ -36502,7 +36502,7 @@ declare const UserProfileSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
36502
36502
|
}, {}, {
|
|
36503
36503
|
$type: Record<string, unknown>;
|
|
36504
36504
|
}>;
|
|
36505
|
-
},
|
|
36505
|
+
}, drizzle_zod19.BuildRefine<{
|
|
36506
36506
|
createdAt: drizzle_orm_pg_core220.PgColumn<{
|
|
36507
36507
|
name: "created_at";
|
|
36508
36508
|
tableName: "user_profile";
|
|
@@ -36643,10 +36643,10 @@ declare const AnonymousSessionResponseSchema: z.ZodObject<{
|
|
|
36643
36643
|
expiresAt: z.ZodString;
|
|
36644
36644
|
}, z.core.$strip>;
|
|
36645
36645
|
declare const WorkflowExecutionStatusEnum: z.ZodEnum<{
|
|
36646
|
-
|
|
36646
|
+
suspended: "suspended";
|
|
36647
36647
|
running: "running";
|
|
36648
36648
|
completed: "completed";
|
|
36649
|
-
|
|
36649
|
+
failed: "failed";
|
|
36650
36650
|
}>;
|
|
36651
36651
|
declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
36652
36652
|
createdAt: z.ZodString;
|
|
@@ -36659,10 +36659,10 @@ declare const WorkflowExecutionSelectSchema: z.ZodObject<{
|
|
|
36659
36659
|
tenantId: z.ZodString;
|
|
36660
36660
|
id: z.ZodString;
|
|
36661
36661
|
status: z.ZodEnum<{
|
|
36662
|
-
|
|
36662
|
+
suspended: "suspended";
|
|
36663
36663
|
running: "running";
|
|
36664
36664
|
completed: "completed";
|
|
36665
|
-
|
|
36665
|
+
failed: "failed";
|
|
36666
36666
|
}>;
|
|
36667
36667
|
}, {
|
|
36668
36668
|
out: {};
|
|
@@ -36673,14 +36673,14 @@ declare const WorkflowExecutionInsertSchema: z.ZodObject<{
|
|
|
36673
36673
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
36674
36674
|
tenantId: z.ZodString;
|
|
36675
36675
|
projectId: z.ZodString;
|
|
36676
|
-
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36677
36676
|
agentId: z.ZodString;
|
|
36677
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36678
36678
|
conversationId: z.ZodString;
|
|
36679
36679
|
status: z.ZodDefault<z.ZodEnum<{
|
|
36680
|
-
|
|
36680
|
+
suspended: "suspended";
|
|
36681
36681
|
running: "running";
|
|
36682
36682
|
completed: "completed";
|
|
36683
|
-
|
|
36683
|
+
failed: "failed";
|
|
36684
36684
|
}>>;
|
|
36685
36685
|
}, {
|
|
36686
36686
|
out: {};
|
|
@@ -36691,14 +36691,14 @@ declare const WorkflowExecutionUpdateSchema: z.ZodObject<{
|
|
|
36691
36691
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>;
|
|
36692
36692
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
36693
36693
|
projectId: z.ZodOptional<z.ZodString>;
|
|
36694
|
-
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
36695
36694
|
agentId: z.ZodOptional<z.ZodString>;
|
|
36695
|
+
requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
36696
36696
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
36697
36697
|
status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
36698
|
-
|
|
36698
|
+
suspended: "suspended";
|
|
36699
36699
|
running: "running";
|
|
36700
36700
|
completed: "completed";
|
|
36701
|
-
|
|
36701
|
+
failed: "failed";
|
|
36702
36702
|
}>>>;
|
|
36703
36703
|
}, {
|
|
36704
36704
|
out: {};
|