@inkeep/agents-core 0.47.4 → 0.47.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +131 -131
- package/dist/auth/auth.d.ts +57 -57
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +8 -8
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +327 -327
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { ContextFetchDefinition, ConversationHistoryConfig, ConversationMetadata
|
|
|
3
3
|
import "../index.js";
|
|
4
4
|
import { z } from "@hono/zod-openapi";
|
|
5
5
|
import * as drizzle_orm_pg_core211 from "drizzle-orm/pg-core";
|
|
6
|
-
import * as
|
|
6
|
+
import * as drizzle_zod19 from "drizzle-zod";
|
|
7
7
|
|
|
8
8
|
//#region src/validation/schemas.d.ts
|
|
9
9
|
declare const TextPartSchema: z.ZodObject<{
|
|
@@ -128,7 +128,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
|
|
|
128
128
|
type OmitTenantScope<T> = Omit<T, 'tenantId'>;
|
|
129
129
|
type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
|
|
130
130
|
type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
|
|
131
|
-
declare const SubAgentSelectSchema:
|
|
131
|
+
declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
132
132
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
133
133
|
name: "created_at";
|
|
134
134
|
tableName: "sub_agents";
|
|
@@ -379,7 +379,7 @@ declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
379
379
|
}, {}, {
|
|
380
380
|
length: 256;
|
|
381
381
|
}>;
|
|
382
|
-
},
|
|
382
|
+
}, drizzle_zod19.BuildRefine<{
|
|
383
383
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
384
384
|
name: "created_at";
|
|
385
385
|
tableName: "sub_agents";
|
|
@@ -848,7 +848,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
|
|
|
848
848
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
849
849
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
850
850
|
}, z.core.$strip>;
|
|
851
|
-
declare const SubAgentRelationSelectSchema:
|
|
851
|
+
declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
852
852
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
853
853
|
name: "created_at";
|
|
854
854
|
tableName: "sub_agent_relations";
|
|
@@ -1016,7 +1016,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
1016
1016
|
}, {}, {
|
|
1017
1017
|
length: 256;
|
|
1018
1018
|
}>;
|
|
1019
|
-
},
|
|
1019
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1020
1020
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1021
1021
|
name: "created_at";
|
|
1022
1022
|
tableName: "sub_agent_relations";
|
|
@@ -1287,7 +1287,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
|
|
|
1287
1287
|
sourceSubAgentId: z.ZodString;
|
|
1288
1288
|
externalSubAgentId: z.ZodString;
|
|
1289
1289
|
}>, z.core.$strip>;
|
|
1290
|
-
declare const AgentSelectSchema:
|
|
1290
|
+
declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
1291
1291
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1292
1292
|
name: "created_at";
|
|
1293
1293
|
tableName: "agent";
|
|
@@ -1585,7 +1585,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1585
1585
|
}, {}, {
|
|
1586
1586
|
length: 256;
|
|
1587
1587
|
}>;
|
|
1588
|
-
},
|
|
1588
|
+
}, drizzle_zod19.BuildRefine<{
|
|
1589
1589
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1590
1590
|
name: "created_at";
|
|
1591
1591
|
tableName: "agent";
|
|
@@ -1884,7 +1884,7 @@ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
1884
1884
|
length: 256;
|
|
1885
1885
|
}>;
|
|
1886
1886
|
}, undefined>, undefined>;
|
|
1887
|
-
declare const AgentInsertSchema:
|
|
1887
|
+
declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
1888
1888
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
1889
1889
|
name: "created_at";
|
|
1890
1890
|
tableName: "agent";
|
|
@@ -2182,7 +2182,7 @@ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
2182
2182
|
}, {}, {
|
|
2183
2183
|
length: 256;
|
|
2184
2184
|
}>;
|
|
2185
|
-
},
|
|
2185
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
2186
2186
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
2187
2187
|
name: "created_at";
|
|
2188
2188
|
tableName: "agent";
|
|
@@ -3069,8 +3069,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
|
|
|
3069
3069
|
declare const SignatureSourceSchema: z.ZodObject<{
|
|
3070
3070
|
source: z.ZodEnum<{
|
|
3071
3071
|
query: "query";
|
|
3072
|
-
body: "body";
|
|
3073
3072
|
header: "header";
|
|
3073
|
+
body: "body";
|
|
3074
3074
|
}>;
|
|
3075
3075
|
key: z.ZodString;
|
|
3076
3076
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3099,8 +3099,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
|
|
|
3099
3099
|
declare const SignedComponentSchema: z.ZodObject<{
|
|
3100
3100
|
source: z.ZodEnum<{
|
|
3101
3101
|
literal: "literal";
|
|
3102
|
-
body: "body";
|
|
3103
3102
|
header: "header";
|
|
3103
|
+
body: "body";
|
|
3104
3104
|
}>;
|
|
3105
3105
|
key: z.ZodOptional<z.ZodString>;
|
|
3106
3106
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3209,8 +3209,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3209
3209
|
signature: z.ZodObject<{
|
|
3210
3210
|
source: z.ZodEnum<{
|
|
3211
3211
|
query: "query";
|
|
3212
|
-
body: "body";
|
|
3213
3212
|
header: "header";
|
|
3213
|
+
body: "body";
|
|
3214
3214
|
}>;
|
|
3215
3215
|
key: z.ZodString;
|
|
3216
3216
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3219,8 +3219,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
|
|
|
3219
3219
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3220
3220
|
source: z.ZodEnum<{
|
|
3221
3221
|
literal: "literal";
|
|
3222
|
-
body: "body";
|
|
3223
3222
|
header: "header";
|
|
3223
|
+
body: "body";
|
|
3224
3224
|
}>;
|
|
3225
3225
|
key: z.ZodOptional<z.ZodString>;
|
|
3226
3226
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3279,10 +3279,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3279
3279
|
createdAt: z.ZodString;
|
|
3280
3280
|
updatedAt: z.ZodString;
|
|
3281
3281
|
enabled: z.ZodBoolean;
|
|
3282
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
3283
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
3282
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3283
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3284
3284
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
3285
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
3285
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
3286
3286
|
name: z.ZodString;
|
|
3287
3287
|
description: z.ZodNullable<z.ZodString>;
|
|
3288
3288
|
agentId: z.ZodString;
|
|
@@ -3305,8 +3305,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3305
3305
|
signature: z.ZodObject<{
|
|
3306
3306
|
source: z.ZodEnum<{
|
|
3307
3307
|
query: "query";
|
|
3308
|
-
body: "body";
|
|
3309
3308
|
header: "header";
|
|
3309
|
+
body: "body";
|
|
3310
3310
|
}>;
|
|
3311
3311
|
key: z.ZodString;
|
|
3312
3312
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -3315,8 +3315,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3315
3315
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
3316
3316
|
source: z.ZodEnum<{
|
|
3317
3317
|
literal: "literal";
|
|
3318
|
-
body: "body";
|
|
3319
3318
|
header: "header";
|
|
3319
|
+
body: "body";
|
|
3320
3320
|
}>;
|
|
3321
3321
|
key: z.ZodOptional<z.ZodString>;
|
|
3322
3322
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -3339,7 +3339,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
|
|
|
3339
3339
|
out: {};
|
|
3340
3340
|
in: {};
|
|
3341
3341
|
}>;
|
|
3342
|
-
declare const TriggerInsertSchema:
|
|
3342
|
+
declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
3343
3343
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3344
3344
|
name: "created_at";
|
|
3345
3345
|
tableName: "triggers";
|
|
@@ -3499,13 +3499,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3499
3499
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3500
3500
|
encoding: "hex" | "base64";
|
|
3501
3501
|
signature: {
|
|
3502
|
-
source: "query" | "
|
|
3502
|
+
source: "query" | "header" | "body";
|
|
3503
3503
|
key: string;
|
|
3504
3504
|
prefix?: string | undefined;
|
|
3505
3505
|
regex?: string | undefined;
|
|
3506
3506
|
};
|
|
3507
3507
|
signedComponents: {
|
|
3508
|
-
source: "literal" | "
|
|
3508
|
+
source: "literal" | "header" | "body";
|
|
3509
3509
|
required: boolean;
|
|
3510
3510
|
key?: string | undefined;
|
|
3511
3511
|
value?: string | undefined;
|
|
@@ -3536,13 +3536,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3536
3536
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3537
3537
|
encoding: "hex" | "base64";
|
|
3538
3538
|
signature: {
|
|
3539
|
-
source: "query" | "
|
|
3539
|
+
source: "query" | "header" | "body";
|
|
3540
3540
|
key: string;
|
|
3541
3541
|
prefix?: string | undefined;
|
|
3542
3542
|
regex?: string | undefined;
|
|
3543
3543
|
};
|
|
3544
3544
|
signedComponents: {
|
|
3545
|
-
source: "literal" | "
|
|
3545
|
+
source: "literal" | "header" | "body";
|
|
3546
3546
|
required: boolean;
|
|
3547
3547
|
key?: string | undefined;
|
|
3548
3548
|
value?: string | undefined;
|
|
@@ -3671,7 +3671,7 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3671
3671
|
}, {}, {
|
|
3672
3672
|
length: 256;
|
|
3673
3673
|
}>;
|
|
3674
|
-
},
|
|
3674
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
3675
3675
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
3676
3676
|
name: "created_at";
|
|
3677
3677
|
tableName: "triggers";
|
|
@@ -3831,13 +3831,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3831
3831
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3832
3832
|
encoding: "hex" | "base64";
|
|
3833
3833
|
signature: {
|
|
3834
|
-
source: "query" | "
|
|
3834
|
+
source: "query" | "header" | "body";
|
|
3835
3835
|
key: string;
|
|
3836
3836
|
prefix?: string | undefined;
|
|
3837
3837
|
regex?: string | undefined;
|
|
3838
3838
|
};
|
|
3839
3839
|
signedComponents: {
|
|
3840
|
-
source: "literal" | "
|
|
3840
|
+
source: "literal" | "header" | "body";
|
|
3841
3841
|
required: boolean;
|
|
3842
3842
|
key?: string | undefined;
|
|
3843
3843
|
value?: string | undefined;
|
|
@@ -3868,13 +3868,13 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
3868
3868
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
3869
3869
|
encoding: "hex" | "base64";
|
|
3870
3870
|
signature: {
|
|
3871
|
-
source: "query" | "
|
|
3871
|
+
source: "query" | "header" | "body";
|
|
3872
3872
|
key: string;
|
|
3873
3873
|
prefix?: string | undefined;
|
|
3874
3874
|
regex?: string | undefined;
|
|
3875
3875
|
};
|
|
3876
3876
|
signedComponents: {
|
|
3877
|
-
source: "literal" | "
|
|
3877
|
+
source: "literal" | "header" | "body";
|
|
3878
3878
|
required: boolean;
|
|
3879
3879
|
key?: string | undefined;
|
|
3880
3880
|
value?: string | undefined;
|
|
@@ -4007,12 +4007,12 @@ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
4007
4007
|
declare const TriggerUpdateSchema: z.ZodObject<{
|
|
4008
4008
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4009
4009
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4010
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4011
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4010
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4011
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4012
4012
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4013
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4013
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4014
4014
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4015
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4015
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4016
4016
|
name: z.ZodOptional<z.ZodString>;
|
|
4017
4017
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4018
4018
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4028,10 +4028,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4028
4028
|
createdAt: z.ZodString;
|
|
4029
4029
|
updatedAt: z.ZodString;
|
|
4030
4030
|
enabled: z.ZodBoolean;
|
|
4031
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4032
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4031
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4032
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4033
4033
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4034
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4034
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4035
4035
|
name: z.ZodString;
|
|
4036
4036
|
description: z.ZodNullable<z.ZodString>;
|
|
4037
4037
|
agentId: z.ZodString;
|
|
@@ -4054,8 +4054,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4054
4054
|
signature: z.ZodObject<{
|
|
4055
4055
|
source: z.ZodEnum<{
|
|
4056
4056
|
query: "query";
|
|
4057
|
-
body: "body";
|
|
4058
4057
|
header: "header";
|
|
4058
|
+
body: "body";
|
|
4059
4059
|
}>;
|
|
4060
4060
|
key: z.ZodString;
|
|
4061
4061
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4064,8 +4064,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
4064
4064
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4065
4065
|
source: z.ZodEnum<{
|
|
4066
4066
|
literal: "literal";
|
|
4067
|
-
body: "body";
|
|
4068
4067
|
header: "header";
|
|
4068
|
+
body: "body";
|
|
4069
4069
|
}>;
|
|
4070
4070
|
key: z.ZodOptional<z.ZodString>;
|
|
4071
4071
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4091,23 +4091,23 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
|
|
|
4091
4091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4092
4092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4093
4093
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4094
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4095
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4094
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4095
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4096
4096
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4097
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4097
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4098
4098
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4099
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4099
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
4100
4100
|
id: z.ZodOptional<z.ZodString>;
|
|
4101
4101
|
}, z.core.$strip>;
|
|
4102
4102
|
declare const TriggerApiUpdateSchema: z.ZodObject<{
|
|
4103
4103
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4104
4104
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4105
|
-
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4106
|
-
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4105
|
+
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4106
|
+
outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4107
4107
|
messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4108
|
-
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4108
|
+
authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4109
4109
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4110
|
-
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4110
|
+
signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4111
4111
|
name: z.ZodOptional<z.ZodString>;
|
|
4112
4112
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4113
4113
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -4126,10 +4126,10 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4126
4126
|
createdAt: z.ZodString;
|
|
4127
4127
|
updatedAt: z.ZodString;
|
|
4128
4128
|
enabled: z.ZodBoolean;
|
|
4129
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
4130
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
4129
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4130
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4131
4131
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
4132
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
4132
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4133
4133
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4134
4134
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4135
4135
|
algorithm: z.ZodEnum<{
|
|
@@ -4146,8 +4146,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4146
4146
|
signature: z.ZodObject<{
|
|
4147
4147
|
source: z.ZodEnum<{
|
|
4148
4148
|
query: "query";
|
|
4149
|
-
body: "body";
|
|
4150
4149
|
header: "header";
|
|
4150
|
+
body: "body";
|
|
4151
4151
|
}>;
|
|
4152
4152
|
key: z.ZodString;
|
|
4153
4153
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4156,8 +4156,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4156
4156
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
4157
4157
|
source: z.ZodEnum<{
|
|
4158
4158
|
literal: "literal";
|
|
4159
|
-
body: "body";
|
|
4160
4159
|
header: "header";
|
|
4160
|
+
body: "body";
|
|
4161
4161
|
}>;
|
|
4162
4162
|
key: z.ZodOptional<z.ZodString>;
|
|
4163
4163
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -4178,7 +4178,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
|
|
|
4178
4178
|
}, z.core.$strip>>>;
|
|
4179
4179
|
webhookUrl: z.ZodString;
|
|
4180
4180
|
}, z.core.$strip>;
|
|
4181
|
-
declare const TriggerInvocationSelectSchema:
|
|
4181
|
+
declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
4182
4182
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4183
4183
|
name: "trigger_id";
|
|
4184
4184
|
tableName: "trigger_invocations";
|
|
@@ -4380,7 +4380,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
4380
4380
|
}, {}, {
|
|
4381
4381
|
length: 256;
|
|
4382
4382
|
}>;
|
|
4383
|
-
},
|
|
4383
|
+
}, drizzle_zod19.BuildRefine<{
|
|
4384
4384
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4385
4385
|
name: "trigger_id";
|
|
4386
4386
|
tableName: "trigger_invocations";
|
|
@@ -4583,7 +4583,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
4583
4583
|
length: 256;
|
|
4584
4584
|
}>;
|
|
4585
4585
|
}, undefined>, undefined>;
|
|
4586
|
-
declare const TriggerInvocationInsertSchema:
|
|
4586
|
+
declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
4587
4587
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4588
4588
|
name: "trigger_id";
|
|
4589
4589
|
tableName: "trigger_invocations";
|
|
@@ -4785,7 +4785,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert",
|
|
|
4785
4785
|
}, {}, {
|
|
4786
4786
|
length: 256;
|
|
4787
4787
|
}>;
|
|
4788
|
-
},
|
|
4788
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
4789
4789
|
triggerId: drizzle_orm_pg_core211.PgColumn<{
|
|
4790
4790
|
name: "trigger_id";
|
|
4791
4791
|
tableName: "trigger_invocations";
|
|
@@ -4992,8 +4992,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
|
4992
4992
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4993
4993
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4994
4994
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4995
|
-
requestPayload: z.ZodOptional<z.ZodType<
|
|
4996
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
4995
|
+
requestPayload: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
4996
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
4997
4997
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4998
4998
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4999
4999
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5008,8 +5008,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5008
5008
|
triggerId: z.ZodString;
|
|
5009
5009
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
5010
5010
|
status: z.ZodString;
|
|
5011
|
-
requestPayload: z.ZodType<
|
|
5012
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
5011
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5012
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
5013
5013
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
5014
5014
|
createdAt: z.ZodString;
|
|
5015
5015
|
agentId: z.ZodString;
|
|
@@ -5022,8 +5022,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5022
5022
|
status: z.ZodOptional<z.ZodString>;
|
|
5023
5023
|
triggerId: z.ZodString;
|
|
5024
5024
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5025
|
-
requestPayload: z.ZodType<
|
|
5026
|
-
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5025
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5026
|
+
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5027
5027
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5028
5028
|
id: z.ZodString;
|
|
5029
5029
|
}, z.core.$strip>;
|
|
@@ -5033,11 +5033,11 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
|
5033
5033
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5034
5034
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5035
5035
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5036
|
-
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
5037
|
-
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
5036
|
+
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5037
|
+
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5038
5038
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5039
5039
|
}, z.core.$strip>;
|
|
5040
|
-
declare const TaskSelectSchema:
|
|
5040
|
+
declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5041
5041
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5042
5042
|
name: "created_at";
|
|
5043
5043
|
tableName: "tasks";
|
|
@@ -5097,7 +5097,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5097
5097
|
dataType: "json";
|
|
5098
5098
|
columnType: "PgJsonb";
|
|
5099
5099
|
data: {
|
|
5100
|
-
type: "
|
|
5100
|
+
type: "tag" | "commit" | "branch";
|
|
5101
5101
|
name: string;
|
|
5102
5102
|
hash: string;
|
|
5103
5103
|
};
|
|
@@ -5113,7 +5113,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5113
5113
|
generated: undefined;
|
|
5114
5114
|
}, {}, {
|
|
5115
5115
|
$type: {
|
|
5116
|
-
type: "
|
|
5116
|
+
type: "tag" | "commit" | "branch";
|
|
5117
5117
|
name: string;
|
|
5118
5118
|
hash: string;
|
|
5119
5119
|
};
|
|
@@ -5251,7 +5251,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5251
5251
|
}, {}, {
|
|
5252
5252
|
length: 256;
|
|
5253
5253
|
}>;
|
|
5254
|
-
},
|
|
5254
|
+
}, drizzle_zod19.BuildRefine<{
|
|
5255
5255
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5256
5256
|
name: "created_at";
|
|
5257
5257
|
tableName: "tasks";
|
|
@@ -5311,7 +5311,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5311
5311
|
dataType: "json";
|
|
5312
5312
|
columnType: "PgJsonb";
|
|
5313
5313
|
data: {
|
|
5314
|
-
type: "
|
|
5314
|
+
type: "tag" | "commit" | "branch";
|
|
5315
5315
|
name: string;
|
|
5316
5316
|
hash: string;
|
|
5317
5317
|
};
|
|
@@ -5327,7 +5327,7 @@ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5327
5327
|
generated: undefined;
|
|
5328
5328
|
}, {}, {
|
|
5329
5329
|
$type: {
|
|
5330
|
-
type: "
|
|
5330
|
+
type: "tag" | "commit" | "branch";
|
|
5331
5331
|
name: string;
|
|
5332
5332
|
hash: string;
|
|
5333
5333
|
};
|
|
@@ -5480,8 +5480,8 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
5480
5480
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5481
5481
|
ref: z.ZodObject<{
|
|
5482
5482
|
type: z.ZodEnum<{
|
|
5483
|
-
commit: "commit";
|
|
5484
5483
|
tag: "tag";
|
|
5484
|
+
commit: "commit";
|
|
5485
5485
|
branch: "branch";
|
|
5486
5486
|
}>;
|
|
5487
5487
|
name: z.ZodString;
|
|
@@ -5505,8 +5505,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
5505
5505
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5506
5506
|
ref: z.ZodOptional<z.ZodObject<{
|
|
5507
5507
|
type: z.ZodEnum<{
|
|
5508
|
-
commit: "commit";
|
|
5509
5508
|
tag: "tag";
|
|
5509
|
+
commit: "commit";
|
|
5510
5510
|
branch: "branch";
|
|
5511
5511
|
}>;
|
|
5512
5512
|
name: z.ZodString;
|
|
@@ -5521,19 +5521,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5521
5521
|
updatedAt: z.ZodString;
|
|
5522
5522
|
contextId: z.ZodString;
|
|
5523
5523
|
ref: z.ZodNullable<z.ZodType<{
|
|
5524
|
-
type: "
|
|
5524
|
+
type: "tag" | "commit" | "branch";
|
|
5525
5525
|
name: string;
|
|
5526
5526
|
hash: string;
|
|
5527
5527
|
}, {
|
|
5528
|
-
type: "
|
|
5528
|
+
type: "tag" | "commit" | "branch";
|
|
5529
5529
|
name: string;
|
|
5530
5530
|
hash: string;
|
|
5531
5531
|
}, z.core.$ZodTypeInternals<{
|
|
5532
|
-
type: "
|
|
5532
|
+
type: "tag" | "commit" | "branch";
|
|
5533
5533
|
name: string;
|
|
5534
5534
|
hash: string;
|
|
5535
5535
|
}, {
|
|
5536
|
-
type: "
|
|
5536
|
+
type: "tag" | "commit" | "branch";
|
|
5537
5537
|
name: string;
|
|
5538
5538
|
hash: string;
|
|
5539
5539
|
}>>>;
|
|
@@ -5559,8 +5559,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5559
5559
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5560
5560
|
ref: z.ZodObject<{
|
|
5561
5561
|
type: z.ZodEnum<{
|
|
5562
|
-
commit: "commit";
|
|
5563
5562
|
tag: "tag";
|
|
5563
|
+
commit: "commit";
|
|
5564
5564
|
branch: "branch";
|
|
5565
5565
|
}>;
|
|
5566
5566
|
name: z.ZodString;
|
|
@@ -5575,19 +5575,19 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5575
5575
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5576
5576
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5577
5577
|
type: z.ZodEnum<{
|
|
5578
|
-
commit: "commit";
|
|
5579
5578
|
tag: "tag";
|
|
5579
|
+
commit: "commit";
|
|
5580
5580
|
branch: "branch";
|
|
5581
5581
|
}>;
|
|
5582
5582
|
name: z.ZodString;
|
|
5583
5583
|
hash: z.ZodString;
|
|
5584
5584
|
}, z.core.$strip>>>;
|
|
5585
5585
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5586
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5587
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5588
5586
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5587
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5588
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5589
5589
|
}, z.core.$strip>;
|
|
5590
|
-
declare const TaskRelationSelectSchema:
|
|
5590
|
+
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5591
5591
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5592
5592
|
name: "created_at";
|
|
5593
5593
|
tableName: "task_relations";
|
|
@@ -5736,7 +5736,7 @@ declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
5736
5736
|
}, {}, {
|
|
5737
5737
|
length: 256;
|
|
5738
5738
|
}>;
|
|
5739
|
-
},
|
|
5739
|
+
}, drizzle_zod19.BuildRefine<{
|
|
5740
5740
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5741
5741
|
name: "created_at";
|
|
5742
5742
|
tableName: "task_relations";
|
|
@@ -5962,7 +5962,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
|
|
|
5962
5962
|
description: z.ZodOptional<z.ZodString>;
|
|
5963
5963
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5964
5964
|
}, z.core.$strip>;
|
|
5965
|
-
declare const ToolSelectSchema:
|
|
5965
|
+
declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5966
5966
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
5967
5967
|
name: "created_at";
|
|
5968
5968
|
tableName: "tools";
|
|
@@ -6242,7 +6242,7 @@ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6242
6242
|
}, {}, {
|
|
6243
6243
|
length: 256;
|
|
6244
6244
|
}>;
|
|
6245
|
-
},
|
|
6245
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6246
6246
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6247
6247
|
name: "created_at";
|
|
6248
6248
|
tableName: "tools";
|
|
@@ -6568,7 +6568,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
6568
6568
|
out: {};
|
|
6569
6569
|
in: {};
|
|
6570
6570
|
}>;
|
|
6571
|
-
declare const ConversationSelectSchema:
|
|
6571
|
+
declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
6572
6572
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6573
6573
|
name: "created_at";
|
|
6574
6574
|
tableName: "conversations";
|
|
@@ -6666,7 +6666,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6666
6666
|
dataType: "json";
|
|
6667
6667
|
columnType: "PgJsonb";
|
|
6668
6668
|
data: {
|
|
6669
|
-
type: "
|
|
6669
|
+
type: "tag" | "commit" | "branch";
|
|
6670
6670
|
name: string;
|
|
6671
6671
|
hash: string;
|
|
6672
6672
|
};
|
|
@@ -6682,7 +6682,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6682
6682
|
generated: undefined;
|
|
6683
6683
|
}, {}, {
|
|
6684
6684
|
$type: {
|
|
6685
|
-
type: "
|
|
6685
|
+
type: "tag" | "commit" | "branch";
|
|
6686
6686
|
name: string;
|
|
6687
6687
|
hash: string;
|
|
6688
6688
|
};
|
|
@@ -6797,7 +6797,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6797
6797
|
}, {}, {
|
|
6798
6798
|
length: 256;
|
|
6799
6799
|
}>;
|
|
6800
|
-
},
|
|
6800
|
+
}, drizzle_zod19.BuildRefine<{
|
|
6801
6801
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
6802
6802
|
name: "created_at";
|
|
6803
6803
|
tableName: "conversations";
|
|
@@ -6895,7 +6895,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6895
6895
|
dataType: "json";
|
|
6896
6896
|
columnType: "PgJsonb";
|
|
6897
6897
|
data: {
|
|
6898
|
-
type: "
|
|
6898
|
+
type: "tag" | "commit" | "branch";
|
|
6899
6899
|
name: string;
|
|
6900
6900
|
hash: string;
|
|
6901
6901
|
};
|
|
@@ -6911,7 +6911,7 @@ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
6911
6911
|
generated: undefined;
|
|
6912
6912
|
}, {}, {
|
|
6913
6913
|
$type: {
|
|
6914
|
-
type: "
|
|
6914
|
+
type: "tag" | "commit" | "branch";
|
|
6915
6915
|
name: string;
|
|
6916
6916
|
hash: string;
|
|
6917
6917
|
};
|
|
@@ -7042,8 +7042,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
|
|
|
7042
7042
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7043
7043
|
ref: z.ZodObject<{
|
|
7044
7044
|
type: z.ZodEnum<{
|
|
7045
|
-
commit: "commit";
|
|
7046
7045
|
tag: "tag";
|
|
7046
|
+
commit: "commit";
|
|
7047
7047
|
branch: "branch";
|
|
7048
7048
|
}>;
|
|
7049
7049
|
name: z.ZodString;
|
|
@@ -7068,8 +7068,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
7068
7068
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7069
7069
|
ref: z.ZodOptional<z.ZodObject<{
|
|
7070
7070
|
type: z.ZodEnum<{
|
|
7071
|
-
commit: "commit";
|
|
7072
7071
|
tag: "tag";
|
|
7072
|
+
commit: "commit";
|
|
7073
7073
|
branch: "branch";
|
|
7074
7074
|
}>;
|
|
7075
7075
|
name: z.ZodString;
|
|
@@ -7086,19 +7086,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7086
7086
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7087
7087
|
activeSubAgentId: z.ZodString;
|
|
7088
7088
|
ref: z.ZodNullable<z.ZodType<{
|
|
7089
|
-
type: "
|
|
7089
|
+
type: "tag" | "commit" | "branch";
|
|
7090
7090
|
name: string;
|
|
7091
7091
|
hash: string;
|
|
7092
7092
|
}, {
|
|
7093
|
-
type: "
|
|
7093
|
+
type: "tag" | "commit" | "branch";
|
|
7094
7094
|
name: string;
|
|
7095
7095
|
hash: string;
|
|
7096
7096
|
}, z.core.$ZodTypeInternals<{
|
|
7097
|
-
type: "
|
|
7097
|
+
type: "tag" | "commit" | "branch";
|
|
7098
7098
|
name: string;
|
|
7099
7099
|
hash: string;
|
|
7100
7100
|
}, {
|
|
7101
|
-
type: "
|
|
7101
|
+
type: "tag" | "commit" | "branch";
|
|
7102
7102
|
name: string;
|
|
7103
7103
|
hash: string;
|
|
7104
7104
|
}>>>;
|
|
@@ -7124,8 +7124,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7124
7124
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7125
7125
|
ref: z.ZodObject<{
|
|
7126
7126
|
type: z.ZodEnum<{
|
|
7127
|
-
commit: "commit";
|
|
7128
7127
|
tag: "tag";
|
|
7128
|
+
commit: "commit";
|
|
7129
7129
|
branch: "branch";
|
|
7130
7130
|
}>;
|
|
7131
7131
|
name: z.ZodString;
|
|
@@ -7142,8 +7142,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7142
7142
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
7143
7143
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7144
7144
|
type: z.ZodEnum<{
|
|
7145
|
-
commit: "commit";
|
|
7146
7145
|
tag: "tag";
|
|
7146
|
+
commit: "commit";
|
|
7147
7147
|
branch: "branch";
|
|
7148
7148
|
}>;
|
|
7149
7149
|
name: z.ZodString;
|
|
@@ -7153,7 +7153,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7153
7153
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7154
7154
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7155
7155
|
}, z.core.$strip>;
|
|
7156
|
-
declare const MessageSelectSchema:
|
|
7156
|
+
declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7157
7157
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7158
7158
|
name: "created_at";
|
|
7159
7159
|
tableName: "messages";
|
|
@@ -7549,7 +7549,7 @@ declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
7549
7549
|
}, {}, {
|
|
7550
7550
|
length: 256;
|
|
7551
7551
|
}>;
|
|
7552
|
-
},
|
|
7552
|
+
}, drizzle_zod19.BuildRefine<{
|
|
7553
7553
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
7554
7554
|
name: "created_at";
|
|
7555
7555
|
tableName: "messages";
|
|
@@ -8051,21 +8051,21 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
8051
8051
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
8052
8052
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
8053
8053
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8054
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8055
8054
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8056
8055
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8057
8056
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8058
8057
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8058
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8059
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8060
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8059
8061
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8060
8062
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8061
8063
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8062
8064
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8063
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8064
8065
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8065
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8066
8066
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8067
8067
|
}, z.core.$strip>;
|
|
8068
|
-
declare const ContextCacheSelectSchema:
|
|
8068
|
+
declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8069
8069
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8070
8070
|
name: "created_at";
|
|
8071
8071
|
tableName: "context_cache";
|
|
@@ -8163,7 +8163,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8163
8163
|
dataType: "json";
|
|
8164
8164
|
columnType: "PgJsonb";
|
|
8165
8165
|
data: {
|
|
8166
|
-
type: "
|
|
8166
|
+
type: "tag" | "commit" | "branch";
|
|
8167
8167
|
name: string;
|
|
8168
8168
|
hash: string;
|
|
8169
8169
|
};
|
|
@@ -8179,7 +8179,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8179
8179
|
generated: undefined;
|
|
8180
8180
|
}, {}, {
|
|
8181
8181
|
$type: {
|
|
8182
|
-
type: "
|
|
8182
|
+
type: "tag" | "commit" | "branch";
|
|
8183
8183
|
name: string;
|
|
8184
8184
|
hash: string;
|
|
8185
8185
|
};
|
|
@@ -8315,7 +8315,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8315
8315
|
}, {}, {
|
|
8316
8316
|
length: 256;
|
|
8317
8317
|
}>;
|
|
8318
|
-
},
|
|
8318
|
+
}, drizzle_zod19.BuildRefine<{
|
|
8319
8319
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8320
8320
|
name: "created_at";
|
|
8321
8321
|
tableName: "context_cache";
|
|
@@ -8413,7 +8413,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8413
8413
|
dataType: "json";
|
|
8414
8414
|
columnType: "PgJsonb";
|
|
8415
8415
|
data: {
|
|
8416
|
-
type: "
|
|
8416
|
+
type: "tag" | "commit" | "branch";
|
|
8417
8417
|
name: string;
|
|
8418
8418
|
hash: string;
|
|
8419
8419
|
};
|
|
@@ -8429,7 +8429,7 @@ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8429
8429
|
generated: undefined;
|
|
8430
8430
|
}, {}, {
|
|
8431
8431
|
$type: {
|
|
8432
|
-
type: "
|
|
8432
|
+
type: "tag" | "commit" | "branch";
|
|
8433
8433
|
name: string;
|
|
8434
8434
|
hash: string;
|
|
8435
8435
|
};
|
|
@@ -8572,7 +8572,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8572
8572
|
conversationId: z.ZodString;
|
|
8573
8573
|
contextConfigId: z.ZodString;
|
|
8574
8574
|
contextVariableKey: z.ZodString;
|
|
8575
|
-
value: z.ZodType<
|
|
8575
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8576
8576
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8577
8577
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8578
8578
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8581,8 +8581,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8581
8581
|
id: z.ZodString;
|
|
8582
8582
|
ref: z.ZodObject<{
|
|
8583
8583
|
type: z.ZodEnum<{
|
|
8584
|
-
commit: "commit";
|
|
8585
8584
|
tag: "tag";
|
|
8585
|
+
commit: "commit";
|
|
8586
8586
|
branch: "branch";
|
|
8587
8587
|
}>;
|
|
8588
8588
|
name: z.ZodString;
|
|
@@ -8598,7 +8598,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8598
8598
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
8599
8599
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
8600
8600
|
contextVariableKey: z.ZodOptional<z.ZodString>;
|
|
8601
|
-
value: z.ZodOptional<z.ZodType<
|
|
8601
|
+
value: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
8602
8602
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8603
8603
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8604
8604
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -8607,8 +8607,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8607
8607
|
id: z.ZodOptional<z.ZodString>;
|
|
8608
8608
|
ref: z.ZodOptional<z.ZodObject<{
|
|
8609
8609
|
type: z.ZodEnum<{
|
|
8610
|
-
commit: "commit";
|
|
8611
8610
|
tag: "tag";
|
|
8611
|
+
commit: "commit";
|
|
8612
8612
|
branch: "branch";
|
|
8613
8613
|
}>;
|
|
8614
8614
|
name: z.ZodString;
|
|
@@ -8625,23 +8625,23 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8625
8625
|
contextConfigId: z.ZodString;
|
|
8626
8626
|
contextVariableKey: z.ZodString;
|
|
8627
8627
|
ref: z.ZodNullable<z.ZodType<{
|
|
8628
|
-
type: "
|
|
8628
|
+
type: "tag" | "commit" | "branch";
|
|
8629
8629
|
name: string;
|
|
8630
8630
|
hash: string;
|
|
8631
8631
|
}, {
|
|
8632
|
-
type: "
|
|
8632
|
+
type: "tag" | "commit" | "branch";
|
|
8633
8633
|
name: string;
|
|
8634
8634
|
hash: string;
|
|
8635
8635
|
}, z.core.$ZodTypeInternals<{
|
|
8636
|
-
type: "
|
|
8636
|
+
type: "tag" | "commit" | "branch";
|
|
8637
8637
|
name: string;
|
|
8638
8638
|
hash: string;
|
|
8639
8639
|
}, {
|
|
8640
|
-
type: "
|
|
8640
|
+
type: "tag" | "commit" | "branch";
|
|
8641
8641
|
name: string;
|
|
8642
8642
|
hash: string;
|
|
8643
8643
|
}>>>;
|
|
8644
|
-
value: z.ZodType<
|
|
8644
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8645
8645
|
requestHash: z.ZodNullable<z.ZodString>;
|
|
8646
8646
|
fetchedAt: z.ZodString;
|
|
8647
8647
|
fetchSource: z.ZodNullable<z.ZodString>;
|
|
@@ -8655,7 +8655,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8655
8655
|
conversationId: z.ZodString;
|
|
8656
8656
|
contextConfigId: z.ZodString;
|
|
8657
8657
|
contextVariableKey: z.ZodString;
|
|
8658
|
-
value: z.ZodType<
|
|
8658
|
+
value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
8659
8659
|
requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8660
8660
|
fetchedAt: z.ZodOptional<z.ZodString>;
|
|
8661
8661
|
fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8664,8 +8664,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8664
8664
|
id: z.ZodString;
|
|
8665
8665
|
ref: z.ZodObject<{
|
|
8666
8666
|
type: z.ZodEnum<{
|
|
8667
|
-
commit: "commit";
|
|
8668
8667
|
tag: "tag";
|
|
8668
|
+
commit: "commit";
|
|
8669
8669
|
branch: "branch";
|
|
8670
8670
|
}>;
|
|
8671
8671
|
name: z.ZodString;
|
|
@@ -8674,14 +8674,14 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8674
8674
|
}>, z.core.$strip>;
|
|
8675
8675
|
declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
8676
8676
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8677
|
-
value: z.ZodOptional<z.ZodOptional<z.ZodType<
|
|
8677
|
+
value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
8678
8678
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8679
8679
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8680
8680
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8681
8681
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8682
8682
|
type: z.ZodEnum<{
|
|
8683
|
-
commit: "commit";
|
|
8684
8683
|
tag: "tag";
|
|
8684
|
+
commit: "commit";
|
|
8685
8685
|
branch: "branch";
|
|
8686
8686
|
}>;
|
|
8687
8687
|
name: z.ZodString;
|
|
@@ -8693,7 +8693,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8693
8693
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8694
8694
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8695
8695
|
}, z.core.$strip>;
|
|
8696
|
-
declare const DatasetRunSelectSchema:
|
|
8696
|
+
declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
8697
8697
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8698
8698
|
name: "created_at";
|
|
8699
8699
|
tableName: "dataset_run";
|
|
@@ -8836,7 +8836,7 @@ declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
8836
8836
|
}, {}, {
|
|
8837
8837
|
length: 256;
|
|
8838
8838
|
}>;
|
|
8839
|
-
},
|
|
8839
|
+
}, drizzle_zod19.BuildRefine<{
|
|
8840
8840
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
8841
8841
|
name: "created_at";
|
|
8842
8842
|
tableName: "dataset_run";
|
|
@@ -9020,17 +9020,17 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
|
|
|
9020
9020
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9021
9021
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9022
9022
|
datasetId: z.ZodString;
|
|
9023
|
-
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9024
9023
|
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9024
|
+
datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9025
9025
|
}, z.core.$strip>;
|
|
9026
9026
|
declare const DatasetRunApiUpdateSchema: z.ZodObject<{
|
|
9027
9027
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9028
9028
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9029
9029
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9030
|
-
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9031
9030
|
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9031
|
+
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9032
9032
|
}, z.core.$strip>;
|
|
9033
|
-
declare const DatasetRunConversationRelationSelectSchema:
|
|
9033
|
+
declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9034
9034
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9035
9035
|
name: "created_at";
|
|
9036
9036
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9173,7 +9173,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSch
|
|
|
9173
9173
|
}, {}, {
|
|
9174
9174
|
length: 256;
|
|
9175
9175
|
}>;
|
|
9176
|
-
},
|
|
9176
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9177
9177
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9178
9178
|
name: "created_at";
|
|
9179
9179
|
tableName: "dataset_run_conversation_relations";
|
|
@@ -9367,7 +9367,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
|
|
|
9367
9367
|
datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9368
9368
|
datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9369
9369
|
}, z.core.$strip>;
|
|
9370
|
-
declare const EvaluationResultSelectSchema:
|
|
9370
|
+
declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9371
9371
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9372
9372
|
name: "created_at";
|
|
9373
9373
|
tableName: "evaluation_result";
|
|
@@ -9529,7 +9529,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
9529
9529
|
}, {}, {
|
|
9530
9530
|
length: 256;
|
|
9531
9531
|
}>;
|
|
9532
|
-
},
|
|
9532
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9533
9533
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9534
9534
|
name: "created_at";
|
|
9535
9535
|
tableName: "evaluation_result";
|
|
@@ -9735,19 +9735,19 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
|
|
|
9735
9735
|
output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
9736
9736
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9737
9737
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9738
|
-
conversationId: z.ZodString;
|
|
9739
9738
|
evaluatorId: z.ZodString;
|
|
9739
|
+
conversationId: z.ZodString;
|
|
9740
9740
|
evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9741
9741
|
}, z.core.$strip>;
|
|
9742
9742
|
declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
|
|
9743
9743
|
output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
|
|
9744
9744
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9745
9745
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9746
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9747
9746
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9747
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9748
9748
|
evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9749
9749
|
}, z.core.$strip>;
|
|
9750
|
-
declare const EvaluationRunSelectSchema:
|
|
9750
|
+
declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
9751
9751
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9752
9752
|
name: "created_at";
|
|
9753
9753
|
tableName: "evaluation_run";
|
|
@@ -9873,7 +9873,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
9873
9873
|
}, {}, {
|
|
9874
9874
|
length: 256;
|
|
9875
9875
|
}>;
|
|
9876
|
-
},
|
|
9876
|
+
}, drizzle_zod19.BuildRefine<{
|
|
9877
9877
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
9878
9878
|
name: "created_at";
|
|
9879
9879
|
tableName: "evaluation_run";
|
|
@@ -10036,16 +10036,16 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10036
10036
|
declare const EvaluationRunApiInsertSchema: z.ZodObject<{
|
|
10037
10037
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10038
10038
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10039
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10040
10039
|
evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10040
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10041
10041
|
}, z.core.$strip>;
|
|
10042
10042
|
declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
|
|
10043
10043
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10044
10044
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10045
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10046
10045
|
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10046
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10047
10047
|
}, z.core.$strip>;
|
|
10048
|
-
declare const EvaluationRunConfigSelectSchema:
|
|
10048
|
+
declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10049
10049
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10050
10050
|
name: "created_at";
|
|
10051
10051
|
tableName: "evaluation_run_config";
|
|
@@ -10190,7 +10190,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
10190
10190
|
}, {}, {
|
|
10191
10191
|
length: 256;
|
|
10192
10192
|
}>;
|
|
10193
|
-
},
|
|
10193
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10194
10194
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10195
10195
|
name: "created_at";
|
|
10196
10196
|
tableName: "evaluation_run_config";
|
|
@@ -10397,7 +10397,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
|
|
|
10397
10397
|
isActive: z.ZodBoolean;
|
|
10398
10398
|
suiteConfigIds: z.ZodArray<z.ZodString>;
|
|
10399
10399
|
}, z.core.$strip>;
|
|
10400
|
-
declare const EvaluationJobConfigSelectSchema:
|
|
10400
|
+
declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10401
10401
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10402
10402
|
name: "created_at";
|
|
10403
10403
|
tableName: "evaluation_job_config";
|
|
@@ -10522,7 +10522,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
10522
10522
|
}, {}, {
|
|
10523
10523
|
length: 256;
|
|
10524
10524
|
}>;
|
|
10525
|
-
},
|
|
10525
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10526
10526
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10527
10527
|
name: "created_at";
|
|
10528
10528
|
tableName: "evaluation_job_config";
|
|
@@ -10829,7 +10829,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
|
|
|
10829
10829
|
} | undefined;
|
|
10830
10830
|
}>>>>>>>;
|
|
10831
10831
|
}, z.core.$strip>;
|
|
10832
|
-
declare const EvaluationSuiteConfigSelectSchema:
|
|
10832
|
+
declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
10833
10833
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10834
10834
|
name: "created_at";
|
|
10835
10835
|
tableName: "evaluation_suite_config";
|
|
@@ -10957,7 +10957,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
10957
10957
|
}, {}, {
|
|
10958
10958
|
length: 256;
|
|
10959
10959
|
}>;
|
|
10960
|
-
},
|
|
10960
|
+
}, drizzle_zod19.BuildRefine<{
|
|
10961
10961
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
10962
10962
|
name: "created_at";
|
|
10963
10963
|
tableName: "evaluation_suite_config";
|
|
@@ -11133,7 +11133,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
|
|
|
11133
11133
|
sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
|
|
11134
11134
|
evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11135
11135
|
}, z.core.$strip>;
|
|
11136
|
-
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema:
|
|
11136
|
+
declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11137
11137
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11138
11138
|
name: "created_at";
|
|
11139
11139
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11263,7 +11263,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
|
|
|
11263
11263
|
}, {}, {
|
|
11264
11264
|
length: 256;
|
|
11265
11265
|
}>;
|
|
11266
|
-
},
|
|
11266
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11267
11267
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11268
11268
|
name: "created_at";
|
|
11269
11269
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
@@ -11430,16 +11430,16 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
|
|
|
11430
11430
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
|
|
11431
11431
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11432
11432
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11433
|
-
evaluationRunConfigId: z.ZodString;
|
|
11434
11433
|
evaluationSuiteConfigId: z.ZodString;
|
|
11434
|
+
evaluationRunConfigId: z.ZodString;
|
|
11435
11435
|
}, z.core.$strip>;
|
|
11436
11436
|
declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
|
|
11437
11437
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11438
11438
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11439
|
-
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11440
11439
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11440
|
+
evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11441
11441
|
}, z.core.$strip>;
|
|
11442
|
-
declare const EvaluationJobConfigEvaluatorRelationSelectSchema:
|
|
11442
|
+
declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11443
11443
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11444
11444
|
name: "created_at";
|
|
11445
11445
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11569,7 +11569,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.Bu
|
|
|
11569
11569
|
}, {}, {
|
|
11570
11570
|
length: 256;
|
|
11571
11571
|
}>;
|
|
11572
|
-
},
|
|
11572
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11573
11573
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11574
11574
|
name: "created_at";
|
|
11575
11575
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
@@ -11736,16 +11736,16 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
|
|
|
11736
11736
|
declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
11737
11737
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11738
11738
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11739
|
-
evaluationJobConfigId: z.ZodString;
|
|
11740
11739
|
evaluatorId: z.ZodString;
|
|
11740
|
+
evaluationJobConfigId: z.ZodString;
|
|
11741
11741
|
}, z.core.$strip>;
|
|
11742
11742
|
declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
11743
11743
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11744
11744
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
11745
|
-
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11746
11745
|
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11746
|
+
evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11747
11747
|
}, z.core.$strip>;
|
|
11748
|
-
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema:
|
|
11748
|
+
declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
11749
11749
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11750
11750
|
name: "created_at";
|
|
11751
11751
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -11875,7 +11875,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.
|
|
|
11875
11875
|
}, {}, {
|
|
11876
11876
|
length: 256;
|
|
11877
11877
|
}>;
|
|
11878
|
-
},
|
|
11878
|
+
}, drizzle_zod19.BuildRefine<{
|
|
11879
11879
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
11880
11880
|
name: "created_at";
|
|
11881
11881
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
@@ -12042,16 +12042,16 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
|
|
|
12042
12042
|
declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
|
|
12043
12043
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12044
12044
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12045
|
-
evaluatorId: z.ZodString;
|
|
12046
12045
|
evaluationSuiteConfigId: z.ZodString;
|
|
12046
|
+
evaluatorId: z.ZodString;
|
|
12047
12047
|
}, z.core.$strip>;
|
|
12048
12048
|
declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
|
|
12049
12049
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12050
12050
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12051
|
-
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12052
12051
|
evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12052
|
+
evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12053
12053
|
}, z.core.$strip>;
|
|
12054
|
-
declare const EvaluatorSelectSchema:
|
|
12054
|
+
declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12055
12055
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12056
12056
|
name: "created_at";
|
|
12057
12057
|
tableName: "evaluator";
|
|
@@ -12259,7 +12259,7 @@ declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12259
12259
|
}, {}, {
|
|
12260
12260
|
length: 256;
|
|
12261
12261
|
}>;
|
|
12262
|
-
},
|
|
12262
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12263
12263
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12264
12264
|
name: "created_at";
|
|
12265
12265
|
tableName: "evaluator";
|
|
@@ -12593,7 +12593,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
|
|
|
12593
12593
|
schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
12594
12594
|
passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
|
|
12595
12595
|
}, z.core.$strip>;
|
|
12596
|
-
declare const DatasetSelectSchema:
|
|
12596
|
+
declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12597
12597
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12598
12598
|
name: "created_at";
|
|
12599
12599
|
tableName: "dataset";
|
|
@@ -12704,7 +12704,7 @@ declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
12704
12704
|
}, {}, {
|
|
12705
12705
|
length: 256;
|
|
12706
12706
|
}>;
|
|
12707
|
-
},
|
|
12707
|
+
}, drizzle_zod19.BuildRefine<{
|
|
12708
12708
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12709
12709
|
name: "created_at";
|
|
12710
12710
|
tableName: "dataset";
|
|
@@ -12856,7 +12856,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
|
|
|
12856
12856
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12857
12857
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
12858
12858
|
}, z.core.$strip>;
|
|
12859
|
-
declare const DatasetItemSelectSchema:
|
|
12859
|
+
declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
12860
12860
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
12861
12861
|
name: "created_at";
|
|
12862
12862
|
tableName: "dataset_item";
|
|
@@ -13044,7 +13044,7 @@ declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
13044
13044
|
}, {}, {
|
|
13045
13045
|
length: 256;
|
|
13046
13046
|
}>;
|
|
13047
|
-
},
|
|
13047
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13048
13048
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13049
13049
|
name: "created_at";
|
|
13050
13050
|
tableName: "dataset_item";
|
|
@@ -13615,7 +13615,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
|
|
|
13615
13615
|
}, z.core.$strip>>;
|
|
13616
13616
|
}, z.core.$strip>>>;
|
|
13617
13617
|
}, z.core.$strip>;
|
|
13618
|
-
declare const DatasetRunConfigSelectSchema:
|
|
13618
|
+
declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13619
13619
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13620
13620
|
name: "created_at";
|
|
13621
13621
|
tableName: "dataset_run_config";
|
|
@@ -13762,7 +13762,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
13762
13762
|
}, {}, {
|
|
13763
13763
|
length: 256;
|
|
13764
13764
|
}>;
|
|
13765
|
-
},
|
|
13765
|
+
}, drizzle_zod19.BuildRefine<{
|
|
13766
13766
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13767
13767
|
name: "created_at";
|
|
13768
13768
|
tableName: "dataset_run_config";
|
|
@@ -13960,7 +13960,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
|
|
|
13960
13960
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13961
13961
|
datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13962
13962
|
}, z.core.$strip>;
|
|
13963
|
-
declare const DatasetRunConfigAgentRelationSelectSchema:
|
|
13963
|
+
declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
13964
13964
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
13965
13965
|
name: "created_at";
|
|
13966
13966
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14090,7 +14090,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
14090
14090
|
}, {}, {
|
|
14091
14091
|
length: 256;
|
|
14092
14092
|
}>;
|
|
14093
|
-
},
|
|
14093
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14094
14094
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14095
14095
|
name: "created_at";
|
|
14096
14096
|
tableName: "dataset_run_config_agent_relations";
|
|
@@ -14266,7 +14266,7 @@ declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
14266
14266
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
14267
14267
|
datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14268
14268
|
}, z.core.$strip>;
|
|
14269
|
-
declare const DataComponentSelectSchema:
|
|
14269
|
+
declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14270
14270
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14271
14271
|
name: "created_at";
|
|
14272
14272
|
tableName: "data_components";
|
|
@@ -14438,7 +14438,7 @@ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
14438
14438
|
}, {}, {
|
|
14439
14439
|
length: 256;
|
|
14440
14440
|
}>;
|
|
14441
|
-
},
|
|
14441
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14442
14442
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
14443
14443
|
name: "created_at";
|
|
14444
14444
|
tableName: "data_components";
|
|
@@ -14754,7 +14754,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
14754
14754
|
mockData: Record<string, unknown>;
|
|
14755
14755
|
}>>>>>>;
|
|
14756
14756
|
}, z.core.$strip>;
|
|
14757
|
-
declare const SubAgentDataComponentSelectSchema:
|
|
14757
|
+
declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
14758
14758
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14759
14759
|
name: "data_component_id";
|
|
14760
14760
|
tableName: "sub_agent_data_components";
|
|
@@ -14886,7 +14886,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
14886
14886
|
}, {}, {
|
|
14887
14887
|
length: 256;
|
|
14888
14888
|
}>;
|
|
14889
|
-
},
|
|
14889
|
+
}, drizzle_zod19.BuildRefine<{
|
|
14890
14890
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
14891
14891
|
name: "data_component_id";
|
|
14892
14892
|
tableName: "sub_agent_data_components";
|
|
@@ -15019,7 +15019,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"sele
|
|
|
15019
15019
|
length: 256;
|
|
15020
15020
|
}>;
|
|
15021
15021
|
}, undefined>, undefined>;
|
|
15022
|
-
declare const SubAgentDataComponentInsertSchema:
|
|
15022
|
+
declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
15023
15023
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15024
15024
|
name: "data_component_id";
|
|
15025
15025
|
tableName: "sub_agent_data_components";
|
|
@@ -15151,7 +15151,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"inse
|
|
|
15151
15151
|
}, {}, {
|
|
15152
15152
|
length: 256;
|
|
15153
15153
|
}>;
|
|
15154
|
-
},
|
|
15154
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
15155
15155
|
dataComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15156
15156
|
name: "data_component_id";
|
|
15157
15157
|
tableName: "sub_agent_data_components";
|
|
@@ -15319,7 +15319,7 @@ declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15319
15319
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15320
15320
|
dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15321
15321
|
}, z.core.$strip>;
|
|
15322
|
-
declare const ArtifactComponentSelectSchema:
|
|
15322
|
+
declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15323
15323
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15324
15324
|
name: "created_at";
|
|
15325
15325
|
tableName: "artifact_components";
|
|
@@ -15491,7 +15491,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select",
|
|
|
15491
15491
|
}, {}, {
|
|
15492
15492
|
length: 256;
|
|
15493
15493
|
}>;
|
|
15494
|
-
},
|
|
15494
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15495
15495
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
15496
15496
|
name: "created_at";
|
|
15497
15497
|
tableName: "artifact_components";
|
|
@@ -15782,7 +15782,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
|
|
|
15782
15782
|
mockData: Record<string, unknown>;
|
|
15783
15783
|
}>>>>>>;
|
|
15784
15784
|
}, z.core.$strip>;
|
|
15785
|
-
declare const SubAgentArtifactComponentSelectSchema:
|
|
15785
|
+
declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
15786
15786
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15787
15787
|
name: "artifact_component_id";
|
|
15788
15788
|
tableName: "sub_agent_artifact_components";
|
|
@@ -15914,7 +15914,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
15914
15914
|
}, {}, {
|
|
15915
15915
|
length: 256;
|
|
15916
15916
|
}>;
|
|
15917
|
-
},
|
|
15917
|
+
}, drizzle_zod19.BuildRefine<{
|
|
15918
15918
|
artifactComponentId: drizzle_orm_pg_core211.PgColumn<{
|
|
15919
15919
|
name: "artifact_component_id";
|
|
15920
15920
|
tableName: "sub_agent_artifact_components";
|
|
@@ -16248,7 +16248,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16248
16248
|
baseUrl: z.ZodString;
|
|
16249
16249
|
type: z.ZodLiteral<"external">;
|
|
16250
16250
|
}, z.core.$strip>], "type">;
|
|
16251
|
-
declare const ApiKeySelectSchema:
|
|
16251
|
+
declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16252
16252
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16253
16253
|
name: "created_at";
|
|
16254
16254
|
tableName: "api_keys";
|
|
@@ -16469,7 +16469,7 @@ declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
16469
16469
|
}, {}, {
|
|
16470
16470
|
length: 256;
|
|
16471
16471
|
}>;
|
|
16472
|
-
},
|
|
16472
|
+
}, drizzle_zod19.BuildRefine<{
|
|
16473
16473
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16474
16474
|
name: "created_at";
|
|
16475
16475
|
tableName: "api_keys";
|
|
@@ -16771,7 +16771,7 @@ declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
|
16771
16771
|
out: {};
|
|
16772
16772
|
in: {};
|
|
16773
16773
|
}>;
|
|
16774
|
-
declare const CredentialReferenceSelectSchema:
|
|
16774
|
+
declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
16775
16775
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
16776
16776
|
name: "created_at";
|
|
16777
16777
|
tableName: "credential_references";
|
|
@@ -16996,7 +16996,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select
|
|
|
16996
16996
|
}, {}, {
|
|
16997
16997
|
length: 256;
|
|
16998
16998
|
}>;
|
|
16999
|
-
},
|
|
16999
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17000
17000
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17001
17001
|
name: "created_at";
|
|
17002
17002
|
tableName: "credential_references";
|
|
@@ -17263,15 +17263,15 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17263
17263
|
updatedAt: z.ZodString;
|
|
17264
17264
|
toolId: z.ZodNullable<z.ZodString>;
|
|
17265
17265
|
userId: z.ZodNullable<z.ZodString>;
|
|
17266
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
17267
17266
|
credentialStoreId: z.ZodString;
|
|
17268
17267
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
17268
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
17269
17269
|
type: z.ZodEnum<{
|
|
17270
17270
|
readonly memory: "memory";
|
|
17271
17271
|
readonly keychain: "keychain";
|
|
17272
17272
|
readonly nango: "nango";
|
|
17273
17273
|
}>;
|
|
17274
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
17274
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
17275
17275
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17276
17276
|
name: "created_at";
|
|
17277
17277
|
tableName: "tools";
|
|
@@ -17551,7 +17551,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
17551
17551
|
}, {}, {
|
|
17552
17552
|
length: 256;
|
|
17553
17553
|
}>;
|
|
17554
|
-
},
|
|
17554
|
+
}, drizzle_zod19.BuildRefine<{
|
|
17555
17555
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
17556
17556
|
name: "created_at";
|
|
17557
17557
|
tableName: "tools";
|
|
@@ -17854,9 +17854,9 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
17854
17854
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17855
17855
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17856
17856
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17857
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17858
17857
|
credentialStoreId: z.ZodString;
|
|
17859
17858
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
17859
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17860
17860
|
type: z.ZodEnum<{
|
|
17861
17861
|
readonly memory: "memory";
|
|
17862
17862
|
readonly keychain: "keychain";
|
|
@@ -17870,9 +17870,9 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
17870
17870
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
17871
17871
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17872
17872
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17873
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17874
17873
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17875
17874
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
17875
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
17876
17876
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17877
17877
|
readonly memory: "memory";
|
|
17878
17878
|
readonly keychain: "keychain";
|
|
@@ -17999,18 +17999,18 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
17999
17999
|
name: z.ZodString;
|
|
18000
18000
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
18001
18001
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
18002
|
-
createdBy: z.ZodOptional<z.ZodString>;
|
|
18003
18002
|
credentialScope: z.ZodOptional<z.ZodString>;
|
|
18004
18003
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
18005
18004
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
18006
18005
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18007
18006
|
isWorkApp: z.ZodOptional<z.ZodBoolean>;
|
|
18007
|
+
createdBy: z.ZodOptional<z.ZodString>;
|
|
18008
|
+
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18008
18009
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18009
18010
|
name: z.ZodString;
|
|
18010
18011
|
description: z.ZodOptional<z.ZodString>;
|
|
18011
18012
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18012
18013
|
}, z.core.$strip>>>;
|
|
18013
|
-
relationshipId: z.ZodOptional<z.ZodString>;
|
|
18014
18014
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18015
18015
|
projectId: z.ZodOptional<z.ZodString>;
|
|
18016
18016
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -18037,9 +18037,9 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
18037
18037
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18038
18038
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18039
18039
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18040
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18041
18040
|
credentialStoreId: z.ZodString;
|
|
18042
18041
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
18042
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18043
18043
|
type: z.ZodEnum<{
|
|
18044
18044
|
readonly memory: "memory";
|
|
18045
18045
|
readonly keychain: "keychain";
|
|
@@ -18213,7 +18213,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
18213
18213
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
18214
18214
|
isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
|
|
18215
18215
|
}, z.core.$strip>;
|
|
18216
|
-
declare const FunctionToolSelectSchema:
|
|
18216
|
+
declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18217
18217
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18218
18218
|
name: "created_at";
|
|
18219
18219
|
tableName: "function_tools";
|
|
@@ -18379,7 +18379,7 @@ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
18379
18379
|
}, {}, {
|
|
18380
18380
|
length: 256;
|
|
18381
18381
|
}>;
|
|
18382
|
-
},
|
|
18382
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18383
18383
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18384
18384
|
name: "created_at";
|
|
18385
18385
|
tableName: "function_tools";
|
|
@@ -18604,7 +18604,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
18604
18604
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
18605
18605
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18606
18606
|
}, z.core.$strip>;
|
|
18607
|
-
declare const SubAgentFunctionToolRelationSelectSchema:
|
|
18607
|
+
declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18608
18608
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18609
18609
|
name: "created_at";
|
|
18610
18610
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18776,7 +18776,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
18776
18776
|
}, {}, {
|
|
18777
18777
|
length: 256;
|
|
18778
18778
|
}>;
|
|
18779
|
-
},
|
|
18779
|
+
}, drizzle_zod19.BuildRefine<{
|
|
18780
18780
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18781
18781
|
name: "created_at";
|
|
18782
18782
|
tableName: "sub_agent_function_tool_relations";
|
|
@@ -18952,7 +18952,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchem
|
|
|
18952
18952
|
declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
|
|
18953
18953
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18954
18954
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18955
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18955
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
18956
18956
|
agentId: z.ZodString;
|
|
18957
18957
|
projectId: z.ZodString;
|
|
18958
18958
|
tenantId: z.ZodString;
|
|
@@ -18967,7 +18967,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18967
18967
|
createdAt: z.ZodString;
|
|
18968
18968
|
updatedAt: z.ZodString;
|
|
18969
18969
|
functionToolId: z.ZodString;
|
|
18970
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
18970
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
18971
18971
|
subAgentId: z.ZodString;
|
|
18972
18972
|
agentId: z.ZodString;
|
|
18973
18973
|
projectId: z.ZodString;
|
|
@@ -18975,14 +18975,14 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
|
|
|
18975
18975
|
id: z.ZodString;
|
|
18976
18976
|
}>, z.core.$strip>;
|
|
18977
18977
|
declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
|
|
18978
|
-
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
18978
|
+
toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
18979
18979
|
subAgentId: z.ZodString;
|
|
18980
18980
|
functionToolId: z.ZodString;
|
|
18981
18981
|
}, {
|
|
18982
18982
|
out: {};
|
|
18983
18983
|
in: {};
|
|
18984
18984
|
}>;
|
|
18985
|
-
declare const FunctionSelectSchema:
|
|
18985
|
+
declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
18986
18986
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
18987
18987
|
name: "created_at";
|
|
18988
18988
|
tableName: "functions";
|
|
@@ -19129,7 +19129,7 @@ declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
19129
19129
|
}, {}, {
|
|
19130
19130
|
length: 256;
|
|
19131
19131
|
}>;
|
|
19132
|
-
},
|
|
19132
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19133
19133
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19134
19134
|
name: "created_at";
|
|
19135
19135
|
tableName: "functions";
|
|
@@ -19326,8 +19326,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
|
|
|
19326
19326
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19327
19327
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
19328
19328
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>>>;
|
|
19329
|
-
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19330
19329
|
executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19330
|
+
dependencies: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
19331
19331
|
}, z.core.$strip>;
|
|
19332
19332
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
19333
19333
|
url: z.ZodString;
|
|
@@ -19375,9 +19375,9 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
19375
19375
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19376
19376
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19377
19377
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19378
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19379
19378
|
credentialStoreId: z.ZodString;
|
|
19380
19379
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
19380
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19381
19381
|
type: z.ZodEnum<{
|
|
19382
19382
|
readonly memory: "memory";
|
|
19383
19383
|
readonly keychain: "keychain";
|
|
@@ -19438,7 +19438,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
|
19438
19438
|
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19439
19439
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
19440
19440
|
}, z.core.$strip>;
|
|
19441
|
-
declare const SubAgentToolRelationSelectSchema:
|
|
19441
|
+
declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
19442
19442
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19443
19443
|
name: "created_at";
|
|
19444
19444
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19648,7 +19648,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"selec
|
|
|
19648
19648
|
}, {}, {
|
|
19649
19649
|
length: 256;
|
|
19650
19650
|
}>;
|
|
19651
|
-
},
|
|
19651
|
+
}, drizzle_zod19.BuildRefine<{
|
|
19652
19652
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19653
19653
|
name: "created_at";
|
|
19654
19654
|
tableName: "sub_agent_tool_relations";
|
|
@@ -19899,9 +19899,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
19899
19899
|
createdAt: z.ZodString;
|
|
19900
19900
|
updatedAt: z.ZodString;
|
|
19901
19901
|
toolId: z.ZodString;
|
|
19902
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
19903
|
-
headers: z.ZodNullable<z.ZodType<
|
|
19904
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
19902
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
19903
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
19904
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
19905
19905
|
subAgentId: z.ZodString;
|
|
19906
19906
|
agentId: z.ZodString;
|
|
19907
19907
|
projectId: z.ZodString;
|
|
@@ -19935,7 +19935,7 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
|
19935
19935
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19936
19936
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
19937
19937
|
}, z.core.$strip>;
|
|
19938
|
-
declare const SubAgentExternalAgentRelationSelectSchema:
|
|
19938
|
+
declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
19939
19939
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
19940
19940
|
name: "created_at";
|
|
19941
19941
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20103,7 +20103,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSche
|
|
|
20103
20103
|
}, {}, {
|
|
20104
20104
|
length: 256;
|
|
20105
20105
|
}>;
|
|
20106
|
-
},
|
|
20106
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20107
20107
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20108
20108
|
name: "created_at";
|
|
20109
20109
|
tableName: "sub_agent_external_agent_relations";
|
|
@@ -20304,7 +20304,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
|
|
|
20304
20304
|
createdAt: z.ZodString;
|
|
20305
20305
|
updatedAt: z.ZodString;
|
|
20306
20306
|
externalAgentId: z.ZodString;
|
|
20307
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20307
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20308
20308
|
subAgentId: z.ZodString;
|
|
20309
20309
|
agentId: z.ZodString;
|
|
20310
20310
|
projectId: z.ZodString;
|
|
@@ -20325,7 +20325,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20325
20325
|
externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20326
20326
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20327
20327
|
}, z.core.$strip>;
|
|
20328
|
-
declare const SubAgentTeamAgentRelationSelectSchema:
|
|
20328
|
+
declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20329
20329
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20330
20330
|
name: "created_at";
|
|
20331
20331
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20493,7 +20493,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
20493
20493
|
}, {}, {
|
|
20494
20494
|
length: 256;
|
|
20495
20495
|
}>;
|
|
20496
|
-
},
|
|
20496
|
+
}, drizzle_zod19.BuildRefine<{
|
|
20497
20497
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20498
20498
|
name: "created_at";
|
|
20499
20499
|
tableName: "sub_agent_team_agent_relations";
|
|
@@ -20694,7 +20694,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
|
|
|
20694
20694
|
createdAt: z.ZodString;
|
|
20695
20695
|
updatedAt: z.ZodString;
|
|
20696
20696
|
targetAgentId: z.ZodString;
|
|
20697
|
-
headers: z.ZodNullable<z.ZodType<
|
|
20697
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
20698
20698
|
subAgentId: z.ZodString;
|
|
20699
20699
|
agentId: z.ZodString;
|
|
20700
20700
|
projectId: z.ZodString;
|
|
@@ -20715,7 +20715,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
|
|
|
20715
20715
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20716
20716
|
targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20717
20717
|
}, z.core.$strip>;
|
|
20718
|
-
declare const LedgerArtifactSelectSchema:
|
|
20718
|
+
declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
20719
20719
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
20720
20720
|
name: "created_at";
|
|
20721
20721
|
tableName: "ledger_artifacts";
|
|
@@ -21050,7 +21050,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
21050
21050
|
}, {}, {
|
|
21051
21051
|
length: 256;
|
|
21052
21052
|
}>;
|
|
21053
|
-
},
|
|
21053
|
+
}, drizzle_zod19.BuildRefine<{
|
|
21054
21054
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21055
21055
|
name: "created_at";
|
|
21056
21056
|
tableName: "ledger_artifacts";
|
|
@@ -21386,7 +21386,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
21386
21386
|
length: 256;
|
|
21387
21387
|
}>;
|
|
21388
21388
|
}, undefined>, undefined>;
|
|
21389
|
-
declare const LedgerArtifactInsertSchema:
|
|
21389
|
+
declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
21390
21390
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21391
21391
|
name: "created_at";
|
|
21392
21392
|
tableName: "ledger_artifacts";
|
|
@@ -21721,7 +21721,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
21721
21721
|
}, {}, {
|
|
21722
21722
|
length: 256;
|
|
21723
21723
|
}>;
|
|
21724
|
-
},
|
|
21724
|
+
}, drizzle_zod19.BuildRefine<Pick<{
|
|
21725
21725
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
21726
21726
|
name: "created_at";
|
|
21727
21727
|
tableName: "ledger_artifacts";
|
|
@@ -22056,7 +22056,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
|
|
|
22056
22056
|
}, {}, {
|
|
22057
22057
|
length: 256;
|
|
22058
22058
|
}>;
|
|
22059
|
-
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "toolCallId" | "
|
|
22059
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "toolCallId" | "taskId" | "contextId" | "visibility" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
22060
22060
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
22061
22061
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22062
22062
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22066,12 +22066,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
22066
22066
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22067
22067
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22068
22068
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22069
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22070
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22069
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
22070
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
22071
22071
|
summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22072
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22072
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
22073
22073
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22074
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22074
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
|
|
22075
22075
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
22076
22076
|
projectId: z.ZodOptional<z.ZodString>;
|
|
22077
22077
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
@@ -22089,12 +22089,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22089
22089
|
type: z.ZodString;
|
|
22090
22090
|
name: z.ZodNullable<z.ZodString>;
|
|
22091
22091
|
description: z.ZodNullable<z.ZodString>;
|
|
22092
|
-
parts: z.ZodNullable<z.ZodType<
|
|
22093
|
-
metadata: z.ZodNullable<z.ZodType<
|
|
22092
|
+
parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22093
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22094
22094
|
summary: z.ZodNullable<z.ZodString>;
|
|
22095
|
-
mime: z.ZodNullable<z.ZodType<
|
|
22095
|
+
mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22096
22096
|
visibility: z.ZodNullable<z.ZodString>;
|
|
22097
|
-
allowedAgents: z.ZodNullable<z.ZodType<
|
|
22097
|
+
allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
22098
22098
|
derivedFrom: z.ZodNullable<z.ZodString>;
|
|
22099
22099
|
projectId: z.ZodString;
|
|
22100
22100
|
tenantId: z.ZodString;
|
|
@@ -22109,12 +22109,12 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
22109
22109
|
type: z.ZodOptional<z.ZodString>;
|
|
22110
22110
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22111
22111
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22112
|
-
parts: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22113
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22112
|
+
parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22113
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22114
22114
|
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22115
|
-
mime: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22115
|
+
mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22116
22116
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22117
|
-
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22117
|
+
allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22118
22118
|
derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22119
22119
|
projectId: z.ZodString;
|
|
22120
22120
|
tenantId: z.ZodString;
|
|
@@ -22127,15 +22127,15 @@ declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
|
22127
22127
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22128
22128
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22129
22129
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
22130
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22130
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
22131
22131
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22132
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22132
22133
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
22133
22134
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22134
|
-
|
|
22135
|
-
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
|
|
22135
|
+
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
22136
22136
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22137
|
-
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22138
|
-
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22137
|
+
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
22138
|
+
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
22139
22139
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
22140
22140
|
}, z.core.$strip>;
|
|
22141
22141
|
declare const StatusComponentSchema: z.ZodObject<{
|
|
@@ -22399,12 +22399,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
22399
22399
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22400
22400
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22401
22401
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22402
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22403
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22402
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22403
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22404
22404
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22405
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22405
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22406
22406
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22407
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22407
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22408
22408
|
id: z.ZodOptional<z.ZodString>;
|
|
22409
22409
|
}, z.core.$strip>>>;
|
|
22410
22410
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22803,12 +22803,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22803
22803
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
22804
22804
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22805
22805
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22806
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22807
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22806
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22807
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22808
22808
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22809
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22809
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22810
22810
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22811
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
22811
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
22812
22812
|
id: z.ZodOptional<z.ZodString>;
|
|
22813
22813
|
}, z.core.$strip>>>;
|
|
22814
22814
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -22989,9 +22989,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
22989
22989
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
22990
22990
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22991
22991
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22992
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22993
22992
|
credentialStoreId: z.ZodString;
|
|
22994
22993
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
22994
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22995
22995
|
type: z.ZodEnum<{
|
|
22996
22996
|
readonly memory: "memory";
|
|
22997
22997
|
readonly keychain: "keychain";
|
|
@@ -23975,15 +23975,15 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
23975
23975
|
updatedAt: z.ZodString;
|
|
23976
23976
|
toolId: z.ZodNullable<z.ZodString>;
|
|
23977
23977
|
userId: z.ZodNullable<z.ZodString>;
|
|
23978
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
23979
23978
|
credentialStoreId: z.ZodString;
|
|
23980
23979
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
23980
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
23981
23981
|
type: z.ZodEnum<{
|
|
23982
23982
|
readonly memory: "memory";
|
|
23983
23983
|
readonly keychain: "keychain";
|
|
23984
23984
|
readonly nango: "nango";
|
|
23985
23985
|
}>;
|
|
23986
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
23986
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
23987
23987
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
23988
23988
|
name: "created_at";
|
|
23989
23989
|
tableName: "tools";
|
|
@@ -24263,7 +24263,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
24263
24263
|
}, {}, {
|
|
24264
24264
|
length: 256;
|
|
24265
24265
|
}>;
|
|
24266
|
-
},
|
|
24266
|
+
}, drizzle_zod19.BuildRefine<{
|
|
24267
24267
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24268
24268
|
name: "created_at";
|
|
24269
24269
|
tableName: "tools";
|
|
@@ -24715,15 +24715,15 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
24715
24715
|
updatedAt: z.ZodString;
|
|
24716
24716
|
toolId: z.ZodNullable<z.ZodString>;
|
|
24717
24717
|
userId: z.ZodNullable<z.ZodString>;
|
|
24718
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
24719
24718
|
credentialStoreId: z.ZodString;
|
|
24720
24719
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
24720
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
24721
24721
|
type: z.ZodEnum<{
|
|
24722
24722
|
readonly memory: "memory";
|
|
24723
24723
|
readonly keychain: "keychain";
|
|
24724
24724
|
readonly nango: "nango";
|
|
24725
24725
|
}>;
|
|
24726
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
24726
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
24727
24727
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
24728
24728
|
name: "created_at";
|
|
24729
24729
|
tableName: "tools";
|
|
@@ -25003,7 +25003,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
25003
25003
|
}, {}, {
|
|
25004
25004
|
length: 256;
|
|
25005
25005
|
}>;
|
|
25006
|
-
},
|
|
25006
|
+
}, drizzle_zod19.BuildRefine<{
|
|
25007
25007
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
25008
25008
|
name: "created_at";
|
|
25009
25009
|
tableName: "tools";
|
|
@@ -25832,15 +25832,15 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
25832
25832
|
updatedAt: z.ZodString;
|
|
25833
25833
|
toolId: z.ZodNullable<z.ZodString>;
|
|
25834
25834
|
userId: z.ZodNullable<z.ZodString>;
|
|
25835
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
25836
25835
|
credentialStoreId: z.ZodString;
|
|
25837
25836
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
25837
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
25838
25838
|
type: z.ZodEnum<{
|
|
25839
25839
|
readonly memory: "memory";
|
|
25840
25840
|
readonly keychain: "keychain";
|
|
25841
25841
|
readonly nango: "nango";
|
|
25842
25842
|
}>;
|
|
25843
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
25843
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
25844
25844
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
25845
25845
|
name: "created_at";
|
|
25846
25846
|
tableName: "tools";
|
|
@@ -26120,7 +26120,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
26120
26120
|
}, {}, {
|
|
26121
26121
|
length: 256;
|
|
26122
26122
|
}>;
|
|
26123
|
-
},
|
|
26123
|
+
}, drizzle_zod19.BuildRefine<{
|
|
26124
26124
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
26125
26125
|
name: "created_at";
|
|
26126
26126
|
tableName: "tools";
|
|
@@ -26446,7 +26446,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
|
|
|
26446
26446
|
createdAt: z.ZodString;
|
|
26447
26447
|
updatedAt: z.ZodString;
|
|
26448
26448
|
functionToolId: z.ZodString;
|
|
26449
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26449
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26450
26450
|
subAgentId: z.ZodString;
|
|
26451
26451
|
agentId: z.ZodString;
|
|
26452
26452
|
projectId: z.ZodString;
|
|
@@ -26522,9 +26522,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
|
|
|
26522
26522
|
createdAt: z.ZodString;
|
|
26523
26523
|
updatedAt: z.ZodString;
|
|
26524
26524
|
toolId: z.ZodString;
|
|
26525
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
26526
|
-
headers: z.ZodNullable<z.ZodType<
|
|
26527
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
26525
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26526
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26527
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26528
26528
|
subAgentId: z.ZodString;
|
|
26529
26529
|
agentId: z.ZodString;
|
|
26530
26530
|
projectId: z.ZodString;
|
|
@@ -26540,19 +26540,19 @@ declare const ConversationResponse: z.ZodObject<{
|
|
|
26540
26540
|
agentId: z.ZodNullable<z.ZodString>;
|
|
26541
26541
|
activeSubAgentId: z.ZodString;
|
|
26542
26542
|
ref: z.ZodNullable<z.ZodType<{
|
|
26543
|
-
type: "
|
|
26543
|
+
type: "tag" | "commit" | "branch";
|
|
26544
26544
|
name: string;
|
|
26545
26545
|
hash: string;
|
|
26546
26546
|
}, {
|
|
26547
|
-
type: "
|
|
26547
|
+
type: "tag" | "commit" | "branch";
|
|
26548
26548
|
name: string;
|
|
26549
26549
|
hash: string;
|
|
26550
26550
|
}, z.core.$ZodTypeInternals<{
|
|
26551
|
-
type: "
|
|
26551
|
+
type: "tag" | "commit" | "branch";
|
|
26552
26552
|
name: string;
|
|
26553
26553
|
hash: string;
|
|
26554
26554
|
}, {
|
|
26555
|
-
type: "
|
|
26555
|
+
type: "tag" | "commit" | "branch";
|
|
26556
26556
|
name: string;
|
|
26557
26557
|
hash: string;
|
|
26558
26558
|
}>>>;
|
|
@@ -26594,10 +26594,10 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26594
26594
|
createdAt: z.ZodString;
|
|
26595
26595
|
updatedAt: z.ZodString;
|
|
26596
26596
|
enabled: z.ZodBoolean;
|
|
26597
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
26598
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
26597
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26598
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26599
26599
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
26600
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
26600
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26601
26601
|
name: z.ZodString;
|
|
26602
26602
|
description: z.ZodNullable<z.ZodString>;
|
|
26603
26603
|
agentId: z.ZodString;
|
|
@@ -26620,8 +26620,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26620
26620
|
signature: z.ZodObject<{
|
|
26621
26621
|
source: z.ZodEnum<{
|
|
26622
26622
|
query: "query";
|
|
26623
|
-
body: "body";
|
|
26624
26623
|
header: "header";
|
|
26624
|
+
body: "body";
|
|
26625
26625
|
}>;
|
|
26626
26626
|
key: z.ZodString;
|
|
26627
26627
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -26630,8 +26630,8 @@ declare const TriggerResponse: z.ZodObject<{
|
|
|
26630
26630
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
26631
26631
|
source: z.ZodEnum<{
|
|
26632
26632
|
literal: "literal";
|
|
26633
|
-
body: "body";
|
|
26634
26633
|
header: "header";
|
|
26634
|
+
body: "body";
|
|
26635
26635
|
}>;
|
|
26636
26636
|
key: z.ZodOptional<z.ZodString>;
|
|
26637
26637
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -26657,8 +26657,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
|
|
|
26657
26657
|
triggerId: z.ZodString;
|
|
26658
26658
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
26659
26659
|
status: z.ZodString;
|
|
26660
|
-
requestPayload: z.ZodType<
|
|
26661
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
26660
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
26661
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
26662
26662
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
26663
26663
|
createdAt: z.ZodString;
|
|
26664
26664
|
agentId: z.ZodString;
|
|
@@ -27025,15 +27025,15 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
27025
27025
|
updatedAt: z.ZodString;
|
|
27026
27026
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27027
27027
|
userId: z.ZodNullable<z.ZodString>;
|
|
27028
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27029
27028
|
credentialStoreId: z.ZodString;
|
|
27030
27029
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27030
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27031
27031
|
type: z.ZodEnum<{
|
|
27032
27032
|
readonly memory: "memory";
|
|
27033
27033
|
readonly keychain: "keychain";
|
|
27034
27034
|
readonly nango: "nango";
|
|
27035
27035
|
}>;
|
|
27036
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
27036
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
27037
27037
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27038
27038
|
name: "created_at";
|
|
27039
27039
|
tableName: "tools";
|
|
@@ -27313,7 +27313,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
27313
27313
|
}, {}, {
|
|
27314
27314
|
length: 256;
|
|
27315
27315
|
}>;
|
|
27316
|
-
},
|
|
27316
|
+
}, drizzle_zod19.BuildRefine<{
|
|
27317
27317
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
27318
27318
|
name: "created_at";
|
|
27319
27319
|
tableName: "tools";
|
|
@@ -27657,7 +27657,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
|
|
|
27657
27657
|
createdAt: z.ZodString;
|
|
27658
27658
|
updatedAt: z.ZodString;
|
|
27659
27659
|
functionToolId: z.ZodString;
|
|
27660
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27660
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27661
27661
|
subAgentId: z.ZodString;
|
|
27662
27662
|
agentId: z.ZodString;
|
|
27663
27663
|
projectId: z.ZodString;
|
|
@@ -27757,9 +27757,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
|
|
|
27757
27757
|
createdAt: z.ZodString;
|
|
27758
27758
|
updatedAt: z.ZodString;
|
|
27759
27759
|
toolId: z.ZodString;
|
|
27760
|
-
selectedTools: z.ZodNullable<z.ZodType<
|
|
27761
|
-
headers: z.ZodNullable<z.ZodType<
|
|
27762
|
-
toolPolicies: z.ZodNullable<z.ZodType<
|
|
27760
|
+
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27761
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27762
|
+
toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27763
27763
|
subAgentId: z.ZodString;
|
|
27764
27764
|
agentId: z.ZodString;
|
|
27765
27765
|
projectId: z.ZodString;
|
|
@@ -27781,19 +27781,19 @@ declare const ConversationListResponse: z.ZodObject<{
|
|
|
27781
27781
|
agentId: z.ZodNullable<z.ZodString>;
|
|
27782
27782
|
activeSubAgentId: z.ZodString;
|
|
27783
27783
|
ref: z.ZodNullable<z.ZodType<{
|
|
27784
|
-
type: "
|
|
27784
|
+
type: "tag" | "commit" | "branch";
|
|
27785
27785
|
name: string;
|
|
27786
27786
|
hash: string;
|
|
27787
27787
|
}, {
|
|
27788
|
-
type: "
|
|
27788
|
+
type: "tag" | "commit" | "branch";
|
|
27789
27789
|
name: string;
|
|
27790
27790
|
hash: string;
|
|
27791
27791
|
}, z.core.$ZodTypeInternals<{
|
|
27792
|
-
type: "
|
|
27792
|
+
type: "tag" | "commit" | "branch";
|
|
27793
27793
|
name: string;
|
|
27794
27794
|
hash: string;
|
|
27795
27795
|
}, {
|
|
27796
|
-
type: "
|
|
27796
|
+
type: "tag" | "commit" | "branch";
|
|
27797
27797
|
name: string;
|
|
27798
27798
|
hash: string;
|
|
27799
27799
|
}>>>;
|
|
@@ -27847,10 +27847,10 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27847
27847
|
createdAt: z.ZodString;
|
|
27848
27848
|
updatedAt: z.ZodString;
|
|
27849
27849
|
enabled: z.ZodBoolean;
|
|
27850
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27851
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27850
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27851
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27852
27852
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27853
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27853
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27854
27854
|
name: z.ZodString;
|
|
27855
27855
|
description: z.ZodNullable<z.ZodString>;
|
|
27856
27856
|
agentId: z.ZodString;
|
|
@@ -27873,8 +27873,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27873
27873
|
signature: z.ZodObject<{
|
|
27874
27874
|
source: z.ZodEnum<{
|
|
27875
27875
|
query: "query";
|
|
27876
|
-
body: "body";
|
|
27877
27876
|
header: "header";
|
|
27877
|
+
body: "body";
|
|
27878
27878
|
}>;
|
|
27879
27879
|
key: z.ZodString;
|
|
27880
27880
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27883,8 +27883,8 @@ declare const TriggerListResponse: z.ZodObject<{
|
|
|
27883
27883
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27884
27884
|
source: z.ZodEnum<{
|
|
27885
27885
|
literal: "literal";
|
|
27886
|
-
body: "body";
|
|
27887
27886
|
header: "header";
|
|
27887
|
+
body: "body";
|
|
27888
27888
|
}>;
|
|
27889
27889
|
key: z.ZodOptional<z.ZodString>;
|
|
27890
27890
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -27916,8 +27916,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
|
|
|
27916
27916
|
triggerId: z.ZodString;
|
|
27917
27917
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
27918
27918
|
status: z.ZodString;
|
|
27919
|
-
requestPayload: z.ZodType<
|
|
27920
|
-
transformedPayload: z.ZodNullable<z.ZodType<
|
|
27919
|
+
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
27920
|
+
transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27921
27921
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
27922
27922
|
createdAt: z.ZodString;
|
|
27923
27923
|
agentId: z.ZodString;
|
|
@@ -27940,10 +27940,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27940
27940
|
createdAt: z.ZodString;
|
|
27941
27941
|
updatedAt: z.ZodString;
|
|
27942
27942
|
enabled: z.ZodBoolean;
|
|
27943
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
27944
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
27943
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27944
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27945
27945
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
27946
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
27946
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
27947
27947
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27948
27948
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27949
27949
|
algorithm: z.ZodEnum<{
|
|
@@ -27960,8 +27960,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27960
27960
|
signature: z.ZodObject<{
|
|
27961
27961
|
source: z.ZodEnum<{
|
|
27962
27962
|
query: "query";
|
|
27963
|
-
body: "body";
|
|
27964
27963
|
header: "header";
|
|
27964
|
+
body: "body";
|
|
27965
27965
|
}>;
|
|
27966
27966
|
key: z.ZodString;
|
|
27967
27967
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -27970,8 +27970,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
|
|
|
27970
27970
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
27971
27971
|
source: z.ZodEnum<{
|
|
27972
27972
|
literal: "literal";
|
|
27973
|
-
body: "body";
|
|
27974
27973
|
header: "header";
|
|
27974
|
+
body: "body";
|
|
27975
27975
|
}>;
|
|
27976
27976
|
key: z.ZodOptional<z.ZodString>;
|
|
27977
27977
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28001,10 +28001,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
28001
28001
|
createdAt: z.ZodString;
|
|
28002
28002
|
updatedAt: z.ZodString;
|
|
28003
28003
|
enabled: z.ZodBoolean;
|
|
28004
|
-
inputSchema: z.ZodNullable<z.ZodType<
|
|
28005
|
-
outputTransform: z.ZodNullable<z.ZodType<
|
|
28004
|
+
inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28005
|
+
outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28006
28006
|
messageTemplate: z.ZodNullable<z.ZodString>;
|
|
28007
|
-
authentication: z.ZodNullable<z.ZodType<
|
|
28007
|
+
authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
28008
28008
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28009
28009
|
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28010
28010
|
algorithm: z.ZodEnum<{
|
|
@@ -28021,8 +28021,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
28021
28021
|
signature: z.ZodObject<{
|
|
28022
28022
|
source: z.ZodEnum<{
|
|
28023
28023
|
query: "query";
|
|
28024
|
-
body: "body";
|
|
28025
28024
|
header: "header";
|
|
28025
|
+
body: "body";
|
|
28026
28026
|
}>;
|
|
28027
28027
|
key: z.ZodString;
|
|
28028
28028
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -28031,8 +28031,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
|
|
|
28031
28031
|
signedComponents: z.ZodArray<z.ZodObject<{
|
|
28032
28032
|
source: z.ZodEnum<{
|
|
28033
28033
|
literal: "literal";
|
|
28034
|
-
body: "body";
|
|
28035
28034
|
header: "header";
|
|
28035
|
+
body: "body";
|
|
28036
28036
|
}>;
|
|
28037
28037
|
key: z.ZodOptional<z.ZodString>;
|
|
28038
28038
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -28284,12 +28284,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28284
28284
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28285
28285
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28286
28286
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
28287
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28288
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28287
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
28288
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
28289
28289
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28290
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28290
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
28291
28291
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28292
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
28292
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
28293
28293
|
id: z.ZodOptional<z.ZodString>;
|
|
28294
28294
|
}, z.core.$strip>>>;
|
|
28295
28295
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -28470,9 +28470,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
28470
28470
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
28471
28471
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28472
28472
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28473
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28474
28473
|
credentialStoreId: z.ZodString;
|
|
28475
28474
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
28475
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28476
28476
|
type: z.ZodEnum<{
|
|
28477
28477
|
readonly memory: "memory";
|
|
28478
28478
|
readonly keychain: "keychain";
|
|
@@ -28846,15 +28846,15 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
28846
28846
|
updatedAt: z.ZodString;
|
|
28847
28847
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28848
28848
|
userId: z.ZodNullable<z.ZodString>;
|
|
28849
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28850
28849
|
credentialStoreId: z.ZodString;
|
|
28851
28850
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28851
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28852
28852
|
type: z.ZodEnum<{
|
|
28853
28853
|
readonly memory: "memory";
|
|
28854
28854
|
readonly keychain: "keychain";
|
|
28855
28855
|
readonly nango: "nango";
|
|
28856
28856
|
}>;
|
|
28857
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
28857
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
28858
28858
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
28859
28859
|
name: "created_at";
|
|
28860
28860
|
tableName: "tools";
|
|
@@ -29134,7 +29134,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
29134
29134
|
}, {}, {
|
|
29135
29135
|
length: 256;
|
|
29136
29136
|
}>;
|
|
29137
|
-
},
|
|
29137
|
+
}, drizzle_zod19.BuildRefine<{
|
|
29138
29138
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29139
29139
|
name: "created_at";
|
|
29140
29140
|
tableName: "tools";
|
|
@@ -29588,15 +29588,15 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29588
29588
|
updatedAt: z.ZodString;
|
|
29589
29589
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29590
29590
|
userId: z.ZodNullable<z.ZodString>;
|
|
29591
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29592
29591
|
credentialStoreId: z.ZodString;
|
|
29593
29592
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29593
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29594
29594
|
type: z.ZodEnum<{
|
|
29595
29595
|
readonly memory: "memory";
|
|
29596
29596
|
readonly keychain: "keychain";
|
|
29597
29597
|
readonly nango: "nango";
|
|
29598
29598
|
}>;
|
|
29599
|
-
tools: z.ZodOptional<z.ZodArray<
|
|
29599
|
+
tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
29600
29600
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29601
29601
|
name: "created_at";
|
|
29602
29602
|
tableName: "tools";
|
|
@@ -29876,7 +29876,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
29876
29876
|
}, {}, {
|
|
29877
29877
|
length: 256;
|
|
29878
29878
|
}>;
|
|
29879
|
-
},
|
|
29879
|
+
}, drizzle_zod19.BuildRefine<{
|
|
29880
29880
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
29881
29881
|
name: "created_at";
|
|
29882
29882
|
tableName: "tools";
|
|
@@ -30536,12 +30536,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
|
|
|
30536
30536
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
30537
30537
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30538
30538
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
30539
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30540
|
-
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30539
|
+
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30540
|
+
outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30541
30541
|
messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30542
|
-
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30542
|
+
authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30543
30543
|
signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30544
|
-
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<
|
|
30544
|
+
signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
30545
30545
|
id: z.ZodOptional<z.ZodString>;
|
|
30546
30546
|
}, z.core.$strip>>>;
|
|
30547
30547
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -30949,7 +30949,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
|
|
|
30949
30949
|
createdAt: z.ZodString;
|
|
30950
30950
|
updatedAt: z.ZodString;
|
|
30951
30951
|
targetAgentId: z.ZodString;
|
|
30952
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30952
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30953
30953
|
subAgentId: z.ZodString;
|
|
30954
30954
|
agentId: z.ZodString;
|
|
30955
30955
|
projectId: z.ZodString;
|
|
@@ -30962,7 +30962,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
|
|
|
30962
30962
|
createdAt: z.ZodString;
|
|
30963
30963
|
updatedAt: z.ZodString;
|
|
30964
30964
|
targetAgentId: z.ZodString;
|
|
30965
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30965
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30966
30966
|
subAgentId: z.ZodString;
|
|
30967
30967
|
agentId: z.ZodString;
|
|
30968
30968
|
projectId: z.ZodString;
|
|
@@ -30981,7 +30981,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
|
|
|
30981
30981
|
createdAt: z.ZodString;
|
|
30982
30982
|
updatedAt: z.ZodString;
|
|
30983
30983
|
externalAgentId: z.ZodString;
|
|
30984
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30984
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30985
30985
|
subAgentId: z.ZodString;
|
|
30986
30986
|
agentId: z.ZodString;
|
|
30987
30987
|
projectId: z.ZodString;
|
|
@@ -30994,7 +30994,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
|
|
|
30994
30994
|
createdAt: z.ZodString;
|
|
30995
30995
|
updatedAt: z.ZodString;
|
|
30996
30996
|
externalAgentId: z.ZodString;
|
|
30997
|
-
headers: z.ZodNullable<z.ZodType<
|
|
30997
|
+
headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
|
|
30998
30998
|
subAgentId: z.ZodString;
|
|
30999
30999
|
agentId: z.ZodString;
|
|
31000
31000
|
projectId: z.ZodString;
|
|
@@ -31161,7 +31161,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
|
|
|
31161
31161
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
31162
31162
|
ref: z.ZodOptional<z.ZodString>;
|
|
31163
31163
|
}, z.core.$strip>;
|
|
31164
|
-
declare const ProjectMetadataSelectSchema:
|
|
31164
|
+
declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
31165
31165
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31166
31166
|
name: "id";
|
|
31167
31167
|
tableName: "project_metadata";
|
|
@@ -31255,7 +31255,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
|
|
|
31255
31255
|
}, {}, {
|
|
31256
31256
|
length: 512;
|
|
31257
31257
|
}>;
|
|
31258
|
-
},
|
|
31258
|
+
}, drizzle_zod19.BuildRefine<{
|
|
31259
31259
|
id: drizzle_orm_pg_core211.PgColumn<{
|
|
31260
31260
|
name: "id";
|
|
31261
31261
|
tableName: "project_metadata";
|
|
@@ -31366,10 +31366,10 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
31366
31366
|
disconnected: "disconnected";
|
|
31367
31367
|
}>;
|
|
31368
31368
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
31369
|
-
Organization: "Organization";
|
|
31370
31369
|
User: "User";
|
|
31370
|
+
Organization: "Organization";
|
|
31371
31371
|
}>;
|
|
31372
|
-
declare const WorkAppGitHubInstallationSelectSchema:
|
|
31372
|
+
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
31373
31373
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31374
31374
|
name: "created_at";
|
|
31375
31375
|
tableName: "work_app_github_installations";
|
|
@@ -31462,7 +31462,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31462
31462
|
tableName: "work_app_github_installations";
|
|
31463
31463
|
dataType: "string";
|
|
31464
31464
|
columnType: "PgVarchar";
|
|
31465
|
-
data: "
|
|
31465
|
+
data: "User" | "Organization";
|
|
31466
31466
|
driverParam: string;
|
|
31467
31467
|
notNull: true;
|
|
31468
31468
|
hasDefault: false;
|
|
@@ -31475,7 +31475,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31475
31475
|
generated: undefined;
|
|
31476
31476
|
}, {}, {
|
|
31477
31477
|
length: 20;
|
|
31478
|
-
$type: "
|
|
31478
|
+
$type: "User" | "Organization";
|
|
31479
31479
|
}>;
|
|
31480
31480
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
31481
31481
|
name: "status";
|
|
@@ -31535,7 +31535,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31535
31535
|
}, {}, {
|
|
31536
31536
|
length: 256;
|
|
31537
31537
|
}>;
|
|
31538
|
-
},
|
|
31538
|
+
}, drizzle_zod19.BuildRefine<{
|
|
31539
31539
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31540
31540
|
name: "created_at";
|
|
31541
31541
|
tableName: "work_app_github_installations";
|
|
@@ -31628,7 +31628,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31628
31628
|
tableName: "work_app_github_installations";
|
|
31629
31629
|
dataType: "string";
|
|
31630
31630
|
columnType: "PgVarchar";
|
|
31631
|
-
data: "
|
|
31631
|
+
data: "User" | "Organization";
|
|
31632
31632
|
driverParam: string;
|
|
31633
31633
|
notNull: true;
|
|
31634
31634
|
hasDefault: false;
|
|
@@ -31641,7 +31641,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"
|
|
|
31641
31641
|
generated: undefined;
|
|
31642
31642
|
}, {}, {
|
|
31643
31643
|
length: 20;
|
|
31644
|
-
$type: "
|
|
31644
|
+
$type: "User" | "Organization";
|
|
31645
31645
|
}>;
|
|
31646
31646
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
31647
31647
|
name: "status";
|
|
@@ -31709,8 +31709,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
31709
31709
|
installationId: z.ZodString;
|
|
31710
31710
|
accountLogin: z.ZodString;
|
|
31711
31711
|
accountType: z.ZodEnum<{
|
|
31712
|
-
Organization: "Organization";
|
|
31713
31712
|
User: "User";
|
|
31713
|
+
Organization: "Organization";
|
|
31714
31714
|
}>;
|
|
31715
31715
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
31716
31716
|
pending: "pending";
|
|
@@ -31740,8 +31740,8 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
31740
31740
|
installationId: z.ZodString;
|
|
31741
31741
|
accountLogin: z.ZodString;
|
|
31742
31742
|
accountType: z.ZodEnum<{
|
|
31743
|
-
Organization: "Organization";
|
|
31744
31743
|
User: "User";
|
|
31744
|
+
Organization: "Organization";
|
|
31745
31745
|
}>;
|
|
31746
31746
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
31747
31747
|
pending: "pending";
|
|
@@ -31750,7 +31750,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
31750
31750
|
disconnected: "disconnected";
|
|
31751
31751
|
}>>>;
|
|
31752
31752
|
}>, z.core.$strip>;
|
|
31753
|
-
declare const WorkAppGitHubRepositorySelectSchema:
|
|
31753
|
+
declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
31754
31754
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31755
31755
|
name: "created_at";
|
|
31756
31756
|
tableName: "work_app_github_repositories";
|
|
@@ -31895,7 +31895,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"se
|
|
|
31895
31895
|
identity: undefined;
|
|
31896
31896
|
generated: undefined;
|
|
31897
31897
|
}, {}, {}>;
|
|
31898
|
-
},
|
|
31898
|
+
}, drizzle_zod19.BuildRefine<{
|
|
31899
31899
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
31900
31900
|
name: "created_at";
|
|
31901
31901
|
tableName: "work_app_github_repositories";
|
|
@@ -32061,7 +32061,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
|
|
|
32061
32061
|
repositoryFullName: z.ZodString;
|
|
32062
32062
|
private: z.ZodOptional<z.ZodBoolean>;
|
|
32063
32063
|
}>>, z.core.$strip>;
|
|
32064
|
-
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema:
|
|
32064
|
+
declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
32065
32065
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32066
32066
|
name: "created_at";
|
|
32067
32067
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32172,7 +32172,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
32172
32172
|
}, {}, {
|
|
32173
32173
|
length: 256;
|
|
32174
32174
|
}>;
|
|
32175
|
-
},
|
|
32175
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32176
32176
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32177
32177
|
name: "created_at";
|
|
32178
32178
|
tableName: "work_app_github_project_repository_access";
|
|
@@ -32284,7 +32284,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
32284
32284
|
length: 256;
|
|
32285
32285
|
}>;
|
|
32286
32286
|
}, undefined>, undefined>;
|
|
32287
|
-
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema:
|
|
32287
|
+
declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
32288
32288
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32289
32289
|
name: "created_at";
|
|
32290
32290
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32414,7 +32414,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.Bu
|
|
|
32414
32414
|
}, {}, {
|
|
32415
32415
|
length: 256;
|
|
32416
32416
|
}>;
|
|
32417
|
-
},
|
|
32417
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32418
32418
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32419
32419
|
name: "created_at";
|
|
32420
32420
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
@@ -32568,7 +32568,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32568
32568
|
all: "all";
|
|
32569
32569
|
selected: "selected";
|
|
32570
32570
|
}>;
|
|
32571
|
-
repositories: z.ZodArray<
|
|
32571
|
+
repositories: z.ZodArray<drizzle_zod19.BuildSchema<"select", {
|
|
32572
32572
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32573
32573
|
name: "created_at";
|
|
32574
32574
|
tableName: "work_app_github_repositories";
|
|
@@ -32713,7 +32713,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
|
|
|
32713
32713
|
identity: undefined;
|
|
32714
32714
|
generated: undefined;
|
|
32715
32715
|
}, {}, {}>;
|
|
32716
|
-
},
|
|
32716
|
+
}, drizzle_zod19.BuildRefine<{
|
|
32717
32717
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
32718
32718
|
name: "created_at";
|
|
32719
32719
|
tableName: "work_app_github_repositories";
|