@inkeep/agents-core 0.79.0 → 0.79.1

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.
Files changed (38) hide show
  1. package/dist/auth/permissions.d.ts +9 -9
  2. package/dist/data-access/index.d.ts +2 -1
  3. package/dist/data-access/index.js +2 -1
  4. package/dist/data-access/manage/agents.d.ts +31 -31
  5. package/dist/data-access/manage/artifactComponents.d.ts +4 -4
  6. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  7. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  8. package/dist/data-access/manage/functionTools.d.ts +8 -8
  9. package/dist/data-access/manage/skills.d.ts +8 -8
  10. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
  11. package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
  12. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
  13. package/dist/data-access/manage/subAgents.d.ts +9 -9
  14. package/dist/data-access/manage/tools.d.ts +15 -15
  15. package/dist/data-access/manage/triggers.d.ts +4 -4
  16. package/dist/data-access/runtime/apiKeys.d.ts +8 -8
  17. package/dist/data-access/runtime/apps.d.ts +8 -8
  18. package/dist/data-access/runtime/conversations.d.ts +32 -32
  19. package/dist/data-access/runtime/events.d.ts +5 -5
  20. package/dist/data-access/runtime/feedback.d.ts +4 -4
  21. package/dist/data-access/runtime/messages.d.ts +24 -24
  22. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +5 -5
  23. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  24. package/dist/data-access/runtime/tasks.d.ts +5 -5
  25. package/dist/data-access/runtime/toolApprovalDecisions.d.ts +37 -0
  26. package/dist/data-access/runtime/toolApprovalDecisions.js +76 -0
  27. package/dist/db/manage/manage-schema.d.ts +506 -506
  28. package/dist/db/runtime/runtime-schema.d.ts +596 -448
  29. package/dist/db/runtime/runtime-schema.js +30 -1
  30. package/dist/index.d.ts +3 -2
  31. package/dist/index.js +3 -2
  32. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  33. package/dist/validation/schemas/skills.d.ts +48 -48
  34. package/dist/validation/schemas.d.ts +775 -775
  35. package/drizzle/runtime/0044_productive_bromley.sql +12 -0
  36. package/drizzle/runtime/meta/0044_snapshot.json +6386 -0
  37. package/drizzle/runtime/meta/_journal.json +7 -0
  38. package/package.json +1 -1
@@ -1,17 +1,17 @@
1
1
  import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
2
2
  import { JsonSchemaProperty } from "../../validation/json-schemas.js";
3
- import * as drizzle_orm95 from "drizzle-orm";
4
- import * as drizzle_orm_pg_core1992 from "drizzle-orm/pg-core";
3
+ import * as drizzle_orm62 from "drizzle-orm";
4
+ import * as drizzle_orm_pg_core1587 from "drizzle-orm/pg-core";
5
5
 
6
6
  //#region src/db/manage/manage-schema.d.ts
7
7
  declare namespace manage_schema_d_exports {
8
8
  export { agentDatasetRelations, agentDatasetRelationsRelations, agentEvaluatorRelations, agentEvaluatorRelationsRelations, agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, datasetRunConfigEvaluatorRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, projects, projectsRelations, skillFiles, skillFilesRelations, skills, skillsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentSkills, subAgentSkillsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggerUsers, triggers, webhookDestinationAgents, webhookDestinationAgentsRelations, webhookDestinationEvaluators, webhookDestinationEvaluatorsRelations, webhookDestinations, webhookDestinationsRelations };
9
9
  }
10
- declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
10
+ declare const projects: drizzle_orm_pg_core1587.PgTableWithColumns<{
11
11
  name: "projects";
12
12
  schema: undefined;
13
13
  columns: {
14
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
14
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
15
15
  name: "created_at";
16
16
  tableName: "projects";
17
17
  dataType: "string";
@@ -28,7 +28,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
28
28
  identity: undefined;
29
29
  generated: undefined;
30
30
  }, {}, {}>;
31
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
31
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
32
32
  name: "updated_at";
33
33
  tableName: "projects";
34
34
  dataType: "string";
@@ -45,7 +45,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
45
45
  identity: undefined;
46
46
  generated: undefined;
47
47
  }, {}, {}>;
48
- models: drizzle_orm_pg_core1992.PgColumn<{
48
+ models: drizzle_orm_pg_core1587.PgColumn<{
49
49
  name: "models";
50
50
  tableName: "projects";
51
51
  dataType: "json";
@@ -102,7 +102,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
102
102
  } | undefined;
103
103
  };
104
104
  }>;
105
- stopWhen: drizzle_orm_pg_core1992.PgColumn<{
105
+ stopWhen: drizzle_orm_pg_core1587.PgColumn<{
106
106
  name: "stop_when";
107
107
  tableName: "projects";
108
108
  dataType: "json";
@@ -127,7 +127,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
127
127
  stepCountIs?: number | undefined;
128
128
  };
129
129
  }>;
130
- name: drizzle_orm_pg_core1992.PgColumn<{
130
+ name: drizzle_orm_pg_core1587.PgColumn<{
131
131
  name: "name";
132
132
  tableName: "projects";
133
133
  dataType: "string";
@@ -146,7 +146,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
146
146
  }, {}, {
147
147
  length: 256;
148
148
  }>;
149
- description: drizzle_orm_pg_core1992.PgColumn<{
149
+ description: drizzle_orm_pg_core1587.PgColumn<{
150
150
  name: "description";
151
151
  tableName: "projects";
152
152
  dataType: "string";
@@ -163,7 +163,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
163
163
  identity: undefined;
164
164
  generated: undefined;
165
165
  }, {}, {}>;
166
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
166
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
167
167
  name: "tenant_id";
168
168
  tableName: "projects";
169
169
  dataType: "string";
@@ -182,7 +182,7 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
182
182
  }, {}, {
183
183
  length: 256;
184
184
  }>;
185
- id: drizzle_orm_pg_core1992.PgColumn<{
185
+ id: drizzle_orm_pg_core1587.PgColumn<{
186
186
  name: "id";
187
187
  tableName: "projects";
188
188
  dataType: "string";
@@ -204,11 +204,11 @@ declare const projects: drizzle_orm_pg_core1992.PgTableWithColumns<{
204
204
  };
205
205
  dialect: "pg";
206
206
  }>;
207
- declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
207
+ declare const agents: drizzle_orm_pg_core1587.PgTableWithColumns<{
208
208
  name: "agent";
209
209
  schema: undefined;
210
210
  columns: {
211
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
211
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
212
212
  name: "created_at";
213
213
  tableName: "agent";
214
214
  dataType: "string";
@@ -225,7 +225,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
225
225
  identity: undefined;
226
226
  generated: undefined;
227
227
  }, {}, {}>;
228
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
228
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
229
229
  name: "updated_at";
230
230
  tableName: "agent";
231
231
  dataType: "string";
@@ -242,7 +242,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
242
242
  identity: undefined;
243
243
  generated: undefined;
244
244
  }, {}, {}>;
245
- defaultSubAgentId: drizzle_orm_pg_core1992.PgColumn<{
245
+ defaultSubAgentId: drizzle_orm_pg_core1587.PgColumn<{
246
246
  name: "default_sub_agent_id";
247
247
  tableName: "agent";
248
248
  dataType: "string";
@@ -261,7 +261,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
261
261
  }, {}, {
262
262
  length: 256;
263
263
  }>;
264
- contextConfigId: drizzle_orm_pg_core1992.PgColumn<{
264
+ contextConfigId: drizzle_orm_pg_core1587.PgColumn<{
265
265
  name: "context_config_id";
266
266
  tableName: "agent";
267
267
  dataType: "string";
@@ -280,7 +280,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
280
280
  }, {}, {
281
281
  length: 256;
282
282
  }>;
283
- models: drizzle_orm_pg_core1992.PgColumn<{
283
+ models: drizzle_orm_pg_core1587.PgColumn<{
284
284
  name: "models";
285
285
  tableName: "agent";
286
286
  dataType: "json";
@@ -337,7 +337,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
337
337
  } | undefined;
338
338
  };
339
339
  }>;
340
- statusUpdates: drizzle_orm_pg_core1992.PgColumn<{
340
+ statusUpdates: drizzle_orm_pg_core1587.PgColumn<{
341
341
  name: "status_updates";
342
342
  tableName: "agent";
343
343
  dataType: "json";
@@ -384,7 +384,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
384
384
  }[] | undefined;
385
385
  };
386
386
  }>;
387
- prompt: drizzle_orm_pg_core1992.PgColumn<{
387
+ prompt: drizzle_orm_pg_core1587.PgColumn<{
388
388
  name: "prompt";
389
389
  tableName: "agent";
390
390
  dataType: "string";
@@ -401,7 +401,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
401
401
  identity: undefined;
402
402
  generated: undefined;
403
403
  }, {}, {}>;
404
- stopWhen: drizzle_orm_pg_core1992.PgColumn<{
404
+ stopWhen: drizzle_orm_pg_core1587.PgColumn<{
405
405
  name: "stop_when";
406
406
  tableName: "agent";
407
407
  dataType: "json";
@@ -424,7 +424,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
424
424
  transferCountIs?: number | undefined;
425
425
  };
426
426
  }>;
427
- executionMode: drizzle_orm_pg_core1992.PgColumn<{
427
+ executionMode: drizzle_orm_pg_core1587.PgColumn<{
428
428
  name: "execution_mode";
429
429
  tableName: "agent";
430
430
  dataType: "string";
@@ -444,7 +444,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
444
444
  length: 50;
445
445
  $type: "classic" | "durable";
446
446
  }>;
447
- name: drizzle_orm_pg_core1992.PgColumn<{
447
+ name: drizzle_orm_pg_core1587.PgColumn<{
448
448
  name: "name";
449
449
  tableName: "agent";
450
450
  dataType: "string";
@@ -463,7 +463,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
463
463
  }, {}, {
464
464
  length: 256;
465
465
  }>;
466
- description: drizzle_orm_pg_core1992.PgColumn<{
466
+ description: drizzle_orm_pg_core1587.PgColumn<{
467
467
  name: "description";
468
468
  tableName: "agent";
469
469
  dataType: "string";
@@ -480,7 +480,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
480
480
  identity: undefined;
481
481
  generated: undefined;
482
482
  }, {}, {}>;
483
- projectId: drizzle_orm_pg_core1992.PgColumn<{
483
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
484
484
  name: "project_id";
485
485
  tableName: "agent";
486
486
  dataType: "string";
@@ -499,7 +499,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
499
499
  }, {}, {
500
500
  length: 256;
501
501
  }>;
502
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
502
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
503
503
  name: "tenant_id";
504
504
  tableName: "agent";
505
505
  dataType: "string";
@@ -518,7 +518,7 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
518
518
  }, {}, {
519
519
  length: 256;
520
520
  }>;
521
- id: drizzle_orm_pg_core1992.PgColumn<{
521
+ id: drizzle_orm_pg_core1587.PgColumn<{
522
522
  name: "id";
523
523
  tableName: "agent";
524
524
  dataType: "string";
@@ -540,11 +540,11 @@ declare const agents: drizzle_orm_pg_core1992.PgTableWithColumns<{
540
540
  };
541
541
  dialect: "pg";
542
542
  }>;
543
- declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
543
+ declare const contextConfigs: drizzle_orm_pg_core1587.PgTableWithColumns<{
544
544
  name: "context_configs";
545
545
  schema: undefined;
546
546
  columns: {
547
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
547
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
548
548
  name: "created_at";
549
549
  tableName: "context_configs";
550
550
  dataType: "string";
@@ -561,7 +561,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
561
561
  identity: undefined;
562
562
  generated: undefined;
563
563
  }, {}, {}>;
564
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
564
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
565
565
  name: "updated_at";
566
566
  tableName: "context_configs";
567
567
  dataType: "string";
@@ -578,7 +578,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
578
578
  identity: undefined;
579
579
  generated: undefined;
580
580
  }, {}, {}>;
581
- headersSchema: drizzle_orm_pg_core1992.PgColumn<{
581
+ headersSchema: drizzle_orm_pg_core1587.PgColumn<{
582
582
  name: "headers_schema";
583
583
  tableName: "context_configs";
584
584
  dataType: "json";
@@ -597,7 +597,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
597
597
  }, {}, {
598
598
  $type: unknown;
599
599
  }>;
600
- contextVariables: drizzle_orm_pg_core1992.PgColumn<{
600
+ contextVariables: drizzle_orm_pg_core1587.PgColumn<{
601
601
  name: "context_variables";
602
602
  tableName: "context_configs";
603
603
  dataType: "json";
@@ -616,7 +616,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
616
616
  }, {}, {
617
617
  $type: Record<string, ContextFetchDefinition>;
618
618
  }>;
619
- agentId: drizzle_orm_pg_core1992.PgColumn<{
619
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
620
620
  name: "agent_id";
621
621
  tableName: "context_configs";
622
622
  dataType: "string";
@@ -635,7 +635,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
635
635
  }, {}, {
636
636
  length: 256;
637
637
  }>;
638
- projectId: drizzle_orm_pg_core1992.PgColumn<{
638
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
639
639
  name: "project_id";
640
640
  tableName: "context_configs";
641
641
  dataType: "string";
@@ -654,7 +654,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
654
654
  }, {}, {
655
655
  length: 256;
656
656
  }>;
657
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
657
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
658
658
  name: "tenant_id";
659
659
  tableName: "context_configs";
660
660
  dataType: "string";
@@ -673,7 +673,7 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
673
673
  }, {}, {
674
674
  length: 256;
675
675
  }>;
676
- id: drizzle_orm_pg_core1992.PgColumn<{
676
+ id: drizzle_orm_pg_core1587.PgColumn<{
677
677
  name: "id";
678
678
  tableName: "context_configs";
679
679
  dataType: "string";
@@ -695,11 +695,11 @@ declare const contextConfigs: drizzle_orm_pg_core1992.PgTableWithColumns<{
695
695
  };
696
696
  dialect: "pg";
697
697
  }>;
698
- declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
698
+ declare const triggers: drizzle_orm_pg_core1587.PgTableWithColumns<{
699
699
  name: "triggers";
700
700
  schema: undefined;
701
701
  columns: {
702
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
702
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
703
703
  name: "created_at";
704
704
  tableName: "triggers";
705
705
  dataType: "string";
@@ -716,7 +716,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
716
716
  identity: undefined;
717
717
  generated: undefined;
718
718
  }, {}, {}>;
719
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
719
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
720
720
  name: "updated_at";
721
721
  tableName: "triggers";
722
722
  dataType: "string";
@@ -733,7 +733,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
733
733
  identity: undefined;
734
734
  generated: undefined;
735
735
  }, {}, {}>;
736
- enabled: drizzle_orm_pg_core1992.PgColumn<{
736
+ enabled: drizzle_orm_pg_core1587.PgColumn<{
737
737
  name: "enabled";
738
738
  tableName: "triggers";
739
739
  dataType: "boolean";
@@ -750,7 +750,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
750
750
  identity: undefined;
751
751
  generated: undefined;
752
752
  }, {}, {}>;
753
- inputSchema: drizzle_orm_pg_core1992.PgColumn<{
753
+ inputSchema: drizzle_orm_pg_core1587.PgColumn<{
754
754
  name: "input_schema";
755
755
  tableName: "triggers";
756
756
  dataType: "json";
@@ -769,7 +769,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
769
769
  }, {}, {
770
770
  $type: Record<string, unknown> | null;
771
771
  }>;
772
- outputTransform: drizzle_orm_pg_core1992.PgColumn<{
772
+ outputTransform: drizzle_orm_pg_core1587.PgColumn<{
773
773
  name: "output_transform";
774
774
  tableName: "triggers";
775
775
  dataType: "json";
@@ -794,7 +794,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
794
794
  objectTransformation?: Record<string, string>;
795
795
  } | null;
796
796
  }>;
797
- messageTemplate: drizzle_orm_pg_core1992.PgColumn<{
797
+ messageTemplate: drizzle_orm_pg_core1587.PgColumn<{
798
798
  name: "message_template";
799
799
  tableName: "triggers";
800
800
  dataType: "string";
@@ -811,7 +811,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
811
811
  identity: undefined;
812
812
  generated: undefined;
813
813
  }, {}, {}>;
814
- authentication: drizzle_orm_pg_core1992.PgColumn<{
814
+ authentication: drizzle_orm_pg_core1587.PgColumn<{
815
815
  name: "authentication";
816
816
  tableName: "triggers";
817
817
  dataType: "json";
@@ -830,7 +830,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
830
830
  }, {}, {
831
831
  $type: unknown;
832
832
  }>;
833
- signingSecretCredentialReferenceId: drizzle_orm_pg_core1992.PgColumn<{
833
+ signingSecretCredentialReferenceId: drizzle_orm_pg_core1587.PgColumn<{
834
834
  name: "signing_secret_credential_reference_id";
835
835
  tableName: "triggers";
836
836
  dataType: "string";
@@ -849,14 +849,14 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
849
849
  }, {}, {
850
850
  length: 256;
851
851
  }>;
852
- signatureVerification: drizzle_orm_pg_core1992.PgColumn<{
852
+ signatureVerification: drizzle_orm_pg_core1587.PgColumn<{
853
853
  name: "signature_verification";
854
854
  tableName: "triggers";
855
855
  dataType: "json";
856
856
  columnType: "PgJsonb";
857
857
  data: {
858
- algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
859
- encoding: "hex" | "base64";
858
+ algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
859
+ encoding: "base64" | "hex";
860
860
  signature: {
861
861
  source: "query" | "body" | "header";
862
862
  key: string;
@@ -892,8 +892,8 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
892
892
  generated: undefined;
893
893
  }, {}, {
894
894
  $type: {
895
- algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
896
- encoding: "hex" | "base64";
895
+ algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
896
+ encoding: "base64" | "hex";
897
897
  signature: {
898
898
  source: "query" | "body" | "header";
899
899
  key: string;
@@ -918,7 +918,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
918
918
  } | undefined;
919
919
  } | null;
920
920
  }>;
921
- runAsUserId: drizzle_orm_pg_core1992.PgColumn<{
921
+ runAsUserId: drizzle_orm_pg_core1587.PgColumn<{
922
922
  name: "run_as_user_id";
923
923
  tableName: "triggers";
924
924
  dataType: "string";
@@ -937,7 +937,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
937
937
  }, {}, {
938
938
  length: 256;
939
939
  }>;
940
- dispatchDelayMs: drizzle_orm_pg_core1992.PgColumn<{
940
+ dispatchDelayMs: drizzle_orm_pg_core1587.PgColumn<{
941
941
  name: "dispatch_delay_ms";
942
942
  tableName: "triggers";
943
943
  dataType: "number";
@@ -954,7 +954,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
954
954
  identity: undefined;
955
955
  generated: undefined;
956
956
  }, {}, {}>;
957
- createdBy: drizzle_orm_pg_core1992.PgColumn<{
957
+ createdBy: drizzle_orm_pg_core1587.PgColumn<{
958
958
  name: "created_by";
959
959
  tableName: "triggers";
960
960
  dataType: "string";
@@ -973,7 +973,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
973
973
  }, {}, {
974
974
  length: 256;
975
975
  }>;
976
- name: drizzle_orm_pg_core1992.PgColumn<{
976
+ name: drizzle_orm_pg_core1587.PgColumn<{
977
977
  name: "name";
978
978
  tableName: "triggers";
979
979
  dataType: "string";
@@ -992,7 +992,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
992
992
  }, {}, {
993
993
  length: 256;
994
994
  }>;
995
- description: drizzle_orm_pg_core1992.PgColumn<{
995
+ description: drizzle_orm_pg_core1587.PgColumn<{
996
996
  name: "description";
997
997
  tableName: "triggers";
998
998
  dataType: "string";
@@ -1009,7 +1009,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1009
1009
  identity: undefined;
1010
1010
  generated: undefined;
1011
1011
  }, {}, {}>;
1012
- agentId: drizzle_orm_pg_core1992.PgColumn<{
1012
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
1013
1013
  name: "agent_id";
1014
1014
  tableName: "triggers";
1015
1015
  dataType: "string";
@@ -1028,7 +1028,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1028
1028
  }, {}, {
1029
1029
  length: 256;
1030
1030
  }>;
1031
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1031
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1032
1032
  name: "project_id";
1033
1033
  tableName: "triggers";
1034
1034
  dataType: "string";
@@ -1047,7 +1047,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1047
1047
  }, {}, {
1048
1048
  length: 256;
1049
1049
  }>;
1050
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1050
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1051
1051
  name: "tenant_id";
1052
1052
  tableName: "triggers";
1053
1053
  dataType: "string";
@@ -1066,7 +1066,7 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1066
1066
  }, {}, {
1067
1067
  length: 256;
1068
1068
  }>;
1069
- id: drizzle_orm_pg_core1992.PgColumn<{
1069
+ id: drizzle_orm_pg_core1587.PgColumn<{
1070
1070
  name: "id";
1071
1071
  tableName: "triggers";
1072
1072
  dataType: "string";
@@ -1088,11 +1088,11 @@ declare const triggers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1088
1088
  };
1089
1089
  dialect: "pg";
1090
1090
  }>;
1091
- declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1091
+ declare const webhookDestinations: drizzle_orm_pg_core1587.PgTableWithColumns<{
1092
1092
  name: "webhook_destinations";
1093
1093
  schema: undefined;
1094
1094
  columns: {
1095
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
1095
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
1096
1096
  name: "created_at";
1097
1097
  tableName: "webhook_destinations";
1098
1098
  dataType: "string";
@@ -1109,7 +1109,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1109
1109
  identity: undefined;
1110
1110
  generated: undefined;
1111
1111
  }, {}, {}>;
1112
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
1112
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
1113
1113
  name: "updated_at";
1114
1114
  tableName: "webhook_destinations";
1115
1115
  dataType: "string";
@@ -1126,7 +1126,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1126
1126
  identity: undefined;
1127
1127
  generated: undefined;
1128
1128
  }, {}, {}>;
1129
- enabled: drizzle_orm_pg_core1992.PgColumn<{
1129
+ enabled: drizzle_orm_pg_core1587.PgColumn<{
1130
1130
  name: "enabled";
1131
1131
  tableName: "webhook_destinations";
1132
1132
  dataType: "boolean";
@@ -1143,7 +1143,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1143
1143
  identity: undefined;
1144
1144
  generated: undefined;
1145
1145
  }, {}, {}>;
1146
- url: drizzle_orm_pg_core1992.PgColumn<{
1146
+ url: drizzle_orm_pg_core1587.PgColumn<{
1147
1147
  name: "url";
1148
1148
  tableName: "webhook_destinations";
1149
1149
  dataType: "string";
@@ -1160,7 +1160,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1160
1160
  identity: undefined;
1161
1161
  generated: undefined;
1162
1162
  }, {}, {}>;
1163
- slackChannelId: drizzle_orm_pg_core1992.PgColumn<{
1163
+ slackChannelId: drizzle_orm_pg_core1587.PgColumn<{
1164
1164
  name: "slack_channel_id";
1165
1165
  tableName: "webhook_destinations";
1166
1166
  dataType: "string";
@@ -1179,7 +1179,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1179
1179
  }, {}, {
1180
1180
  length: 256;
1181
1181
  }>;
1182
- eventTypes: drizzle_orm_pg_core1992.PgColumn<{
1182
+ eventTypes: drizzle_orm_pg_core1587.PgColumn<{
1183
1183
  name: "event_types";
1184
1184
  tableName: "webhook_destinations";
1185
1185
  dataType: "json";
@@ -1198,7 +1198,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1198
1198
  }, {}, {
1199
1199
  $type: string[];
1200
1200
  }>;
1201
- headers: drizzle_orm_pg_core1992.PgColumn<{
1201
+ headers: drizzle_orm_pg_core1587.PgColumn<{
1202
1202
  name: "headers";
1203
1203
  tableName: "webhook_destinations";
1204
1204
  dataType: "json";
@@ -1217,7 +1217,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1217
1217
  }, {}, {
1218
1218
  $type: Record<string, string> | null;
1219
1219
  }>;
1220
- name: drizzle_orm_pg_core1992.PgColumn<{
1220
+ name: drizzle_orm_pg_core1587.PgColumn<{
1221
1221
  name: "name";
1222
1222
  tableName: "webhook_destinations";
1223
1223
  dataType: "string";
@@ -1236,7 +1236,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1236
1236
  }, {}, {
1237
1237
  length: 256;
1238
1238
  }>;
1239
- description: drizzle_orm_pg_core1992.PgColumn<{
1239
+ description: drizzle_orm_pg_core1587.PgColumn<{
1240
1240
  name: "description";
1241
1241
  tableName: "webhook_destinations";
1242
1242
  dataType: "string";
@@ -1253,7 +1253,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1253
1253
  identity: undefined;
1254
1254
  generated: undefined;
1255
1255
  }, {}, {}>;
1256
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1256
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1257
1257
  name: "project_id";
1258
1258
  tableName: "webhook_destinations";
1259
1259
  dataType: "string";
@@ -1272,7 +1272,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1272
1272
  }, {}, {
1273
1273
  length: 256;
1274
1274
  }>;
1275
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1275
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1276
1276
  name: "tenant_id";
1277
1277
  tableName: "webhook_destinations";
1278
1278
  dataType: "string";
@@ -1291,7 +1291,7 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1291
1291
  }, {}, {
1292
1292
  length: 256;
1293
1293
  }>;
1294
- id: drizzle_orm_pg_core1992.PgColumn<{
1294
+ id: drizzle_orm_pg_core1587.PgColumn<{
1295
1295
  name: "id";
1296
1296
  tableName: "webhook_destinations";
1297
1297
  dataType: "string";
@@ -1313,11 +1313,11 @@ declare const webhookDestinations: drizzle_orm_pg_core1992.PgTableWithColumns<{
1313
1313
  };
1314
1314
  dialect: "pg";
1315
1315
  }>;
1316
- declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1316
+ declare const webhookDestinationAgents: drizzle_orm_pg_core1587.PgTableWithColumns<{
1317
1317
  name: "webhook_destination_agents";
1318
1318
  schema: undefined;
1319
1319
  columns: {
1320
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
1320
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
1321
1321
  name: "created_at";
1322
1322
  tableName: "webhook_destination_agents";
1323
1323
  dataType: "string";
@@ -1334,7 +1334,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1334
1334
  identity: undefined;
1335
1335
  generated: undefined;
1336
1336
  }, {}, {}>;
1337
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
1337
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
1338
1338
  name: "updated_at";
1339
1339
  tableName: "webhook_destination_agents";
1340
1340
  dataType: "string";
@@ -1351,7 +1351,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1351
1351
  identity: undefined;
1352
1352
  generated: undefined;
1353
1353
  }, {}, {}>;
1354
- webhookDestinationId: drizzle_orm_pg_core1992.PgColumn<{
1354
+ webhookDestinationId: drizzle_orm_pg_core1587.PgColumn<{
1355
1355
  name: "webhook_destination_id";
1356
1356
  tableName: "webhook_destination_agents";
1357
1357
  dataType: "string";
@@ -1370,7 +1370,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1370
1370
  }, {}, {
1371
1371
  length: 256;
1372
1372
  }>;
1373
- agentId: drizzle_orm_pg_core1992.PgColumn<{
1373
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
1374
1374
  name: "agent_id";
1375
1375
  tableName: "webhook_destination_agents";
1376
1376
  dataType: "string";
@@ -1389,7 +1389,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1389
1389
  }, {}, {
1390
1390
  length: 256;
1391
1391
  }>;
1392
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1392
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1393
1393
  name: "project_id";
1394
1394
  tableName: "webhook_destination_agents";
1395
1395
  dataType: "string";
@@ -1408,7 +1408,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1408
1408
  }, {}, {
1409
1409
  length: 256;
1410
1410
  }>;
1411
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1411
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1412
1412
  name: "tenant_id";
1413
1413
  tableName: "webhook_destination_agents";
1414
1414
  dataType: "string";
@@ -1427,7 +1427,7 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1427
1427
  }, {}, {
1428
1428
  length: 256;
1429
1429
  }>;
1430
- id: drizzle_orm_pg_core1992.PgColumn<{
1430
+ id: drizzle_orm_pg_core1587.PgColumn<{
1431
1431
  name: "id";
1432
1432
  tableName: "webhook_destination_agents";
1433
1433
  dataType: "string";
@@ -1449,20 +1449,20 @@ declare const webhookDestinationAgents: drizzle_orm_pg_core1992.PgTableWithColum
1449
1449
  };
1450
1450
  dialect: "pg";
1451
1451
  }>;
1452
- declare const webhookDestinationsRelations: drizzle_orm95.Relations<"webhook_destinations", {
1453
- project: drizzle_orm95.One<"projects", true>;
1454
- webhookDestinationAgents: drizzle_orm95.Many<"webhook_destination_agents">;
1455
- webhookDestinationEvaluators: drizzle_orm95.Many<"webhook_destination_evaluators">;
1452
+ declare const webhookDestinationsRelations: drizzle_orm62.Relations<"webhook_destinations", {
1453
+ project: drizzle_orm62.One<"projects", true>;
1454
+ webhookDestinationAgents: drizzle_orm62.Many<"webhook_destination_agents">;
1455
+ webhookDestinationEvaluators: drizzle_orm62.Many<"webhook_destination_evaluators">;
1456
1456
  }>;
1457
- declare const webhookDestinationAgentsRelations: drizzle_orm95.Relations<"webhook_destination_agents", {
1458
- webhookDestination: drizzle_orm95.One<"webhook_destinations", true>;
1459
- agent: drizzle_orm95.One<"agent", true>;
1457
+ declare const webhookDestinationAgentsRelations: drizzle_orm62.Relations<"webhook_destination_agents", {
1458
+ webhookDestination: drizzle_orm62.One<"webhook_destinations", true>;
1459
+ agent: drizzle_orm62.One<"agent", true>;
1460
1460
  }>;
1461
- declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithColumns<{
1461
+ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1587.PgTableWithColumns<{
1462
1462
  name: "webhook_destination_evaluators";
1463
1463
  schema: undefined;
1464
1464
  columns: {
1465
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
1465
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
1466
1466
  name: "created_at";
1467
1467
  tableName: "webhook_destination_evaluators";
1468
1468
  dataType: "string";
@@ -1479,7 +1479,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1479
1479
  identity: undefined;
1480
1480
  generated: undefined;
1481
1481
  }, {}, {}>;
1482
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
1482
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
1483
1483
  name: "updated_at";
1484
1484
  tableName: "webhook_destination_evaluators";
1485
1485
  dataType: "string";
@@ -1496,7 +1496,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1496
1496
  identity: undefined;
1497
1497
  generated: undefined;
1498
1498
  }, {}, {}>;
1499
- webhookDestinationId: drizzle_orm_pg_core1992.PgColumn<{
1499
+ webhookDestinationId: drizzle_orm_pg_core1587.PgColumn<{
1500
1500
  name: "webhook_destination_id";
1501
1501
  tableName: "webhook_destination_evaluators";
1502
1502
  dataType: "string";
@@ -1515,7 +1515,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1515
1515
  }, {}, {
1516
1516
  length: 256;
1517
1517
  }>;
1518
- evaluatorId: drizzle_orm_pg_core1992.PgColumn<{
1518
+ evaluatorId: drizzle_orm_pg_core1587.PgColumn<{
1519
1519
  name: "evaluator_id";
1520
1520
  tableName: "webhook_destination_evaluators";
1521
1521
  dataType: "string";
@@ -1534,7 +1534,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1534
1534
  }, {}, {
1535
1535
  length: 256;
1536
1536
  }>;
1537
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1537
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1538
1538
  name: "project_id";
1539
1539
  tableName: "webhook_destination_evaluators";
1540
1540
  dataType: "string";
@@ -1553,7 +1553,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1553
1553
  }, {}, {
1554
1554
  length: 256;
1555
1555
  }>;
1556
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1556
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1557
1557
  name: "tenant_id";
1558
1558
  tableName: "webhook_destination_evaluators";
1559
1559
  dataType: "string";
@@ -1572,7 +1572,7 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1572
1572
  }, {}, {
1573
1573
  length: 256;
1574
1574
  }>;
1575
- id: drizzle_orm_pg_core1992.PgColumn<{
1575
+ id: drizzle_orm_pg_core1587.PgColumn<{
1576
1576
  name: "id";
1577
1577
  tableName: "webhook_destination_evaluators";
1578
1578
  dataType: "string";
@@ -1594,15 +1594,15 @@ declare const webhookDestinationEvaluators: drizzle_orm_pg_core1992.PgTableWithC
1594
1594
  };
1595
1595
  dialect: "pg";
1596
1596
  }>;
1597
- declare const webhookDestinationEvaluatorsRelations: drizzle_orm95.Relations<"webhook_destination_evaluators", {
1598
- webhookDestination: drizzle_orm95.One<"webhook_destinations", true>;
1599
- evaluator: drizzle_orm95.One<"evaluator", true>;
1597
+ declare const webhookDestinationEvaluatorsRelations: drizzle_orm62.Relations<"webhook_destination_evaluators", {
1598
+ webhookDestination: drizzle_orm62.One<"webhook_destinations", true>;
1599
+ evaluator: drizzle_orm62.One<"evaluator", true>;
1600
1600
  }>;
1601
- declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1601
+ declare const triggerUsers: drizzle_orm_pg_core1587.PgTableWithColumns<{
1602
1602
  name: "trigger_users";
1603
1603
  schema: undefined;
1604
1604
  columns: {
1605
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1605
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1606
1606
  name: "tenant_id";
1607
1607
  tableName: "trigger_users";
1608
1608
  dataType: "string";
@@ -1621,7 +1621,7 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1621
1621
  }, {}, {
1622
1622
  length: 256;
1623
1623
  }>;
1624
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1624
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1625
1625
  name: "project_id";
1626
1626
  tableName: "trigger_users";
1627
1627
  dataType: "string";
@@ -1640,7 +1640,7 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1640
1640
  }, {}, {
1641
1641
  length: 256;
1642
1642
  }>;
1643
- agentId: drizzle_orm_pg_core1992.PgColumn<{
1643
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
1644
1644
  name: "agent_id";
1645
1645
  tableName: "trigger_users";
1646
1646
  dataType: "string";
@@ -1659,7 +1659,7 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1659
1659
  }, {}, {
1660
1660
  length: 256;
1661
1661
  }>;
1662
- triggerId: drizzle_orm_pg_core1992.PgColumn<{
1662
+ triggerId: drizzle_orm_pg_core1587.PgColumn<{
1663
1663
  name: "trigger_id";
1664
1664
  tableName: "trigger_users";
1665
1665
  dataType: "string";
@@ -1678,7 +1678,7 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1678
1678
  }, {}, {
1679
1679
  length: 256;
1680
1680
  }>;
1681
- userId: drizzle_orm_pg_core1992.PgColumn<{
1681
+ userId: drizzle_orm_pg_core1587.PgColumn<{
1682
1682
  name: "user_id";
1683
1683
  tableName: "trigger_users";
1684
1684
  dataType: "string";
@@ -1697,7 +1697,7 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1697
1697
  }, {}, {
1698
1698
  length: 256;
1699
1699
  }>;
1700
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
1700
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
1701
1701
  name: "created_at";
1702
1702
  tableName: "trigger_users";
1703
1703
  dataType: "string";
@@ -1717,11 +1717,11 @@ declare const triggerUsers: drizzle_orm_pg_core1992.PgTableWithColumns<{
1717
1717
  };
1718
1718
  dialect: "pg";
1719
1719
  }>;
1720
- declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1720
+ declare const subAgents: drizzle_orm_pg_core1587.PgTableWithColumns<{
1721
1721
  name: "sub_agents";
1722
1722
  schema: undefined;
1723
1723
  columns: {
1724
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
1724
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
1725
1725
  name: "created_at";
1726
1726
  tableName: "sub_agents";
1727
1727
  dataType: "string";
@@ -1738,7 +1738,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1738
1738
  identity: undefined;
1739
1739
  generated: undefined;
1740
1740
  }, {}, {}>;
1741
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
1741
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
1742
1742
  name: "updated_at";
1743
1743
  tableName: "sub_agents";
1744
1744
  dataType: "string";
@@ -1755,7 +1755,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1755
1755
  identity: undefined;
1756
1756
  generated: undefined;
1757
1757
  }, {}, {}>;
1758
- prompt: drizzle_orm_pg_core1992.PgColumn<{
1758
+ prompt: drizzle_orm_pg_core1587.PgColumn<{
1759
1759
  name: "prompt";
1760
1760
  tableName: "sub_agents";
1761
1761
  dataType: "string";
@@ -1772,7 +1772,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1772
1772
  identity: undefined;
1773
1773
  generated: undefined;
1774
1774
  }, {}, {}>;
1775
- conversationHistoryConfig: drizzle_orm_pg_core1992.PgColumn<{
1775
+ conversationHistoryConfig: drizzle_orm_pg_core1587.PgColumn<{
1776
1776
  name: "conversation_history_config";
1777
1777
  tableName: "sub_agents";
1778
1778
  dataType: "json";
@@ -1791,7 +1791,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1791
1791
  }, {}, {
1792
1792
  $type: ConversationHistoryConfig;
1793
1793
  }>;
1794
- models: drizzle_orm_pg_core1992.PgColumn<{
1794
+ models: drizzle_orm_pg_core1587.PgColumn<{
1795
1795
  name: "models";
1796
1796
  tableName: "sub_agents";
1797
1797
  dataType: "json";
@@ -1848,7 +1848,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1848
1848
  } | undefined;
1849
1849
  };
1850
1850
  }>;
1851
- stopWhen: drizzle_orm_pg_core1992.PgColumn<{
1851
+ stopWhen: drizzle_orm_pg_core1587.PgColumn<{
1852
1852
  name: "stop_when";
1853
1853
  tableName: "sub_agents";
1854
1854
  dataType: "json";
@@ -1871,7 +1871,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1871
1871
  stepCountIs?: number | undefined;
1872
1872
  };
1873
1873
  }>;
1874
- outputContract: drizzle_orm_pg_core1992.PgColumn<{
1874
+ outputContract: drizzle_orm_pg_core1587.PgColumn<{
1875
1875
  name: "output_contract";
1876
1876
  tableName: "sub_agents";
1877
1877
  dataType: "json";
@@ -1906,7 +1906,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1906
1906
  retryBudget?: number | undefined;
1907
1907
  };
1908
1908
  }>;
1909
- name: drizzle_orm_pg_core1992.PgColumn<{
1909
+ name: drizzle_orm_pg_core1587.PgColumn<{
1910
1910
  name: "name";
1911
1911
  tableName: "sub_agents";
1912
1912
  dataType: "string";
@@ -1925,7 +1925,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1925
1925
  }, {}, {
1926
1926
  length: 256;
1927
1927
  }>;
1928
- description: drizzle_orm_pg_core1992.PgColumn<{
1928
+ description: drizzle_orm_pg_core1587.PgColumn<{
1929
1929
  name: "description";
1930
1930
  tableName: "sub_agents";
1931
1931
  dataType: "string";
@@ -1942,7 +1942,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1942
1942
  identity: undefined;
1943
1943
  generated: undefined;
1944
1944
  }, {}, {}>;
1945
- agentId: drizzle_orm_pg_core1992.PgColumn<{
1945
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
1946
1946
  name: "agent_id";
1947
1947
  tableName: "sub_agents";
1948
1948
  dataType: "string";
@@ -1961,7 +1961,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1961
1961
  }, {}, {
1962
1962
  length: 256;
1963
1963
  }>;
1964
- projectId: drizzle_orm_pg_core1992.PgColumn<{
1964
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
1965
1965
  name: "project_id";
1966
1966
  tableName: "sub_agents";
1967
1967
  dataType: "string";
@@ -1980,7 +1980,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1980
1980
  }, {}, {
1981
1981
  length: 256;
1982
1982
  }>;
1983
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
1983
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
1984
1984
  name: "tenant_id";
1985
1985
  tableName: "sub_agents";
1986
1986
  dataType: "string";
@@ -1999,7 +1999,7 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
1999
1999
  }, {}, {
2000
2000
  length: 256;
2001
2001
  }>;
2002
- id: drizzle_orm_pg_core1992.PgColumn<{
2002
+ id: drizzle_orm_pg_core1587.PgColumn<{
2003
2003
  name: "id";
2004
2004
  tableName: "sub_agents";
2005
2005
  dataType: "string";
@@ -2021,11 +2021,11 @@ declare const subAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2021
2021
  };
2022
2022
  dialect: "pg";
2023
2023
  }>;
2024
- declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2024
+ declare const skills: drizzle_orm_pg_core1587.PgTableWithColumns<{
2025
2025
  name: "skills";
2026
2026
  schema: undefined;
2027
2027
  columns: {
2028
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2028
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2029
2029
  name: "created_at";
2030
2030
  tableName: "skills";
2031
2031
  dataType: "string";
@@ -2042,7 +2042,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2042
2042
  identity: undefined;
2043
2043
  generated: undefined;
2044
2044
  }, {}, {}>;
2045
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2045
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2046
2046
  name: "updated_at";
2047
2047
  tableName: "skills";
2048
2048
  dataType: "string";
@@ -2059,7 +2059,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2059
2059
  identity: undefined;
2060
2060
  generated: undefined;
2061
2061
  }, {}, {}>;
2062
- id: drizzle_orm_pg_core1992.PgColumn<{
2062
+ id: drizzle_orm_pg_core1587.PgColumn<{
2063
2063
  name: "id";
2064
2064
  tableName: "skills";
2065
2065
  dataType: "string";
@@ -2078,7 +2078,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2078
2078
  }, {}, {
2079
2079
  length: 64;
2080
2080
  }>;
2081
- name: drizzle_orm_pg_core1992.PgColumn<{
2081
+ name: drizzle_orm_pg_core1587.PgColumn<{
2082
2082
  name: "name";
2083
2083
  tableName: "skills";
2084
2084
  dataType: "string";
@@ -2097,7 +2097,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2097
2097
  }, {}, {
2098
2098
  length: 64;
2099
2099
  }>;
2100
- description: drizzle_orm_pg_core1992.PgColumn<{
2100
+ description: drizzle_orm_pg_core1587.PgColumn<{
2101
2101
  name: "description";
2102
2102
  tableName: "skills";
2103
2103
  dataType: "string";
@@ -2114,7 +2114,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2114
2114
  identity: undefined;
2115
2115
  generated: undefined;
2116
2116
  }, {}, {}>;
2117
- content: drizzle_orm_pg_core1992.PgColumn<{
2117
+ content: drizzle_orm_pg_core1587.PgColumn<{
2118
2118
  name: "content";
2119
2119
  tableName: "skills";
2120
2120
  dataType: "string";
@@ -2131,7 +2131,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2131
2131
  identity: undefined;
2132
2132
  generated: undefined;
2133
2133
  }, {}, {}>;
2134
- metadata: drizzle_orm_pg_core1992.PgColumn<{
2134
+ metadata: drizzle_orm_pg_core1587.PgColumn<{
2135
2135
  name: "metadata";
2136
2136
  tableName: "skills";
2137
2137
  dataType: "json";
@@ -2150,7 +2150,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2150
2150
  }, {}, {
2151
2151
  $type: Record<string, string> | null;
2152
2152
  }>;
2153
- projectId: drizzle_orm_pg_core1992.PgColumn<{
2153
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
2154
2154
  name: "project_id";
2155
2155
  tableName: "skills";
2156
2156
  dataType: "string";
@@ -2169,7 +2169,7 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2169
2169
  }, {}, {
2170
2170
  length: 256;
2171
2171
  }>;
2172
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
2172
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
2173
2173
  name: "tenant_id";
2174
2174
  tableName: "skills";
2175
2175
  dataType: "string";
@@ -2191,11 +2191,11 @@ declare const skills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2191
2191
  };
2192
2192
  dialect: "pg";
2193
2193
  }>;
2194
- declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2194
+ declare const skillFiles: drizzle_orm_pg_core1587.PgTableWithColumns<{
2195
2195
  name: "skill_files";
2196
2196
  schema: undefined;
2197
2197
  columns: {
2198
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2198
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2199
2199
  name: "created_at";
2200
2200
  tableName: "skill_files";
2201
2201
  dataType: "string";
@@ -2212,7 +2212,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2212
2212
  identity: undefined;
2213
2213
  generated: undefined;
2214
2214
  }, {}, {}>;
2215
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2215
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2216
2216
  name: "updated_at";
2217
2217
  tableName: "skill_files";
2218
2218
  dataType: "string";
@@ -2229,7 +2229,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2229
2229
  identity: undefined;
2230
2230
  generated: undefined;
2231
2231
  }, {}, {}>;
2232
- skillId: drizzle_orm_pg_core1992.PgColumn<{
2232
+ skillId: drizzle_orm_pg_core1587.PgColumn<{
2233
2233
  name: "skill_id";
2234
2234
  tableName: "skill_files";
2235
2235
  dataType: "string";
@@ -2248,7 +2248,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2248
2248
  }, {}, {
2249
2249
  length: 64;
2250
2250
  }>;
2251
- filePath: drizzle_orm_pg_core1992.PgColumn<{
2251
+ filePath: drizzle_orm_pg_core1587.PgColumn<{
2252
2252
  name: "file_path";
2253
2253
  tableName: "skill_files";
2254
2254
  dataType: "string";
@@ -2267,7 +2267,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2267
2267
  }, {}, {
2268
2268
  length: 1024;
2269
2269
  }>;
2270
- content: drizzle_orm_pg_core1992.PgColumn<{
2270
+ content: drizzle_orm_pg_core1587.PgColumn<{
2271
2271
  name: "content";
2272
2272
  tableName: "skill_files";
2273
2273
  dataType: "string";
@@ -2284,7 +2284,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2284
2284
  identity: undefined;
2285
2285
  generated: undefined;
2286
2286
  }, {}, {}>;
2287
- projectId: drizzle_orm_pg_core1992.PgColumn<{
2287
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
2288
2288
  name: "project_id";
2289
2289
  tableName: "skill_files";
2290
2290
  dataType: "string";
@@ -2303,7 +2303,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2303
2303
  }, {}, {
2304
2304
  length: 256;
2305
2305
  }>;
2306
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
2306
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
2307
2307
  name: "tenant_id";
2308
2308
  tableName: "skill_files";
2309
2309
  dataType: "string";
@@ -2322,7 +2322,7 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2322
2322
  }, {}, {
2323
2323
  length: 256;
2324
2324
  }>;
2325
- id: drizzle_orm_pg_core1992.PgColumn<{
2325
+ id: drizzle_orm_pg_core1587.PgColumn<{
2326
2326
  name: "id";
2327
2327
  tableName: "skill_files";
2328
2328
  dataType: "string";
@@ -2344,11 +2344,11 @@ declare const skillFiles: drizzle_orm_pg_core1992.PgTableWithColumns<{
2344
2344
  };
2345
2345
  dialect: "pg";
2346
2346
  }>;
2347
- declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2347
+ declare const subAgentSkills: drizzle_orm_pg_core1587.PgTableWithColumns<{
2348
2348
  name: "sub_agent_skills";
2349
2349
  schema: undefined;
2350
2350
  columns: {
2351
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2351
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2352
2352
  name: "created_at";
2353
2353
  tableName: "sub_agent_skills";
2354
2354
  dataType: "string";
@@ -2365,7 +2365,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2365
2365
  identity: undefined;
2366
2366
  generated: undefined;
2367
2367
  }, {}, {}>;
2368
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2368
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2369
2369
  name: "updated_at";
2370
2370
  tableName: "sub_agent_skills";
2371
2371
  dataType: "string";
@@ -2382,7 +2382,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2382
2382
  identity: undefined;
2383
2383
  generated: undefined;
2384
2384
  }, {}, {}>;
2385
- skillId: drizzle_orm_pg_core1992.PgColumn<{
2385
+ skillId: drizzle_orm_pg_core1587.PgColumn<{
2386
2386
  name: "skill_id";
2387
2387
  tableName: "sub_agent_skills";
2388
2388
  dataType: "string";
@@ -2401,7 +2401,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2401
2401
  }, {}, {
2402
2402
  length: 64;
2403
2403
  }>;
2404
- index: drizzle_orm_pg_core1992.PgColumn<{
2404
+ index: drizzle_orm_pg_core1587.PgColumn<{
2405
2405
  name: "index";
2406
2406
  tableName: "sub_agent_skills";
2407
2407
  dataType: "number";
@@ -2418,7 +2418,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2418
2418
  identity: undefined;
2419
2419
  generated: undefined;
2420
2420
  }, {}, {}>;
2421
- alwaysLoaded: drizzle_orm_pg_core1992.PgColumn<{
2421
+ alwaysLoaded: drizzle_orm_pg_core1587.PgColumn<{
2422
2422
  name: "always_loaded";
2423
2423
  tableName: "sub_agent_skills";
2424
2424
  dataType: "boolean";
@@ -2435,7 +2435,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2435
2435
  identity: undefined;
2436
2436
  generated: undefined;
2437
2437
  }, {}, {}>;
2438
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
2438
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
2439
2439
  name: "sub_agent_id";
2440
2440
  tableName: "sub_agent_skills";
2441
2441
  dataType: "string";
@@ -2454,7 +2454,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2454
2454
  }, {}, {
2455
2455
  length: 256;
2456
2456
  }>;
2457
- agentId: drizzle_orm_pg_core1992.PgColumn<{
2457
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
2458
2458
  name: "agent_id";
2459
2459
  tableName: "sub_agent_skills";
2460
2460
  dataType: "string";
@@ -2473,7 +2473,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2473
2473
  }, {}, {
2474
2474
  length: 256;
2475
2475
  }>;
2476
- projectId: drizzle_orm_pg_core1992.PgColumn<{
2476
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
2477
2477
  name: "project_id";
2478
2478
  tableName: "sub_agent_skills";
2479
2479
  dataType: "string";
@@ -2492,7 +2492,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2492
2492
  }, {}, {
2493
2493
  length: 256;
2494
2494
  }>;
2495
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
2495
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
2496
2496
  name: "tenant_id";
2497
2497
  tableName: "sub_agent_skills";
2498
2498
  dataType: "string";
@@ -2511,7 +2511,7 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2511
2511
  }, {}, {
2512
2512
  length: 256;
2513
2513
  }>;
2514
- id: drizzle_orm_pg_core1992.PgColumn<{
2514
+ id: drizzle_orm_pg_core1587.PgColumn<{
2515
2515
  name: "id";
2516
2516
  tableName: "sub_agent_skills";
2517
2517
  dataType: "string";
@@ -2533,11 +2533,11 @@ declare const subAgentSkills: drizzle_orm_pg_core1992.PgTableWithColumns<{
2533
2533
  };
2534
2534
  dialect: "pg";
2535
2535
  }>;
2536
- declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2536
+ declare const subAgentRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
2537
2537
  name: "sub_agent_relations";
2538
2538
  schema: undefined;
2539
2539
  columns: {
2540
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2540
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2541
2541
  name: "created_at";
2542
2542
  tableName: "sub_agent_relations";
2543
2543
  dataType: "string";
@@ -2554,7 +2554,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2554
2554
  identity: undefined;
2555
2555
  generated: undefined;
2556
2556
  }, {}, {}>;
2557
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2557
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2558
2558
  name: "updated_at";
2559
2559
  tableName: "sub_agent_relations";
2560
2560
  dataType: "string";
@@ -2571,7 +2571,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2571
2571
  identity: undefined;
2572
2572
  generated: undefined;
2573
2573
  }, {}, {}>;
2574
- sourceSubAgentId: drizzle_orm_pg_core1992.PgColumn<{
2574
+ sourceSubAgentId: drizzle_orm_pg_core1587.PgColumn<{
2575
2575
  name: "source_sub_agent_id";
2576
2576
  tableName: "sub_agent_relations";
2577
2577
  dataType: "string";
@@ -2590,7 +2590,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2590
2590
  }, {}, {
2591
2591
  length: 256;
2592
2592
  }>;
2593
- targetSubAgentId: drizzle_orm_pg_core1992.PgColumn<{
2593
+ targetSubAgentId: drizzle_orm_pg_core1587.PgColumn<{
2594
2594
  name: "target_sub_agent_id";
2595
2595
  tableName: "sub_agent_relations";
2596
2596
  dataType: "string";
@@ -2609,7 +2609,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2609
2609
  }, {}, {
2610
2610
  length: 256;
2611
2611
  }>;
2612
- relationType: drizzle_orm_pg_core1992.PgColumn<{
2612
+ relationType: drizzle_orm_pg_core1587.PgColumn<{
2613
2613
  name: "relation_type";
2614
2614
  tableName: "sub_agent_relations";
2615
2615
  dataType: "string";
@@ -2628,7 +2628,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2628
2628
  }, {}, {
2629
2629
  length: 256;
2630
2630
  }>;
2631
- agentId: drizzle_orm_pg_core1992.PgColumn<{
2631
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
2632
2632
  name: "agent_id";
2633
2633
  tableName: "sub_agent_relations";
2634
2634
  dataType: "string";
@@ -2647,7 +2647,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2647
2647
  }, {}, {
2648
2648
  length: 256;
2649
2649
  }>;
2650
- projectId: drizzle_orm_pg_core1992.PgColumn<{
2650
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
2651
2651
  name: "project_id";
2652
2652
  tableName: "sub_agent_relations";
2653
2653
  dataType: "string";
@@ -2666,7 +2666,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2666
2666
  }, {}, {
2667
2667
  length: 256;
2668
2668
  }>;
2669
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
2669
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
2670
2670
  name: "tenant_id";
2671
2671
  tableName: "sub_agent_relations";
2672
2672
  dataType: "string";
@@ -2685,7 +2685,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2685
2685
  }, {}, {
2686
2686
  length: 256;
2687
2687
  }>;
2688
- id: drizzle_orm_pg_core1992.PgColumn<{
2688
+ id: drizzle_orm_pg_core1587.PgColumn<{
2689
2689
  name: "id";
2690
2690
  tableName: "sub_agent_relations";
2691
2691
  dataType: "string";
@@ -2707,11 +2707,11 @@ declare const subAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
2707
2707
  };
2708
2708
  dialect: "pg";
2709
2709
  }>;
2710
- declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2710
+ declare const externalAgents: drizzle_orm_pg_core1587.PgTableWithColumns<{
2711
2711
  name: "external_agents";
2712
2712
  schema: undefined;
2713
2713
  columns: {
2714
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2714
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2715
2715
  name: "created_at";
2716
2716
  tableName: "external_agents";
2717
2717
  dataType: "string";
@@ -2728,7 +2728,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2728
2728
  identity: undefined;
2729
2729
  generated: undefined;
2730
2730
  }, {}, {}>;
2731
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2731
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2732
2732
  name: "updated_at";
2733
2733
  tableName: "external_agents";
2734
2734
  dataType: "string";
@@ -2745,7 +2745,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2745
2745
  identity: undefined;
2746
2746
  generated: undefined;
2747
2747
  }, {}, {}>;
2748
- baseUrl: drizzle_orm_pg_core1992.PgColumn<{
2748
+ baseUrl: drizzle_orm_pg_core1587.PgColumn<{
2749
2749
  name: "base_url";
2750
2750
  tableName: "external_agents";
2751
2751
  dataType: "string";
@@ -2762,7 +2762,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2762
2762
  identity: undefined;
2763
2763
  generated: undefined;
2764
2764
  }, {}, {}>;
2765
- credentialReferenceId: drizzle_orm_pg_core1992.PgColumn<{
2765
+ credentialReferenceId: drizzle_orm_pg_core1587.PgColumn<{
2766
2766
  name: "credential_reference_id";
2767
2767
  tableName: "external_agents";
2768
2768
  dataType: "string";
@@ -2781,7 +2781,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2781
2781
  }, {}, {
2782
2782
  length: 256;
2783
2783
  }>;
2784
- name: drizzle_orm_pg_core1992.PgColumn<{
2784
+ name: drizzle_orm_pg_core1587.PgColumn<{
2785
2785
  name: "name";
2786
2786
  tableName: "external_agents";
2787
2787
  dataType: "string";
@@ -2800,7 +2800,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2800
2800
  }, {}, {
2801
2801
  length: 256;
2802
2802
  }>;
2803
- description: drizzle_orm_pg_core1992.PgColumn<{
2803
+ description: drizzle_orm_pg_core1587.PgColumn<{
2804
2804
  name: "description";
2805
2805
  tableName: "external_agents";
2806
2806
  dataType: "string";
@@ -2817,7 +2817,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2817
2817
  identity: undefined;
2818
2818
  generated: undefined;
2819
2819
  }, {}, {}>;
2820
- projectId: drizzle_orm_pg_core1992.PgColumn<{
2820
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
2821
2821
  name: "project_id";
2822
2822
  tableName: "external_agents";
2823
2823
  dataType: "string";
@@ -2836,7 +2836,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2836
2836
  }, {}, {
2837
2837
  length: 256;
2838
2838
  }>;
2839
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
2839
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
2840
2840
  name: "tenant_id";
2841
2841
  tableName: "external_agents";
2842
2842
  dataType: "string";
@@ -2855,7 +2855,7 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2855
2855
  }, {}, {
2856
2856
  length: 256;
2857
2857
  }>;
2858
- id: drizzle_orm_pg_core1992.PgColumn<{
2858
+ id: drizzle_orm_pg_core1587.PgColumn<{
2859
2859
  name: "id";
2860
2860
  tableName: "external_agents";
2861
2861
  dataType: "string";
@@ -2877,11 +2877,11 @@ declare const externalAgents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2877
2877
  };
2878
2878
  dialect: "pg";
2879
2879
  }>;
2880
- declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2880
+ declare const dataComponents: drizzle_orm_pg_core1587.PgTableWithColumns<{
2881
2881
  name: "data_components";
2882
2882
  schema: undefined;
2883
2883
  columns: {
2884
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
2884
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
2885
2885
  name: "created_at";
2886
2886
  tableName: "data_components";
2887
2887
  dataType: "string";
@@ -2898,7 +2898,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2898
2898
  identity: undefined;
2899
2899
  generated: undefined;
2900
2900
  }, {}, {}>;
2901
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
2901
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
2902
2902
  name: "updated_at";
2903
2903
  tableName: "data_components";
2904
2904
  dataType: "string";
@@ -2915,7 +2915,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2915
2915
  identity: undefined;
2916
2916
  generated: undefined;
2917
2917
  }, {}, {}>;
2918
- props: drizzle_orm_pg_core1992.PgColumn<{
2918
+ props: drizzle_orm_pg_core1587.PgColumn<{
2919
2919
  name: "props";
2920
2920
  tableName: "data_components";
2921
2921
  dataType: "json";
@@ -2948,7 +2948,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2948
2948
  description?: string | undefined;
2949
2949
  };
2950
2950
  }>;
2951
- render: drizzle_orm_pg_core1992.PgColumn<{
2951
+ render: drizzle_orm_pg_core1587.PgColumn<{
2952
2952
  name: "render";
2953
2953
  tableName: "data_components";
2954
2954
  dataType: "json";
@@ -2973,7 +2973,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2973
2973
  mockData: Record<string, unknown>;
2974
2974
  };
2975
2975
  }>;
2976
- name: drizzle_orm_pg_core1992.PgColumn<{
2976
+ name: drizzle_orm_pg_core1587.PgColumn<{
2977
2977
  name: "name";
2978
2978
  tableName: "data_components";
2979
2979
  dataType: "string";
@@ -2992,7 +2992,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
2992
2992
  }, {}, {
2993
2993
  length: 256;
2994
2994
  }>;
2995
- description: drizzle_orm_pg_core1992.PgColumn<{
2995
+ description: drizzle_orm_pg_core1587.PgColumn<{
2996
2996
  name: "description";
2997
2997
  tableName: "data_components";
2998
2998
  dataType: "string";
@@ -3009,7 +3009,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3009
3009
  identity: undefined;
3010
3010
  generated: undefined;
3011
3011
  }, {}, {}>;
3012
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3012
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3013
3013
  name: "project_id";
3014
3014
  tableName: "data_components";
3015
3015
  dataType: "string";
@@ -3028,7 +3028,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3028
3028
  }, {}, {
3029
3029
  length: 256;
3030
3030
  }>;
3031
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3031
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3032
3032
  name: "tenant_id";
3033
3033
  tableName: "data_components";
3034
3034
  dataType: "string";
@@ -3047,7 +3047,7 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3047
3047
  }, {}, {
3048
3048
  length: 256;
3049
3049
  }>;
3050
- id: drizzle_orm_pg_core1992.PgColumn<{
3050
+ id: drizzle_orm_pg_core1587.PgColumn<{
3051
3051
  name: "id";
3052
3052
  tableName: "data_components";
3053
3053
  dataType: "string";
@@ -3069,11 +3069,11 @@ declare const dataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3069
3069
  };
3070
3070
  dialect: "pg";
3071
3071
  }>;
3072
- declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3072
+ declare const subAgentDataComponents: drizzle_orm_pg_core1587.PgTableWithColumns<{
3073
3073
  name: "sub_agent_data_components";
3074
3074
  schema: undefined;
3075
3075
  columns: {
3076
- dataComponentId: drizzle_orm_pg_core1992.PgColumn<{
3076
+ dataComponentId: drizzle_orm_pg_core1587.PgColumn<{
3077
3077
  name: "data_component_id";
3078
3078
  tableName: "sub_agent_data_components";
3079
3079
  dataType: "string";
@@ -3092,7 +3092,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3092
3092
  }, {}, {
3093
3093
  length: 256;
3094
3094
  }>;
3095
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
3095
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
3096
3096
  name: "created_at";
3097
3097
  tableName: "sub_agent_data_components";
3098
3098
  dataType: "string";
@@ -3109,7 +3109,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3109
3109
  identity: undefined;
3110
3110
  generated: undefined;
3111
3111
  }, {}, {}>;
3112
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
3112
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
3113
3113
  name: "sub_agent_id";
3114
3114
  tableName: "sub_agent_data_components";
3115
3115
  dataType: "string";
@@ -3128,7 +3128,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3128
3128
  }, {}, {
3129
3129
  length: 256;
3130
3130
  }>;
3131
- agentId: drizzle_orm_pg_core1992.PgColumn<{
3131
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
3132
3132
  name: "agent_id";
3133
3133
  tableName: "sub_agent_data_components";
3134
3134
  dataType: "string";
@@ -3147,7 +3147,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3147
3147
  }, {}, {
3148
3148
  length: 256;
3149
3149
  }>;
3150
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3150
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3151
3151
  name: "project_id";
3152
3152
  tableName: "sub_agent_data_components";
3153
3153
  dataType: "string";
@@ -3166,7 +3166,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3166
3166
  }, {}, {
3167
3167
  length: 256;
3168
3168
  }>;
3169
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3169
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3170
3170
  name: "tenant_id";
3171
3171
  tableName: "sub_agent_data_components";
3172
3172
  dataType: "string";
@@ -3185,7 +3185,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3185
3185
  }, {}, {
3186
3186
  length: 256;
3187
3187
  }>;
3188
- id: drizzle_orm_pg_core1992.PgColumn<{
3188
+ id: drizzle_orm_pg_core1587.PgColumn<{
3189
3189
  name: "id";
3190
3190
  tableName: "sub_agent_data_components";
3191
3191
  dataType: "string";
@@ -3207,11 +3207,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1992.PgTableWithColumns
3207
3207
  };
3208
3208
  dialect: "pg";
3209
3209
  }>;
3210
- declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3210
+ declare const artifactComponents: drizzle_orm_pg_core1587.PgTableWithColumns<{
3211
3211
  name: "artifact_components";
3212
3212
  schema: undefined;
3213
3213
  columns: {
3214
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
3214
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
3215
3215
  name: "created_at";
3216
3216
  tableName: "artifact_components";
3217
3217
  dataType: "string";
@@ -3228,7 +3228,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3228
3228
  identity: undefined;
3229
3229
  generated: undefined;
3230
3230
  }, {}, {}>;
3231
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
3231
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
3232
3232
  name: "updated_at";
3233
3233
  tableName: "artifact_components";
3234
3234
  dataType: "string";
@@ -3245,7 +3245,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3245
3245
  identity: undefined;
3246
3246
  generated: undefined;
3247
3247
  }, {}, {}>;
3248
- props: drizzle_orm_pg_core1992.PgColumn<{
3248
+ props: drizzle_orm_pg_core1587.PgColumn<{
3249
3249
  name: "props";
3250
3250
  tableName: "artifact_components";
3251
3251
  dataType: "json";
@@ -3278,7 +3278,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3278
3278
  description?: string | undefined;
3279
3279
  };
3280
3280
  }>;
3281
- render: drizzle_orm_pg_core1992.PgColumn<{
3281
+ render: drizzle_orm_pg_core1587.PgColumn<{
3282
3282
  name: "render";
3283
3283
  tableName: "artifact_components";
3284
3284
  dataType: "json";
@@ -3303,7 +3303,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3303
3303
  mockData: Record<string, unknown>;
3304
3304
  };
3305
3305
  }>;
3306
- name: drizzle_orm_pg_core1992.PgColumn<{
3306
+ name: drizzle_orm_pg_core1587.PgColumn<{
3307
3307
  name: "name";
3308
3308
  tableName: "artifact_components";
3309
3309
  dataType: "string";
@@ -3322,7 +3322,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3322
3322
  }, {}, {
3323
3323
  length: 256;
3324
3324
  }>;
3325
- description: drizzle_orm_pg_core1992.PgColumn<{
3325
+ description: drizzle_orm_pg_core1587.PgColumn<{
3326
3326
  name: "description";
3327
3327
  tableName: "artifact_components";
3328
3328
  dataType: "string";
@@ -3339,7 +3339,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3339
3339
  identity: undefined;
3340
3340
  generated: undefined;
3341
3341
  }, {}, {}>;
3342
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3342
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3343
3343
  name: "project_id";
3344
3344
  tableName: "artifact_components";
3345
3345
  dataType: "string";
@@ -3358,7 +3358,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3358
3358
  }, {}, {
3359
3359
  length: 256;
3360
3360
  }>;
3361
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3361
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3362
3362
  name: "tenant_id";
3363
3363
  tableName: "artifact_components";
3364
3364
  dataType: "string";
@@ -3377,7 +3377,7 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3377
3377
  }, {}, {
3378
3378
  length: 256;
3379
3379
  }>;
3380
- id: drizzle_orm_pg_core1992.PgColumn<{
3380
+ id: drizzle_orm_pg_core1587.PgColumn<{
3381
3381
  name: "id";
3382
3382
  tableName: "artifact_components";
3383
3383
  dataType: "string";
@@ -3399,11 +3399,11 @@ declare const artifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3399
3399
  };
3400
3400
  dialect: "pg";
3401
3401
  }>;
3402
- declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithColumns<{
3402
+ declare const subAgentArtifactComponents: drizzle_orm_pg_core1587.PgTableWithColumns<{
3403
3403
  name: "sub_agent_artifact_components";
3404
3404
  schema: undefined;
3405
3405
  columns: {
3406
- artifactComponentId: drizzle_orm_pg_core1992.PgColumn<{
3406
+ artifactComponentId: drizzle_orm_pg_core1587.PgColumn<{
3407
3407
  name: "artifact_component_id";
3408
3408
  tableName: "sub_agent_artifact_components";
3409
3409
  dataType: "string";
@@ -3422,7 +3422,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3422
3422
  }, {}, {
3423
3423
  length: 256;
3424
3424
  }>;
3425
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
3425
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
3426
3426
  name: "created_at";
3427
3427
  tableName: "sub_agent_artifact_components";
3428
3428
  dataType: "string";
@@ -3439,7 +3439,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3439
3439
  identity: undefined;
3440
3440
  generated: undefined;
3441
3441
  }, {}, {}>;
3442
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
3442
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
3443
3443
  name: "sub_agent_id";
3444
3444
  tableName: "sub_agent_artifact_components";
3445
3445
  dataType: "string";
@@ -3458,7 +3458,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3458
3458
  }, {}, {
3459
3459
  length: 256;
3460
3460
  }>;
3461
- agentId: drizzle_orm_pg_core1992.PgColumn<{
3461
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
3462
3462
  name: "agent_id";
3463
3463
  tableName: "sub_agent_artifact_components";
3464
3464
  dataType: "string";
@@ -3477,7 +3477,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3477
3477
  }, {}, {
3478
3478
  length: 256;
3479
3479
  }>;
3480
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3480
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3481
3481
  name: "project_id";
3482
3482
  tableName: "sub_agent_artifact_components";
3483
3483
  dataType: "string";
@@ -3496,7 +3496,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3496
3496
  }, {}, {
3497
3497
  length: 256;
3498
3498
  }>;
3499
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3499
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3500
3500
  name: "tenant_id";
3501
3501
  tableName: "sub_agent_artifact_components";
3502
3502
  dataType: "string";
@@ -3515,7 +3515,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3515
3515
  }, {}, {
3516
3516
  length: 256;
3517
3517
  }>;
3518
- id: drizzle_orm_pg_core1992.PgColumn<{
3518
+ id: drizzle_orm_pg_core1587.PgColumn<{
3519
3519
  name: "id";
3520
3520
  tableName: "sub_agent_artifact_components";
3521
3521
  dataType: "string";
@@ -3537,11 +3537,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1992.PgTableWithCol
3537
3537
  };
3538
3538
  dialect: "pg";
3539
3539
  }>;
3540
- declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3540
+ declare const tools: drizzle_orm_pg_core1587.PgTableWithColumns<{
3541
3541
  name: "tools";
3542
3542
  schema: undefined;
3543
3543
  columns: {
3544
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
3544
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
3545
3545
  name: "created_at";
3546
3546
  tableName: "tools";
3547
3547
  dataType: "string";
@@ -3558,7 +3558,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3558
3558
  identity: undefined;
3559
3559
  generated: undefined;
3560
3560
  }, {}, {}>;
3561
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
3561
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
3562
3562
  name: "updated_at";
3563
3563
  tableName: "tools";
3564
3564
  dataType: "string";
@@ -3575,7 +3575,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3575
3575
  identity: undefined;
3576
3576
  generated: undefined;
3577
3577
  }, {}, {}>;
3578
- config: drizzle_orm_pg_core1992.PgColumn<{
3578
+ config: drizzle_orm_pg_core1587.PgColumn<{
3579
3579
  name: "config";
3580
3580
  tableName: "tools";
3581
3581
  dataType: "json";
@@ -3600,7 +3600,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3600
3600
  mcp: ToolMcpConfig;
3601
3601
  };
3602
3602
  }>;
3603
- credentialReferenceId: drizzle_orm_pg_core1992.PgColumn<{
3603
+ credentialReferenceId: drizzle_orm_pg_core1587.PgColumn<{
3604
3604
  name: "credential_reference_id";
3605
3605
  tableName: "tools";
3606
3606
  dataType: "string";
@@ -3619,7 +3619,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3619
3619
  }, {}, {
3620
3620
  length: 256;
3621
3621
  }>;
3622
- credentialScope: drizzle_orm_pg_core1992.PgColumn<{
3622
+ credentialScope: drizzle_orm_pg_core1587.PgColumn<{
3623
3623
  name: "credential_scope";
3624
3624
  tableName: "tools";
3625
3625
  dataType: "string";
@@ -3638,7 +3638,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3638
3638
  }, {}, {
3639
3639
  length: 50;
3640
3640
  }>;
3641
- headers: drizzle_orm_pg_core1992.PgColumn<{
3641
+ headers: drizzle_orm_pg_core1587.PgColumn<{
3642
3642
  name: "headers";
3643
3643
  tableName: "tools";
3644
3644
  dataType: "json";
@@ -3657,7 +3657,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3657
3657
  }, {}, {
3658
3658
  $type: Record<string, string>;
3659
3659
  }>;
3660
- imageUrl: drizzle_orm_pg_core1992.PgColumn<{
3660
+ imageUrl: drizzle_orm_pg_core1587.PgColumn<{
3661
3661
  name: "image_url";
3662
3662
  tableName: "tools";
3663
3663
  dataType: "string";
@@ -3674,7 +3674,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3674
3674
  identity: undefined;
3675
3675
  generated: undefined;
3676
3676
  }, {}, {}>;
3677
- capabilities: drizzle_orm_pg_core1992.PgColumn<{
3677
+ capabilities: drizzle_orm_pg_core1587.PgColumn<{
3678
3678
  name: "capabilities";
3679
3679
  tableName: "tools";
3680
3680
  dataType: "json";
@@ -3693,7 +3693,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3693
3693
  }, {}, {
3694
3694
  $type: ToolServerCapabilities;
3695
3695
  }>;
3696
- lastError: drizzle_orm_pg_core1992.PgColumn<{
3696
+ lastError: drizzle_orm_pg_core1587.PgColumn<{
3697
3697
  name: "last_error";
3698
3698
  tableName: "tools";
3699
3699
  dataType: "string";
@@ -3710,7 +3710,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3710
3710
  identity: undefined;
3711
3711
  generated: undefined;
3712
3712
  }, {}, {}>;
3713
- isWorkApp: drizzle_orm_pg_core1992.PgColumn<{
3713
+ isWorkApp: drizzle_orm_pg_core1587.PgColumn<{
3714
3714
  name: "is_work_app";
3715
3715
  tableName: "tools";
3716
3716
  dataType: "boolean";
@@ -3727,7 +3727,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3727
3727
  identity: undefined;
3728
3728
  generated: undefined;
3729
3729
  }, {}, {}>;
3730
- name: drizzle_orm_pg_core1992.PgColumn<{
3730
+ name: drizzle_orm_pg_core1587.PgColumn<{
3731
3731
  name: "name";
3732
3732
  tableName: "tools";
3733
3733
  dataType: "string";
@@ -3746,7 +3746,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3746
3746
  }, {}, {
3747
3747
  length: 256;
3748
3748
  }>;
3749
- description: drizzle_orm_pg_core1992.PgColumn<{
3749
+ description: drizzle_orm_pg_core1587.PgColumn<{
3750
3750
  name: "description";
3751
3751
  tableName: "tools";
3752
3752
  dataType: "string";
@@ -3763,7 +3763,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3763
3763
  identity: undefined;
3764
3764
  generated: undefined;
3765
3765
  }, {}, {}>;
3766
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3766
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3767
3767
  name: "project_id";
3768
3768
  tableName: "tools";
3769
3769
  dataType: "string";
@@ -3782,7 +3782,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3782
3782
  }, {}, {
3783
3783
  length: 256;
3784
3784
  }>;
3785
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3785
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3786
3786
  name: "tenant_id";
3787
3787
  tableName: "tools";
3788
3788
  dataType: "string";
@@ -3801,7 +3801,7 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3801
3801
  }, {}, {
3802
3802
  length: 256;
3803
3803
  }>;
3804
- id: drizzle_orm_pg_core1992.PgColumn<{
3804
+ id: drizzle_orm_pg_core1587.PgColumn<{
3805
3805
  name: "id";
3806
3806
  tableName: "tools";
3807
3807
  dataType: "string";
@@ -3823,11 +3823,11 @@ declare const tools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3823
3823
  };
3824
3824
  dialect: "pg";
3825
3825
  }>;
3826
- declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3826
+ declare const functionTools: drizzle_orm_pg_core1587.PgTableWithColumns<{
3827
3827
  name: "function_tools";
3828
3828
  schema: undefined;
3829
3829
  columns: {
3830
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
3830
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
3831
3831
  name: "created_at";
3832
3832
  tableName: "function_tools";
3833
3833
  dataType: "string";
@@ -3844,7 +3844,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3844
3844
  identity: undefined;
3845
3845
  generated: undefined;
3846
3846
  }, {}, {}>;
3847
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
3847
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
3848
3848
  name: "updated_at";
3849
3849
  tableName: "function_tools";
3850
3850
  dataType: "string";
@@ -3861,7 +3861,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3861
3861
  identity: undefined;
3862
3862
  generated: undefined;
3863
3863
  }, {}, {}>;
3864
- functionId: drizzle_orm_pg_core1992.PgColumn<{
3864
+ functionId: drizzle_orm_pg_core1587.PgColumn<{
3865
3865
  name: "function_id";
3866
3866
  tableName: "function_tools";
3867
3867
  dataType: "string";
@@ -3880,7 +3880,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3880
3880
  }, {}, {
3881
3881
  length: 256;
3882
3882
  }>;
3883
- name: drizzle_orm_pg_core1992.PgColumn<{
3883
+ name: drizzle_orm_pg_core1587.PgColumn<{
3884
3884
  name: "name";
3885
3885
  tableName: "function_tools";
3886
3886
  dataType: "string";
@@ -3899,7 +3899,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3899
3899
  }, {}, {
3900
3900
  length: 256;
3901
3901
  }>;
3902
- description: drizzle_orm_pg_core1992.PgColumn<{
3902
+ description: drizzle_orm_pg_core1587.PgColumn<{
3903
3903
  name: "description";
3904
3904
  tableName: "function_tools";
3905
3905
  dataType: "string";
@@ -3916,7 +3916,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3916
3916
  identity: undefined;
3917
3917
  generated: undefined;
3918
3918
  }, {}, {}>;
3919
- agentId: drizzle_orm_pg_core1992.PgColumn<{
3919
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
3920
3920
  name: "agent_id";
3921
3921
  tableName: "function_tools";
3922
3922
  dataType: "string";
@@ -3935,7 +3935,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3935
3935
  }, {}, {
3936
3936
  length: 256;
3937
3937
  }>;
3938
- projectId: drizzle_orm_pg_core1992.PgColumn<{
3938
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
3939
3939
  name: "project_id";
3940
3940
  tableName: "function_tools";
3941
3941
  dataType: "string";
@@ -3954,7 +3954,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3954
3954
  }, {}, {
3955
3955
  length: 256;
3956
3956
  }>;
3957
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
3957
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
3958
3958
  name: "tenant_id";
3959
3959
  tableName: "function_tools";
3960
3960
  dataType: "string";
@@ -3973,7 +3973,7 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3973
3973
  }, {}, {
3974
3974
  length: 256;
3975
3975
  }>;
3976
- id: drizzle_orm_pg_core1992.PgColumn<{
3976
+ id: drizzle_orm_pg_core1587.PgColumn<{
3977
3977
  name: "id";
3978
3978
  tableName: "function_tools";
3979
3979
  dataType: "string";
@@ -3995,11 +3995,11 @@ declare const functionTools: drizzle_orm_pg_core1992.PgTableWithColumns<{
3995
3995
  };
3996
3996
  dialect: "pg";
3997
3997
  }>;
3998
- declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
3998
+ declare const functions: drizzle_orm_pg_core1587.PgTableWithColumns<{
3999
3999
  name: "functions";
4000
4000
  schema: undefined;
4001
4001
  columns: {
4002
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4002
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4003
4003
  name: "created_at";
4004
4004
  tableName: "functions";
4005
4005
  dataType: "string";
@@ -4016,7 +4016,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4016
4016
  identity: undefined;
4017
4017
  generated: undefined;
4018
4018
  }, {}, {}>;
4019
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4019
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4020
4020
  name: "updated_at";
4021
4021
  tableName: "functions";
4022
4022
  dataType: "string";
@@ -4033,7 +4033,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4033
4033
  identity: undefined;
4034
4034
  generated: undefined;
4035
4035
  }, {}, {}>;
4036
- inputSchema: drizzle_orm_pg_core1992.PgColumn<{
4036
+ inputSchema: drizzle_orm_pg_core1587.PgColumn<{
4037
4037
  name: "input_schema";
4038
4038
  tableName: "functions";
4039
4039
  dataType: "json";
@@ -4052,7 +4052,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4052
4052
  }, {}, {
4053
4053
  $type: Record<string, unknown>;
4054
4054
  }>;
4055
- executeCode: drizzle_orm_pg_core1992.PgColumn<{
4055
+ executeCode: drizzle_orm_pg_core1587.PgColumn<{
4056
4056
  name: "execute_code";
4057
4057
  tableName: "functions";
4058
4058
  dataType: "string";
@@ -4069,7 +4069,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4069
4069
  identity: undefined;
4070
4070
  generated: undefined;
4071
4071
  }, {}, {}>;
4072
- dependencies: drizzle_orm_pg_core1992.PgColumn<{
4072
+ dependencies: drizzle_orm_pg_core1587.PgColumn<{
4073
4073
  name: "dependencies";
4074
4074
  tableName: "functions";
4075
4075
  dataType: "json";
@@ -4088,7 +4088,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4088
4088
  }, {}, {
4089
4089
  $type: Record<string, string>;
4090
4090
  }>;
4091
- projectId: drizzle_orm_pg_core1992.PgColumn<{
4091
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
4092
4092
  name: "project_id";
4093
4093
  tableName: "functions";
4094
4094
  dataType: "string";
@@ -4107,7 +4107,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4107
4107
  }, {}, {
4108
4108
  length: 256;
4109
4109
  }>;
4110
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
4110
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
4111
4111
  name: "tenant_id";
4112
4112
  tableName: "functions";
4113
4113
  dataType: "string";
@@ -4126,7 +4126,7 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4126
4126
  }, {}, {
4127
4127
  length: 256;
4128
4128
  }>;
4129
- id: drizzle_orm_pg_core1992.PgColumn<{
4129
+ id: drizzle_orm_pg_core1587.PgColumn<{
4130
4130
  name: "id";
4131
4131
  tableName: "functions";
4132
4132
  dataType: "string";
@@ -4148,11 +4148,11 @@ declare const functions: drizzle_orm_pg_core1992.PgTableWithColumns<{
4148
4148
  };
4149
4149
  dialect: "pg";
4150
4150
  }>;
4151
- declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
4151
+ declare const subAgentToolRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
4152
4152
  name: "sub_agent_tool_relations";
4153
4153
  schema: undefined;
4154
4154
  columns: {
4155
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4155
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4156
4156
  name: "created_at";
4157
4157
  tableName: "sub_agent_tool_relations";
4158
4158
  dataType: "string";
@@ -4169,7 +4169,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4169
4169
  identity: undefined;
4170
4170
  generated: undefined;
4171
4171
  }, {}, {}>;
4172
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4172
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4173
4173
  name: "updated_at";
4174
4174
  tableName: "sub_agent_tool_relations";
4175
4175
  dataType: "string";
@@ -4186,7 +4186,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4186
4186
  identity: undefined;
4187
4187
  generated: undefined;
4188
4188
  }, {}, {}>;
4189
- toolId: drizzle_orm_pg_core1992.PgColumn<{
4189
+ toolId: drizzle_orm_pg_core1587.PgColumn<{
4190
4190
  name: "tool_id";
4191
4191
  tableName: "sub_agent_tool_relations";
4192
4192
  dataType: "string";
@@ -4205,7 +4205,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4205
4205
  }, {}, {
4206
4206
  length: 256;
4207
4207
  }>;
4208
- selectedTools: drizzle_orm_pg_core1992.PgColumn<{
4208
+ selectedTools: drizzle_orm_pg_core1587.PgColumn<{
4209
4209
  name: "selected_tools";
4210
4210
  tableName: "sub_agent_tool_relations";
4211
4211
  dataType: "json";
@@ -4224,7 +4224,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4224
4224
  }, {}, {
4225
4225
  $type: string[] | null;
4226
4226
  }>;
4227
- headers: drizzle_orm_pg_core1992.PgColumn<{
4227
+ headers: drizzle_orm_pg_core1587.PgColumn<{
4228
4228
  name: "headers";
4229
4229
  tableName: "sub_agent_tool_relations";
4230
4230
  dataType: "json";
@@ -4243,7 +4243,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4243
4243
  }, {}, {
4244
4244
  $type: Record<string, string> | null;
4245
4245
  }>;
4246
- toolPolicies: drizzle_orm_pg_core1992.PgColumn<{
4246
+ toolPolicies: drizzle_orm_pg_core1587.PgColumn<{
4247
4247
  name: "tool_policies";
4248
4248
  tableName: "sub_agent_tool_relations";
4249
4249
  dataType: "json";
@@ -4266,7 +4266,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4266
4266
  needsApproval?: boolean;
4267
4267
  }> | null;
4268
4268
  }>;
4269
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
4269
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
4270
4270
  name: "sub_agent_id";
4271
4271
  tableName: "sub_agent_tool_relations";
4272
4272
  dataType: "string";
@@ -4285,7 +4285,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4285
4285
  }, {}, {
4286
4286
  length: 256;
4287
4287
  }>;
4288
- agentId: drizzle_orm_pg_core1992.PgColumn<{
4288
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
4289
4289
  name: "agent_id";
4290
4290
  tableName: "sub_agent_tool_relations";
4291
4291
  dataType: "string";
@@ -4304,7 +4304,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4304
4304
  }, {}, {
4305
4305
  length: 256;
4306
4306
  }>;
4307
- projectId: drizzle_orm_pg_core1992.PgColumn<{
4307
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
4308
4308
  name: "project_id";
4309
4309
  tableName: "sub_agent_tool_relations";
4310
4310
  dataType: "string";
@@ -4323,7 +4323,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4323
4323
  }, {}, {
4324
4324
  length: 256;
4325
4325
  }>;
4326
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
4326
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
4327
4327
  name: "tenant_id";
4328
4328
  tableName: "sub_agent_tool_relations";
4329
4329
  dataType: "string";
@@ -4342,7 +4342,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4342
4342
  }, {}, {
4343
4343
  length: 256;
4344
4344
  }>;
4345
- id: drizzle_orm_pg_core1992.PgColumn<{
4345
+ id: drizzle_orm_pg_core1587.PgColumn<{
4346
4346
  name: "id";
4347
4347
  tableName: "sub_agent_tool_relations";
4348
4348
  dataType: "string";
@@ -4364,11 +4364,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
4364
4364
  };
4365
4365
  dialect: "pg";
4366
4366
  }>;
4367
- declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
4367
+ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
4368
4368
  name: "sub_agent_external_agent_relations";
4369
4369
  schema: undefined;
4370
4370
  columns: {
4371
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4371
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4372
4372
  name: "created_at";
4373
4373
  tableName: "sub_agent_external_agent_relations";
4374
4374
  dataType: "string";
@@ -4385,7 +4385,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4385
4385
  identity: undefined;
4386
4386
  generated: undefined;
4387
4387
  }, {}, {}>;
4388
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4388
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4389
4389
  name: "updated_at";
4390
4390
  tableName: "sub_agent_external_agent_relations";
4391
4391
  dataType: "string";
@@ -4402,7 +4402,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4402
4402
  identity: undefined;
4403
4403
  generated: undefined;
4404
4404
  }, {}, {}>;
4405
- externalAgentId: drizzle_orm_pg_core1992.PgColumn<{
4405
+ externalAgentId: drizzle_orm_pg_core1587.PgColumn<{
4406
4406
  name: "external_agent_id";
4407
4407
  tableName: "sub_agent_external_agent_relations";
4408
4408
  dataType: "string";
@@ -4421,7 +4421,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4421
4421
  }, {}, {
4422
4422
  length: 256;
4423
4423
  }>;
4424
- headers: drizzle_orm_pg_core1992.PgColumn<{
4424
+ headers: drizzle_orm_pg_core1587.PgColumn<{
4425
4425
  name: "headers";
4426
4426
  tableName: "sub_agent_external_agent_relations";
4427
4427
  dataType: "json";
@@ -4440,7 +4440,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4440
4440
  }, {}, {
4441
4441
  $type: Record<string, string> | null;
4442
4442
  }>;
4443
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
4443
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
4444
4444
  name: "sub_agent_id";
4445
4445
  tableName: "sub_agent_external_agent_relations";
4446
4446
  dataType: "string";
@@ -4459,7 +4459,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4459
4459
  }, {}, {
4460
4460
  length: 256;
4461
4461
  }>;
4462
- agentId: drizzle_orm_pg_core1992.PgColumn<{
4462
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
4463
4463
  name: "agent_id";
4464
4464
  tableName: "sub_agent_external_agent_relations";
4465
4465
  dataType: "string";
@@ -4478,7 +4478,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4478
4478
  }, {}, {
4479
4479
  length: 256;
4480
4480
  }>;
4481
- projectId: drizzle_orm_pg_core1992.PgColumn<{
4481
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
4482
4482
  name: "project_id";
4483
4483
  tableName: "sub_agent_external_agent_relations";
4484
4484
  dataType: "string";
@@ -4497,7 +4497,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4497
4497
  }, {}, {
4498
4498
  length: 256;
4499
4499
  }>;
4500
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
4500
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
4501
4501
  name: "tenant_id";
4502
4502
  tableName: "sub_agent_external_agent_relations";
4503
4503
  dataType: "string";
@@ -4516,7 +4516,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4516
4516
  }, {}, {
4517
4517
  length: 256;
4518
4518
  }>;
4519
- id: drizzle_orm_pg_core1992.PgColumn<{
4519
+ id: drizzle_orm_pg_core1587.PgColumn<{
4520
4520
  name: "id";
4521
4521
  tableName: "sub_agent_external_agent_relations";
4522
4522
  dataType: "string";
@@ -4538,11 +4538,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1992.PgTableWit
4538
4538
  };
4539
4539
  dialect: "pg";
4540
4540
  }>;
4541
- declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
4541
+ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
4542
4542
  name: "sub_agent_team_agent_relations";
4543
4543
  schema: undefined;
4544
4544
  columns: {
4545
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4545
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4546
4546
  name: "created_at";
4547
4547
  tableName: "sub_agent_team_agent_relations";
4548
4548
  dataType: "string";
@@ -4559,7 +4559,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4559
4559
  identity: undefined;
4560
4560
  generated: undefined;
4561
4561
  }, {}, {}>;
4562
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4562
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4563
4563
  name: "updated_at";
4564
4564
  tableName: "sub_agent_team_agent_relations";
4565
4565
  dataType: "string";
@@ -4576,7 +4576,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4576
4576
  identity: undefined;
4577
4577
  generated: undefined;
4578
4578
  }, {}, {}>;
4579
- targetAgentId: drizzle_orm_pg_core1992.PgColumn<{
4579
+ targetAgentId: drizzle_orm_pg_core1587.PgColumn<{
4580
4580
  name: "target_agent_id";
4581
4581
  tableName: "sub_agent_team_agent_relations";
4582
4582
  dataType: "string";
@@ -4595,7 +4595,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4595
4595
  }, {}, {
4596
4596
  length: 256;
4597
4597
  }>;
4598
- headers: drizzle_orm_pg_core1992.PgColumn<{
4598
+ headers: drizzle_orm_pg_core1587.PgColumn<{
4599
4599
  name: "headers";
4600
4600
  tableName: "sub_agent_team_agent_relations";
4601
4601
  dataType: "json";
@@ -4614,7 +4614,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4614
4614
  }, {}, {
4615
4615
  $type: Record<string, string> | null;
4616
4616
  }>;
4617
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
4617
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
4618
4618
  name: "sub_agent_id";
4619
4619
  tableName: "sub_agent_team_agent_relations";
4620
4620
  dataType: "string";
@@ -4633,7 +4633,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4633
4633
  }, {}, {
4634
4634
  length: 256;
4635
4635
  }>;
4636
- agentId: drizzle_orm_pg_core1992.PgColumn<{
4636
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
4637
4637
  name: "agent_id";
4638
4638
  tableName: "sub_agent_team_agent_relations";
4639
4639
  dataType: "string";
@@ -4652,7 +4652,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4652
4652
  }, {}, {
4653
4653
  length: 256;
4654
4654
  }>;
4655
- projectId: drizzle_orm_pg_core1992.PgColumn<{
4655
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
4656
4656
  name: "project_id";
4657
4657
  tableName: "sub_agent_team_agent_relations";
4658
4658
  dataType: "string";
@@ -4671,7 +4671,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4671
4671
  }, {}, {
4672
4672
  length: 256;
4673
4673
  }>;
4674
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
4674
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
4675
4675
  name: "tenant_id";
4676
4676
  tableName: "sub_agent_team_agent_relations";
4677
4677
  dataType: "string";
@@ -4690,7 +4690,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4690
4690
  }, {}, {
4691
4691
  length: 256;
4692
4692
  }>;
4693
- id: drizzle_orm_pg_core1992.PgColumn<{
4693
+ id: drizzle_orm_pg_core1587.PgColumn<{
4694
4694
  name: "id";
4695
4695
  tableName: "sub_agent_team_agent_relations";
4696
4696
  dataType: "string";
@@ -4712,11 +4712,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1992.PgTableWithCol
4712
4712
  };
4713
4713
  dialect: "pg";
4714
4714
  }>;
4715
- declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
4715
+ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
4716
4716
  name: "sub_agent_function_tool_relations";
4717
4717
  schema: undefined;
4718
4718
  columns: {
4719
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4719
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4720
4720
  name: "created_at";
4721
4721
  tableName: "sub_agent_function_tool_relations";
4722
4722
  dataType: "string";
@@ -4733,7 +4733,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4733
4733
  identity: undefined;
4734
4734
  generated: undefined;
4735
4735
  }, {}, {}>;
4736
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4736
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4737
4737
  name: "updated_at";
4738
4738
  tableName: "sub_agent_function_tool_relations";
4739
4739
  dataType: "string";
@@ -4750,7 +4750,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4750
4750
  identity: undefined;
4751
4751
  generated: undefined;
4752
4752
  }, {}, {}>;
4753
- functionToolId: drizzle_orm_pg_core1992.PgColumn<{
4753
+ functionToolId: drizzle_orm_pg_core1587.PgColumn<{
4754
4754
  name: "function_tool_id";
4755
4755
  tableName: "sub_agent_function_tool_relations";
4756
4756
  dataType: "string";
@@ -4769,7 +4769,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4769
4769
  }, {}, {
4770
4770
  length: 256;
4771
4771
  }>;
4772
- toolPolicies: drizzle_orm_pg_core1992.PgColumn<{
4772
+ toolPolicies: drizzle_orm_pg_core1587.PgColumn<{
4773
4773
  name: "tool_policies";
4774
4774
  tableName: "sub_agent_function_tool_relations";
4775
4775
  dataType: "json";
@@ -4792,7 +4792,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4792
4792
  needsApproval?: boolean;
4793
4793
  }> | null;
4794
4794
  }>;
4795
- subAgentId: drizzle_orm_pg_core1992.PgColumn<{
4795
+ subAgentId: drizzle_orm_pg_core1587.PgColumn<{
4796
4796
  name: "sub_agent_id";
4797
4797
  tableName: "sub_agent_function_tool_relations";
4798
4798
  dataType: "string";
@@ -4811,7 +4811,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4811
4811
  }, {}, {
4812
4812
  length: 256;
4813
4813
  }>;
4814
- agentId: drizzle_orm_pg_core1992.PgColumn<{
4814
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
4815
4815
  name: "agent_id";
4816
4816
  tableName: "sub_agent_function_tool_relations";
4817
4817
  dataType: "string";
@@ -4830,7 +4830,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4830
4830
  }, {}, {
4831
4831
  length: 256;
4832
4832
  }>;
4833
- projectId: drizzle_orm_pg_core1992.PgColumn<{
4833
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
4834
4834
  name: "project_id";
4835
4835
  tableName: "sub_agent_function_tool_relations";
4836
4836
  dataType: "string";
@@ -4849,7 +4849,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4849
4849
  }, {}, {
4850
4850
  length: 256;
4851
4851
  }>;
4852
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
4852
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
4853
4853
  name: "tenant_id";
4854
4854
  tableName: "sub_agent_function_tool_relations";
4855
4855
  dataType: "string";
@@ -4868,7 +4868,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4868
4868
  }, {}, {
4869
4869
  length: 256;
4870
4870
  }>;
4871
- id: drizzle_orm_pg_core1992.PgColumn<{
4871
+ id: drizzle_orm_pg_core1587.PgColumn<{
4872
4872
  name: "id";
4873
4873
  tableName: "sub_agent_function_tool_relations";
4874
4874
  dataType: "string";
@@ -4890,11 +4890,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1992.PgTableWith
4890
4890
  };
4891
4891
  dialect: "pg";
4892
4892
  }>;
4893
- declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4893
+ declare const credentialReferences: drizzle_orm_pg_core1587.PgTableWithColumns<{
4894
4894
  name: "credential_references";
4895
4895
  schema: undefined;
4896
4896
  columns: {
4897
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
4897
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
4898
4898
  name: "created_at";
4899
4899
  tableName: "credential_references";
4900
4900
  dataType: "string";
@@ -4911,7 +4911,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4911
4911
  identity: undefined;
4912
4912
  generated: undefined;
4913
4913
  }, {}, {}>;
4914
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
4914
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
4915
4915
  name: "updated_at";
4916
4916
  tableName: "credential_references";
4917
4917
  dataType: "string";
@@ -4928,7 +4928,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4928
4928
  identity: undefined;
4929
4929
  generated: undefined;
4930
4930
  }, {}, {}>;
4931
- name: drizzle_orm_pg_core1992.PgColumn<{
4931
+ name: drizzle_orm_pg_core1587.PgColumn<{
4932
4932
  name: "name";
4933
4933
  tableName: "credential_references";
4934
4934
  dataType: "string";
@@ -4947,7 +4947,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4947
4947
  }, {}, {
4948
4948
  length: 256;
4949
4949
  }>;
4950
- type: drizzle_orm_pg_core1992.PgColumn<{
4950
+ type: drizzle_orm_pg_core1587.PgColumn<{
4951
4951
  name: "type";
4952
4952
  tableName: "credential_references";
4953
4953
  dataType: "string";
@@ -4966,7 +4966,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4966
4966
  }, {}, {
4967
4967
  length: 256;
4968
4968
  }>;
4969
- credentialStoreId: drizzle_orm_pg_core1992.PgColumn<{
4969
+ credentialStoreId: drizzle_orm_pg_core1587.PgColumn<{
4970
4970
  name: "credential_store_id";
4971
4971
  tableName: "credential_references";
4972
4972
  dataType: "string";
@@ -4985,7 +4985,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
4985
4985
  }, {}, {
4986
4986
  length: 256;
4987
4987
  }>;
4988
- retrievalParams: drizzle_orm_pg_core1992.PgColumn<{
4988
+ retrievalParams: drizzle_orm_pg_core1587.PgColumn<{
4989
4989
  name: "retrieval_params";
4990
4990
  tableName: "credential_references";
4991
4991
  dataType: "json";
@@ -5004,7 +5004,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5004
5004
  }, {}, {
5005
5005
  $type: Record<string, unknown>;
5006
5006
  }>;
5007
- toolId: drizzle_orm_pg_core1992.PgColumn<{
5007
+ toolId: drizzle_orm_pg_core1587.PgColumn<{
5008
5008
  name: "tool_id";
5009
5009
  tableName: "credential_references";
5010
5010
  dataType: "string";
@@ -5023,7 +5023,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5023
5023
  }, {}, {
5024
5024
  length: 256;
5025
5025
  }>;
5026
- userId: drizzle_orm_pg_core1992.PgColumn<{
5026
+ userId: drizzle_orm_pg_core1587.PgColumn<{
5027
5027
  name: "user_id";
5028
5028
  tableName: "credential_references";
5029
5029
  dataType: "string";
@@ -5042,7 +5042,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5042
5042
  }, {}, {
5043
5043
  length: 256;
5044
5044
  }>;
5045
- createdBy: drizzle_orm_pg_core1992.PgColumn<{
5045
+ createdBy: drizzle_orm_pg_core1587.PgColumn<{
5046
5046
  name: "created_by";
5047
5047
  tableName: "credential_references";
5048
5048
  dataType: "string";
@@ -5061,7 +5061,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5061
5061
  }, {}, {
5062
5062
  length: 256;
5063
5063
  }>;
5064
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5064
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5065
5065
  name: "project_id";
5066
5066
  tableName: "credential_references";
5067
5067
  dataType: "string";
@@ -5080,7 +5080,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5080
5080
  }, {}, {
5081
5081
  length: 256;
5082
5082
  }>;
5083
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5083
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5084
5084
  name: "tenant_id";
5085
5085
  tableName: "credential_references";
5086
5086
  dataType: "string";
@@ -5099,7 +5099,7 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5099
5099
  }, {}, {
5100
5100
  length: 256;
5101
5101
  }>;
5102
- id: drizzle_orm_pg_core1992.PgColumn<{
5102
+ id: drizzle_orm_pg_core1587.PgColumn<{
5103
5103
  name: "id";
5104
5104
  tableName: "credential_references";
5105
5105
  dataType: "string";
@@ -5131,11 +5131,11 @@ declare const credentialReferences: drizzle_orm_pg_core1992.PgTableWithColumns<{
5131
5131
  *
5132
5132
  * Includes: name and timestamps
5133
5133
  */
5134
- declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5134
+ declare const dataset: drizzle_orm_pg_core1587.PgTableWithColumns<{
5135
5135
  name: "dataset";
5136
5136
  schema: undefined;
5137
5137
  columns: {
5138
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5138
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5139
5139
  name: "created_at";
5140
5140
  tableName: "dataset";
5141
5141
  dataType: "string";
@@ -5152,7 +5152,7 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5152
5152
  identity: undefined;
5153
5153
  generated: undefined;
5154
5154
  }, {}, {}>;
5155
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5155
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5156
5156
  name: "updated_at";
5157
5157
  tableName: "dataset";
5158
5158
  dataType: "string";
@@ -5169,7 +5169,7 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5169
5169
  identity: undefined;
5170
5170
  generated: undefined;
5171
5171
  }, {}, {}>;
5172
- name: drizzle_orm_pg_core1992.PgColumn<{
5172
+ name: drizzle_orm_pg_core1587.PgColumn<{
5173
5173
  name: "name";
5174
5174
  tableName: "dataset";
5175
5175
  dataType: "string";
@@ -5188,7 +5188,7 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5188
5188
  }, {}, {
5189
5189
  length: 256;
5190
5190
  }>;
5191
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5191
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5192
5192
  name: "project_id";
5193
5193
  tableName: "dataset";
5194
5194
  dataType: "string";
@@ -5207,7 +5207,7 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5207
5207
  }, {}, {
5208
5208
  length: 256;
5209
5209
  }>;
5210
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5210
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5211
5211
  name: "tenant_id";
5212
5212
  tableName: "dataset";
5213
5213
  dataType: "string";
@@ -5226,7 +5226,7 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5226
5226
  }, {}, {
5227
5227
  length: 256;
5228
5228
  }>;
5229
- id: drizzle_orm_pg_core1992.PgColumn<{
5229
+ id: drizzle_orm_pg_core1587.PgColumn<{
5230
5230
  name: "id";
5231
5231
  tableName: "dataset";
5232
5232
  dataType: "string";
@@ -5256,11 +5256,11 @@ declare const dataset: drizzle_orm_pg_core1992.PgTableWithColumns<{
5256
5256
  * Includes: input (messages array with optional headers), expected output (array of messages),
5257
5257
  * and timestamps.
5258
5258
  */
5259
- declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5259
+ declare const datasetItem: drizzle_orm_pg_core1587.PgTableWithColumns<{
5260
5260
  name: "dataset_item";
5261
5261
  schema: undefined;
5262
5262
  columns: {
5263
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5263
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5264
5264
  name: "created_at";
5265
5265
  tableName: "dataset_item";
5266
5266
  dataType: "string";
@@ -5277,7 +5277,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5277
5277
  identity: undefined;
5278
5278
  generated: undefined;
5279
5279
  }, {}, {}>;
5280
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5280
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5281
5281
  name: "updated_at";
5282
5282
  tableName: "dataset_item";
5283
5283
  dataType: "string";
@@ -5294,7 +5294,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5294
5294
  identity: undefined;
5295
5295
  generated: undefined;
5296
5296
  }, {}, {}>;
5297
- datasetId: drizzle_orm_pg_core1992.PgColumn<{
5297
+ datasetId: drizzle_orm_pg_core1587.PgColumn<{
5298
5298
  name: "dataset_id";
5299
5299
  tableName: "dataset_item";
5300
5300
  dataType: "string";
@@ -5313,7 +5313,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5313
5313
  }, {}, {
5314
5314
  length: 256;
5315
5315
  }>;
5316
- input: drizzle_orm_pg_core1992.PgColumn<{
5316
+ input: drizzle_orm_pg_core1587.PgColumn<{
5317
5317
  name: "input";
5318
5318
  tableName: "dataset_item";
5319
5319
  dataType: "json";
@@ -5332,7 +5332,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5332
5332
  }, {}, {
5333
5333
  $type: DatasetItemInput;
5334
5334
  }>;
5335
- expectedOutput: drizzle_orm_pg_core1992.PgColumn<{
5335
+ expectedOutput: drizzle_orm_pg_core1587.PgColumn<{
5336
5336
  name: "expected_output";
5337
5337
  tableName: "dataset_item";
5338
5338
  dataType: "json";
@@ -5351,7 +5351,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5351
5351
  }, {}, {
5352
5352
  $type: DatasetItemExpectedOutput;
5353
5353
  }>;
5354
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5354
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5355
5355
  name: "project_id";
5356
5356
  tableName: "dataset_item";
5357
5357
  dataType: "string";
@@ -5370,7 +5370,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5370
5370
  }, {}, {
5371
5371
  length: 256;
5372
5372
  }>;
5373
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5373
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5374
5374
  name: "tenant_id";
5375
5375
  tableName: "dataset_item";
5376
5376
  dataType: "string";
@@ -5389,7 +5389,7 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5389
5389
  }, {}, {
5390
5390
  length: 256;
5391
5391
  }>;
5392
- id: drizzle_orm_pg_core1992.PgColumn<{
5392
+ id: drizzle_orm_pg_core1587.PgColumn<{
5393
5393
  name: "id";
5394
5394
  tableName: "dataset_item";
5395
5395
  dataType: "string";
@@ -5411,11 +5411,11 @@ declare const datasetItem: drizzle_orm_pg_core1992.PgTableWithColumns<{
5411
5411
  };
5412
5412
  dialect: "pg";
5413
5413
  }>;
5414
- declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5414
+ declare const evaluator: drizzle_orm_pg_core1587.PgTableWithColumns<{
5415
5415
  name: "evaluator";
5416
5416
  schema: undefined;
5417
5417
  columns: {
5418
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5418
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5419
5419
  name: "created_at";
5420
5420
  tableName: "evaluator";
5421
5421
  dataType: "string";
@@ -5432,7 +5432,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5432
5432
  identity: undefined;
5433
5433
  generated: undefined;
5434
5434
  }, {}, {}>;
5435
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5435
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5436
5436
  name: "updated_at";
5437
5437
  tableName: "evaluator";
5438
5438
  dataType: "string";
@@ -5449,7 +5449,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5449
5449
  identity: undefined;
5450
5450
  generated: undefined;
5451
5451
  }, {}, {}>;
5452
- prompt: drizzle_orm_pg_core1992.PgColumn<{
5452
+ prompt: drizzle_orm_pg_core1587.PgColumn<{
5453
5453
  name: "prompt";
5454
5454
  tableName: "evaluator";
5455
5455
  dataType: "string";
@@ -5466,7 +5466,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5466
5466
  identity: undefined;
5467
5467
  generated: undefined;
5468
5468
  }, {}, {}>;
5469
- schema: drizzle_orm_pg_core1992.PgColumn<{
5469
+ schema: drizzle_orm_pg_core1587.PgColumn<{
5470
5470
  name: "schema";
5471
5471
  tableName: "evaluator";
5472
5472
  dataType: "json";
@@ -5485,7 +5485,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5485
5485
  }, {}, {
5486
5486
  $type: Record<string, unknown>;
5487
5487
  }>;
5488
- model: drizzle_orm_pg_core1992.PgColumn<{
5488
+ model: drizzle_orm_pg_core1587.PgColumn<{
5489
5489
  name: "model";
5490
5490
  tableName: "evaluator";
5491
5491
  dataType: "json";
@@ -5514,7 +5514,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5514
5514
  allowedProviders?: string[] | undefined;
5515
5515
  };
5516
5516
  }>;
5517
- passCriteria: drizzle_orm_pg_core1992.PgColumn<{
5517
+ passCriteria: drizzle_orm_pg_core1587.PgColumn<{
5518
5518
  name: "pass_criteria";
5519
5519
  tableName: "evaluator";
5520
5520
  dataType: "json";
@@ -5533,7 +5533,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5533
5533
  }, {}, {
5534
5534
  $type: PassCriteria;
5535
5535
  }>;
5536
- name: drizzle_orm_pg_core1992.PgColumn<{
5536
+ name: drizzle_orm_pg_core1587.PgColumn<{
5537
5537
  name: "name";
5538
5538
  tableName: "evaluator";
5539
5539
  dataType: "string";
@@ -5552,7 +5552,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5552
5552
  }, {}, {
5553
5553
  length: 256;
5554
5554
  }>;
5555
- description: drizzle_orm_pg_core1992.PgColumn<{
5555
+ description: drizzle_orm_pg_core1587.PgColumn<{
5556
5556
  name: "description";
5557
5557
  tableName: "evaluator";
5558
5558
  dataType: "string";
@@ -5569,7 +5569,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5569
5569
  identity: undefined;
5570
5570
  generated: undefined;
5571
5571
  }, {}, {}>;
5572
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5572
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5573
5573
  name: "project_id";
5574
5574
  tableName: "evaluator";
5575
5575
  dataType: "string";
@@ -5588,7 +5588,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5588
5588
  }, {}, {
5589
5589
  length: 256;
5590
5590
  }>;
5591
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5591
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5592
5592
  name: "tenant_id";
5593
5593
  tableName: "evaluator";
5594
5594
  dataType: "string";
@@ -5607,7 +5607,7 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5607
5607
  }, {}, {
5608
5608
  length: 256;
5609
5609
  }>;
5610
- id: drizzle_orm_pg_core1992.PgColumn<{
5610
+ id: drizzle_orm_pg_core1587.PgColumn<{
5611
5611
  name: "id";
5612
5612
  tableName: "evaluator";
5613
5613
  dataType: "string";
@@ -5629,11 +5629,11 @@ declare const evaluator: drizzle_orm_pg_core1992.PgTableWithColumns<{
5629
5629
  };
5630
5630
  dialect: "pg";
5631
5631
  }>;
5632
- declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5632
+ declare const datasetRunConfig: drizzle_orm_pg_core1587.PgTableWithColumns<{
5633
5633
  name: "dataset_run_config";
5634
5634
  schema: undefined;
5635
5635
  columns: {
5636
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5636
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5637
5637
  name: "created_at";
5638
5638
  tableName: "dataset_run_config";
5639
5639
  dataType: "string";
@@ -5650,7 +5650,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5650
5650
  identity: undefined;
5651
5651
  generated: undefined;
5652
5652
  }, {}, {}>;
5653
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5653
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5654
5654
  name: "updated_at";
5655
5655
  tableName: "dataset_run_config";
5656
5656
  dataType: "string";
@@ -5667,7 +5667,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5667
5667
  identity: undefined;
5668
5668
  generated: undefined;
5669
5669
  }, {}, {}>;
5670
- datasetId: drizzle_orm_pg_core1992.PgColumn<{
5670
+ datasetId: drizzle_orm_pg_core1587.PgColumn<{
5671
5671
  name: "dataset_id";
5672
5672
  tableName: "dataset_run_config";
5673
5673
  dataType: "string";
@@ -5686,7 +5686,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5686
5686
  }, {}, {
5687
5687
  length: 256;
5688
5688
  }>;
5689
- dispatchDelayMs: drizzle_orm_pg_core1992.PgColumn<{
5689
+ dispatchDelayMs: drizzle_orm_pg_core1587.PgColumn<{
5690
5690
  name: "dispatch_delay_ms";
5691
5691
  tableName: "dataset_run_config";
5692
5692
  dataType: "number";
@@ -5703,7 +5703,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5703
5703
  identity: undefined;
5704
5704
  generated: undefined;
5705
5705
  }, {}, {}>;
5706
- name: drizzle_orm_pg_core1992.PgColumn<{
5706
+ name: drizzle_orm_pg_core1587.PgColumn<{
5707
5707
  name: "name";
5708
5708
  tableName: "dataset_run_config";
5709
5709
  dataType: "string";
@@ -5722,7 +5722,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5722
5722
  }, {}, {
5723
5723
  length: 256;
5724
5724
  }>;
5725
- description: drizzle_orm_pg_core1992.PgColumn<{
5725
+ description: drizzle_orm_pg_core1587.PgColumn<{
5726
5726
  name: "description";
5727
5727
  tableName: "dataset_run_config";
5728
5728
  dataType: "string";
@@ -5739,7 +5739,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5739
5739
  identity: undefined;
5740
5740
  generated: undefined;
5741
5741
  }, {}, {}>;
5742
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5742
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5743
5743
  name: "project_id";
5744
5744
  tableName: "dataset_run_config";
5745
5745
  dataType: "string";
@@ -5758,7 +5758,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5758
5758
  }, {}, {
5759
5759
  length: 256;
5760
5760
  }>;
5761
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5761
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5762
5762
  name: "tenant_id";
5763
5763
  tableName: "dataset_run_config";
5764
5764
  dataType: "string";
@@ -5777,7 +5777,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5777
5777
  }, {}, {
5778
5778
  length: 256;
5779
5779
  }>;
5780
- id: drizzle_orm_pg_core1992.PgColumn<{
5780
+ id: drizzle_orm_pg_core1587.PgColumn<{
5781
5781
  name: "id";
5782
5782
  tableName: "dataset_run_config";
5783
5783
  dataType: "string";
@@ -5814,11 +5814,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5814
5814
  * Includes: name, description, filters (JSONB for evaluation criteria),
5815
5815
  * sampleRate for sampling, and timestamps
5816
5816
  */
5817
- declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
5817
+ declare const evaluationSuiteConfig: drizzle_orm_pg_core1587.PgTableWithColumns<{
5818
5818
  name: "evaluation_suite_config";
5819
5819
  schema: undefined;
5820
5820
  columns: {
5821
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5821
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5822
5822
  name: "created_at";
5823
5823
  tableName: "evaluation_suite_config";
5824
5824
  dataType: "string";
@@ -5835,7 +5835,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5835
5835
  identity: undefined;
5836
5836
  generated: undefined;
5837
5837
  }, {}, {}>;
5838
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5838
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5839
5839
  name: "updated_at";
5840
5840
  tableName: "evaluation_suite_config";
5841
5841
  dataType: "string";
@@ -5852,7 +5852,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5852
5852
  identity: undefined;
5853
5853
  generated: undefined;
5854
5854
  }, {}, {}>;
5855
- filters: drizzle_orm_pg_core1992.PgColumn<{
5855
+ filters: drizzle_orm_pg_core1587.PgColumn<{
5856
5856
  name: "filters";
5857
5857
  tableName: "evaluation_suite_config";
5858
5858
  dataType: "json";
@@ -5871,7 +5871,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5871
5871
  }, {}, {
5872
5872
  $type: Filter<EvaluationSuiteFilterCriteria>;
5873
5873
  }>;
5874
- sampleRate: drizzle_orm_pg_core1992.PgColumn<{
5874
+ sampleRate: drizzle_orm_pg_core1587.PgColumn<{
5875
5875
  name: "sample_rate";
5876
5876
  tableName: "evaluation_suite_config";
5877
5877
  dataType: "number";
@@ -5888,7 +5888,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5888
5888
  identity: undefined;
5889
5889
  generated: undefined;
5890
5890
  }, {}, {}>;
5891
- projectId: drizzle_orm_pg_core1992.PgColumn<{
5891
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
5892
5892
  name: "project_id";
5893
5893
  tableName: "evaluation_suite_config";
5894
5894
  dataType: "string";
@@ -5907,7 +5907,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5907
5907
  }, {}, {
5908
5908
  length: 256;
5909
5909
  }>;
5910
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
5910
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
5911
5911
  name: "tenant_id";
5912
5912
  tableName: "evaluation_suite_config";
5913
5913
  dataType: "string";
@@ -5926,7 +5926,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5926
5926
  }, {}, {
5927
5927
  length: 256;
5928
5928
  }>;
5929
- id: drizzle_orm_pg_core1992.PgColumn<{
5929
+ id: drizzle_orm_pg_core1587.PgColumn<{
5930
5930
  name: "id";
5931
5931
  tableName: "evaluation_suite_config";
5932
5932
  dataType: "string";
@@ -5955,11 +5955,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1992.PgTableWithColumns<
5955
5955
  *
5956
5956
  * Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
5957
5957
  */
5958
- declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
5958
+ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
5959
5959
  name: "evaluation_suite_config_evaluator_relations";
5960
5960
  schema: undefined;
5961
5961
  columns: {
5962
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
5962
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
5963
5963
  name: "created_at";
5964
5964
  tableName: "evaluation_suite_config_evaluator_relations";
5965
5965
  dataType: "string";
@@ -5976,7 +5976,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
5976
5976
  identity: undefined;
5977
5977
  generated: undefined;
5978
5978
  }, {}, {}>;
5979
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
5979
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
5980
5980
  name: "updated_at";
5981
5981
  tableName: "evaluation_suite_config_evaluator_relations";
5982
5982
  dataType: "string";
@@ -5993,7 +5993,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
5993
5993
  identity: undefined;
5994
5994
  generated: undefined;
5995
5995
  }, {}, {}>;
5996
- evaluationSuiteConfigId: drizzle_orm_pg_core1992.PgColumn<{
5996
+ evaluationSuiteConfigId: drizzle_orm_pg_core1587.PgColumn<{
5997
5997
  name: "evaluation_suite_config_id";
5998
5998
  tableName: "evaluation_suite_config_evaluator_relations";
5999
5999
  dataType: "string";
@@ -6012,7 +6012,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
6012
6012
  }, {}, {
6013
6013
  length: 256;
6014
6014
  }>;
6015
- evaluatorId: drizzle_orm_pg_core1992.PgColumn<{
6015
+ evaluatorId: drizzle_orm_pg_core1587.PgColumn<{
6016
6016
  name: "evaluator_id";
6017
6017
  tableName: "evaluation_suite_config_evaluator_relations";
6018
6018
  dataType: "string";
@@ -6031,7 +6031,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
6031
6031
  }, {}, {
6032
6032
  length: 256;
6033
6033
  }>;
6034
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6034
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6035
6035
  name: "project_id";
6036
6036
  tableName: "evaluation_suite_config_evaluator_relations";
6037
6037
  dataType: "string";
@@ -6050,7 +6050,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
6050
6050
  }, {}, {
6051
6051
  length: 256;
6052
6052
  }>;
6053
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6053
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6054
6054
  name: "tenant_id";
6055
6055
  tableName: "evaluation_suite_config_evaluator_relations";
6056
6056
  dataType: "string";
@@ -6069,7 +6069,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
6069
6069
  }, {}, {
6070
6070
  length: 256;
6071
6071
  }>;
6072
- id: drizzle_orm_pg_core1992.PgColumn<{
6072
+ id: drizzle_orm_pg_core1587.PgColumn<{
6073
6073
  name: "id";
6074
6074
  tableName: "evaluation_suite_config_evaluator_relations";
6075
6075
  dataType: "string";
@@ -6098,11 +6098,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1992.P
6098
6098
  *
6099
6099
  * Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
6100
6100
  */
6101
- declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
6101
+ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
6102
6102
  name: "evaluation_run_config_evaluation_suite_config_relations";
6103
6103
  schema: undefined;
6104
6104
  columns: {
6105
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6105
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6106
6106
  name: "created_at";
6107
6107
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6108
6108
  dataType: "string";
@@ -6119,7 +6119,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6119
6119
  identity: undefined;
6120
6120
  generated: undefined;
6121
6121
  }, {}, {}>;
6122
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6122
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6123
6123
  name: "updated_at";
6124
6124
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6125
6125
  dataType: "string";
@@ -6136,7 +6136,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6136
6136
  identity: undefined;
6137
6137
  generated: undefined;
6138
6138
  }, {}, {}>;
6139
- evaluationRunConfigId: drizzle_orm_pg_core1992.PgColumn<{
6139
+ evaluationRunConfigId: drizzle_orm_pg_core1587.PgColumn<{
6140
6140
  name: "evaluation_run_config_id";
6141
6141
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6142
6142
  dataType: "string";
@@ -6155,7 +6155,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6155
6155
  }, {}, {
6156
6156
  length: 256;
6157
6157
  }>;
6158
- evaluationSuiteConfigId: drizzle_orm_pg_core1992.PgColumn<{
6158
+ evaluationSuiteConfigId: drizzle_orm_pg_core1587.PgColumn<{
6159
6159
  name: "evaluation_suite_config_id";
6160
6160
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6161
6161
  dataType: "string";
@@ -6174,7 +6174,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6174
6174
  }, {}, {
6175
6175
  length: 256;
6176
6176
  }>;
6177
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6177
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6178
6178
  name: "project_id";
6179
6179
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6180
6180
  dataType: "string";
@@ -6193,7 +6193,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6193
6193
  }, {}, {
6194
6194
  length: 256;
6195
6195
  }>;
6196
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6196
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6197
6197
  name: "tenant_id";
6198
6198
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6199
6199
  dataType: "string";
@@ -6212,7 +6212,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6212
6212
  }, {}, {
6213
6213
  length: 256;
6214
6214
  }>;
6215
- id: drizzle_orm_pg_core1992.PgColumn<{
6215
+ id: drizzle_orm_pg_core1587.PgColumn<{
6216
6216
  name: "id";
6217
6217
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
6218
6218
  dataType: "string";
@@ -6247,11 +6247,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
6247
6247
  *
6248
6248
  * one to many relationship with evaluationRun
6249
6249
  */
6250
- declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6250
+ declare const evaluationRunConfig: drizzle_orm_pg_core1587.PgTableWithColumns<{
6251
6251
  name: "evaluation_run_config";
6252
6252
  schema: undefined;
6253
6253
  columns: {
6254
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6254
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6255
6255
  name: "created_at";
6256
6256
  tableName: "evaluation_run_config";
6257
6257
  dataType: "string";
@@ -6268,7 +6268,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6268
6268
  identity: undefined;
6269
6269
  generated: undefined;
6270
6270
  }, {}, {}>;
6271
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6271
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6272
6272
  name: "updated_at";
6273
6273
  tableName: "evaluation_run_config";
6274
6274
  dataType: "string";
@@ -6285,7 +6285,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6285
6285
  identity: undefined;
6286
6286
  generated: undefined;
6287
6287
  }, {}, {}>;
6288
- isActive: drizzle_orm_pg_core1992.PgColumn<{
6288
+ isActive: drizzle_orm_pg_core1587.PgColumn<{
6289
6289
  name: "is_active";
6290
6290
  tableName: "evaluation_run_config";
6291
6291
  dataType: "boolean";
@@ -6302,7 +6302,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6302
6302
  identity: undefined;
6303
6303
  generated: undefined;
6304
6304
  }, {}, {}>;
6305
- name: drizzle_orm_pg_core1992.PgColumn<{
6305
+ name: drizzle_orm_pg_core1587.PgColumn<{
6306
6306
  name: "name";
6307
6307
  tableName: "evaluation_run_config";
6308
6308
  dataType: "string";
@@ -6321,7 +6321,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6321
6321
  }, {}, {
6322
6322
  length: 256;
6323
6323
  }>;
6324
- description: drizzle_orm_pg_core1992.PgColumn<{
6324
+ description: drizzle_orm_pg_core1587.PgColumn<{
6325
6325
  name: "description";
6326
6326
  tableName: "evaluation_run_config";
6327
6327
  dataType: "string";
@@ -6338,7 +6338,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6338
6338
  identity: undefined;
6339
6339
  generated: undefined;
6340
6340
  }, {}, {}>;
6341
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6341
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6342
6342
  name: "project_id";
6343
6343
  tableName: "evaluation_run_config";
6344
6344
  dataType: "string";
@@ -6357,7 +6357,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6357
6357
  }, {}, {
6358
6358
  length: 256;
6359
6359
  }>;
6360
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6360
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6361
6361
  name: "tenant_id";
6362
6362
  tableName: "evaluation_run_config";
6363
6363
  dataType: "string";
@@ -6376,7 +6376,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6376
6376
  }, {}, {
6377
6377
  length: 256;
6378
6378
  }>;
6379
- id: drizzle_orm_pg_core1992.PgColumn<{
6379
+ id: drizzle_orm_pg_core1587.PgColumn<{
6380
6380
  name: "id";
6381
6381
  tableName: "evaluation_run_config";
6382
6382
  dataType: "string";
@@ -6412,11 +6412,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6412
6412
  * Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
6413
6413
  * dateRange with absolute dates), and timestamps
6414
6414
  */
6415
- declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6415
+ declare const evaluationJobConfig: drizzle_orm_pg_core1587.PgTableWithColumns<{
6416
6416
  name: "evaluation_job_config";
6417
6417
  schema: undefined;
6418
6418
  columns: {
6419
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6419
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6420
6420
  name: "created_at";
6421
6421
  tableName: "evaluation_job_config";
6422
6422
  dataType: "string";
@@ -6433,7 +6433,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6433
6433
  identity: undefined;
6434
6434
  generated: undefined;
6435
6435
  }, {}, {}>;
6436
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6436
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6437
6437
  name: "updated_at";
6438
6438
  tableName: "evaluation_job_config";
6439
6439
  dataType: "string";
@@ -6450,7 +6450,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6450
6450
  identity: undefined;
6451
6451
  generated: undefined;
6452
6452
  }, {}, {}>;
6453
- jobFilters: drizzle_orm_pg_core1992.PgColumn<{
6453
+ jobFilters: drizzle_orm_pg_core1587.PgColumn<{
6454
6454
  name: "job_filters";
6455
6455
  tableName: "evaluation_job_config";
6456
6456
  dataType: "json";
@@ -6483,7 +6483,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6483
6483
  } | undefined;
6484
6484
  }>;
6485
6485
  }>;
6486
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6486
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6487
6487
  name: "project_id";
6488
6488
  tableName: "evaluation_job_config";
6489
6489
  dataType: "string";
@@ -6502,7 +6502,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6502
6502
  }, {}, {
6503
6503
  length: 256;
6504
6504
  }>;
6505
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6505
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6506
6506
  name: "tenant_id";
6507
6507
  tableName: "evaluation_job_config";
6508
6508
  dataType: "string";
@@ -6521,7 +6521,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6521
6521
  }, {}, {
6522
6522
  length: 256;
6523
6523
  }>;
6524
- id: drizzle_orm_pg_core1992.PgColumn<{
6524
+ id: drizzle_orm_pg_core1587.PgColumn<{
6525
6525
  name: "id";
6526
6526
  tableName: "evaluation_job_config";
6527
6527
  dataType: "string";
@@ -6550,11 +6550,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1992.PgTableWithColumns<{
6550
6550
  *
6551
6551
  * Includes: evaluationJobConfigId, evaluatorId, and timestamps
6552
6552
  */
6553
- declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
6553
+ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
6554
6554
  name: "evaluation_job_config_evaluator_relations";
6555
6555
  schema: undefined;
6556
6556
  columns: {
6557
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6557
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6558
6558
  name: "created_at";
6559
6559
  tableName: "evaluation_job_config_evaluator_relations";
6560
6560
  dataType: "string";
@@ -6571,7 +6571,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6571
6571
  identity: undefined;
6572
6572
  generated: undefined;
6573
6573
  }, {}, {}>;
6574
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6574
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6575
6575
  name: "updated_at";
6576
6576
  tableName: "evaluation_job_config_evaluator_relations";
6577
6577
  dataType: "string";
@@ -6588,7 +6588,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6588
6588
  identity: undefined;
6589
6589
  generated: undefined;
6590
6590
  }, {}, {}>;
6591
- evaluationJobConfigId: drizzle_orm_pg_core1992.PgColumn<{
6591
+ evaluationJobConfigId: drizzle_orm_pg_core1587.PgColumn<{
6592
6592
  name: "evaluation_job_config_id";
6593
6593
  tableName: "evaluation_job_config_evaluator_relations";
6594
6594
  dataType: "string";
@@ -6607,7 +6607,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6607
6607
  }, {}, {
6608
6608
  length: 256;
6609
6609
  }>;
6610
- evaluatorId: drizzle_orm_pg_core1992.PgColumn<{
6610
+ evaluatorId: drizzle_orm_pg_core1587.PgColumn<{
6611
6611
  name: "evaluator_id";
6612
6612
  tableName: "evaluation_job_config_evaluator_relations";
6613
6613
  dataType: "string";
@@ -6626,7 +6626,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6626
6626
  }, {}, {
6627
6627
  length: 256;
6628
6628
  }>;
6629
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6629
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6630
6630
  name: "project_id";
6631
6631
  tableName: "evaluation_job_config_evaluator_relations";
6632
6632
  dataType: "string";
@@ -6645,7 +6645,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6645
6645
  }, {}, {
6646
6646
  length: 256;
6647
6647
  }>;
6648
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6648
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6649
6649
  name: "tenant_id";
6650
6650
  tableName: "evaluation_job_config_evaluator_relations";
6651
6651
  dataType: "string";
@@ -6664,7 +6664,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6664
6664
  }, {}, {
6665
6665
  length: 256;
6666
6666
  }>;
6667
- id: drizzle_orm_pg_core1992.PgColumn<{
6667
+ id: drizzle_orm_pg_core1587.PgColumn<{
6668
6668
  name: "id";
6669
6669
  tableName: "evaluation_job_config_evaluator_relations";
6670
6670
  dataType: "string";
@@ -6686,114 +6686,114 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgT
6686
6686
  };
6687
6687
  dialect: "pg";
6688
6688
  }>;
6689
- declare const projectsRelations: drizzle_orm95.Relations<"projects", {
6690
- subAgents: drizzle_orm95.Many<"sub_agents">;
6691
- agents: drizzle_orm95.Many<"agent">;
6692
- tools: drizzle_orm95.Many<"tools">;
6693
- functions: drizzle_orm95.Many<"functions">;
6694
- contextConfigs: drizzle_orm95.Many<"context_configs">;
6695
- externalAgents: drizzle_orm95.Many<"external_agents">;
6696
- dataComponents: drizzle_orm95.Many<"data_components">;
6697
- artifactComponents: drizzle_orm95.Many<"artifact_components">;
6698
- credentialReferences: drizzle_orm95.Many<"credential_references">;
6699
- skills: drizzle_orm95.Many<"skills">;
6700
- skillFiles: drizzle_orm95.Many<"skill_files">;
6689
+ declare const projectsRelations: drizzle_orm62.Relations<"projects", {
6690
+ subAgents: drizzle_orm62.Many<"sub_agents">;
6691
+ agents: drizzle_orm62.Many<"agent">;
6692
+ tools: drizzle_orm62.Many<"tools">;
6693
+ functions: drizzle_orm62.Many<"functions">;
6694
+ contextConfigs: drizzle_orm62.Many<"context_configs">;
6695
+ externalAgents: drizzle_orm62.Many<"external_agents">;
6696
+ dataComponents: drizzle_orm62.Many<"data_components">;
6697
+ artifactComponents: drizzle_orm62.Many<"artifact_components">;
6698
+ credentialReferences: drizzle_orm62.Many<"credential_references">;
6699
+ skills: drizzle_orm62.Many<"skills">;
6700
+ skillFiles: drizzle_orm62.Many<"skill_files">;
6701
6701
  }>;
6702
- declare const contextConfigsRelations: drizzle_orm95.Relations<"context_configs", {
6703
- project: drizzle_orm95.One<"projects", true>;
6704
- agents: drizzle_orm95.Many<"agent">;
6702
+ declare const contextConfigsRelations: drizzle_orm62.Relations<"context_configs", {
6703
+ project: drizzle_orm62.One<"projects", true>;
6704
+ agents: drizzle_orm62.Many<"agent">;
6705
6705
  }>;
6706
- declare const subAgentsRelations: drizzle_orm95.Relations<"sub_agents", {
6707
- project: drizzle_orm95.One<"projects", true>;
6708
- defaultForAgents: drizzle_orm95.Many<"agent">;
6709
- sourceRelations: drizzle_orm95.Many<"sub_agent_relations">;
6710
- targetRelations: drizzle_orm95.Many<"sub_agent_relations">;
6711
- toolRelations: drizzle_orm95.Many<"sub_agent_tool_relations">;
6712
- functionToolRelations: drizzle_orm95.Many<"sub_agent_function_tool_relations">;
6713
- dataComponentRelations: drizzle_orm95.Many<"sub_agent_data_components">;
6714
- artifactComponentRelations: drizzle_orm95.Many<"sub_agent_artifact_components">;
6715
- skillRelations: drizzle_orm95.Many<"sub_agent_skills">;
6706
+ declare const subAgentsRelations: drizzle_orm62.Relations<"sub_agents", {
6707
+ project: drizzle_orm62.One<"projects", true>;
6708
+ defaultForAgents: drizzle_orm62.Many<"agent">;
6709
+ sourceRelations: drizzle_orm62.Many<"sub_agent_relations">;
6710
+ targetRelations: drizzle_orm62.Many<"sub_agent_relations">;
6711
+ toolRelations: drizzle_orm62.Many<"sub_agent_tool_relations">;
6712
+ functionToolRelations: drizzle_orm62.Many<"sub_agent_function_tool_relations">;
6713
+ dataComponentRelations: drizzle_orm62.Many<"sub_agent_data_components">;
6714
+ artifactComponentRelations: drizzle_orm62.Many<"sub_agent_artifact_components">;
6715
+ skillRelations: drizzle_orm62.Many<"sub_agent_skills">;
6716
6716
  }>;
6717
- declare const agentRelations: drizzle_orm95.Relations<"agent", {
6718
- project: drizzle_orm95.One<"projects", true>;
6719
- defaultSubAgent: drizzle_orm95.One<"sub_agents", false>;
6720
- contextConfig: drizzle_orm95.One<"context_configs", false>;
6721
- functionTools: drizzle_orm95.Many<"function_tools">;
6717
+ declare const agentRelations: drizzle_orm62.Relations<"agent", {
6718
+ project: drizzle_orm62.One<"projects", true>;
6719
+ defaultSubAgent: drizzle_orm62.One<"sub_agents", false>;
6720
+ contextConfig: drizzle_orm62.One<"context_configs", false>;
6721
+ functionTools: drizzle_orm62.Many<"function_tools">;
6722
6722
  }>;
6723
- declare const externalAgentsRelations: drizzle_orm95.Relations<"external_agents", {
6724
- project: drizzle_orm95.One<"projects", true>;
6725
- subAgentExternalAgentRelations: drizzle_orm95.Many<"sub_agent_external_agent_relations">;
6726
- credentialReference: drizzle_orm95.One<"credential_references", false>;
6723
+ declare const externalAgentsRelations: drizzle_orm62.Relations<"external_agents", {
6724
+ project: drizzle_orm62.One<"projects", true>;
6725
+ subAgentExternalAgentRelations: drizzle_orm62.Many<"sub_agent_external_agent_relations">;
6726
+ credentialReference: drizzle_orm62.One<"credential_references", false>;
6727
6727
  }>;
6728
- declare const agentToolRelationsRelations: drizzle_orm95.Relations<"sub_agent_tool_relations", {
6729
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6730
- tool: drizzle_orm95.One<"tools", true>;
6728
+ declare const agentToolRelationsRelations: drizzle_orm62.Relations<"sub_agent_tool_relations", {
6729
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6730
+ tool: drizzle_orm62.One<"tools", true>;
6731
6731
  }>;
6732
- declare const credentialReferencesRelations: drizzle_orm95.Relations<"credential_references", {
6733
- project: drizzle_orm95.One<"projects", true>;
6734
- tools: drizzle_orm95.Many<"tools">;
6735
- externalAgents: drizzle_orm95.Many<"external_agents">;
6732
+ declare const credentialReferencesRelations: drizzle_orm62.Relations<"credential_references", {
6733
+ project: drizzle_orm62.One<"projects", true>;
6734
+ tools: drizzle_orm62.Many<"tools">;
6735
+ externalAgents: drizzle_orm62.Many<"external_agents">;
6736
6736
  }>;
6737
- declare const toolsRelations: drizzle_orm95.Relations<"tools", {
6738
- project: drizzle_orm95.One<"projects", true>;
6739
- subAgentRelations: drizzle_orm95.Many<"sub_agent_tool_relations">;
6740
- credentialReference: drizzle_orm95.One<"credential_references", false>;
6737
+ declare const toolsRelations: drizzle_orm62.Relations<"tools", {
6738
+ project: drizzle_orm62.One<"projects", true>;
6739
+ subAgentRelations: drizzle_orm62.Many<"sub_agent_tool_relations">;
6740
+ credentialReference: drizzle_orm62.One<"credential_references", false>;
6741
6741
  }>;
6742
- declare const artifactComponentsRelations: drizzle_orm95.Relations<"artifact_components", {
6743
- project: drizzle_orm95.One<"projects", true>;
6744
- subAgentRelations: drizzle_orm95.Many<"sub_agent_artifact_components">;
6742
+ declare const artifactComponentsRelations: drizzle_orm62.Relations<"artifact_components", {
6743
+ project: drizzle_orm62.One<"projects", true>;
6744
+ subAgentRelations: drizzle_orm62.Many<"sub_agent_artifact_components">;
6745
6745
  }>;
6746
- declare const subAgentArtifactComponentsRelations: drizzle_orm95.Relations<"sub_agent_artifact_components", {
6747
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6748
- artifactComponent: drizzle_orm95.One<"artifact_components", true>;
6746
+ declare const subAgentArtifactComponentsRelations: drizzle_orm62.Relations<"sub_agent_artifact_components", {
6747
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6748
+ artifactComponent: drizzle_orm62.One<"artifact_components", true>;
6749
6749
  }>;
6750
- declare const dataComponentsRelations: drizzle_orm95.Relations<"data_components", {
6751
- project: drizzle_orm95.One<"projects", true>;
6752
- subAgentRelations: drizzle_orm95.Many<"sub_agent_data_components">;
6750
+ declare const dataComponentsRelations: drizzle_orm62.Relations<"data_components", {
6751
+ project: drizzle_orm62.One<"projects", true>;
6752
+ subAgentRelations: drizzle_orm62.Many<"sub_agent_data_components">;
6753
6753
  }>;
6754
- declare const subAgentDataComponentsRelations: drizzle_orm95.Relations<"sub_agent_data_components", {
6755
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6756
- dataComponent: drizzle_orm95.One<"data_components", true>;
6754
+ declare const subAgentDataComponentsRelations: drizzle_orm62.Relations<"sub_agent_data_components", {
6755
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6756
+ dataComponent: drizzle_orm62.One<"data_components", true>;
6757
6757
  }>;
6758
- declare const skillsRelations: drizzle_orm95.Relations<"skills", {
6759
- project: drizzle_orm95.One<"projects", true>;
6760
- files: drizzle_orm95.Many<"skill_files">;
6761
- subAgentRelations: drizzle_orm95.Many<"sub_agent_skills">;
6758
+ declare const skillsRelations: drizzle_orm62.Relations<"skills", {
6759
+ project: drizzle_orm62.One<"projects", true>;
6760
+ files: drizzle_orm62.Many<"skill_files">;
6761
+ subAgentRelations: drizzle_orm62.Many<"sub_agent_skills">;
6762
6762
  }>;
6763
- declare const skillFilesRelations: drizzle_orm95.Relations<"skill_files", {
6764
- project: drizzle_orm95.One<"projects", true>;
6765
- skill: drizzle_orm95.One<"skills", true>;
6763
+ declare const skillFilesRelations: drizzle_orm62.Relations<"skill_files", {
6764
+ project: drizzle_orm62.One<"projects", true>;
6765
+ skill: drizzle_orm62.One<"skills", true>;
6766
6766
  }>;
6767
- declare const subAgentSkillsRelations: drizzle_orm95.Relations<"sub_agent_skills", {
6768
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6769
- skill: drizzle_orm95.One<"skills", true>;
6767
+ declare const subAgentSkillsRelations: drizzle_orm62.Relations<"sub_agent_skills", {
6768
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6769
+ skill: drizzle_orm62.One<"skills", true>;
6770
6770
  }>;
6771
- declare const functionsRelations: drizzle_orm95.Relations<"functions", {
6772
- functionTools: drizzle_orm95.Many<"function_tools">;
6773
- project: drizzle_orm95.One<"projects", true>;
6771
+ declare const functionsRelations: drizzle_orm62.Relations<"functions", {
6772
+ functionTools: drizzle_orm62.Many<"function_tools">;
6773
+ project: drizzle_orm62.One<"projects", true>;
6774
6774
  }>;
6775
- declare const subAgentRelationsRelations: drizzle_orm95.Relations<"sub_agent_relations", {
6776
- agent: drizzle_orm95.One<"agent", true>;
6777
- sourceSubAgent: drizzle_orm95.One<"sub_agents", true>;
6778
- targetSubAgent: drizzle_orm95.One<"sub_agents", false>;
6775
+ declare const subAgentRelationsRelations: drizzle_orm62.Relations<"sub_agent_relations", {
6776
+ agent: drizzle_orm62.One<"agent", true>;
6777
+ sourceSubAgent: drizzle_orm62.One<"sub_agents", true>;
6778
+ targetSubAgent: drizzle_orm62.One<"sub_agents", false>;
6779
6779
  }>;
6780
- declare const functionToolsRelations: drizzle_orm95.Relations<"function_tools", {
6781
- project: drizzle_orm95.One<"projects", true>;
6782
- agent: drizzle_orm95.One<"agent", true>;
6783
- function: drizzle_orm95.One<"functions", true>;
6784
- subAgentRelations: drizzle_orm95.Many<"sub_agent_function_tool_relations">;
6780
+ declare const functionToolsRelations: drizzle_orm62.Relations<"function_tools", {
6781
+ project: drizzle_orm62.One<"projects", true>;
6782
+ agent: drizzle_orm62.One<"agent", true>;
6783
+ function: drizzle_orm62.One<"functions", true>;
6784
+ subAgentRelations: drizzle_orm62.Many<"sub_agent_function_tool_relations">;
6785
6785
  }>;
6786
- declare const subAgentFunctionToolRelationsRelations: drizzle_orm95.Relations<"sub_agent_function_tool_relations", {
6787
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6788
- functionTool: drizzle_orm95.One<"function_tools", true>;
6786
+ declare const subAgentFunctionToolRelationsRelations: drizzle_orm62.Relations<"sub_agent_function_tool_relations", {
6787
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6788
+ functionTool: drizzle_orm62.One<"function_tools", true>;
6789
6789
  }>;
6790
- declare const subAgentExternalAgentRelationsRelations: drizzle_orm95.Relations<"sub_agent_external_agent_relations", {
6791
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6792
- externalAgent: drizzle_orm95.One<"external_agents", true>;
6790
+ declare const subAgentExternalAgentRelationsRelations: drizzle_orm62.Relations<"sub_agent_external_agent_relations", {
6791
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6792
+ externalAgent: drizzle_orm62.One<"external_agents", true>;
6793
6793
  }>;
6794
- declare const subAgentTeamAgentRelationsRelations: drizzle_orm95.Relations<"sub_agent_team_agent_relations", {
6795
- subAgent: drizzle_orm95.One<"sub_agents", true>;
6796
- targetAgent: drizzle_orm95.One<"agent", true>;
6794
+ declare const subAgentTeamAgentRelationsRelations: drizzle_orm62.Relations<"sub_agent_team_agent_relations", {
6795
+ subAgent: drizzle_orm62.One<"sub_agents", true>;
6796
+ targetAgent: drizzle_orm62.One<"agent", true>;
6797
6797
  }>;
6798
6798
  /**
6799
6799
  * Links agents to datasets. Many-to-many relationship that scopes a dataset
@@ -6803,11 +6803,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm95.Relations<"sub_
6803
6803
  *
6804
6804
  * Includes: agentId, datasetId, and timestamps
6805
6805
  */
6806
- declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
6806
+ declare const agentDatasetRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
6807
6807
  name: "agent_dataset_relations";
6808
6808
  schema: undefined;
6809
6809
  columns: {
6810
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6810
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6811
6811
  name: "created_at";
6812
6812
  tableName: "agent_dataset_relations";
6813
6813
  dataType: "string";
@@ -6824,7 +6824,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6824
6824
  identity: undefined;
6825
6825
  generated: undefined;
6826
6826
  }, {}, {}>;
6827
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6827
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6828
6828
  name: "updated_at";
6829
6829
  tableName: "agent_dataset_relations";
6830
6830
  dataType: "string";
@@ -6841,7 +6841,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6841
6841
  identity: undefined;
6842
6842
  generated: undefined;
6843
6843
  }, {}, {}>;
6844
- agentId: drizzle_orm_pg_core1992.PgColumn<{
6844
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
6845
6845
  name: "agent_id";
6846
6846
  tableName: "agent_dataset_relations";
6847
6847
  dataType: "string";
@@ -6860,7 +6860,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6860
6860
  }, {}, {
6861
6861
  length: 256;
6862
6862
  }>;
6863
- datasetId: drizzle_orm_pg_core1992.PgColumn<{
6863
+ datasetId: drizzle_orm_pg_core1587.PgColumn<{
6864
6864
  name: "dataset_id";
6865
6865
  tableName: "agent_dataset_relations";
6866
6866
  dataType: "string";
@@ -6879,7 +6879,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6879
6879
  }, {}, {
6880
6880
  length: 256;
6881
6881
  }>;
6882
- projectId: drizzle_orm_pg_core1992.PgColumn<{
6882
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
6883
6883
  name: "project_id";
6884
6884
  tableName: "agent_dataset_relations";
6885
6885
  dataType: "string";
@@ -6898,7 +6898,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6898
6898
  }, {}, {
6899
6899
  length: 256;
6900
6900
  }>;
6901
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
6901
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
6902
6902
  name: "tenant_id";
6903
6903
  tableName: "agent_dataset_relations";
6904
6904
  dataType: "string";
@@ -6917,7 +6917,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6917
6917
  }, {}, {
6918
6918
  length: 256;
6919
6919
  }>;
6920
- id: drizzle_orm_pg_core1992.PgColumn<{
6920
+ id: drizzle_orm_pg_core1587.PgColumn<{
6921
6921
  name: "id";
6922
6922
  tableName: "agent_dataset_relations";
6923
6923
  dataType: "string";
@@ -6947,11 +6947,11 @@ declare const agentDatasetRelations: drizzle_orm_pg_core1992.PgTableWithColumns<
6947
6947
  *
6948
6948
  * Includes: agentId, evaluatorId, and timestamps
6949
6949
  */
6950
- declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
6950
+ declare const agentEvaluatorRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
6951
6951
  name: "agent_evaluator_relations";
6952
6952
  schema: undefined;
6953
6953
  columns: {
6954
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
6954
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
6955
6955
  name: "created_at";
6956
6956
  tableName: "agent_evaluator_relations";
6957
6957
  dataType: "string";
@@ -6968,7 +6968,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
6968
6968
  identity: undefined;
6969
6969
  generated: undefined;
6970
6970
  }, {}, {}>;
6971
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
6971
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
6972
6972
  name: "updated_at";
6973
6973
  tableName: "agent_evaluator_relations";
6974
6974
  dataType: "string";
@@ -6985,7 +6985,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
6985
6985
  identity: undefined;
6986
6986
  generated: undefined;
6987
6987
  }, {}, {}>;
6988
- agentId: drizzle_orm_pg_core1992.PgColumn<{
6988
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
6989
6989
  name: "agent_id";
6990
6990
  tableName: "agent_evaluator_relations";
6991
6991
  dataType: "string";
@@ -7004,7 +7004,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
7004
7004
  }, {}, {
7005
7005
  length: 256;
7006
7006
  }>;
7007
- evaluatorId: drizzle_orm_pg_core1992.PgColumn<{
7007
+ evaluatorId: drizzle_orm_pg_core1587.PgColumn<{
7008
7008
  name: "evaluator_id";
7009
7009
  tableName: "agent_evaluator_relations";
7010
7010
  dataType: "string";
@@ -7023,7 +7023,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
7023
7023
  }, {}, {
7024
7024
  length: 256;
7025
7025
  }>;
7026
- projectId: drizzle_orm_pg_core1992.PgColumn<{
7026
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
7027
7027
  name: "project_id";
7028
7028
  tableName: "agent_evaluator_relations";
7029
7029
  dataType: "string";
@@ -7042,7 +7042,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
7042
7042
  }, {}, {
7043
7043
  length: 256;
7044
7044
  }>;
7045
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
7045
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
7046
7046
  name: "tenant_id";
7047
7047
  tableName: "agent_evaluator_relations";
7048
7048
  dataType: "string";
@@ -7061,7 +7061,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
7061
7061
  }, {}, {
7062
7062
  length: 256;
7063
7063
  }>;
7064
- id: drizzle_orm_pg_core1992.PgColumn<{
7064
+ id: drizzle_orm_pg_core1587.PgColumn<{
7065
7065
  name: "id";
7066
7066
  tableName: "agent_evaluator_relations";
7067
7067
  dataType: "string";
@@ -7090,11 +7090,11 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumn
7090
7090
  *
7091
7091
  * Includes: datasetRunConfigId, agentId, and timestamps
7092
7092
  */
7093
- declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
7093
+ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
7094
7094
  name: "dataset_run_config_agent_relations";
7095
7095
  schema: undefined;
7096
7096
  columns: {
7097
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
7097
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
7098
7098
  name: "created_at";
7099
7099
  tableName: "dataset_run_config_agent_relations";
7100
7100
  dataType: "string";
@@ -7111,7 +7111,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7111
7111
  identity: undefined;
7112
7112
  generated: undefined;
7113
7113
  }, {}, {}>;
7114
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
7114
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
7115
7115
  name: "updated_at";
7116
7116
  tableName: "dataset_run_config_agent_relations";
7117
7117
  dataType: "string";
@@ -7128,7 +7128,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7128
7128
  identity: undefined;
7129
7129
  generated: undefined;
7130
7130
  }, {}, {}>;
7131
- datasetRunConfigId: drizzle_orm_pg_core1992.PgColumn<{
7131
+ datasetRunConfigId: drizzle_orm_pg_core1587.PgColumn<{
7132
7132
  name: "dataset_run_config_id";
7133
7133
  tableName: "dataset_run_config_agent_relations";
7134
7134
  dataType: "string";
@@ -7147,7 +7147,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7147
7147
  }, {}, {
7148
7148
  length: 256;
7149
7149
  }>;
7150
- agentId: drizzle_orm_pg_core1992.PgColumn<{
7150
+ agentId: drizzle_orm_pg_core1587.PgColumn<{
7151
7151
  name: "agent_id";
7152
7152
  tableName: "dataset_run_config_agent_relations";
7153
7153
  dataType: "string";
@@ -7166,7 +7166,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7166
7166
  }, {}, {
7167
7167
  length: 256;
7168
7168
  }>;
7169
- projectId: drizzle_orm_pg_core1992.PgColumn<{
7169
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
7170
7170
  name: "project_id";
7171
7171
  tableName: "dataset_run_config_agent_relations";
7172
7172
  dataType: "string";
@@ -7185,7 +7185,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7185
7185
  }, {}, {
7186
7186
  length: 256;
7187
7187
  }>;
7188
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
7188
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
7189
7189
  name: "tenant_id";
7190
7190
  tableName: "dataset_run_config_agent_relations";
7191
7191
  dataType: "string";
@@ -7204,7 +7204,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7204
7204
  }, {}, {
7205
7205
  length: 256;
7206
7206
  }>;
7207
- id: drizzle_orm_pg_core1992.PgColumn<{
7207
+ id: drizzle_orm_pg_core1587.PgColumn<{
7208
7208
  name: "id";
7209
7209
  tableName: "dataset_run_config_agent_relations";
7210
7210
  dataType: "string";
@@ -7233,11 +7233,11 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1992.PgTableWit
7233
7233
  *
7234
7234
  * Includes: datasetRunConfigId, evaluatorId, and timestamps
7235
7235
  */
7236
- declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTableWithColumns<{
7236
+ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1587.PgTableWithColumns<{
7237
7237
  name: "dataset_run_config_evaluator_relations";
7238
7238
  schema: undefined;
7239
7239
  columns: {
7240
- createdAt: drizzle_orm_pg_core1992.PgColumn<{
7240
+ createdAt: drizzle_orm_pg_core1587.PgColumn<{
7241
7241
  name: "created_at";
7242
7242
  tableName: "dataset_run_config_evaluator_relations";
7243
7243
  dataType: "string";
@@ -7254,7 +7254,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7254
7254
  identity: undefined;
7255
7255
  generated: undefined;
7256
7256
  }, {}, {}>;
7257
- updatedAt: drizzle_orm_pg_core1992.PgColumn<{
7257
+ updatedAt: drizzle_orm_pg_core1587.PgColumn<{
7258
7258
  name: "updated_at";
7259
7259
  tableName: "dataset_run_config_evaluator_relations";
7260
7260
  dataType: "string";
@@ -7271,7 +7271,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7271
7271
  identity: undefined;
7272
7272
  generated: undefined;
7273
7273
  }, {}, {}>;
7274
- datasetRunConfigId: drizzle_orm_pg_core1992.PgColumn<{
7274
+ datasetRunConfigId: drizzle_orm_pg_core1587.PgColumn<{
7275
7275
  name: "dataset_run_config_id";
7276
7276
  tableName: "dataset_run_config_evaluator_relations";
7277
7277
  dataType: "string";
@@ -7290,7 +7290,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7290
7290
  }, {}, {
7291
7291
  length: 256;
7292
7292
  }>;
7293
- evaluatorId: drizzle_orm_pg_core1992.PgColumn<{
7293
+ evaluatorId: drizzle_orm_pg_core1587.PgColumn<{
7294
7294
  name: "evaluator_id";
7295
7295
  tableName: "dataset_run_config_evaluator_relations";
7296
7296
  dataType: "string";
@@ -7309,7 +7309,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7309
7309
  }, {}, {
7310
7310
  length: 256;
7311
7311
  }>;
7312
- projectId: drizzle_orm_pg_core1992.PgColumn<{
7312
+ projectId: drizzle_orm_pg_core1587.PgColumn<{
7313
7313
  name: "project_id";
7314
7314
  tableName: "dataset_run_config_evaluator_relations";
7315
7315
  dataType: "string";
@@ -7328,7 +7328,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7328
7328
  }, {}, {
7329
7329
  length: 256;
7330
7330
  }>;
7331
- tenantId: drizzle_orm_pg_core1992.PgColumn<{
7331
+ tenantId: drizzle_orm_pg_core1587.PgColumn<{
7332
7332
  name: "tenant_id";
7333
7333
  tableName: "dataset_run_config_evaluator_relations";
7334
7334
  dataType: "string";
@@ -7347,7 +7347,7 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7347
7347
  }, {}, {
7348
7348
  length: 256;
7349
7349
  }>;
7350
- id: drizzle_orm_pg_core1992.PgColumn<{
7350
+ id: drizzle_orm_pg_core1587.PgColumn<{
7351
7351
  name: "id";
7352
7352
  tableName: "dataset_run_config_evaluator_relations";
7353
7353
  dataType: "string";
@@ -7369,13 +7369,13 @@ declare const datasetRunConfigEvaluatorRelations: drizzle_orm_pg_core1992.PgTabl
7369
7369
  };
7370
7370
  dialect: "pg";
7371
7371
  }>;
7372
- declare const agentDatasetRelationsRelations: drizzle_orm95.Relations<"agent_dataset_relations", {
7373
- agent: drizzle_orm95.One<"agent", true>;
7374
- dataset: drizzle_orm95.One<"dataset", true>;
7372
+ declare const agentDatasetRelationsRelations: drizzle_orm62.Relations<"agent_dataset_relations", {
7373
+ agent: drizzle_orm62.One<"agent", true>;
7374
+ dataset: drizzle_orm62.One<"dataset", true>;
7375
7375
  }>;
7376
- declare const agentEvaluatorRelationsRelations: drizzle_orm95.Relations<"agent_evaluator_relations", {
7377
- agent: drizzle_orm95.One<"agent", true>;
7378
- evaluator: drizzle_orm95.One<"evaluator", true>;
7376
+ declare const agentEvaluatorRelationsRelations: drizzle_orm62.Relations<"agent_evaluator_relations", {
7377
+ agent: drizzle_orm62.One<"agent", true>;
7378
+ evaluator: drizzle_orm62.One<"evaluator", true>;
7379
7379
  }>;
7380
7380
  //#endregion
7381
7381
  export { agentDatasetRelations, agentDatasetRelationsRelations, agentEvaluatorRelations, agentEvaluatorRelationsRelations, agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, datasetRunConfigEvaluatorRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, manage_schema_d_exports, projects, projectsRelations, skillFiles, skillFilesRelations, skills, skillsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentSkills, subAgentSkillsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggerUsers, triggers, webhookDestinationAgents, webhookDestinationAgentsRelations, webhookDestinationEvaluators, webhookDestinationEvaluatorsRelations, webhookDestinations, webhookDestinationsRelations };