@inkeep/agents-core 0.0.0-dev-20260204005607 → 0.0.0-dev-20260204091343

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.
@@ -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_core208 from "drizzle-orm/pg-core";
6
- import * as drizzle_zod19 from "drizzle-zod";
6
+ import * as drizzle_zod15 from "drizzle-zod";
7
7
 
8
8
  //#region src/validation/schemas.d.ts
9
9
  declare const StopWhenSchema: z.ZodObject<{
@@ -83,7 +83,7 @@ type OmitAgentScope<T> = Omit<T, 'tenantId' | 'projectId' | 'agentId'>;
83
83
  type OmitTenantScope<T> = Omit<T, 'tenantId'>;
84
84
  type OmitTimestamps<T> = Omit<T, 'createdAt' | 'updatedAt'>;
85
85
  type OmitGeneratedFields<T> = Omit<T, 'id' | 'createdAt' | 'updatedAt'>;
86
- declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
86
+ declare const SubAgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
87
87
  createdAt: drizzle_orm_pg_core208.PgColumn<{
88
88
  name: "created_at";
89
89
  tableName: "sub_agents";
@@ -334,7 +334,7 @@ declare const SubAgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
334
334
  }, {}, {
335
335
  length: 256;
336
336
  }>;
337
- }, drizzle_zod19.BuildRefine<{
337
+ }, drizzle_zod15.BuildRefine<{
338
338
  createdAt: drizzle_orm_pg_core208.PgColumn<{
339
339
  name: "created_at";
340
340
  tableName: "sub_agents";
@@ -803,7 +803,7 @@ declare const SubAgentApiUpdateSchema: z.ZodObject<{
803
803
  }>>>>>>;
804
804
  conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
805
805
  }, z.core.$strip>;
806
- declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
806
+ declare const SubAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
807
807
  createdAt: drizzle_orm_pg_core208.PgColumn<{
808
808
  name: "created_at";
809
809
  tableName: "sub_agent_relations";
@@ -971,7 +971,7 @@ declare const SubAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select",
971
971
  }, {}, {
972
972
  length: 256;
973
973
  }>;
974
- }, drizzle_zod19.BuildRefine<{
974
+ }, drizzle_zod15.BuildRefine<{
975
975
  createdAt: drizzle_orm_pg_core208.PgColumn<{
976
976
  name: "created_at";
977
977
  tableName: "sub_agent_relations";
@@ -1242,7 +1242,7 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<OmitProjectSc
1242
1242
  sourceSubAgentId: z.ZodString;
1243
1243
  externalSubAgentId: z.ZodString;
1244
1244
  }>, z.core.$strip>;
1245
- declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
1245
+ declare const AgentSelectSchema: drizzle_zod15.BuildSchema<"select", {
1246
1246
  createdAt: drizzle_orm_pg_core208.PgColumn<{
1247
1247
  name: "created_at";
1248
1248
  tableName: "agent";
@@ -1540,7 +1540,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
1540
1540
  }, {}, {
1541
1541
  length: 256;
1542
1542
  }>;
1543
- }, drizzle_zod19.BuildRefine<{
1543
+ }, drizzle_zod15.BuildRefine<{
1544
1544
  createdAt: drizzle_orm_pg_core208.PgColumn<{
1545
1545
  name: "created_at";
1546
1546
  tableName: "agent";
@@ -1839,7 +1839,7 @@ declare const AgentSelectSchema: drizzle_zod19.BuildSchema<"select", {
1839
1839
  length: 256;
1840
1840
  }>;
1841
1841
  }, undefined>, undefined>;
1842
- declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
1842
+ declare const AgentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
1843
1843
  createdAt: drizzle_orm_pg_core208.PgColumn<{
1844
1844
  name: "created_at";
1845
1845
  tableName: "agent";
@@ -2137,7 +2137,7 @@ declare const AgentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
2137
2137
  }, {}, {
2138
2138
  length: 256;
2139
2139
  }>;
2140
- }, drizzle_zod19.BuildRefine<Pick<{
2140
+ }, drizzle_zod15.BuildRefine<Pick<{
2141
2141
  createdAt: drizzle_orm_pg_core208.PgColumn<{
2142
2142
  name: "created_at";
2143
2143
  tableName: "agent";
@@ -3024,8 +3024,8 @@ declare const TriggerOutputTransformSchema: z.ZodObject<{
3024
3024
  declare const SignatureSourceSchema: z.ZodObject<{
3025
3025
  source: z.ZodEnum<{
3026
3026
  query: "query";
3027
- header: "header";
3028
3027
  body: "body";
3028
+ header: "header";
3029
3029
  }>;
3030
3030
  key: z.ZodString;
3031
3031
  prefix: z.ZodOptional<z.ZodString>;
@@ -3054,8 +3054,8 @@ declare const SignatureSourceSchema: z.ZodObject<{
3054
3054
  declare const SignedComponentSchema: z.ZodObject<{
3055
3055
  source: z.ZodEnum<{
3056
3056
  literal: "literal";
3057
- header: "header";
3058
3057
  body: "body";
3058
+ header: "header";
3059
3059
  }>;
3060
3060
  key: z.ZodOptional<z.ZodString>;
3061
3061
  value: z.ZodOptional<z.ZodString>;
@@ -3164,8 +3164,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3164
3164
  signature: z.ZodObject<{
3165
3165
  source: z.ZodEnum<{
3166
3166
  query: "query";
3167
- header: "header";
3168
3167
  body: "body";
3168
+ header: "header";
3169
3169
  }>;
3170
3170
  key: z.ZodString;
3171
3171
  prefix: z.ZodOptional<z.ZodString>;
@@ -3174,8 +3174,8 @@ declare const SignatureVerificationConfigSchema: z.ZodObject<{
3174
3174
  signedComponents: z.ZodArray<z.ZodObject<{
3175
3175
  source: z.ZodEnum<{
3176
3176
  literal: "literal";
3177
- header: "header";
3178
3177
  body: "body";
3178
+ header: "header";
3179
3179
  }>;
3180
3180
  key: z.ZodOptional<z.ZodString>;
3181
3181
  value: z.ZodOptional<z.ZodString>;
@@ -3234,10 +3234,10 @@ declare const TriggerSelectSchema: z.ZodObject<{
3234
3234
  createdAt: z.ZodString;
3235
3235
  updatedAt: z.ZodString;
3236
3236
  enabled: z.ZodBoolean;
3237
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3238
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3237
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3238
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3239
3239
  messageTemplate: z.ZodNullable<z.ZodString>;
3240
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3240
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3241
3241
  name: z.ZodString;
3242
3242
  description: z.ZodNullable<z.ZodString>;
3243
3243
  agentId: z.ZodString;
@@ -3260,8 +3260,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
3260
3260
  signature: z.ZodObject<{
3261
3261
  source: z.ZodEnum<{
3262
3262
  query: "query";
3263
- header: "header";
3264
3263
  body: "body";
3264
+ header: "header";
3265
3265
  }>;
3266
3266
  key: z.ZodString;
3267
3267
  prefix: z.ZodOptional<z.ZodString>;
@@ -3270,8 +3270,8 @@ declare const TriggerSelectSchema: z.ZodObject<{
3270
3270
  signedComponents: z.ZodArray<z.ZodObject<{
3271
3271
  source: z.ZodEnum<{
3272
3272
  literal: "literal";
3273
- header: "header";
3274
3273
  body: "body";
3274
+ header: "header";
3275
3275
  }>;
3276
3276
  key: z.ZodOptional<z.ZodString>;
3277
3277
  value: z.ZodOptional<z.ZodString>;
@@ -3294,7 +3294,7 @@ declare const TriggerSelectSchema: z.ZodObject<{
3294
3294
  out: {};
3295
3295
  in: {};
3296
3296
  }>;
3297
- declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3297
+ declare const TriggerInsertSchema: drizzle_zod15.BuildSchema<"insert", {
3298
3298
  createdAt: drizzle_orm_pg_core208.PgColumn<{
3299
3299
  name: "created_at";
3300
3300
  tableName: "triggers";
@@ -3454,13 +3454,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3454
3454
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3455
3455
  encoding: "hex" | "base64";
3456
3456
  signature: {
3457
- source: "query" | "header" | "body";
3457
+ source: "query" | "body" | "header";
3458
3458
  key: string;
3459
3459
  prefix?: string | undefined;
3460
3460
  regex?: string | undefined;
3461
3461
  };
3462
3462
  signedComponents: {
3463
- source: "literal" | "header" | "body";
3463
+ source: "literal" | "body" | "header";
3464
3464
  required: boolean;
3465
3465
  key?: string | undefined;
3466
3466
  value?: string | undefined;
@@ -3491,13 +3491,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3491
3491
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3492
3492
  encoding: "hex" | "base64";
3493
3493
  signature: {
3494
- source: "query" | "header" | "body";
3494
+ source: "query" | "body" | "header";
3495
3495
  key: string;
3496
3496
  prefix?: string | undefined;
3497
3497
  regex?: string | undefined;
3498
3498
  };
3499
3499
  signedComponents: {
3500
- source: "literal" | "header" | "body";
3500
+ source: "literal" | "body" | "header";
3501
3501
  required: boolean;
3502
3502
  key?: string | undefined;
3503
3503
  value?: string | undefined;
@@ -3626,7 +3626,7 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3626
3626
  }, {}, {
3627
3627
  length: 256;
3628
3628
  }>;
3629
- }, drizzle_zod19.BuildRefine<Pick<{
3629
+ }, drizzle_zod15.BuildRefine<Pick<{
3630
3630
  createdAt: drizzle_orm_pg_core208.PgColumn<{
3631
3631
  name: "created_at";
3632
3632
  tableName: "triggers";
@@ -3786,13 +3786,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3786
3786
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3787
3787
  encoding: "hex" | "base64";
3788
3788
  signature: {
3789
- source: "query" | "header" | "body";
3789
+ source: "query" | "body" | "header";
3790
3790
  key: string;
3791
3791
  prefix?: string | undefined;
3792
3792
  regex?: string | undefined;
3793
3793
  };
3794
3794
  signedComponents: {
3795
- source: "literal" | "header" | "body";
3795
+ source: "literal" | "body" | "header";
3796
3796
  required: boolean;
3797
3797
  key?: string | undefined;
3798
3798
  value?: string | undefined;
@@ -3823,13 +3823,13 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3823
3823
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
3824
3824
  encoding: "hex" | "base64";
3825
3825
  signature: {
3826
- source: "query" | "header" | "body";
3826
+ source: "query" | "body" | "header";
3827
3827
  key: string;
3828
3828
  prefix?: string | undefined;
3829
3829
  regex?: string | undefined;
3830
3830
  };
3831
3831
  signedComponents: {
3832
- source: "literal" | "header" | "body";
3832
+ source: "literal" | "body" | "header";
3833
3833
  required: boolean;
3834
3834
  key?: string | undefined;
3835
3835
  value?: string | undefined;
@@ -3962,12 +3962,12 @@ declare const TriggerInsertSchema: drizzle_zod19.BuildSchema<"insert", {
3962
3962
  declare const TriggerUpdateSchema: z.ZodObject<{
3963
3963
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3964
3964
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3965
- inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
3966
- outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
3965
+ inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
3966
+ outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
3967
3967
  messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3968
- authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
3968
+ authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
3969
3969
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3970
- signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
3970
+ signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
3971
3971
  name: z.ZodOptional<z.ZodString>;
3972
3972
  description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3973
3973
  agentId: z.ZodOptional<z.ZodString>;
@@ -3983,10 +3983,10 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
3983
3983
  createdAt: z.ZodString;
3984
3984
  updatedAt: z.ZodString;
3985
3985
  enabled: z.ZodBoolean;
3986
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3987
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3986
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3987
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3988
3988
  messageTemplate: z.ZodNullable<z.ZodString>;
3989
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
3989
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
3990
3990
  name: z.ZodString;
3991
3991
  description: z.ZodNullable<z.ZodString>;
3992
3992
  agentId: z.ZodString;
@@ -4009,8 +4009,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4009
4009
  signature: z.ZodObject<{
4010
4010
  source: z.ZodEnum<{
4011
4011
  query: "query";
4012
- header: "header";
4013
4012
  body: "body";
4013
+ header: "header";
4014
4014
  }>;
4015
4015
  key: z.ZodString;
4016
4016
  prefix: z.ZodOptional<z.ZodString>;
@@ -4019,8 +4019,8 @@ declare const TriggerApiSelectSchema: z.ZodObject<OmitAgentScope<{
4019
4019
  signedComponents: z.ZodArray<z.ZodObject<{
4020
4020
  source: z.ZodEnum<{
4021
4021
  literal: "literal";
4022
- header: "header";
4023
4022
  body: "body";
4023
+ header: "header";
4024
4024
  }>;
4025
4025
  key: z.ZodOptional<z.ZodString>;
4026
4026
  value: z.ZodOptional<z.ZodString>;
@@ -4046,23 +4046,23 @@ declare const TriggerApiInsertSchema: z.ZodObject<{
4046
4046
  createdAt: z.ZodOptional<z.ZodString>;
4047
4047
  updatedAt: z.ZodOptional<z.ZodString>;
4048
4048
  enabled: z.ZodOptional<z.ZodBoolean>;
4049
- inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4050
- outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4049
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4050
+ outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4051
4051
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4052
- authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4052
+ authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4053
4053
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4054
- signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4054
+ signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4055
4055
  id: z.ZodOptional<z.ZodString>;
4056
4056
  }, z.core.$strip>;
4057
4057
  declare const TriggerApiUpdateSchema: z.ZodObject<{
4058
4058
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4059
4059
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4060
- inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
4061
- outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
4060
+ inputSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
4061
+ outputTransform: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
4062
4062
  messageTemplate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4063
- authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
4063
+ authentication: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
4064
4064
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4065
- signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
4065
+ signatureVerification: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
4066
4066
  name: z.ZodOptional<z.ZodString>;
4067
4067
  description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4068
4068
  agentId: z.ZodOptional<z.ZodString>;
@@ -4081,10 +4081,10 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4081
4081
  createdAt: z.ZodString;
4082
4082
  updatedAt: z.ZodString;
4083
4083
  enabled: z.ZodBoolean;
4084
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4085
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4084
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
4085
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
4086
4086
  messageTemplate: z.ZodNullable<z.ZodString>;
4087
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4087
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
4088
4088
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4089
4089
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4090
4090
  algorithm: z.ZodEnum<{
@@ -4101,8 +4101,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4101
4101
  signature: z.ZodObject<{
4102
4102
  source: z.ZodEnum<{
4103
4103
  query: "query";
4104
- header: "header";
4105
4104
  body: "body";
4105
+ header: "header";
4106
4106
  }>;
4107
4107
  key: z.ZodString;
4108
4108
  prefix: z.ZodOptional<z.ZodString>;
@@ -4111,8 +4111,8 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4111
4111
  signedComponents: z.ZodArray<z.ZodObject<{
4112
4112
  source: z.ZodEnum<{
4113
4113
  literal: "literal";
4114
- header: "header";
4115
4114
  body: "body";
4115
+ header: "header";
4116
4116
  }>;
4117
4117
  key: z.ZodOptional<z.ZodString>;
4118
4118
  value: z.ZodOptional<z.ZodString>;
@@ -4133,7 +4133,7 @@ declare const TriggerWithWebhookUrlSchema: z.ZodObject<{
4133
4133
  }, z.core.$strip>>>;
4134
4134
  webhookUrl: z.ZodString;
4135
4135
  }, z.core.$strip>;
4136
- declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select", {
4136
+ declare const TriggerInvocationSelectSchema: drizzle_zod15.BuildSchema<"select", {
4137
4137
  triggerId: drizzle_orm_pg_core208.PgColumn<{
4138
4138
  name: "trigger_id";
4139
4139
  tableName: "trigger_invocations";
@@ -4335,7 +4335,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
4335
4335
  }, {}, {
4336
4336
  length: 256;
4337
4337
  }>;
4338
- }, drizzle_zod19.BuildRefine<{
4338
+ }, drizzle_zod15.BuildRefine<{
4339
4339
  triggerId: drizzle_orm_pg_core208.PgColumn<{
4340
4340
  name: "trigger_id";
4341
4341
  tableName: "trigger_invocations";
@@ -4538,7 +4538,7 @@ declare const TriggerInvocationSelectSchema: drizzle_zod19.BuildSchema<"select",
4538
4538
  length: 256;
4539
4539
  }>;
4540
4540
  }, undefined>, undefined>;
4541
- declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert", {
4541
+ declare const TriggerInvocationInsertSchema: drizzle_zod15.BuildSchema<"insert", {
4542
4542
  triggerId: drizzle_orm_pg_core208.PgColumn<{
4543
4543
  name: "trigger_id";
4544
4544
  tableName: "trigger_invocations";
@@ -4740,7 +4740,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
4740
4740
  }, {}, {
4741
4741
  length: 256;
4742
4742
  }>;
4743
- }, drizzle_zod19.BuildRefine<Pick<{
4743
+ }, drizzle_zod15.BuildRefine<Pick<{
4744
4744
  triggerId: drizzle_orm_pg_core208.PgColumn<{
4745
4745
  name: "trigger_id";
4746
4746
  tableName: "trigger_invocations";
@@ -4947,8 +4947,8 @@ declare const TriggerInvocationUpdateSchema: z.ZodObject<{
4947
4947
  triggerId: z.ZodOptional<z.ZodString>;
4948
4948
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4949
4949
  status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4950
- requestPayload: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4951
- transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
4950
+ requestPayload: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
4951
+ transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
4952
4952
  errorMessage: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
4953
4953
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4954
4954
  agentId: z.ZodOptional<z.ZodString>;
@@ -4963,8 +4963,8 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
4963
4963
  triggerId: z.ZodString;
4964
4964
  conversationId: z.ZodNullable<z.ZodString>;
4965
4965
  status: z.ZodString;
4966
- requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
4967
- transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
4966
+ requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
4967
+ transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
4968
4968
  errorMessage: z.ZodNullable<z.ZodString>;
4969
4969
  createdAt: z.ZodString;
4970
4970
  agentId: z.ZodString;
@@ -4977,8 +4977,8 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
4977
4977
  status: z.ZodOptional<z.ZodString>;
4978
4978
  triggerId: z.ZodString;
4979
4979
  conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4980
- requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
4981
- transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4980
+ requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
4981
+ transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4982
4982
  errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4983
4983
  id: z.ZodString;
4984
4984
  }, z.core.$strip>;
@@ -4988,11 +4988,11 @@ declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
4988
4988
  status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
4989
4989
  triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4990
4990
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4991
- requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
4992
- transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
4991
+ requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
4992
+ transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
4993
4993
  errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
4994
4994
  }, z.core.$strip>;
4995
- declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
4995
+ declare const TaskSelectSchema: drizzle_zod15.BuildSchema<"select", {
4996
4996
  createdAt: drizzle_orm_pg_core208.PgColumn<{
4997
4997
  name: "created_at";
4998
4998
  tableName: "tasks";
@@ -5052,7 +5052,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5052
5052
  dataType: "json";
5053
5053
  columnType: "PgJsonb";
5054
5054
  data: {
5055
- type: "commit" | "tag" | "branch";
5055
+ type: "tag" | "commit" | "branch";
5056
5056
  name: string;
5057
5057
  hash: string;
5058
5058
  };
@@ -5068,7 +5068,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5068
5068
  generated: undefined;
5069
5069
  }, {}, {
5070
5070
  $type: {
5071
- type: "commit" | "tag" | "branch";
5071
+ type: "tag" | "commit" | "branch";
5072
5072
  name: string;
5073
5073
  hash: string;
5074
5074
  };
@@ -5206,7 +5206,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5206
5206
  }, {}, {
5207
5207
  length: 256;
5208
5208
  }>;
5209
- }, drizzle_zod19.BuildRefine<{
5209
+ }, drizzle_zod15.BuildRefine<{
5210
5210
  createdAt: drizzle_orm_pg_core208.PgColumn<{
5211
5211
  name: "created_at";
5212
5212
  tableName: "tasks";
@@ -5266,7 +5266,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5266
5266
  dataType: "json";
5267
5267
  columnType: "PgJsonb";
5268
5268
  data: {
5269
- type: "commit" | "tag" | "branch";
5269
+ type: "tag" | "commit" | "branch";
5270
5270
  name: string;
5271
5271
  hash: string;
5272
5272
  };
@@ -5282,7 +5282,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
5282
5282
  generated: undefined;
5283
5283
  }, {}, {
5284
5284
  $type: {
5285
- type: "commit" | "tag" | "branch";
5285
+ type: "tag" | "commit" | "branch";
5286
5286
  name: string;
5287
5287
  hash: string;
5288
5288
  };
@@ -5435,8 +5435,8 @@ declare const TaskInsertSchema: z.ZodObject<{
5435
5435
  conversationId: z.ZodOptional<z.ZodString>;
5436
5436
  ref: z.ZodObject<{
5437
5437
  type: z.ZodEnum<{
5438
- commit: "commit";
5439
5438
  tag: "tag";
5439
+ commit: "commit";
5440
5440
  branch: "branch";
5441
5441
  }>;
5442
5442
  name: z.ZodString;
@@ -5460,8 +5460,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
5460
5460
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5461
5461
  ref: z.ZodOptional<z.ZodObject<{
5462
5462
  type: z.ZodEnum<{
5463
- commit: "commit";
5464
5463
  tag: "tag";
5464
+ commit: "commit";
5465
5465
  branch: "branch";
5466
5466
  }>;
5467
5467
  name: z.ZodString;
@@ -5476,19 +5476,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
5476
5476
  updatedAt: z.ZodString;
5477
5477
  contextId: z.ZodString;
5478
5478
  ref: z.ZodNullable<z.ZodType<{
5479
- type: "commit" | "tag" | "branch";
5479
+ type: "tag" | "commit" | "branch";
5480
5480
  name: string;
5481
5481
  hash: string;
5482
5482
  }, {
5483
- type: "commit" | "tag" | "branch";
5483
+ type: "tag" | "commit" | "branch";
5484
5484
  name: string;
5485
5485
  hash: string;
5486
5486
  }, z.core.$ZodTypeInternals<{
5487
- type: "commit" | "tag" | "branch";
5487
+ type: "tag" | "commit" | "branch";
5488
5488
  name: string;
5489
5489
  hash: string;
5490
5490
  }, {
5491
- type: "commit" | "tag" | "branch";
5491
+ type: "tag" | "commit" | "branch";
5492
5492
  name: string;
5493
5493
  hash: string;
5494
5494
  }>>>;
@@ -5514,8 +5514,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
5514
5514
  conversationId: z.ZodOptional<z.ZodString>;
5515
5515
  ref: z.ZodObject<{
5516
5516
  type: z.ZodEnum<{
5517
- commit: "commit";
5518
5517
  tag: "tag";
5518
+ commit: "commit";
5519
5519
  branch: "branch";
5520
5520
  }>;
5521
5521
  name: z.ZodString;
@@ -5528,21 +5528,21 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
5528
5528
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5529
5529
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5530
5530
  metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
5531
- status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5532
5531
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
5533
5532
  type: z.ZodEnum<{
5534
- commit: "commit";
5535
5533
  tag: "tag";
5534
+ commit: "commit";
5536
5535
  branch: "branch";
5537
5536
  }>;
5538
5537
  name: z.ZodString;
5539
5538
  hash: z.ZodString;
5540
5539
  }, z.core.$strip>>>;
5540
+ status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5541
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5541
5542
  conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
5542
5543
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5543
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5544
5544
  }, z.core.$strip>;
5545
- declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
5545
+ declare const TaskRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
5546
5546
  createdAt: drizzle_orm_pg_core208.PgColumn<{
5547
5547
  name: "created_at";
5548
5548
  tableName: "task_relations";
@@ -5691,7 +5691,7 @@ declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
5691
5691
  }, {}, {
5692
5692
  length: 256;
5693
5693
  }>;
5694
- }, drizzle_zod19.BuildRefine<{
5694
+ }, drizzle_zod15.BuildRefine<{
5695
5695
  createdAt: drizzle_orm_pg_core208.PgColumn<{
5696
5696
  name: "created_at";
5697
5697
  tableName: "task_relations";
@@ -5917,7 +5917,7 @@ declare const McpToolDefinitionSchema: z.ZodObject<{
5917
5917
  description: z.ZodOptional<z.ZodString>;
5918
5918
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5919
5919
  }, z.core.$strip>;
5920
- declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
5920
+ declare const ToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
5921
5921
  createdAt: drizzle_orm_pg_core208.PgColumn<{
5922
5922
  name: "created_at";
5923
5923
  tableName: "tools";
@@ -6197,7 +6197,7 @@ declare const ToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
6197
6197
  }, {}, {
6198
6198
  length: 256;
6199
6199
  }>;
6200
- }, drizzle_zod19.BuildRefine<{
6200
+ }, drizzle_zod15.BuildRefine<{
6201
6201
  createdAt: drizzle_orm_pg_core208.PgColumn<{
6202
6202
  name: "created_at";
6203
6203
  tableName: "tools";
@@ -6523,7 +6523,7 @@ declare const ToolInsertSchema: z.ZodObject<{
6523
6523
  out: {};
6524
6524
  in: {};
6525
6525
  }>;
6526
- declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6526
+ declare const ConversationSelectSchema: drizzle_zod15.BuildSchema<"select", {
6527
6527
  createdAt: drizzle_orm_pg_core208.PgColumn<{
6528
6528
  name: "created_at";
6529
6529
  tableName: "conversations";
@@ -6621,7 +6621,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6621
6621
  dataType: "json";
6622
6622
  columnType: "PgJsonb";
6623
6623
  data: {
6624
- type: "commit" | "tag" | "branch";
6624
+ type: "tag" | "commit" | "branch";
6625
6625
  name: string;
6626
6626
  hash: string;
6627
6627
  };
@@ -6637,7 +6637,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6637
6637
  generated: undefined;
6638
6638
  }, {}, {
6639
6639
  $type: {
6640
- type: "commit" | "tag" | "branch";
6640
+ type: "tag" | "commit" | "branch";
6641
6641
  name: string;
6642
6642
  hash: string;
6643
6643
  };
@@ -6752,7 +6752,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6752
6752
  }, {}, {
6753
6753
  length: 256;
6754
6754
  }>;
6755
- }, drizzle_zod19.BuildRefine<{
6755
+ }, drizzle_zod15.BuildRefine<{
6756
6756
  createdAt: drizzle_orm_pg_core208.PgColumn<{
6757
6757
  name: "created_at";
6758
6758
  tableName: "conversations";
@@ -6850,7 +6850,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6850
6850
  dataType: "json";
6851
6851
  columnType: "PgJsonb";
6852
6852
  data: {
6853
- type: "commit" | "tag" | "branch";
6853
+ type: "tag" | "commit" | "branch";
6854
6854
  name: string;
6855
6855
  hash: string;
6856
6856
  };
@@ -6866,7 +6866,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
6866
6866
  generated: undefined;
6867
6867
  }, {}, {
6868
6868
  $type: {
6869
- type: "commit" | "tag" | "branch";
6869
+ type: "tag" | "commit" | "branch";
6870
6870
  name: string;
6871
6871
  hash: string;
6872
6872
  };
@@ -6997,8 +6997,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
6997
6997
  contextConfigId: z.ZodOptional<z.ZodString>;
6998
6998
  ref: z.ZodObject<{
6999
6999
  type: z.ZodEnum<{
7000
- commit: "commit";
7001
7000
  tag: "tag";
7001
+ commit: "commit";
7002
7002
  branch: "branch";
7003
7003
  }>;
7004
7004
  name: z.ZodString;
@@ -7023,8 +7023,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
7023
7023
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7024
7024
  ref: z.ZodOptional<z.ZodObject<{
7025
7025
  type: z.ZodEnum<{
7026
- commit: "commit";
7027
7026
  tag: "tag";
7027
+ commit: "commit";
7028
7028
  branch: "branch";
7029
7029
  }>;
7030
7030
  name: z.ZodString;
@@ -7041,19 +7041,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
7041
7041
  agentId: z.ZodNullable<z.ZodString>;
7042
7042
  activeSubAgentId: z.ZodString;
7043
7043
  ref: z.ZodNullable<z.ZodType<{
7044
- type: "commit" | "tag" | "branch";
7044
+ type: "tag" | "commit" | "branch";
7045
7045
  name: string;
7046
7046
  hash: string;
7047
7047
  }, {
7048
- type: "commit" | "tag" | "branch";
7048
+ type: "tag" | "commit" | "branch";
7049
7049
  name: string;
7050
7050
  hash: string;
7051
7051
  }, z.core.$ZodTypeInternals<{
7052
- type: "commit" | "tag" | "branch";
7052
+ type: "tag" | "commit" | "branch";
7053
7053
  name: string;
7054
7054
  hash: string;
7055
7055
  }, {
7056
- type: "commit" | "tag" | "branch";
7056
+ type: "tag" | "commit" | "branch";
7057
7057
  name: string;
7058
7058
  hash: string;
7059
7059
  }>>>;
@@ -7079,8 +7079,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
7079
7079
  contextConfigId: z.ZodOptional<z.ZodString>;
7080
7080
  ref: z.ZodObject<{
7081
7081
  type: z.ZodEnum<{
7082
- commit: "commit";
7083
7082
  tag: "tag";
7083
+ commit: "commit";
7084
7084
  branch: "branch";
7085
7085
  }>;
7086
7086
  name: z.ZodString;
@@ -7098,8 +7098,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
7098
7098
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
7099
7099
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
7100
7100
  type: z.ZodEnum<{
7101
- commit: "commit";
7102
7101
  tag: "tag";
7102
+ commit: "commit";
7103
7103
  branch: "branch";
7104
7104
  }>;
7105
7105
  name: z.ZodString;
@@ -7108,7 +7108,7 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
7108
7108
  activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
7109
7109
  lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
7110
7110
  }, z.core.$strip>;
7111
- declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
7111
+ declare const MessageSelectSchema: drizzle_zod15.BuildSchema<"select", {
7112
7112
  createdAt: drizzle_orm_pg_core208.PgColumn<{
7113
7113
  name: "created_at";
7114
7114
  tableName: "messages";
@@ -7504,7 +7504,7 @@ declare const MessageSelectSchema: drizzle_zod19.BuildSchema<"select", {
7504
7504
  }, {}, {
7505
7505
  length: 256;
7506
7506
  }>;
7507
- }, drizzle_zod19.BuildRefine<{
7507
+ }, drizzle_zod15.BuildRefine<{
7508
7508
  createdAt: drizzle_orm_pg_core208.PgColumn<{
7509
7509
  name: "created_at";
7510
7510
  tableName: "messages";
@@ -8020,7 +8020,7 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
8020
8020
  a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8021
8021
  a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8022
8022
  }, z.core.$strip>;
8023
- declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8023
+ declare const ContextCacheSelectSchema: drizzle_zod15.BuildSchema<"select", {
8024
8024
  createdAt: drizzle_orm_pg_core208.PgColumn<{
8025
8025
  name: "created_at";
8026
8026
  tableName: "context_cache";
@@ -8118,7 +8118,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8118
8118
  dataType: "json";
8119
8119
  columnType: "PgJsonb";
8120
8120
  data: {
8121
- type: "commit" | "tag" | "branch";
8121
+ type: "tag" | "commit" | "branch";
8122
8122
  name: string;
8123
8123
  hash: string;
8124
8124
  };
@@ -8134,7 +8134,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8134
8134
  generated: undefined;
8135
8135
  }, {}, {
8136
8136
  $type: {
8137
- type: "commit" | "tag" | "branch";
8137
+ type: "tag" | "commit" | "branch";
8138
8138
  name: string;
8139
8139
  hash: string;
8140
8140
  };
@@ -8270,7 +8270,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8270
8270
  }, {}, {
8271
8271
  length: 256;
8272
8272
  }>;
8273
- }, drizzle_zod19.BuildRefine<{
8273
+ }, drizzle_zod15.BuildRefine<{
8274
8274
  createdAt: drizzle_orm_pg_core208.PgColumn<{
8275
8275
  name: "created_at";
8276
8276
  tableName: "context_cache";
@@ -8368,7 +8368,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8368
8368
  dataType: "json";
8369
8369
  columnType: "PgJsonb";
8370
8370
  data: {
8371
- type: "commit" | "tag" | "branch";
8371
+ type: "tag" | "commit" | "branch";
8372
8372
  name: string;
8373
8373
  hash: string;
8374
8374
  };
@@ -8384,7 +8384,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
8384
8384
  generated: undefined;
8385
8385
  }, {}, {
8386
8386
  $type: {
8387
- type: "commit" | "tag" | "branch";
8387
+ type: "tag" | "commit" | "branch";
8388
8388
  name: string;
8389
8389
  hash: string;
8390
8390
  };
@@ -8527,7 +8527,7 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
8527
8527
  conversationId: z.ZodString;
8528
8528
  contextConfigId: z.ZodString;
8529
8529
  contextVariableKey: z.ZodString;
8530
- value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
8530
+ value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
8531
8531
  requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8532
8532
  fetchedAt: z.ZodOptional<z.ZodString>;
8533
8533
  fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8536,8 +8536,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
8536
8536
  id: z.ZodString;
8537
8537
  ref: z.ZodObject<{
8538
8538
  type: z.ZodEnum<{
8539
- commit: "commit";
8540
8539
  tag: "tag";
8540
+ commit: "commit";
8541
8541
  branch: "branch";
8542
8542
  }>;
8543
8543
  name: z.ZodString;
@@ -8553,7 +8553,7 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
8553
8553
  conversationId: z.ZodOptional<z.ZodString>;
8554
8554
  contextConfigId: z.ZodOptional<z.ZodString>;
8555
8555
  contextVariableKey: z.ZodOptional<z.ZodString>;
8556
- value: z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
8556
+ value: z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
8557
8557
  requestHash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8558
8558
  fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8559
8559
  fetchSource: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -8562,8 +8562,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
8562
8562
  id: z.ZodOptional<z.ZodString>;
8563
8563
  ref: z.ZodOptional<z.ZodObject<{
8564
8564
  type: z.ZodEnum<{
8565
- commit: "commit";
8566
8565
  tag: "tag";
8566
+ commit: "commit";
8567
8567
  branch: "branch";
8568
8568
  }>;
8569
8569
  name: z.ZodString;
@@ -8580,23 +8580,23 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
8580
8580
  contextConfigId: z.ZodString;
8581
8581
  contextVariableKey: z.ZodString;
8582
8582
  ref: z.ZodNullable<z.ZodType<{
8583
- type: "commit" | "tag" | "branch";
8583
+ type: "tag" | "commit" | "branch";
8584
8584
  name: string;
8585
8585
  hash: string;
8586
8586
  }, {
8587
- type: "commit" | "tag" | "branch";
8587
+ type: "tag" | "commit" | "branch";
8588
8588
  name: string;
8589
8589
  hash: string;
8590
8590
  }, z.core.$ZodTypeInternals<{
8591
- type: "commit" | "tag" | "branch";
8591
+ type: "tag" | "commit" | "branch";
8592
8592
  name: string;
8593
8593
  hash: string;
8594
8594
  }, {
8595
- type: "commit" | "tag" | "branch";
8595
+ type: "tag" | "commit" | "branch";
8596
8596
  name: string;
8597
8597
  hash: string;
8598
8598
  }>>>;
8599
- value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
8599
+ value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
8600
8600
  requestHash: z.ZodNullable<z.ZodString>;
8601
8601
  fetchedAt: z.ZodString;
8602
8602
  fetchSource: z.ZodNullable<z.ZodString>;
@@ -8610,7 +8610,7 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
8610
8610
  conversationId: z.ZodString;
8611
8611
  contextConfigId: z.ZodString;
8612
8612
  contextVariableKey: z.ZodString;
8613
- value: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
8613
+ value: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
8614
8614
  requestHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8615
8615
  fetchedAt: z.ZodOptional<z.ZodString>;
8616
8616
  fetchSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8619,8 +8619,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
8619
8619
  id: z.ZodString;
8620
8620
  ref: z.ZodObject<{
8621
8621
  type: z.ZodEnum<{
8622
- commit: "commit";
8623
8622
  tag: "tag";
8623
+ commit: "commit";
8624
8624
  branch: "branch";
8625
8625
  }>;
8626
8626
  name: z.ZodString;
@@ -8629,14 +8629,14 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
8629
8629
  }>, z.core.$strip>;
8630
8630
  declare const ContextCacheApiUpdateSchema: z.ZodObject<{
8631
8631
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8632
- value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
8632
+ value: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
8633
8633
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8634
8634
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8635
8635
  contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8636
8636
  ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
8637
8637
  type: z.ZodEnum<{
8638
- commit: "commit";
8639
8638
  tag: "tag";
8639
+ commit: "commit";
8640
8640
  branch: "branch";
8641
8641
  }>;
8642
8642
  name: z.ZodString;
@@ -8648,7 +8648,7 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
8648
8648
  fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8649
8649
  fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8650
8650
  }, z.core.$strip>;
8651
- declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
8651
+ declare const DatasetRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
8652
8652
  createdAt: drizzle_orm_pg_core208.PgColumn<{
8653
8653
  name: "created_at";
8654
8654
  tableName: "dataset_run";
@@ -8791,7 +8791,7 @@ declare const DatasetRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
8791
8791
  }, {}, {
8792
8792
  length: 256;
8793
8793
  }>;
8794
- }, drizzle_zod19.BuildRefine<{
8794
+ }, drizzle_zod15.BuildRefine<{
8795
8795
  createdAt: drizzle_orm_pg_core208.PgColumn<{
8796
8796
  name: "created_at";
8797
8797
  tableName: "dataset_run";
@@ -8975,17 +8975,17 @@ declare const DatasetRunApiInsertSchema: z.ZodObject<{
8975
8975
  createdAt: z.ZodOptional<z.ZodString>;
8976
8976
  updatedAt: z.ZodOptional<z.ZodString>;
8977
8977
  datasetId: z.ZodString;
8978
- datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8979
8978
  evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8979
+ datasetRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8980
8980
  }, z.core.$strip>;
8981
8981
  declare const DatasetRunApiUpdateSchema: z.ZodObject<{
8982
8982
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8983
8983
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
8984
8984
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
8985
- datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8986
8985
  evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8986
+ datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
8987
8987
  }, z.core.$strip>;
8988
- declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
8988
+ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
8989
8989
  createdAt: drizzle_orm_pg_core208.PgColumn<{
8990
8990
  name: "created_at";
8991
8991
  tableName: "dataset_run_conversation_relations";
@@ -9128,7 +9128,7 @@ declare const DatasetRunConversationRelationSelectSchema: drizzle_zod19.BuildSch
9128
9128
  }, {}, {
9129
9129
  length: 256;
9130
9130
  }>;
9131
- }, drizzle_zod19.BuildRefine<{
9131
+ }, drizzle_zod15.BuildRefine<{
9132
9132
  createdAt: drizzle_orm_pg_core208.PgColumn<{
9133
9133
  name: "created_at";
9134
9134
  tableName: "dataset_run_conversation_relations";
@@ -9322,7 +9322,7 @@ declare const DatasetRunConversationRelationApiUpdateSchema: z.ZodObject<{
9322
9322
  datasetRunId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9323
9323
  datasetItemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9324
9324
  }, z.core.$strip>;
9325
- declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select", {
9325
+ declare const EvaluationResultSelectSchema: drizzle_zod15.BuildSchema<"select", {
9326
9326
  createdAt: drizzle_orm_pg_core208.PgColumn<{
9327
9327
  name: "created_at";
9328
9328
  tableName: "evaluation_result";
@@ -9484,7 +9484,7 @@ declare const EvaluationResultSelectSchema: drizzle_zod19.BuildSchema<"select",
9484
9484
  }, {}, {
9485
9485
  length: 256;
9486
9486
  }>;
9487
- }, drizzle_zod19.BuildRefine<{
9487
+ }, drizzle_zod15.BuildRefine<{
9488
9488
  createdAt: drizzle_orm_pg_core208.PgColumn<{
9489
9489
  name: "created_at";
9490
9490
  tableName: "evaluation_result";
@@ -9690,19 +9690,19 @@ declare const EvaluationResultApiInsertSchema: z.ZodObject<{
9690
9690
  output: z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
9691
9691
  createdAt: z.ZodOptional<z.ZodString>;
9692
9692
  updatedAt: z.ZodOptional<z.ZodString>;
9693
- conversationId: z.ZodString;
9694
9693
  evaluatorId: z.ZodString;
9694
+ conversationId: z.ZodString;
9695
9695
  evaluationRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9696
9696
  }, z.core.$strip>;
9697
9697
  declare const EvaluationResultApiUpdateSchema: z.ZodObject<{
9698
9698
  output: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>>>;
9699
9699
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9700
9700
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9701
- conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9702
9701
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9702
+ conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9703
9703
  evaluationRunId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
9704
9704
  }, z.core.$strip>;
9705
- declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
9705
+ declare const EvaluationRunSelectSchema: drizzle_zod15.BuildSchema<"select", {
9706
9706
  createdAt: drizzle_orm_pg_core208.PgColumn<{
9707
9707
  name: "created_at";
9708
9708
  tableName: "evaluation_run";
@@ -9828,7 +9828,7 @@ declare const EvaluationRunSelectSchema: drizzle_zod19.BuildSchema<"select", {
9828
9828
  }, {}, {
9829
9829
  length: 256;
9830
9830
  }>;
9831
- }, drizzle_zod19.BuildRefine<{
9831
+ }, drizzle_zod15.BuildRefine<{
9832
9832
  createdAt: drizzle_orm_pg_core208.PgColumn<{
9833
9833
  name: "created_at";
9834
9834
  tableName: "evaluation_run";
@@ -9991,16 +9991,16 @@ declare const EvaluationRunApiSelectSchema: z.ZodObject<OmitProjectScope<{
9991
9991
  declare const EvaluationRunApiInsertSchema: z.ZodObject<{
9992
9992
  createdAt: z.ZodOptional<z.ZodString>;
9993
9993
  updatedAt: z.ZodOptional<z.ZodString>;
9994
- evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9995
9994
  evaluationRunConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9995
+ evaluationJobConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9996
9996
  }, z.core.$strip>;
9997
9997
  declare const EvaluationRunApiUpdateSchema: z.ZodObject<{
9998
9998
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
9999
9999
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
10000
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10001
10000
  evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10001
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
10002
10002
  }, z.core.$strip>;
10003
- declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
10003
+ declare const EvaluationRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
10004
10004
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10005
10005
  name: "created_at";
10006
10006
  tableName: "evaluation_run_config";
@@ -10145,7 +10145,7 @@ declare const EvaluationRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select
10145
10145
  }, {}, {
10146
10146
  length: 256;
10147
10147
  }>;
10148
- }, drizzle_zod19.BuildRefine<{
10148
+ }, drizzle_zod15.BuildRefine<{
10149
10149
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10150
10150
  name: "created_at";
10151
10151
  tableName: "evaluation_run_config";
@@ -10352,7 +10352,7 @@ declare const EvaluationRunConfigWithSuiteConfigsApiSelectSchema: z.ZodObject<{
10352
10352
  isActive: z.ZodBoolean;
10353
10353
  suiteConfigIds: z.ZodArray<z.ZodString>;
10354
10354
  }, z.core.$strip>;
10355
- declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
10355
+ declare const EvaluationJobConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
10356
10356
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10357
10357
  name: "created_at";
10358
10358
  tableName: "evaluation_job_config";
@@ -10477,7 +10477,7 @@ declare const EvaluationJobConfigSelectSchema: drizzle_zod19.BuildSchema<"select
10477
10477
  }, {}, {
10478
10478
  length: 256;
10479
10479
  }>;
10480
- }, drizzle_zod19.BuildRefine<{
10480
+ }, drizzle_zod15.BuildRefine<{
10481
10481
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10482
10482
  name: "created_at";
10483
10483
  tableName: "evaluation_job_config";
@@ -10784,7 +10784,7 @@ declare const EvaluationJobConfigApiUpdateSchema: z.ZodObject<{
10784
10784
  } | undefined;
10785
10785
  }>>>>>>>;
10786
10786
  }, z.core.$strip>;
10787
- declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
10787
+ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
10788
10788
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10789
10789
  name: "created_at";
10790
10790
  tableName: "evaluation_suite_config";
@@ -10912,7 +10912,7 @@ declare const EvaluationSuiteConfigSelectSchema: drizzle_zod19.BuildSchema<"sele
10912
10912
  }, {}, {
10913
10913
  length: 256;
10914
10914
  }>;
10915
- }, drizzle_zod19.BuildRefine<{
10915
+ }, drizzle_zod15.BuildRefine<{
10916
10916
  createdAt: drizzle_orm_pg_core208.PgColumn<{
10917
10917
  name: "created_at";
10918
10918
  tableName: "evaluation_suite_config";
@@ -11088,7 +11088,7 @@ declare const EvaluationSuiteConfigApiUpdateSchema: z.ZodObject<{
11088
11088
  sampleRate: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>>;
11089
11089
  evaluatorIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
11090
11090
  }, z.core.$strip>;
11091
- declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
11091
+ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
11092
11092
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11093
11093
  name: "created_at";
11094
11094
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
@@ -11218,7 +11218,7 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationSelectSchema: driz
11218
11218
  }, {}, {
11219
11219
  length: 256;
11220
11220
  }>;
11221
- }, drizzle_zod19.BuildRefine<{
11221
+ }, drizzle_zod15.BuildRefine<{
11222
11222
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11223
11223
  name: "created_at";
11224
11224
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
@@ -11385,16 +11385,16 @@ declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiSelectSchema: z
11385
11385
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiInsertSchema: z.ZodObject<{
11386
11386
  createdAt: z.ZodOptional<z.ZodString>;
11387
11387
  updatedAt: z.ZodOptional<z.ZodString>;
11388
- evaluationRunConfigId: z.ZodString;
11389
11388
  evaluationSuiteConfigId: z.ZodString;
11389
+ evaluationRunConfigId: z.ZodString;
11390
11390
  }, z.core.$strip>;
11391
11391
  declare const EvaluationRunConfigEvaluationSuiteConfigRelationApiUpdateSchema: z.ZodObject<{
11392
11392
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11393
11393
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11394
- evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11395
11394
  evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11395
+ evaluationRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11396
11396
  }, z.core.$strip>;
11397
- declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
11397
+ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
11398
11398
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11399
11399
  name: "created_at";
11400
11400
  tableName: "evaluation_job_config_evaluator_relations";
@@ -11524,7 +11524,7 @@ declare const EvaluationJobConfigEvaluatorRelationSelectSchema: drizzle_zod19.Bu
11524
11524
  }, {}, {
11525
11525
  length: 256;
11526
11526
  }>;
11527
- }, drizzle_zod19.BuildRefine<{
11527
+ }, drizzle_zod15.BuildRefine<{
11528
11528
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11529
11529
  name: "created_at";
11530
11530
  tableName: "evaluation_job_config_evaluator_relations";
@@ -11691,16 +11691,16 @@ declare const EvaluationJobConfigEvaluatorRelationApiSelectSchema: z.ZodObject<O
11691
11691
  declare const EvaluationJobConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
11692
11692
  createdAt: z.ZodOptional<z.ZodString>;
11693
11693
  updatedAt: z.ZodOptional<z.ZodString>;
11694
- evaluationJobConfigId: z.ZodString;
11695
11694
  evaluatorId: z.ZodString;
11695
+ evaluationJobConfigId: z.ZodString;
11696
11696
  }, z.core.$strip>;
11697
11697
  declare const EvaluationJobConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
11698
11698
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11699
11699
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
11700
- evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11701
11700
  evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11701
+ evaluationJobConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11702
11702
  }, z.core.$strip>;
11703
- declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
11703
+ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
11704
11704
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11705
11705
  name: "created_at";
11706
11706
  tableName: "evaluation_suite_config_evaluator_relations";
@@ -11830,7 +11830,7 @@ declare const EvaluationSuiteConfigEvaluatorRelationSelectSchema: drizzle_zod19.
11830
11830
  }, {}, {
11831
11831
  length: 256;
11832
11832
  }>;
11833
- }, drizzle_zod19.BuildRefine<{
11833
+ }, drizzle_zod15.BuildRefine<{
11834
11834
  createdAt: drizzle_orm_pg_core208.PgColumn<{
11835
11835
  name: "created_at";
11836
11836
  tableName: "evaluation_suite_config_evaluator_relations";
@@ -11997,16 +11997,16 @@ declare const EvaluationSuiteConfigEvaluatorRelationApiSelectSchema: z.ZodObject
11997
11997
  declare const EvaluationSuiteConfigEvaluatorRelationApiInsertSchema: z.ZodObject<{
11998
11998
  createdAt: z.ZodOptional<z.ZodString>;
11999
11999
  updatedAt: z.ZodOptional<z.ZodString>;
12000
- evaluatorId: z.ZodString;
12001
12000
  evaluationSuiteConfigId: z.ZodString;
12001
+ evaluatorId: z.ZodString;
12002
12002
  }, z.core.$strip>;
12003
12003
  declare const EvaluationSuiteConfigEvaluatorRelationApiUpdateSchema: z.ZodObject<{
12004
12004
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12005
12005
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12006
- evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12007
12006
  evaluationSuiteConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12007
+ evaluatorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12008
12008
  }, z.core.$strip>;
12009
- declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
12009
+ declare const EvaluatorSelectSchema: drizzle_zod15.BuildSchema<"select", {
12010
12010
  createdAt: drizzle_orm_pg_core208.PgColumn<{
12011
12011
  name: "created_at";
12012
12012
  tableName: "evaluator";
@@ -12214,7 +12214,7 @@ declare const EvaluatorSelectSchema: drizzle_zod19.BuildSchema<"select", {
12214
12214
  }, {}, {
12215
12215
  length: 256;
12216
12216
  }>;
12217
- }, drizzle_zod19.BuildRefine<{
12217
+ }, drizzle_zod15.BuildRefine<{
12218
12218
  createdAt: drizzle_orm_pg_core208.PgColumn<{
12219
12219
  name: "created_at";
12220
12220
  tableName: "evaluator";
@@ -12548,7 +12548,7 @@ declare const EvaluatorApiUpdateSchema: z.ZodObject<{
12548
12548
  schema: z.ZodOptional<z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
12549
12549
  passCriteria: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<PassCriteria, PassCriteria, z.core.$ZodTypeInternals<PassCriteria, PassCriteria>>>>>>;
12550
12550
  }, z.core.$strip>;
12551
- declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
12551
+ declare const DatasetSelectSchema: drizzle_zod15.BuildSchema<"select", {
12552
12552
  createdAt: drizzle_orm_pg_core208.PgColumn<{
12553
12553
  name: "created_at";
12554
12554
  tableName: "dataset";
@@ -12659,7 +12659,7 @@ declare const DatasetSelectSchema: drizzle_zod19.BuildSchema<"select", {
12659
12659
  }, {}, {
12660
12660
  length: 256;
12661
12661
  }>;
12662
- }, drizzle_zod19.BuildRefine<{
12662
+ }, drizzle_zod15.BuildRefine<{
12663
12663
  createdAt: drizzle_orm_pg_core208.PgColumn<{
12664
12664
  name: "created_at";
12665
12665
  tableName: "dataset";
@@ -12811,7 +12811,7 @@ declare const DatasetApiUpdateSchema: z.ZodObject<{
12811
12811
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12812
12812
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
12813
12813
  }, z.core.$strip>;
12814
- declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12814
+ declare const DatasetItemSelectSchema: drizzle_zod15.BuildSchema<"select", {
12815
12815
  createdAt: drizzle_orm_pg_core208.PgColumn<{
12816
12816
  name: "created_at";
12817
12817
  tableName: "dataset_item";
@@ -12999,7 +12999,7 @@ declare const DatasetItemSelectSchema: drizzle_zod19.BuildSchema<"select", {
12999
12999
  }, {}, {
13000
13000
  length: 256;
13001
13001
  }>;
13002
- }, drizzle_zod19.BuildRefine<{
13002
+ }, drizzle_zod15.BuildRefine<{
13003
13003
  createdAt: drizzle_orm_pg_core208.PgColumn<{
13004
13004
  name: "created_at";
13005
13005
  tableName: "dataset_item";
@@ -13442,8 +13442,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
13442
13442
  }>>>>>>;
13443
13443
  }, z.core.$strip>;
13444
13444
  declare const DatasetRunItemSchema: z.ZodObject<{
13445
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13446
13445
  id: z.ZodOptional<z.ZodString>;
13446
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13447
13447
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13448
13448
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13449
13449
  prompt: string;
@@ -13491,8 +13491,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
13491
13491
  declare const TriggerDatasetRunSchema: z.ZodObject<{
13492
13492
  datasetRunId: z.ZodString;
13493
13493
  items: z.ZodArray<z.ZodObject<{
13494
- input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13495
13494
  id: z.ZodOptional<z.ZodString>;
13495
+ input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
13496
13496
  expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
13497
13497
  simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
13498
13498
  prompt: string;
@@ -13570,7 +13570,7 @@ declare const TriggerEvaluationJobSchema: z.ZodObject<{
13570
13570
  }, z.core.$strip>>;
13571
13571
  }, z.core.$strip>>>;
13572
13572
  }, z.core.$strip>;
13573
- declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select", {
13573
+ declare const DatasetRunConfigSelectSchema: drizzle_zod15.BuildSchema<"select", {
13574
13574
  createdAt: drizzle_orm_pg_core208.PgColumn<{
13575
13575
  name: "created_at";
13576
13576
  tableName: "dataset_run_config";
@@ -13717,7 +13717,7 @@ declare const DatasetRunConfigSelectSchema: drizzle_zod19.BuildSchema<"select",
13717
13717
  }, {}, {
13718
13718
  length: 256;
13719
13719
  }>;
13720
- }, drizzle_zod19.BuildRefine<{
13720
+ }, drizzle_zod15.BuildRefine<{
13721
13721
  createdAt: drizzle_orm_pg_core208.PgColumn<{
13722
13722
  name: "created_at";
13723
13723
  tableName: "dataset_run_config";
@@ -13915,7 +13915,7 @@ declare const DatasetRunConfigApiUpdateSchema: z.ZodObject<{
13915
13915
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
13916
13916
  datasetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13917
13917
  }, z.core.$strip>;
13918
- declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
13918
+ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
13919
13919
  createdAt: drizzle_orm_pg_core208.PgColumn<{
13920
13920
  name: "created_at";
13921
13921
  tableName: "dataset_run_config_agent_relations";
@@ -14045,7 +14045,7 @@ declare const DatasetRunConfigAgentRelationSelectSchema: drizzle_zod19.BuildSche
14045
14045
  }, {}, {
14046
14046
  length: 256;
14047
14047
  }>;
14048
- }, drizzle_zod19.BuildRefine<{
14048
+ }, drizzle_zod15.BuildRefine<{
14049
14049
  createdAt: drizzle_orm_pg_core208.PgColumn<{
14050
14050
  name: "created_at";
14051
14051
  tableName: "dataset_run_config_agent_relations";
@@ -14221,7 +14221,7 @@ declare const DatasetRunConfigAgentRelationApiUpdateSchema: z.ZodObject<{
14221
14221
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
14222
14222
  datasetRunConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14223
14223
  }, z.core.$strip>;
14224
- declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
14224
+ declare const DataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
14225
14225
  createdAt: drizzle_orm_pg_core208.PgColumn<{
14226
14226
  name: "created_at";
14227
14227
  tableName: "data_components";
@@ -14393,7 +14393,7 @@ declare const DataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
14393
14393
  }, {}, {
14394
14394
  length: 256;
14395
14395
  }>;
14396
- }, drizzle_zod19.BuildRefine<{
14396
+ }, drizzle_zod15.BuildRefine<{
14397
14397
  createdAt: drizzle_orm_pg_core208.PgColumn<{
14398
14398
  name: "created_at";
14399
14399
  tableName: "data_components";
@@ -14709,7 +14709,7 @@ declare const DataComponentApiUpdateSchema: z.ZodObject<{
14709
14709
  mockData: Record<string, unknown>;
14710
14710
  }>>>>>>;
14711
14711
  }, z.core.$strip>;
14712
- declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
14712
+ declare const SubAgentDataComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
14713
14713
  dataComponentId: drizzle_orm_pg_core208.PgColumn<{
14714
14714
  name: "data_component_id";
14715
14715
  tableName: "sub_agent_data_components";
@@ -14841,7 +14841,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
14841
14841
  }, {}, {
14842
14842
  length: 256;
14843
14843
  }>;
14844
- }, drizzle_zod19.BuildRefine<{
14844
+ }, drizzle_zod15.BuildRefine<{
14845
14845
  dataComponentId: drizzle_orm_pg_core208.PgColumn<{
14846
14846
  name: "data_component_id";
14847
14847
  tableName: "sub_agent_data_components";
@@ -14974,7 +14974,7 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod19.BuildSchema<"sele
14974
14974
  length: 256;
14975
14975
  }>;
14976
14976
  }, undefined>, undefined>;
14977
- declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"insert", {
14977
+ declare const SubAgentDataComponentInsertSchema: drizzle_zod15.BuildSchema<"insert", {
14978
14978
  dataComponentId: drizzle_orm_pg_core208.PgColumn<{
14979
14979
  name: "data_component_id";
14980
14980
  tableName: "sub_agent_data_components";
@@ -15106,7 +15106,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
15106
15106
  }, {}, {
15107
15107
  length: 256;
15108
15108
  }>;
15109
- }, drizzle_zod19.BuildRefine<Pick<{
15109
+ }, drizzle_zod15.BuildRefine<Pick<{
15110
15110
  dataComponentId: drizzle_orm_pg_core208.PgColumn<{
15111
15111
  name: "data_component_id";
15112
15112
  tableName: "sub_agent_data_components";
@@ -15238,7 +15238,7 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod19.BuildSchema<"inse
15238
15238
  }, {}, {
15239
15239
  length: 256;
15240
15240
  }>;
15241
- }, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "subAgentId" | "dataComponentId">, undefined>, undefined>;
15241
+ }, "tenantId" | "projectId" | "id" | "agentId" | "createdAt" | "dataComponentId" | "subAgentId">, undefined>, undefined>;
15242
15242
  declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
15243
15243
  dataComponentId: z.ZodOptional<z.ZodString>;
15244
15244
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -15262,8 +15262,8 @@ declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<OmitAgentScope<{
15262
15262
  }>, z.core.$strip>;
15263
15263
  declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
15264
15264
  agentId: z.ZodString;
15265
- subAgentId: z.ZodString;
15266
15265
  dataComponentId: z.ZodString;
15266
+ subAgentId: z.ZodString;
15267
15267
  }, {
15268
15268
  out: {};
15269
15269
  in: {};
@@ -15271,10 +15271,10 @@ declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
15271
15271
  declare const SubAgentDataComponentApiUpdateSchema: z.ZodObject<{
15272
15272
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15273
15273
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
15274
- subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15275
15274
  dataComponentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15275
+ subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15276
15276
  }, z.core.$strip>;
15277
- declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
15277
+ declare const ArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
15278
15278
  createdAt: drizzle_orm_pg_core208.PgColumn<{
15279
15279
  name: "created_at";
15280
15280
  tableName: "artifact_components";
@@ -15446,7 +15446,7 @@ declare const ArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select",
15446
15446
  }, {}, {
15447
15447
  length: 256;
15448
15448
  }>;
15449
- }, drizzle_zod19.BuildRefine<{
15449
+ }, drizzle_zod15.BuildRefine<{
15450
15450
  createdAt: drizzle_orm_pg_core208.PgColumn<{
15451
15451
  name: "created_at";
15452
15452
  tableName: "artifact_components";
@@ -15737,7 +15737,7 @@ declare const ArtifactComponentApiUpdateSchema: z.ZodObject<{
15737
15737
  mockData: Record<string, unknown>;
15738
15738
  }>>>>>>;
15739
15739
  }, z.core.$strip>;
15740
- declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"select", {
15740
+ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod15.BuildSchema<"select", {
15741
15741
  artifactComponentId: drizzle_orm_pg_core208.PgColumn<{
15742
15742
  name: "artifact_component_id";
15743
15743
  tableName: "sub_agent_artifact_components";
@@ -15869,7 +15869,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod19.BuildSchema<"
15869
15869
  }, {}, {
15870
15870
  length: 256;
15871
15871
  }>;
15872
- }, drizzle_zod19.BuildRefine<{
15872
+ }, drizzle_zod15.BuildRefine<{
15873
15873
  artifactComponentId: drizzle_orm_pg_core208.PgColumn<{
15874
15874
  name: "artifact_component_id";
15875
15875
  tableName: "sub_agent_artifact_components";
@@ -16203,7 +16203,7 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
16203
16203
  baseUrl: z.ZodString;
16204
16204
  type: z.ZodLiteral<"external">;
16205
16205
  }, z.core.$strip>], "type">;
16206
- declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
16206
+ declare const ApiKeySelectSchema: drizzle_zod15.BuildSchema<"select", {
16207
16207
  createdAt: drizzle_orm_pg_core208.PgColumn<{
16208
16208
  name: "created_at";
16209
16209
  tableName: "api_keys";
@@ -16424,7 +16424,7 @@ declare const ApiKeySelectSchema: drizzle_zod19.BuildSchema<"select", {
16424
16424
  }, {}, {
16425
16425
  length: 256;
16426
16426
  }>;
16427
- }, drizzle_zod19.BuildRefine<{
16427
+ }, drizzle_zod15.BuildRefine<{
16428
16428
  createdAt: drizzle_orm_pg_core208.PgColumn<{
16429
16429
  name: "created_at";
16430
16430
  tableName: "api_keys";
@@ -16726,7 +16726,7 @@ declare const ApiKeyApiUpdateSchema: z.ZodObject<{
16726
16726
  out: {};
16727
16727
  in: {};
16728
16728
  }>;
16729
- declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select", {
16729
+ declare const CredentialReferenceSelectSchema: drizzle_zod15.BuildSchema<"select", {
16730
16730
  createdAt: drizzle_orm_pg_core208.PgColumn<{
16731
16731
  name: "created_at";
16732
16732
  tableName: "credential_references";
@@ -16951,7 +16951,7 @@ declare const CredentialReferenceSelectSchema: drizzle_zod19.BuildSchema<"select
16951
16951
  }, {}, {
16952
16952
  length: 256;
16953
16953
  }>;
16954
- }, drizzle_zod19.BuildRefine<{
16954
+ }, drizzle_zod15.BuildRefine<{
16955
16955
  createdAt: drizzle_orm_pg_core208.PgColumn<{
16956
16956
  name: "created_at";
16957
16957
  tableName: "credential_references";
@@ -17226,7 +17226,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
17226
17226
  readonly keychain: "keychain";
17227
17227
  readonly nango: "nango";
17228
17228
  }>;
17229
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
17229
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
17230
17230
  createdAt: drizzle_orm_pg_core208.PgColumn<{
17231
17231
  name: "created_at";
17232
17232
  tableName: "tools";
@@ -17506,7 +17506,7 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
17506
17506
  }, {}, {
17507
17507
  length: 256;
17508
17508
  }>;
17509
- }, drizzle_zod19.BuildRefine<{
17509
+ }, drizzle_zod15.BuildRefine<{
17510
17510
  createdAt: drizzle_orm_pg_core208.PgColumn<{
17511
17511
  name: "created_at";
17512
17512
  tableName: "tools";
@@ -18168,7 +18168,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
18168
18168
  lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
18169
18169
  isWorkApp: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodBoolean>>>;
18170
18170
  }, z.core.$strip>;
18171
- declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
18171
+ declare const FunctionToolSelectSchema: drizzle_zod15.BuildSchema<"select", {
18172
18172
  createdAt: drizzle_orm_pg_core208.PgColumn<{
18173
18173
  name: "created_at";
18174
18174
  tableName: "function_tools";
@@ -18334,7 +18334,7 @@ declare const FunctionToolSelectSchema: drizzle_zod19.BuildSchema<"select", {
18334
18334
  }, {}, {
18335
18335
  length: 256;
18336
18336
  }>;
18337
- }, drizzle_zod19.BuildRefine<{
18337
+ }, drizzle_zod15.BuildRefine<{
18338
18338
  createdAt: drizzle_orm_pg_core208.PgColumn<{
18339
18339
  name: "created_at";
18340
18340
  tableName: "function_tools";
@@ -18559,7 +18559,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
18559
18559
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
18560
18560
  functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
18561
18561
  }, z.core.$strip>;
18562
- declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
18562
+ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
18563
18563
  createdAt: drizzle_orm_pg_core208.PgColumn<{
18564
18564
  name: "created_at";
18565
18565
  tableName: "sub_agent_function_tool_relations";
@@ -18731,7 +18731,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
18731
18731
  }, {}, {
18732
18732
  length: 256;
18733
18733
  }>;
18734
- }, drizzle_zod19.BuildRefine<{
18734
+ }, drizzle_zod15.BuildRefine<{
18735
18735
  createdAt: drizzle_orm_pg_core208.PgColumn<{
18736
18736
  name: "created_at";
18737
18737
  tableName: "sub_agent_function_tool_relations";
@@ -18907,7 +18907,7 @@ declare const SubAgentFunctionToolRelationSelectSchema: drizzle_zod19.BuildSchem
18907
18907
  declare const SubAgentFunctionToolRelationInsertSchema: z.ZodObject<{
18908
18908
  createdAt: z.ZodOptional<z.ZodString>;
18909
18909
  updatedAt: z.ZodOptional<z.ZodString>;
18910
- toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
18910
+ toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
18911
18911
  agentId: z.ZodString;
18912
18912
  projectId: z.ZodString;
18913
18913
  tenantId: z.ZodString;
@@ -18922,7 +18922,7 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
18922
18922
  createdAt: z.ZodString;
18923
18923
  updatedAt: z.ZodString;
18924
18924
  functionToolId: z.ZodString;
18925
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
18925
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
18926
18926
  subAgentId: z.ZodString;
18927
18927
  agentId: z.ZodString;
18928
18928
  projectId: z.ZodString;
@@ -18930,14 +18930,14 @@ declare const SubAgentFunctionToolRelationApiSelectSchema: z.ZodObject<OmitAgent
18930
18930
  id: z.ZodString;
18931
18931
  }>, z.core.$strip>;
18932
18932
  declare const SubAgentFunctionToolRelationApiInsertSchema: z.ZodObject<{
18933
- toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
18933
+ toolPolicies: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
18934
18934
  subAgentId: z.ZodString;
18935
18935
  functionToolId: z.ZodString;
18936
18936
  }, {
18937
18937
  out: {};
18938
18938
  in: {};
18939
18939
  }>;
18940
- declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
18940
+ declare const FunctionSelectSchema: drizzle_zod15.BuildSchema<"select", {
18941
18941
  createdAt: drizzle_orm_pg_core208.PgColumn<{
18942
18942
  name: "created_at";
18943
18943
  tableName: "functions";
@@ -19084,7 +19084,7 @@ declare const FunctionSelectSchema: drizzle_zod19.BuildSchema<"select", {
19084
19084
  }, {}, {
19085
19085
  length: 256;
19086
19086
  }>;
19087
- }, drizzle_zod19.BuildRefine<{
19087
+ }, drizzle_zod15.BuildRefine<{
19088
19088
  createdAt: drizzle_orm_pg_core208.PgColumn<{
19089
19089
  name: "created_at";
19090
19090
  tableName: "functions";
@@ -19281,8 +19281,8 @@ declare const FunctionApiUpdateSchema: z.ZodObject<{
19281
19281
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
19282
19282
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
19283
19283
  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>>>>>>>;
19284
- 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>>>>>>>;
19285
19284
  executeCode: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19285
+ 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>>>>>>>;
19286
19286
  }, z.core.$strip>;
19287
19287
  declare const FetchConfigSchema: z.ZodObject<{
19288
19288
  url: z.ZodString;
@@ -19392,7 +19392,7 @@ declare const ContextConfigApiUpdateSchema: z.ZodObject<{
19392
19392
  headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
19393
19393
  contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
19394
19394
  }, z.core.$strip>;
19395
- declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
19395
+ declare const SubAgentToolRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
19396
19396
  createdAt: drizzle_orm_pg_core208.PgColumn<{
19397
19397
  name: "created_at";
19398
19398
  tableName: "sub_agent_tool_relations";
@@ -19602,7 +19602,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod19.BuildSchema<"selec
19602
19602
  }, {}, {
19603
19603
  length: 256;
19604
19604
  }>;
19605
- }, drizzle_zod19.BuildRefine<{
19605
+ }, drizzle_zod15.BuildRefine<{
19606
19606
  createdAt: drizzle_orm_pg_core208.PgColumn<{
19607
19607
  name: "created_at";
19608
19608
  tableName: "sub_agent_tool_relations";
@@ -19853,9 +19853,9 @@ declare const SubAgentToolRelationApiSelectSchema: z.ZodObject<OmitAgentScope<{
19853
19853
  createdAt: z.ZodString;
19854
19854
  updatedAt: z.ZodString;
19855
19855
  toolId: z.ZodString;
19856
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
19857
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
19858
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
19856
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
19857
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
19858
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
19859
19859
  subAgentId: z.ZodString;
19860
19860
  agentId: z.ZodString;
19861
19861
  projectId: z.ZodString;
@@ -19889,7 +19889,7 @@ declare const SubAgentToolRelationApiUpdateSchema: z.ZodObject<{
19889
19889
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19890
19890
  selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
19891
19891
  }, z.core.$strip>;
19892
- declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
19892
+ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
19893
19893
  createdAt: drizzle_orm_pg_core208.PgColumn<{
19894
19894
  name: "created_at";
19895
19895
  tableName: "sub_agent_external_agent_relations";
@@ -20057,7 +20057,7 @@ declare const SubAgentExternalAgentRelationSelectSchema: drizzle_zod19.BuildSche
20057
20057
  }, {}, {
20058
20058
  length: 256;
20059
20059
  }>;
20060
- }, drizzle_zod19.BuildRefine<{
20060
+ }, drizzle_zod15.BuildRefine<{
20061
20061
  createdAt: drizzle_orm_pg_core208.PgColumn<{
20062
20062
  name: "created_at";
20063
20063
  tableName: "sub_agent_external_agent_relations";
@@ -20258,7 +20258,7 @@ declare const SubAgentExternalAgentRelationApiSelectSchema: z.ZodObject<OmitAgen
20258
20258
  createdAt: z.ZodString;
20259
20259
  updatedAt: z.ZodString;
20260
20260
  externalAgentId: z.ZodString;
20261
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
20261
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
20262
20262
  subAgentId: z.ZodString;
20263
20263
  agentId: z.ZodString;
20264
20264
  projectId: z.ZodString;
@@ -20279,7 +20279,7 @@ declare const SubAgentExternalAgentRelationApiUpdateSchema: z.ZodObject<{
20279
20279
  externalAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20280
20280
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20281
20281
  }, z.core.$strip>;
20282
- declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
20282
+ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod15.BuildSchema<"select", {
20283
20283
  createdAt: drizzle_orm_pg_core208.PgColumn<{
20284
20284
  name: "created_at";
20285
20285
  tableName: "sub_agent_team_agent_relations";
@@ -20447,7 +20447,7 @@ declare const SubAgentTeamAgentRelationSelectSchema: drizzle_zod19.BuildSchema<"
20447
20447
  }, {}, {
20448
20448
  length: 256;
20449
20449
  }>;
20450
- }, drizzle_zod19.BuildRefine<{
20450
+ }, drizzle_zod15.BuildRefine<{
20451
20451
  createdAt: drizzle_orm_pg_core208.PgColumn<{
20452
20452
  name: "created_at";
20453
20453
  tableName: "sub_agent_team_agent_relations";
@@ -20648,7 +20648,7 @@ declare const SubAgentTeamAgentRelationApiSelectSchema: z.ZodObject<OmitAgentSco
20648
20648
  createdAt: z.ZodString;
20649
20649
  updatedAt: z.ZodString;
20650
20650
  targetAgentId: z.ZodString;
20651
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
20651
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
20652
20652
  subAgentId: z.ZodString;
20653
20653
  agentId: z.ZodString;
20654
20654
  projectId: z.ZodString;
@@ -20669,7 +20669,7 @@ declare const SubAgentTeamAgentRelationApiUpdateSchema: z.ZodObject<{
20669
20669
  subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20670
20670
  targetAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
20671
20671
  }, z.core.$strip>;
20672
- declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
20672
+ declare const LedgerArtifactSelectSchema: drizzle_zod15.BuildSchema<"select", {
20673
20673
  createdAt: drizzle_orm_pg_core208.PgColumn<{
20674
20674
  name: "created_at";
20675
20675
  tableName: "ledger_artifacts";
@@ -21004,7 +21004,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
21004
21004
  }, {}, {
21005
21005
  length: 256;
21006
21006
  }>;
21007
- }, drizzle_zod19.BuildRefine<{
21007
+ }, drizzle_zod15.BuildRefine<{
21008
21008
  createdAt: drizzle_orm_pg_core208.PgColumn<{
21009
21009
  name: "created_at";
21010
21010
  tableName: "ledger_artifacts";
@@ -21340,7 +21340,7 @@ declare const LedgerArtifactSelectSchema: drizzle_zod19.BuildSchema<"select", {
21340
21340
  length: 256;
21341
21341
  }>;
21342
21342
  }, undefined>, undefined>;
21343
- declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
21343
+ declare const LedgerArtifactInsertSchema: drizzle_zod15.BuildSchema<"insert", {
21344
21344
  createdAt: drizzle_orm_pg_core208.PgColumn<{
21345
21345
  name: "created_at";
21346
21346
  tableName: "ledger_artifacts";
@@ -21675,7 +21675,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
21675
21675
  }, {}, {
21676
21676
  length: 256;
21677
21677
  }>;
21678
- }, drizzle_zod19.BuildRefine<Pick<{
21678
+ }, drizzle_zod15.BuildRefine<Pick<{
21679
21679
  createdAt: drizzle_orm_pg_core208.PgColumn<{
21680
21680
  name: "created_at";
21681
21681
  tableName: "ledger_artifacts";
@@ -22010,7 +22010,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
22010
22010
  }, {}, {
22011
22011
  length: 256;
22012
22012
  }>;
22013
- }, "type" | "tenantId" | "projectId" | "id" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "toolCallId" | "contextId" | "visibility" | "taskId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
22013
+ }, "tenantId" | "projectId" | "id" | "type" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
22014
22014
  declare const LedgerArtifactUpdateSchema: z.ZodObject<{
22015
22015
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22016
22016
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -22020,12 +22020,12 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
22020
22020
  type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22021
22021
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22022
22022
  description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22023
- parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
22024
- metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
22023
+ parts: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
22024
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
22025
22025
  summary: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22026
- mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
22026
+ mime: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
22027
22027
  visibility: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22028
- allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>;
22028
+ allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>;
22029
22029
  derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22030
22030
  projectId: z.ZodOptional<z.ZodString>;
22031
22031
  tenantId: z.ZodOptional<z.ZodString>;
@@ -22043,12 +22043,12 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<OmitProjectScope<{
22043
22043
  type: z.ZodString;
22044
22044
  name: z.ZodNullable<z.ZodString>;
22045
22045
  description: z.ZodNullable<z.ZodString>;
22046
- parts: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
22047
- metadata: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
22046
+ parts: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
22047
+ metadata: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
22048
22048
  summary: z.ZodNullable<z.ZodString>;
22049
- mime: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
22049
+ mime: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
22050
22050
  visibility: z.ZodNullable<z.ZodString>;
22051
- allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
22051
+ allowedAgents: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
22052
22052
  derivedFrom: z.ZodNullable<z.ZodString>;
22053
22053
  projectId: z.ZodString;
22054
22054
  tenantId: z.ZodString;
@@ -22063,33 +22063,33 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
22063
22063
  type: z.ZodOptional<z.ZodString>;
22064
22064
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22065
22065
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22066
- parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22067
- metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22066
+ parts: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22067
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22068
22068
  summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22069
- mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22069
+ mime: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22070
22070
  visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22071
- allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22071
+ allowedAgents: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22072
22072
  derivedFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22073
22073
  projectId: z.ZodString;
22074
22074
  tenantId: z.ZodString;
22075
22075
  id: z.ZodString;
22076
22076
  }>, z.core.$strip>;
22077
22077
  declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
22078
- type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22079
22078
  id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22079
+ type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22080
22080
  name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22081
22081
  description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22082
22082
  createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22083
22083
  updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
22084
- metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
22085
- toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22084
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
22086
22085
  contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22087
22086
  visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22088
22087
  taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
22089
- parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
22088
+ toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22089
+ parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
22090
22090
  summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22091
- mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
22092
- allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
22091
+ mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
22092
+ allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>>>;
22093
22093
  derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
22094
22094
  }, z.core.$strip>;
22095
22095
  declare const StatusComponentSchema: z.ZodObject<{
@@ -22353,12 +22353,12 @@ declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
22353
22353
  createdAt: z.ZodOptional<z.ZodString>;
22354
22354
  updatedAt: z.ZodOptional<z.ZodString>;
22355
22355
  enabled: z.ZodOptional<z.ZodBoolean>;
22356
- inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22357
- outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22356
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22357
+ outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22358
22358
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22359
- authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22359
+ authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22360
22360
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22361
- signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22361
+ signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22362
22362
  id: z.ZodOptional<z.ZodString>;
22363
22363
  }, z.core.$strip>>>;
22364
22364
  contextConfig: z.ZodOptional<z.ZodObject<{
@@ -22757,12 +22757,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
22757
22757
  createdAt: z.ZodOptional<z.ZodString>;
22758
22758
  updatedAt: z.ZodOptional<z.ZodString>;
22759
22759
  enabled: z.ZodOptional<z.ZodBoolean>;
22760
- inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22761
- outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22760
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22761
+ outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22762
22762
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22763
- authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22763
+ authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22764
22764
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22765
- signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
22765
+ signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
22766
22766
  id: z.ZodOptional<z.ZodString>;
22767
22767
  }, z.core.$strip>>>;
22768
22768
  contextConfig: z.ZodOptional<z.ZodObject<{
@@ -23937,7 +23937,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
23937
23937
  readonly keychain: "keychain";
23938
23938
  readonly nango: "nango";
23939
23939
  }>;
23940
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
23940
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
23941
23941
  createdAt: drizzle_orm_pg_core208.PgColumn<{
23942
23942
  name: "created_at";
23943
23943
  tableName: "tools";
@@ -24217,7 +24217,7 @@ declare const FullProjectSelectSchema: z.ZodObject<{
24217
24217
  }, {}, {
24218
24218
  length: 256;
24219
24219
  }>;
24220
- }, drizzle_zod19.BuildRefine<{
24220
+ }, drizzle_zod15.BuildRefine<{
24221
24221
  createdAt: drizzle_orm_pg_core208.PgColumn<{
24222
24222
  name: "created_at";
24223
24223
  tableName: "tools";
@@ -24677,7 +24677,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
24677
24677
  readonly keychain: "keychain";
24678
24678
  readonly nango: "nango";
24679
24679
  }>;
24680
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
24680
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
24681
24681
  createdAt: drizzle_orm_pg_core208.PgColumn<{
24682
24682
  name: "created_at";
24683
24683
  tableName: "tools";
@@ -24957,7 +24957,7 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
24957
24957
  }, {}, {
24958
24958
  length: 256;
24959
24959
  }>;
24960
- }, drizzle_zod19.BuildRefine<{
24960
+ }, drizzle_zod15.BuildRefine<{
24961
24961
  createdAt: drizzle_orm_pg_core208.PgColumn<{
24962
24962
  name: "created_at";
24963
24963
  tableName: "tools";
@@ -25794,7 +25794,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
25794
25794
  readonly keychain: "keychain";
25795
25795
  readonly nango: "nango";
25796
25796
  }>;
25797
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
25797
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
25798
25798
  createdAt: drizzle_orm_pg_core208.PgColumn<{
25799
25799
  name: "created_at";
25800
25800
  tableName: "tools";
@@ -26074,7 +26074,7 @@ declare const CredentialReferenceResponse: z.ZodObject<{
26074
26074
  }, {}, {
26075
26075
  length: 256;
26076
26076
  }>;
26077
- }, drizzle_zod19.BuildRefine<{
26077
+ }, drizzle_zod15.BuildRefine<{
26078
26078
  createdAt: drizzle_orm_pg_core208.PgColumn<{
26079
26079
  name: "created_at";
26080
26080
  tableName: "tools";
@@ -26400,7 +26400,7 @@ declare const SubAgentFunctionToolRelationResponse: z.ZodObject<{
26400
26400
  createdAt: z.ZodString;
26401
26401
  updatedAt: z.ZodString;
26402
26402
  functionToolId: z.ZodString;
26403
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26403
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26404
26404
  subAgentId: z.ZodString;
26405
26405
  agentId: z.ZodString;
26406
26406
  projectId: z.ZodString;
@@ -26476,9 +26476,9 @@ declare const SubAgentToolRelationResponse: z.ZodObject<{
26476
26476
  createdAt: z.ZodString;
26477
26477
  updatedAt: z.ZodString;
26478
26478
  toolId: z.ZodString;
26479
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26480
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26481
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26479
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26480
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26481
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26482
26482
  subAgentId: z.ZodString;
26483
26483
  agentId: z.ZodString;
26484
26484
  projectId: z.ZodString;
@@ -26494,19 +26494,19 @@ declare const ConversationResponse: z.ZodObject<{
26494
26494
  agentId: z.ZodNullable<z.ZodString>;
26495
26495
  activeSubAgentId: z.ZodString;
26496
26496
  ref: z.ZodNullable<z.ZodType<{
26497
- type: "commit" | "tag" | "branch";
26497
+ type: "tag" | "commit" | "branch";
26498
26498
  name: string;
26499
26499
  hash: string;
26500
26500
  }, {
26501
- type: "commit" | "tag" | "branch";
26501
+ type: "tag" | "commit" | "branch";
26502
26502
  name: string;
26503
26503
  hash: string;
26504
26504
  }, z.core.$ZodTypeInternals<{
26505
- type: "commit" | "tag" | "branch";
26505
+ type: "tag" | "commit" | "branch";
26506
26506
  name: string;
26507
26507
  hash: string;
26508
26508
  }, {
26509
- type: "commit" | "tag" | "branch";
26509
+ type: "tag" | "commit" | "branch";
26510
26510
  name: string;
26511
26511
  hash: string;
26512
26512
  }>>>;
@@ -26548,10 +26548,10 @@ declare const TriggerResponse: z.ZodObject<{
26548
26548
  createdAt: z.ZodString;
26549
26549
  updatedAt: z.ZodString;
26550
26550
  enabled: z.ZodBoolean;
26551
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26552
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26551
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26552
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26553
26553
  messageTemplate: z.ZodNullable<z.ZodString>;
26554
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26554
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26555
26555
  name: z.ZodString;
26556
26556
  description: z.ZodNullable<z.ZodString>;
26557
26557
  agentId: z.ZodString;
@@ -26574,8 +26574,8 @@ declare const TriggerResponse: z.ZodObject<{
26574
26574
  signature: z.ZodObject<{
26575
26575
  source: z.ZodEnum<{
26576
26576
  query: "query";
26577
- header: "header";
26578
26577
  body: "body";
26578
+ header: "header";
26579
26579
  }>;
26580
26580
  key: z.ZodString;
26581
26581
  prefix: z.ZodOptional<z.ZodString>;
@@ -26584,8 +26584,8 @@ declare const TriggerResponse: z.ZodObject<{
26584
26584
  signedComponents: z.ZodArray<z.ZodObject<{
26585
26585
  source: z.ZodEnum<{
26586
26586
  literal: "literal";
26587
- header: "header";
26588
26587
  body: "body";
26588
+ header: "header";
26589
26589
  }>;
26590
26590
  key: z.ZodOptional<z.ZodString>;
26591
26591
  value: z.ZodOptional<z.ZodString>;
@@ -26611,8 +26611,8 @@ declare const TriggerInvocationResponse: z.ZodObject<{
26611
26611
  triggerId: z.ZodString;
26612
26612
  conversationId: z.ZodNullable<z.ZodString>;
26613
26613
  status: z.ZodString;
26614
- requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
26615
- transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
26614
+ requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
26615
+ transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
26616
26616
  errorMessage: z.ZodNullable<z.ZodString>;
26617
26617
  createdAt: z.ZodString;
26618
26618
  agentId: z.ZodString;
@@ -26987,7 +26987,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
26987
26987
  readonly keychain: "keychain";
26988
26988
  readonly nango: "nango";
26989
26989
  }>;
26990
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
26990
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
26991
26991
  createdAt: drizzle_orm_pg_core208.PgColumn<{
26992
26992
  name: "created_at";
26993
26993
  tableName: "tools";
@@ -27267,7 +27267,7 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
27267
27267
  }, {}, {
27268
27268
  length: 256;
27269
27269
  }>;
27270
- }, drizzle_zod19.BuildRefine<{
27270
+ }, drizzle_zod15.BuildRefine<{
27271
27271
  createdAt: drizzle_orm_pg_core208.PgColumn<{
27272
27272
  name: "created_at";
27273
27273
  tableName: "tools";
@@ -27611,7 +27611,7 @@ declare const SubAgentFunctionToolRelationListResponse: z.ZodObject<{
27611
27611
  createdAt: z.ZodString;
27612
27612
  updatedAt: z.ZodString;
27613
27613
  functionToolId: z.ZodString;
27614
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27614
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27615
27615
  subAgentId: z.ZodString;
27616
27616
  agentId: z.ZodString;
27617
27617
  projectId: z.ZodString;
@@ -27711,9 +27711,9 @@ declare const SubAgentToolRelationListResponse: z.ZodObject<{
27711
27711
  createdAt: z.ZodString;
27712
27712
  updatedAt: z.ZodString;
27713
27713
  toolId: z.ZodString;
27714
- selectedTools: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27715
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27716
- toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27714
+ selectedTools: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27715
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27716
+ toolPolicies: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27717
27717
  subAgentId: z.ZodString;
27718
27718
  agentId: z.ZodString;
27719
27719
  projectId: z.ZodString;
@@ -27735,19 +27735,19 @@ declare const ConversationListResponse: z.ZodObject<{
27735
27735
  agentId: z.ZodNullable<z.ZodString>;
27736
27736
  activeSubAgentId: z.ZodString;
27737
27737
  ref: z.ZodNullable<z.ZodType<{
27738
- type: "commit" | "tag" | "branch";
27738
+ type: "tag" | "commit" | "branch";
27739
27739
  name: string;
27740
27740
  hash: string;
27741
27741
  }, {
27742
- type: "commit" | "tag" | "branch";
27742
+ type: "tag" | "commit" | "branch";
27743
27743
  name: string;
27744
27744
  hash: string;
27745
27745
  }, z.core.$ZodTypeInternals<{
27746
- type: "commit" | "tag" | "branch";
27746
+ type: "tag" | "commit" | "branch";
27747
27747
  name: string;
27748
27748
  hash: string;
27749
27749
  }, {
27750
- type: "commit" | "tag" | "branch";
27750
+ type: "tag" | "commit" | "branch";
27751
27751
  name: string;
27752
27752
  hash: string;
27753
27753
  }>>>;
@@ -27801,10 +27801,10 @@ declare const TriggerListResponse: z.ZodObject<{
27801
27801
  createdAt: z.ZodString;
27802
27802
  updatedAt: z.ZodString;
27803
27803
  enabled: z.ZodBoolean;
27804
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27805
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27804
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27805
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27806
27806
  messageTemplate: z.ZodNullable<z.ZodString>;
27807
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27807
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27808
27808
  name: z.ZodString;
27809
27809
  description: z.ZodNullable<z.ZodString>;
27810
27810
  agentId: z.ZodString;
@@ -27827,8 +27827,8 @@ declare const TriggerListResponse: z.ZodObject<{
27827
27827
  signature: z.ZodObject<{
27828
27828
  source: z.ZodEnum<{
27829
27829
  query: "query";
27830
- header: "header";
27831
27830
  body: "body";
27831
+ header: "header";
27832
27832
  }>;
27833
27833
  key: z.ZodString;
27834
27834
  prefix: z.ZodOptional<z.ZodString>;
@@ -27837,8 +27837,8 @@ declare const TriggerListResponse: z.ZodObject<{
27837
27837
  signedComponents: z.ZodArray<z.ZodObject<{
27838
27838
  source: z.ZodEnum<{
27839
27839
  literal: "literal";
27840
- header: "header";
27841
27840
  body: "body";
27841
+ header: "header";
27842
27842
  }>;
27843
27843
  key: z.ZodOptional<z.ZodString>;
27844
27844
  value: z.ZodOptional<z.ZodString>;
@@ -27870,8 +27870,8 @@ declare const TriggerInvocationListResponse: z.ZodObject<{
27870
27870
  triggerId: z.ZodString;
27871
27871
  conversationId: z.ZodNullable<z.ZodString>;
27872
27872
  status: z.ZodString;
27873
- requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
27874
- transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27873
+ requestPayload: z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>;
27874
+ transformedPayload: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27875
27875
  errorMessage: z.ZodNullable<z.ZodString>;
27876
27876
  createdAt: z.ZodString;
27877
27877
  agentId: z.ZodString;
@@ -27894,10 +27894,10 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
27894
27894
  createdAt: z.ZodString;
27895
27895
  updatedAt: z.ZodString;
27896
27896
  enabled: z.ZodBoolean;
27897
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27898
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27897
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27898
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27899
27899
  messageTemplate: z.ZodNullable<z.ZodString>;
27900
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27900
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27901
27901
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27902
27902
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27903
27903
  algorithm: z.ZodEnum<{
@@ -27914,8 +27914,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
27914
27914
  signature: z.ZodObject<{
27915
27915
  source: z.ZodEnum<{
27916
27916
  query: "query";
27917
- header: "header";
27918
27917
  body: "body";
27918
+ header: "header";
27919
27919
  }>;
27920
27920
  key: z.ZodString;
27921
27921
  prefix: z.ZodOptional<z.ZodString>;
@@ -27924,8 +27924,8 @@ declare const TriggerWithWebhookUrlResponse: z.ZodObject<{
27924
27924
  signedComponents: z.ZodArray<z.ZodObject<{
27925
27925
  source: z.ZodEnum<{
27926
27926
  literal: "literal";
27927
- header: "header";
27928
27927
  body: "body";
27928
+ header: "header";
27929
27929
  }>;
27930
27930
  key: z.ZodOptional<z.ZodString>;
27931
27931
  value: z.ZodOptional<z.ZodString>;
@@ -27955,10 +27955,10 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
27955
27955
  createdAt: z.ZodString;
27956
27956
  updatedAt: z.ZodString;
27957
27957
  enabled: z.ZodBoolean;
27958
- inputSchema: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27959
- outputTransform: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27958
+ inputSchema: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27959
+ outputTransform: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27960
27960
  messageTemplate: z.ZodNullable<z.ZodString>;
27961
- authentication: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
27961
+ authentication: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
27962
27962
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27963
27963
  signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27964
27964
  algorithm: z.ZodEnum<{
@@ -27975,8 +27975,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
27975
27975
  signature: z.ZodObject<{
27976
27976
  source: z.ZodEnum<{
27977
27977
  query: "query";
27978
- header: "header";
27979
27978
  body: "body";
27979
+ header: "header";
27980
27980
  }>;
27981
27981
  key: z.ZodString;
27982
27982
  prefix: z.ZodOptional<z.ZodString>;
@@ -27985,8 +27985,8 @@ declare const TriggerWithWebhookUrlListResponse: z.ZodObject<{
27985
27985
  signedComponents: z.ZodArray<z.ZodObject<{
27986
27986
  source: z.ZodEnum<{
27987
27987
  literal: "literal";
27988
- header: "header";
27989
27988
  body: "body";
27989
+ header: "header";
27990
27990
  }>;
27991
27991
  key: z.ZodOptional<z.ZodString>;
27992
27992
  value: z.ZodOptional<z.ZodString>;
@@ -28238,12 +28238,12 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
28238
28238
  createdAt: z.ZodOptional<z.ZodString>;
28239
28239
  updatedAt: z.ZodOptional<z.ZodString>;
28240
28240
  enabled: z.ZodOptional<z.ZodBoolean>;
28241
- inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
28242
- outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
28241
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
28242
+ outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
28243
28243
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28244
- authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
28244
+ authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
28245
28245
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28246
- signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
28246
+ signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
28247
28247
  id: z.ZodOptional<z.ZodString>;
28248
28248
  }, z.core.$strip>>>;
28249
28249
  contextConfig: z.ZodOptional<z.ZodObject<{
@@ -28808,7 +28808,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
28808
28808
  readonly keychain: "keychain";
28809
28809
  readonly nango: "nango";
28810
28810
  }>;
28811
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
28811
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
28812
28812
  createdAt: drizzle_orm_pg_core208.PgColumn<{
28813
28813
  name: "created_at";
28814
28814
  tableName: "tools";
@@ -29088,7 +29088,7 @@ declare const FullProjectSelectResponse: z.ZodObject<{
29088
29088
  }, {}, {
29089
29089
  length: 256;
29090
29090
  }>;
29091
- }, drizzle_zod19.BuildRefine<{
29091
+ }, drizzle_zod15.BuildRefine<{
29092
29092
  createdAt: drizzle_orm_pg_core208.PgColumn<{
29093
29093
  name: "created_at";
29094
29094
  tableName: "tools";
@@ -29550,7 +29550,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
29550
29550
  readonly keychain: "keychain";
29551
29551
  readonly nango: "nango";
29552
29552
  }>;
29553
- tools: z.ZodOptional<z.ZodArray<drizzle_zod19.BuildSchema<"select", {
29553
+ tools: z.ZodOptional<z.ZodArray<drizzle_zod15.BuildSchema<"select", {
29554
29554
  createdAt: drizzle_orm_pg_core208.PgColumn<{
29555
29555
  name: "created_at";
29556
29556
  tableName: "tools";
@@ -29830,7 +29830,7 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
29830
29830
  }, {}, {
29831
29831
  length: 256;
29832
29832
  }>;
29833
- }, drizzle_zod19.BuildRefine<{
29833
+ }, drizzle_zod15.BuildRefine<{
29834
29834
  createdAt: drizzle_orm_pg_core208.PgColumn<{
29835
29835
  name: "created_at";
29836
29836
  tableName: "tools";
@@ -30490,12 +30490,12 @@ declare const AgentWithinContextOfProjectResponse: z.ZodObject<{
30490
30490
  createdAt: z.ZodOptional<z.ZodString>;
30491
30491
  updatedAt: z.ZodOptional<z.ZodString>;
30492
30492
  enabled: z.ZodOptional<z.ZodBoolean>;
30493
- inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30494
- outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30493
+ inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
30494
+ outputTransform: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
30495
30495
  messageTemplate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30496
- authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30496
+ authentication: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
30497
30497
  signingSecretCredentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30498
- signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
30498
+ signatureVerification: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>>;
30499
30499
  id: z.ZodOptional<z.ZodString>;
30500
30500
  }, z.core.$strip>>>;
30501
30501
  contextConfig: z.ZodOptional<z.ZodObject<{
@@ -30903,7 +30903,7 @@ declare const SubAgentTeamAgentRelationResponse: z.ZodObject<{
30903
30903
  createdAt: z.ZodString;
30904
30904
  updatedAt: z.ZodString;
30905
30905
  targetAgentId: z.ZodString;
30906
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30906
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
30907
30907
  subAgentId: z.ZodString;
30908
30908
  agentId: z.ZodString;
30909
30909
  projectId: z.ZodString;
@@ -30916,7 +30916,7 @@ declare const SubAgentTeamAgentRelationListResponse: z.ZodObject<{
30916
30916
  createdAt: z.ZodString;
30917
30917
  updatedAt: z.ZodString;
30918
30918
  targetAgentId: z.ZodString;
30919
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30919
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
30920
30920
  subAgentId: z.ZodString;
30921
30921
  agentId: z.ZodString;
30922
30922
  projectId: z.ZodString;
@@ -30935,7 +30935,7 @@ declare const SubAgentExternalAgentRelationResponse: z.ZodObject<{
30935
30935
  createdAt: z.ZodString;
30936
30936
  updatedAt: z.ZodString;
30937
30937
  externalAgentId: z.ZodString;
30938
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30938
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
30939
30939
  subAgentId: z.ZodString;
30940
30940
  agentId: z.ZodString;
30941
30941
  projectId: z.ZodString;
@@ -30948,7 +30948,7 @@ declare const SubAgentExternalAgentRelationListResponse: z.ZodObject<{
30948
30948
  createdAt: z.ZodString;
30949
30949
  updatedAt: z.ZodString;
30950
30950
  externalAgentId: z.ZodString;
30951
- headers: z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>;
30951
+ headers: z.ZodNullable<z.ZodType<drizzle_zod15.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod15.Json, unknown>>>;
30952
30952
  subAgentId: z.ZodString;
30953
30953
  agentId: z.ZodString;
30954
30954
  projectId: z.ZodString;
@@ -31115,7 +31115,7 @@ declare const PaginationWithRefQueryParamsSchema: z.ZodObject<{
31115
31115
  limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
31116
31116
  ref: z.ZodOptional<z.ZodString>;
31117
31117
  }, z.core.$strip>;
31118
- declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
31118
+ declare const ProjectMetadataSelectSchema: drizzle_zod15.BuildSchema<"select", {
31119
31119
  id: drizzle_orm_pg_core208.PgColumn<{
31120
31120
  name: "id";
31121
31121
  tableName: "project_metadata";
@@ -31209,7 +31209,7 @@ declare const ProjectMetadataSelectSchema: drizzle_zod19.BuildSchema<"select", {
31209
31209
  }, {}, {
31210
31210
  length: 512;
31211
31211
  }>;
31212
- }, drizzle_zod19.BuildRefine<{
31212
+ }, drizzle_zod15.BuildRefine<{
31213
31213
  id: drizzle_orm_pg_core208.PgColumn<{
31214
31214
  name: "id";
31215
31215
  tableName: "project_metadata";
@@ -31320,10 +31320,10 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
31320
31320
  disconnected: "disconnected";
31321
31321
  }>;
31322
31322
  declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
31323
- Organization: "Organization";
31324
31323
  User: "User";
31324
+ Organization: "Organization";
31325
31325
  }>;
31326
- declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
31326
+ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod15.BuildSchema<"select", {
31327
31327
  createdAt: drizzle_orm_pg_core208.PgColumn<{
31328
31328
  name: "created_at";
31329
31329
  tableName: "work_app_github_installations";
@@ -31416,7 +31416,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
31416
31416
  tableName: "work_app_github_installations";
31417
31417
  dataType: "string";
31418
31418
  columnType: "PgVarchar";
31419
- data: "Organization" | "User";
31419
+ data: "User" | "Organization";
31420
31420
  driverParam: string;
31421
31421
  notNull: true;
31422
31422
  hasDefault: false;
@@ -31429,7 +31429,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
31429
31429
  generated: undefined;
31430
31430
  }, {}, {
31431
31431
  length: 20;
31432
- $type: "Organization" | "User";
31432
+ $type: "User" | "Organization";
31433
31433
  }>;
31434
31434
  status: drizzle_orm_pg_core208.PgColumn<{
31435
31435
  name: "status";
@@ -31489,7 +31489,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
31489
31489
  }, {}, {
31490
31490
  length: 256;
31491
31491
  }>;
31492
- }, drizzle_zod19.BuildRefine<{
31492
+ }, drizzle_zod15.BuildRefine<{
31493
31493
  createdAt: drizzle_orm_pg_core208.PgColumn<{
31494
31494
  name: "created_at";
31495
31495
  tableName: "work_app_github_installations";
@@ -31582,7 +31582,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
31582
31582
  tableName: "work_app_github_installations";
31583
31583
  dataType: "string";
31584
31584
  columnType: "PgVarchar";
31585
- data: "Organization" | "User";
31585
+ data: "User" | "Organization";
31586
31586
  driverParam: string;
31587
31587
  notNull: true;
31588
31588
  hasDefault: false;
@@ -31595,7 +31595,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
31595
31595
  generated: undefined;
31596
31596
  }, {}, {
31597
31597
  length: 20;
31598
- $type: "Organization" | "User";
31598
+ $type: "User" | "Organization";
31599
31599
  }>;
31600
31600
  status: drizzle_orm_pg_core208.PgColumn<{
31601
31601
  name: "status";
@@ -31663,8 +31663,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
31663
31663
  installationId: z.ZodString;
31664
31664
  accountLogin: z.ZodString;
31665
31665
  accountType: z.ZodEnum<{
31666
- Organization: "Organization";
31667
31666
  User: "User";
31667
+ Organization: "Organization";
31668
31668
  }>;
31669
31669
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
31670
31670
  pending: "pending";
@@ -31694,8 +31694,8 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
31694
31694
  installationId: z.ZodString;
31695
31695
  accountLogin: z.ZodString;
31696
31696
  accountType: z.ZodEnum<{
31697
- Organization: "Organization";
31698
31697
  User: "User";
31698
+ Organization: "Organization";
31699
31699
  }>;
31700
31700
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
31701
31701
  pending: "pending";
@@ -31704,7 +31704,7 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
31704
31704
  disconnected: "disconnected";
31705
31705
  }>>>;
31706
31706
  }>, z.core.$strip>;
31707
- declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"select", {
31707
+ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod15.BuildSchema<"select", {
31708
31708
  createdAt: drizzle_orm_pg_core208.PgColumn<{
31709
31709
  name: "created_at";
31710
31710
  tableName: "work_app_github_repositories";
@@ -31849,7 +31849,7 @@ declare const WorkAppGitHubRepositorySelectSchema: drizzle_zod19.BuildSchema<"se
31849
31849
  identity: undefined;
31850
31850
  generated: undefined;
31851
31851
  }, {}, {}>;
31852
- }, drizzle_zod19.BuildRefine<{
31852
+ }, drizzle_zod15.BuildRefine<{
31853
31853
  createdAt: drizzle_orm_pg_core208.PgColumn<{
31854
31854
  name: "created_at";
31855
31855
  tableName: "work_app_github_repositories";
@@ -32015,7 +32015,7 @@ declare const WorkAppGitHubRepositoryApiInsertSchema: z.ZodObject<OmitGeneratedF
32015
32015
  repositoryFullName: z.ZodString;
32016
32016
  private: z.ZodOptional<z.ZodBoolean>;
32017
32017
  }>>, z.core.$strip>;
32018
- declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
32018
+ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
32019
32019
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32020
32020
  name: "created_at";
32021
32021
  tableName: "work_app_github_project_repository_access";
@@ -32126,7 +32126,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
32126
32126
  }, {}, {
32127
32127
  length: 256;
32128
32128
  }>;
32129
- }, drizzle_zod19.BuildRefine<{
32129
+ }, drizzle_zod15.BuildRefine<{
32130
32130
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32131
32131
  name: "created_at";
32132
32132
  tableName: "work_app_github_project_repository_access";
@@ -32238,7 +32238,7 @@ declare const WorkAppGitHubProjectRepositoryAccessSelectSchema: drizzle_zod19.Bu
32238
32238
  length: 256;
32239
32239
  }>;
32240
32240
  }, undefined>, undefined>;
32241
- declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.BuildSchema<"select", {
32241
+ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod15.BuildSchema<"select", {
32242
32242
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32243
32243
  name: "created_at";
32244
32244
  tableName: "work_app_github_mcp_tool_repository_access";
@@ -32368,7 +32368,7 @@ declare const WorkAppGitHubMcpToolRepositoryAccessSelectSchema: drizzle_zod19.Bu
32368
32368
  }, {}, {
32369
32369
  length: 256;
32370
32370
  }>;
32371
- }, drizzle_zod19.BuildRefine<{
32371
+ }, drizzle_zod15.BuildRefine<{
32372
32372
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32373
32373
  name: "created_at";
32374
32374
  tableName: "work_app_github_mcp_tool_repository_access";
@@ -32522,7 +32522,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
32522
32522
  all: "all";
32523
32523
  selected: "selected";
32524
32524
  }>;
32525
- repositories: z.ZodArray<drizzle_zod19.BuildSchema<"select", {
32525
+ repositories: z.ZodArray<drizzle_zod15.BuildSchema<"select", {
32526
32526
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32527
32527
  name: "created_at";
32528
32528
  tableName: "work_app_github_repositories";
@@ -32667,7 +32667,7 @@ declare const WorkAppGitHubAccessGetResponseSchema: z.ZodObject<{
32667
32667
  identity: undefined;
32668
32668
  generated: undefined;
32669
32669
  }, {}, {}>;
32670
- }, drizzle_zod19.BuildRefine<{
32670
+ }, drizzle_zod15.BuildRefine<{
32671
32671
  createdAt: drizzle_orm_pg_core208.PgColumn<{
32672
32672
  name: "created_at";
32673
32673
  tableName: "work_app_github_repositories";