@inkeep/agents-core 0.0.0-dev-20260123202200 → 0.0.0-dev-20260123211824

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 (49) hide show
  1. package/dist/auth/auth-schema.d.ts +82 -82
  2. package/dist/auth/auth.d.ts +24 -24
  3. package/dist/auth/auth.js +16 -12
  4. package/dist/auth/authz/client.d.ts +9 -3
  5. package/dist/auth/authz/client.js +24 -17
  6. package/dist/auth/authz/config.d.ts +51 -24
  7. package/dist/auth/authz/config.js +44 -27
  8. package/dist/auth/authz/index.d.ts +3 -3
  9. package/dist/auth/authz/index.js +3 -3
  10. package/dist/auth/authz/permissions.d.ts +0 -4
  11. package/dist/auth/authz/permissions.js +13 -13
  12. package/dist/auth/authz/sync.d.ts +23 -2
  13. package/dist/auth/authz/sync.js +136 -52
  14. package/dist/auth/permissions.d.ts +9 -9
  15. package/dist/client-exports.d.ts +7 -6
  16. package/dist/client-exports.js +2 -1
  17. package/dist/data-access/index.d.ts +2 -2
  18. package/dist/data-access/index.js +2 -2
  19. package/dist/data-access/manage/agentFull.js +2 -0
  20. package/dist/data-access/manage/agents.d.ts +46 -46
  21. package/dist/data-access/manage/agents.js +3 -2
  22. package/dist/data-access/manage/artifactComponents.d.ts +14 -14
  23. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  24. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  25. package/dist/data-access/manage/functionTools.d.ts +37 -16
  26. package/dist/data-access/manage/functionTools.js +10 -6
  27. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  28. package/dist/data-access/manage/subAgentRelations.d.ts +34 -34
  29. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  30. package/dist/data-access/manage/subAgents.d.ts +18 -18
  31. package/dist/data-access/manage/tools.d.ts +33 -33
  32. package/dist/data-access/runtime/apiKeys.d.ts +24 -24
  33. package/dist/data-access/runtime/conversations.d.ts +31 -31
  34. package/dist/data-access/runtime/messages.d.ts +18 -18
  35. package/dist/data-access/runtime/organizations.d.ts +2 -2
  36. package/dist/data-access/runtime/organizations.js +2 -2
  37. package/dist/data-access/runtime/tasks.d.ts +7 -7
  38. package/dist/db/manage/manage-schema.d.ts +399 -376
  39. package/dist/db/manage/manage-schema.js +1 -0
  40. package/dist/db/runtime/runtime-schema.d.ts +181 -181
  41. package/dist/index.d.ts +4 -4
  42. package/dist/index.js +4 -4
  43. package/dist/validation/dolt-schemas.d.ts +1 -1
  44. package/dist/validation/schemas.d.ts +1466 -1415
  45. package/drizzle/manage/0004_curious_phil_sheldon.sql +2 -0
  46. package/drizzle/manage/meta/0004_snapshot.json +3141 -0
  47. package/drizzle/manage/meta/_journal.json +7 -0
  48. package/package.json +2 -1
  49. package/spicedb/schema.zed +114 -0
@@ -1,16 +1,16 @@
1
1
  import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
2
- import * as drizzle_orm37 from "drizzle-orm";
3
- import * as drizzle_orm_pg_core364 from "drizzle-orm/pg-core";
2
+ import * as drizzle_orm20 from "drizzle-orm";
3
+ import * as drizzle_orm_pg_core1278 from "drizzle-orm/pg-core";
4
4
 
5
5
  //#region src/db/manage/manage-schema.d.ts
6
6
  declare namespace manage_schema_d_exports {
7
7
  export { agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
8
8
  }
9
- declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
9
+ declare const projects: drizzle_orm_pg_core1278.PgTableWithColumns<{
10
10
  name: "projects";
11
11
  schema: undefined;
12
12
  columns: {
13
- createdAt: drizzle_orm_pg_core364.PgColumn<{
13
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
14
14
  name: "created_at";
15
15
  tableName: "projects";
16
16
  dataType: "string";
@@ -27,7 +27,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
27
27
  identity: undefined;
28
28
  generated: undefined;
29
29
  }, {}, {}>;
30
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
30
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
31
31
  name: "updated_at";
32
32
  tableName: "projects";
33
33
  dataType: "string";
@@ -44,7 +44,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
44
44
  identity: undefined;
45
45
  generated: undefined;
46
46
  }, {}, {}>;
47
- models: drizzle_orm_pg_core364.PgColumn<{
47
+ models: drizzle_orm_pg_core1278.PgColumn<{
48
48
  name: "models";
49
49
  tableName: "projects";
50
50
  dataType: "json";
@@ -89,7 +89,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
89
89
  } | undefined;
90
90
  };
91
91
  }>;
92
- stopWhen: drizzle_orm_pg_core364.PgColumn<{
92
+ stopWhen: drizzle_orm_pg_core1278.PgColumn<{
93
93
  name: "stop_when";
94
94
  tableName: "projects";
95
95
  dataType: "json";
@@ -114,7 +114,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
114
114
  stepCountIs?: number | undefined;
115
115
  };
116
116
  }>;
117
- name: drizzle_orm_pg_core364.PgColumn<{
117
+ name: drizzle_orm_pg_core1278.PgColumn<{
118
118
  name: "name";
119
119
  tableName: "projects";
120
120
  dataType: "string";
@@ -133,7 +133,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
133
133
  }, {}, {
134
134
  length: 256;
135
135
  }>;
136
- description: drizzle_orm_pg_core364.PgColumn<{
136
+ description: drizzle_orm_pg_core1278.PgColumn<{
137
137
  name: "description";
138
138
  tableName: "projects";
139
139
  dataType: "string";
@@ -150,7 +150,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
150
150
  identity: undefined;
151
151
  generated: undefined;
152
152
  }, {}, {}>;
153
- tenantId: drizzle_orm_pg_core364.PgColumn<{
153
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
154
154
  name: "tenant_id";
155
155
  tableName: "projects";
156
156
  dataType: "string";
@@ -169,7 +169,7 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
169
169
  }, {}, {
170
170
  length: 256;
171
171
  }>;
172
- id: drizzle_orm_pg_core364.PgColumn<{
172
+ id: drizzle_orm_pg_core1278.PgColumn<{
173
173
  name: "id";
174
174
  tableName: "projects";
175
175
  dataType: "string";
@@ -191,11 +191,11 @@ declare const projects: drizzle_orm_pg_core364.PgTableWithColumns<{
191
191
  };
192
192
  dialect: "pg";
193
193
  }>;
194
- declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
194
+ declare const agents: drizzle_orm_pg_core1278.PgTableWithColumns<{
195
195
  name: "agent";
196
196
  schema: undefined;
197
197
  columns: {
198
- createdAt: drizzle_orm_pg_core364.PgColumn<{
198
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
199
199
  name: "created_at";
200
200
  tableName: "agent";
201
201
  dataType: "string";
@@ -212,7 +212,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
212
212
  identity: undefined;
213
213
  generated: undefined;
214
214
  }, {}, {}>;
215
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
215
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
216
216
  name: "updated_at";
217
217
  tableName: "agent";
218
218
  dataType: "string";
@@ -229,7 +229,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
229
229
  identity: undefined;
230
230
  generated: undefined;
231
231
  }, {}, {}>;
232
- name: drizzle_orm_pg_core364.PgColumn<{
232
+ name: drizzle_orm_pg_core1278.PgColumn<{
233
233
  name: "name";
234
234
  tableName: "agent";
235
235
  dataType: "string";
@@ -248,7 +248,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
248
248
  }, {}, {
249
249
  length: 256;
250
250
  }>;
251
- description: drizzle_orm_pg_core364.PgColumn<{
251
+ description: drizzle_orm_pg_core1278.PgColumn<{
252
252
  name: "description";
253
253
  tableName: "agent";
254
254
  dataType: "string";
@@ -265,7 +265,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
265
265
  identity: undefined;
266
266
  generated: undefined;
267
267
  }, {}, {}>;
268
- defaultSubAgentId: drizzle_orm_pg_core364.PgColumn<{
268
+ defaultSubAgentId: drizzle_orm_pg_core1278.PgColumn<{
269
269
  name: "default_sub_agent_id";
270
270
  tableName: "agent";
271
271
  dataType: "string";
@@ -284,7 +284,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
284
284
  }, {}, {
285
285
  length: 256;
286
286
  }>;
287
- contextConfigId: drizzle_orm_pg_core364.PgColumn<{
287
+ contextConfigId: drizzle_orm_pg_core1278.PgColumn<{
288
288
  name: "context_config_id";
289
289
  tableName: "agent";
290
290
  dataType: "string";
@@ -303,7 +303,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
303
303
  }, {}, {
304
304
  length: 256;
305
305
  }>;
306
- models: drizzle_orm_pg_core364.PgColumn<{
306
+ models: drizzle_orm_pg_core1278.PgColumn<{
307
307
  name: "models";
308
308
  tableName: "agent";
309
309
  dataType: "json";
@@ -348,7 +348,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
348
348
  } | undefined;
349
349
  };
350
350
  }>;
351
- statusUpdates: drizzle_orm_pg_core364.PgColumn<{
351
+ statusUpdates: drizzle_orm_pg_core1278.PgColumn<{
352
352
  name: "status_updates";
353
353
  tableName: "agent";
354
354
  dataType: "json";
@@ -395,7 +395,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
395
395
  }[] | undefined;
396
396
  };
397
397
  }>;
398
- prompt: drizzle_orm_pg_core364.PgColumn<{
398
+ prompt: drizzle_orm_pg_core1278.PgColumn<{
399
399
  name: "prompt";
400
400
  tableName: "agent";
401
401
  dataType: "string";
@@ -412,7 +412,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
412
412
  identity: undefined;
413
413
  generated: undefined;
414
414
  }, {}, {}>;
415
- stopWhen: drizzle_orm_pg_core364.PgColumn<{
415
+ stopWhen: drizzle_orm_pg_core1278.PgColumn<{
416
416
  name: "stop_when";
417
417
  tableName: "agent";
418
418
  dataType: "json";
@@ -435,7 +435,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
435
435
  transferCountIs?: number | undefined;
436
436
  };
437
437
  }>;
438
- projectId: drizzle_orm_pg_core364.PgColumn<{
438
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
439
439
  name: "project_id";
440
440
  tableName: "agent";
441
441
  dataType: "string";
@@ -454,7 +454,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
454
454
  }, {}, {
455
455
  length: 256;
456
456
  }>;
457
- tenantId: drizzle_orm_pg_core364.PgColumn<{
457
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
458
458
  name: "tenant_id";
459
459
  tableName: "agent";
460
460
  dataType: "string";
@@ -473,7 +473,7 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
473
473
  }, {}, {
474
474
  length: 256;
475
475
  }>;
476
- id: drizzle_orm_pg_core364.PgColumn<{
476
+ id: drizzle_orm_pg_core1278.PgColumn<{
477
477
  name: "id";
478
478
  tableName: "agent";
479
479
  dataType: "string";
@@ -495,11 +495,11 @@ declare const agents: drizzle_orm_pg_core364.PgTableWithColumns<{
495
495
  };
496
496
  dialect: "pg";
497
497
  }>;
498
- declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
498
+ declare const contextConfigs: drizzle_orm_pg_core1278.PgTableWithColumns<{
499
499
  name: "context_configs";
500
500
  schema: undefined;
501
501
  columns: {
502
- createdAt: drizzle_orm_pg_core364.PgColumn<{
502
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
503
503
  name: "created_at";
504
504
  tableName: "context_configs";
505
505
  dataType: "string";
@@ -516,7 +516,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
516
516
  identity: undefined;
517
517
  generated: undefined;
518
518
  }, {}, {}>;
519
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
519
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
520
520
  name: "updated_at";
521
521
  tableName: "context_configs";
522
522
  dataType: "string";
@@ -533,7 +533,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
533
533
  identity: undefined;
534
534
  generated: undefined;
535
535
  }, {}, {}>;
536
- headersSchema: drizzle_orm_pg_core364.PgColumn<{
536
+ headersSchema: drizzle_orm_pg_core1278.PgColumn<{
537
537
  name: "headers_schema";
538
538
  tableName: "context_configs";
539
539
  dataType: "json";
@@ -552,7 +552,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
552
552
  }, {}, {
553
553
  $type: unknown;
554
554
  }>;
555
- contextVariables: drizzle_orm_pg_core364.PgColumn<{
555
+ contextVariables: drizzle_orm_pg_core1278.PgColumn<{
556
556
  name: "context_variables";
557
557
  tableName: "context_configs";
558
558
  dataType: "json";
@@ -571,7 +571,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
571
571
  }, {}, {
572
572
  $type: Record<string, ContextFetchDefinition>;
573
573
  }>;
574
- agentId: drizzle_orm_pg_core364.PgColumn<{
574
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
575
575
  name: "agent_id";
576
576
  tableName: "context_configs";
577
577
  dataType: "string";
@@ -590,7 +590,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
590
590
  }, {}, {
591
591
  length: 256;
592
592
  }>;
593
- projectId: drizzle_orm_pg_core364.PgColumn<{
593
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
594
594
  name: "project_id";
595
595
  tableName: "context_configs";
596
596
  dataType: "string";
@@ -609,7 +609,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
609
609
  }, {}, {
610
610
  length: 256;
611
611
  }>;
612
- tenantId: drizzle_orm_pg_core364.PgColumn<{
612
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
613
613
  name: "tenant_id";
614
614
  tableName: "context_configs";
615
615
  dataType: "string";
@@ -628,7 +628,7 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
628
628
  }, {}, {
629
629
  length: 256;
630
630
  }>;
631
- id: drizzle_orm_pg_core364.PgColumn<{
631
+ id: drizzle_orm_pg_core1278.PgColumn<{
632
632
  name: "id";
633
633
  tableName: "context_configs";
634
634
  dataType: "string";
@@ -650,11 +650,11 @@ declare const contextConfigs: drizzle_orm_pg_core364.PgTableWithColumns<{
650
650
  };
651
651
  dialect: "pg";
652
652
  }>;
653
- declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
653
+ declare const triggers: drizzle_orm_pg_core1278.PgTableWithColumns<{
654
654
  name: "triggers";
655
655
  schema: undefined;
656
656
  columns: {
657
- createdAt: drizzle_orm_pg_core364.PgColumn<{
657
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
658
658
  name: "created_at";
659
659
  tableName: "triggers";
660
660
  dataType: "string";
@@ -671,7 +671,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
671
671
  identity: undefined;
672
672
  generated: undefined;
673
673
  }, {}, {}>;
674
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
674
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
675
675
  name: "updated_at";
676
676
  tableName: "triggers";
677
677
  dataType: "string";
@@ -688,7 +688,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
688
688
  identity: undefined;
689
689
  generated: undefined;
690
690
  }, {}, {}>;
691
- enabled: drizzle_orm_pg_core364.PgColumn<{
691
+ enabled: drizzle_orm_pg_core1278.PgColumn<{
692
692
  name: "enabled";
693
693
  tableName: "triggers";
694
694
  dataType: "boolean";
@@ -705,7 +705,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
705
705
  identity: undefined;
706
706
  generated: undefined;
707
707
  }, {}, {}>;
708
- inputSchema: drizzle_orm_pg_core364.PgColumn<{
708
+ inputSchema: drizzle_orm_pg_core1278.PgColumn<{
709
709
  name: "input_schema";
710
710
  tableName: "triggers";
711
711
  dataType: "json";
@@ -724,7 +724,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
724
724
  }, {}, {
725
725
  $type: Record<string, unknown> | null;
726
726
  }>;
727
- outputTransform: drizzle_orm_pg_core364.PgColumn<{
727
+ outputTransform: drizzle_orm_pg_core1278.PgColumn<{
728
728
  name: "output_transform";
729
729
  tableName: "triggers";
730
730
  dataType: "json";
@@ -749,7 +749,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
749
749
  objectTransformation?: Record<string, string>;
750
750
  } | null;
751
751
  }>;
752
- messageTemplate: drizzle_orm_pg_core364.PgColumn<{
752
+ messageTemplate: drizzle_orm_pg_core1278.PgColumn<{
753
753
  name: "message_template";
754
754
  tableName: "triggers";
755
755
  dataType: "string";
@@ -766,7 +766,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
766
766
  identity: undefined;
767
767
  generated: undefined;
768
768
  }, {}, {}>;
769
- authentication: drizzle_orm_pg_core364.PgColumn<{
769
+ authentication: drizzle_orm_pg_core1278.PgColumn<{
770
770
  name: "authentication";
771
771
  tableName: "triggers";
772
772
  dataType: "json";
@@ -785,7 +785,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
785
785
  }, {}, {
786
786
  $type: unknown;
787
787
  }>;
788
- signingSecretCredentialReferenceId: drizzle_orm_pg_core364.PgColumn<{
788
+ signingSecretCredentialReferenceId: drizzle_orm_pg_core1278.PgColumn<{
789
789
  name: "signing_secret_credential_reference_id";
790
790
  tableName: "triggers";
791
791
  dataType: "string";
@@ -804,7 +804,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
804
804
  }, {}, {
805
805
  length: 256;
806
806
  }>;
807
- signatureVerification: drizzle_orm_pg_core364.PgColumn<{
807
+ signatureVerification: drizzle_orm_pg_core1278.PgColumn<{
808
808
  name: "signature_verification";
809
809
  tableName: "triggers";
810
810
  dataType: "json";
@@ -873,7 +873,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
873
873
  } | undefined;
874
874
  } | null;
875
875
  }>;
876
- name: drizzle_orm_pg_core364.PgColumn<{
876
+ name: drizzle_orm_pg_core1278.PgColumn<{
877
877
  name: "name";
878
878
  tableName: "triggers";
879
879
  dataType: "string";
@@ -892,7 +892,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
892
892
  }, {}, {
893
893
  length: 256;
894
894
  }>;
895
- description: drizzle_orm_pg_core364.PgColumn<{
895
+ description: drizzle_orm_pg_core1278.PgColumn<{
896
896
  name: "description";
897
897
  tableName: "triggers";
898
898
  dataType: "string";
@@ -909,7 +909,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
909
909
  identity: undefined;
910
910
  generated: undefined;
911
911
  }, {}, {}>;
912
- agentId: drizzle_orm_pg_core364.PgColumn<{
912
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
913
913
  name: "agent_id";
914
914
  tableName: "triggers";
915
915
  dataType: "string";
@@ -928,7 +928,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
928
928
  }, {}, {
929
929
  length: 256;
930
930
  }>;
931
- projectId: drizzle_orm_pg_core364.PgColumn<{
931
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
932
932
  name: "project_id";
933
933
  tableName: "triggers";
934
934
  dataType: "string";
@@ -947,7 +947,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
947
947
  }, {}, {
948
948
  length: 256;
949
949
  }>;
950
- tenantId: drizzle_orm_pg_core364.PgColumn<{
950
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
951
951
  name: "tenant_id";
952
952
  tableName: "triggers";
953
953
  dataType: "string";
@@ -966,7 +966,7 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
966
966
  }, {}, {
967
967
  length: 256;
968
968
  }>;
969
- id: drizzle_orm_pg_core364.PgColumn<{
969
+ id: drizzle_orm_pg_core1278.PgColumn<{
970
970
  name: "id";
971
971
  tableName: "triggers";
972
972
  dataType: "string";
@@ -988,11 +988,11 @@ declare const triggers: drizzle_orm_pg_core364.PgTableWithColumns<{
988
988
  };
989
989
  dialect: "pg";
990
990
  }>;
991
- declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
991
+ declare const subAgents: drizzle_orm_pg_core1278.PgTableWithColumns<{
992
992
  name: "sub_agents";
993
993
  schema: undefined;
994
994
  columns: {
995
- createdAt: drizzle_orm_pg_core364.PgColumn<{
995
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
996
996
  name: "created_at";
997
997
  tableName: "sub_agents";
998
998
  dataType: "string";
@@ -1009,7 +1009,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1009
1009
  identity: undefined;
1010
1010
  generated: undefined;
1011
1011
  }, {}, {}>;
1012
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
1012
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
1013
1013
  name: "updated_at";
1014
1014
  tableName: "sub_agents";
1015
1015
  dataType: "string";
@@ -1026,7 +1026,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1026
1026
  identity: undefined;
1027
1027
  generated: undefined;
1028
1028
  }, {}, {}>;
1029
- prompt: drizzle_orm_pg_core364.PgColumn<{
1029
+ prompt: drizzle_orm_pg_core1278.PgColumn<{
1030
1030
  name: "prompt";
1031
1031
  tableName: "sub_agents";
1032
1032
  dataType: "string";
@@ -1043,7 +1043,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1043
1043
  identity: undefined;
1044
1044
  generated: undefined;
1045
1045
  }, {}, {}>;
1046
- conversationHistoryConfig: drizzle_orm_pg_core364.PgColumn<{
1046
+ conversationHistoryConfig: drizzle_orm_pg_core1278.PgColumn<{
1047
1047
  name: "conversation_history_config";
1048
1048
  tableName: "sub_agents";
1049
1049
  dataType: "json";
@@ -1062,7 +1062,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1062
1062
  }, {}, {
1063
1063
  $type: ConversationHistoryConfig;
1064
1064
  }>;
1065
- models: drizzle_orm_pg_core364.PgColumn<{
1065
+ models: drizzle_orm_pg_core1278.PgColumn<{
1066
1066
  name: "models";
1067
1067
  tableName: "sub_agents";
1068
1068
  dataType: "json";
@@ -1107,7 +1107,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1107
1107
  } | undefined;
1108
1108
  };
1109
1109
  }>;
1110
- stopWhen: drizzle_orm_pg_core364.PgColumn<{
1110
+ stopWhen: drizzle_orm_pg_core1278.PgColumn<{
1111
1111
  name: "stop_when";
1112
1112
  tableName: "sub_agents";
1113
1113
  dataType: "json";
@@ -1130,7 +1130,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1130
1130
  stepCountIs?: number | undefined;
1131
1131
  };
1132
1132
  }>;
1133
- name: drizzle_orm_pg_core364.PgColumn<{
1133
+ name: drizzle_orm_pg_core1278.PgColumn<{
1134
1134
  name: "name";
1135
1135
  tableName: "sub_agents";
1136
1136
  dataType: "string";
@@ -1149,7 +1149,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1149
1149
  }, {}, {
1150
1150
  length: 256;
1151
1151
  }>;
1152
- description: drizzle_orm_pg_core364.PgColumn<{
1152
+ description: drizzle_orm_pg_core1278.PgColumn<{
1153
1153
  name: "description";
1154
1154
  tableName: "sub_agents";
1155
1155
  dataType: "string";
@@ -1166,7 +1166,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1166
1166
  identity: undefined;
1167
1167
  generated: undefined;
1168
1168
  }, {}, {}>;
1169
- agentId: drizzle_orm_pg_core364.PgColumn<{
1169
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
1170
1170
  name: "agent_id";
1171
1171
  tableName: "sub_agents";
1172
1172
  dataType: "string";
@@ -1185,7 +1185,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1185
1185
  }, {}, {
1186
1186
  length: 256;
1187
1187
  }>;
1188
- projectId: drizzle_orm_pg_core364.PgColumn<{
1188
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
1189
1189
  name: "project_id";
1190
1190
  tableName: "sub_agents";
1191
1191
  dataType: "string";
@@ -1204,7 +1204,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1204
1204
  }, {}, {
1205
1205
  length: 256;
1206
1206
  }>;
1207
- tenantId: drizzle_orm_pg_core364.PgColumn<{
1207
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
1208
1208
  name: "tenant_id";
1209
1209
  tableName: "sub_agents";
1210
1210
  dataType: "string";
@@ -1223,7 +1223,7 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1223
1223
  }, {}, {
1224
1224
  length: 256;
1225
1225
  }>;
1226
- id: drizzle_orm_pg_core364.PgColumn<{
1226
+ id: drizzle_orm_pg_core1278.PgColumn<{
1227
1227
  name: "id";
1228
1228
  tableName: "sub_agents";
1229
1229
  dataType: "string";
@@ -1245,11 +1245,11 @@ declare const subAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1245
1245
  };
1246
1246
  dialect: "pg";
1247
1247
  }>;
1248
- declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1248
+ declare const subAgentRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
1249
1249
  name: "sub_agent_relations";
1250
1250
  schema: undefined;
1251
1251
  columns: {
1252
- createdAt: drizzle_orm_pg_core364.PgColumn<{
1252
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
1253
1253
  name: "created_at";
1254
1254
  tableName: "sub_agent_relations";
1255
1255
  dataType: "string";
@@ -1266,7 +1266,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1266
1266
  identity: undefined;
1267
1267
  generated: undefined;
1268
1268
  }, {}, {}>;
1269
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
1269
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
1270
1270
  name: "updated_at";
1271
1271
  tableName: "sub_agent_relations";
1272
1272
  dataType: "string";
@@ -1283,7 +1283,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1283
1283
  identity: undefined;
1284
1284
  generated: undefined;
1285
1285
  }, {}, {}>;
1286
- sourceSubAgentId: drizzle_orm_pg_core364.PgColumn<{
1286
+ sourceSubAgentId: drizzle_orm_pg_core1278.PgColumn<{
1287
1287
  name: "source_sub_agent_id";
1288
1288
  tableName: "sub_agent_relations";
1289
1289
  dataType: "string";
@@ -1302,7 +1302,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1302
1302
  }, {}, {
1303
1303
  length: 256;
1304
1304
  }>;
1305
- targetSubAgentId: drizzle_orm_pg_core364.PgColumn<{
1305
+ targetSubAgentId: drizzle_orm_pg_core1278.PgColumn<{
1306
1306
  name: "target_sub_agent_id";
1307
1307
  tableName: "sub_agent_relations";
1308
1308
  dataType: "string";
@@ -1321,7 +1321,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1321
1321
  }, {}, {
1322
1322
  length: 256;
1323
1323
  }>;
1324
- relationType: drizzle_orm_pg_core364.PgColumn<{
1324
+ relationType: drizzle_orm_pg_core1278.PgColumn<{
1325
1325
  name: "relation_type";
1326
1326
  tableName: "sub_agent_relations";
1327
1327
  dataType: "string";
@@ -1340,7 +1340,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1340
1340
  }, {}, {
1341
1341
  length: 256;
1342
1342
  }>;
1343
- agentId: drizzle_orm_pg_core364.PgColumn<{
1343
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
1344
1344
  name: "agent_id";
1345
1345
  tableName: "sub_agent_relations";
1346
1346
  dataType: "string";
@@ -1359,7 +1359,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1359
1359
  }, {}, {
1360
1360
  length: 256;
1361
1361
  }>;
1362
- projectId: drizzle_orm_pg_core364.PgColumn<{
1362
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
1363
1363
  name: "project_id";
1364
1364
  tableName: "sub_agent_relations";
1365
1365
  dataType: "string";
@@ -1378,7 +1378,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1378
1378
  }, {}, {
1379
1379
  length: 256;
1380
1380
  }>;
1381
- tenantId: drizzle_orm_pg_core364.PgColumn<{
1381
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
1382
1382
  name: "tenant_id";
1383
1383
  tableName: "sub_agent_relations";
1384
1384
  dataType: "string";
@@ -1397,7 +1397,7 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1397
1397
  }, {}, {
1398
1398
  length: 256;
1399
1399
  }>;
1400
- id: drizzle_orm_pg_core364.PgColumn<{
1400
+ id: drizzle_orm_pg_core1278.PgColumn<{
1401
1401
  name: "id";
1402
1402
  tableName: "sub_agent_relations";
1403
1403
  dataType: "string";
@@ -1419,11 +1419,11 @@ declare const subAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
1419
1419
  };
1420
1420
  dialect: "pg";
1421
1421
  }>;
1422
- declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1422
+ declare const externalAgents: drizzle_orm_pg_core1278.PgTableWithColumns<{
1423
1423
  name: "external_agents";
1424
1424
  schema: undefined;
1425
1425
  columns: {
1426
- createdAt: drizzle_orm_pg_core364.PgColumn<{
1426
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
1427
1427
  name: "created_at";
1428
1428
  tableName: "external_agents";
1429
1429
  dataType: "string";
@@ -1440,7 +1440,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1440
1440
  identity: undefined;
1441
1441
  generated: undefined;
1442
1442
  }, {}, {}>;
1443
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
1443
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
1444
1444
  name: "updated_at";
1445
1445
  tableName: "external_agents";
1446
1446
  dataType: "string";
@@ -1457,7 +1457,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1457
1457
  identity: undefined;
1458
1458
  generated: undefined;
1459
1459
  }, {}, {}>;
1460
- baseUrl: drizzle_orm_pg_core364.PgColumn<{
1460
+ baseUrl: drizzle_orm_pg_core1278.PgColumn<{
1461
1461
  name: "base_url";
1462
1462
  tableName: "external_agents";
1463
1463
  dataType: "string";
@@ -1474,7 +1474,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1474
1474
  identity: undefined;
1475
1475
  generated: undefined;
1476
1476
  }, {}, {}>;
1477
- credentialReferenceId: drizzle_orm_pg_core364.PgColumn<{
1477
+ credentialReferenceId: drizzle_orm_pg_core1278.PgColumn<{
1478
1478
  name: "credential_reference_id";
1479
1479
  tableName: "external_agents";
1480
1480
  dataType: "string";
@@ -1493,7 +1493,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1493
1493
  }, {}, {
1494
1494
  length: 256;
1495
1495
  }>;
1496
- name: drizzle_orm_pg_core364.PgColumn<{
1496
+ name: drizzle_orm_pg_core1278.PgColumn<{
1497
1497
  name: "name";
1498
1498
  tableName: "external_agents";
1499
1499
  dataType: "string";
@@ -1512,7 +1512,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1512
1512
  }, {}, {
1513
1513
  length: 256;
1514
1514
  }>;
1515
- description: drizzle_orm_pg_core364.PgColumn<{
1515
+ description: drizzle_orm_pg_core1278.PgColumn<{
1516
1516
  name: "description";
1517
1517
  tableName: "external_agents";
1518
1518
  dataType: "string";
@@ -1529,7 +1529,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1529
1529
  identity: undefined;
1530
1530
  generated: undefined;
1531
1531
  }, {}, {}>;
1532
- projectId: drizzle_orm_pg_core364.PgColumn<{
1532
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
1533
1533
  name: "project_id";
1534
1534
  tableName: "external_agents";
1535
1535
  dataType: "string";
@@ -1548,7 +1548,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1548
1548
  }, {}, {
1549
1549
  length: 256;
1550
1550
  }>;
1551
- tenantId: drizzle_orm_pg_core364.PgColumn<{
1551
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
1552
1552
  name: "tenant_id";
1553
1553
  tableName: "external_agents";
1554
1554
  dataType: "string";
@@ -1567,7 +1567,7 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1567
1567
  }, {}, {
1568
1568
  length: 256;
1569
1569
  }>;
1570
- id: drizzle_orm_pg_core364.PgColumn<{
1570
+ id: drizzle_orm_pg_core1278.PgColumn<{
1571
1571
  name: "id";
1572
1572
  tableName: "external_agents";
1573
1573
  dataType: "string";
@@ -1589,11 +1589,11 @@ declare const externalAgents: drizzle_orm_pg_core364.PgTableWithColumns<{
1589
1589
  };
1590
1590
  dialect: "pg";
1591
1591
  }>;
1592
- declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1592
+ declare const dataComponents: drizzle_orm_pg_core1278.PgTableWithColumns<{
1593
1593
  name: "data_components";
1594
1594
  schema: undefined;
1595
1595
  columns: {
1596
- createdAt: drizzle_orm_pg_core364.PgColumn<{
1596
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
1597
1597
  name: "created_at";
1598
1598
  tableName: "data_components";
1599
1599
  dataType: "string";
@@ -1610,7 +1610,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1610
1610
  identity: undefined;
1611
1611
  generated: undefined;
1612
1612
  }, {}, {}>;
1613
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
1613
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
1614
1614
  name: "updated_at";
1615
1615
  tableName: "data_components";
1616
1616
  dataType: "string";
@@ -1627,7 +1627,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1627
1627
  identity: undefined;
1628
1628
  generated: undefined;
1629
1629
  }, {}, {}>;
1630
- props: drizzle_orm_pg_core364.PgColumn<{
1630
+ props: drizzle_orm_pg_core1278.PgColumn<{
1631
1631
  name: "props";
1632
1632
  tableName: "data_components";
1633
1633
  dataType: "json";
@@ -1646,7 +1646,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1646
1646
  }, {}, {
1647
1647
  $type: Record<string, unknown>;
1648
1648
  }>;
1649
- render: drizzle_orm_pg_core364.PgColumn<{
1649
+ render: drizzle_orm_pg_core1278.PgColumn<{
1650
1650
  name: "render";
1651
1651
  tableName: "data_components";
1652
1652
  dataType: "json";
@@ -1671,7 +1671,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1671
1671
  mockData: Record<string, unknown>;
1672
1672
  };
1673
1673
  }>;
1674
- name: drizzle_orm_pg_core364.PgColumn<{
1674
+ name: drizzle_orm_pg_core1278.PgColumn<{
1675
1675
  name: "name";
1676
1676
  tableName: "data_components";
1677
1677
  dataType: "string";
@@ -1690,7 +1690,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1690
1690
  }, {}, {
1691
1691
  length: 256;
1692
1692
  }>;
1693
- description: drizzle_orm_pg_core364.PgColumn<{
1693
+ description: drizzle_orm_pg_core1278.PgColumn<{
1694
1694
  name: "description";
1695
1695
  tableName: "data_components";
1696
1696
  dataType: "string";
@@ -1707,7 +1707,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1707
1707
  identity: undefined;
1708
1708
  generated: undefined;
1709
1709
  }, {}, {}>;
1710
- projectId: drizzle_orm_pg_core364.PgColumn<{
1710
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
1711
1711
  name: "project_id";
1712
1712
  tableName: "data_components";
1713
1713
  dataType: "string";
@@ -1726,7 +1726,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1726
1726
  }, {}, {
1727
1727
  length: 256;
1728
1728
  }>;
1729
- tenantId: drizzle_orm_pg_core364.PgColumn<{
1729
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
1730
1730
  name: "tenant_id";
1731
1731
  tableName: "data_components";
1732
1732
  dataType: "string";
@@ -1745,7 +1745,7 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1745
1745
  }, {}, {
1746
1746
  length: 256;
1747
1747
  }>;
1748
- id: drizzle_orm_pg_core364.PgColumn<{
1748
+ id: drizzle_orm_pg_core1278.PgColumn<{
1749
1749
  name: "id";
1750
1750
  tableName: "data_components";
1751
1751
  dataType: "string";
@@ -1767,11 +1767,11 @@ declare const dataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1767
1767
  };
1768
1768
  dialect: "pg";
1769
1769
  }>;
1770
- declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1770
+ declare const subAgentDataComponents: drizzle_orm_pg_core1278.PgTableWithColumns<{
1771
1771
  name: "sub_agent_data_components";
1772
1772
  schema: undefined;
1773
1773
  columns: {
1774
- dataComponentId: drizzle_orm_pg_core364.PgColumn<{
1774
+ dataComponentId: drizzle_orm_pg_core1278.PgColumn<{
1775
1775
  name: "data_component_id";
1776
1776
  tableName: "sub_agent_data_components";
1777
1777
  dataType: "string";
@@ -1790,7 +1790,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1790
1790
  }, {}, {
1791
1791
  length: 256;
1792
1792
  }>;
1793
- createdAt: drizzle_orm_pg_core364.PgColumn<{
1793
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
1794
1794
  name: "created_at";
1795
1795
  tableName: "sub_agent_data_components";
1796
1796
  dataType: "string";
@@ -1807,7 +1807,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1807
1807
  identity: undefined;
1808
1808
  generated: undefined;
1809
1809
  }, {}, {}>;
1810
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
1810
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
1811
1811
  name: "sub_agent_id";
1812
1812
  tableName: "sub_agent_data_components";
1813
1813
  dataType: "string";
@@ -1826,7 +1826,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1826
1826
  }, {}, {
1827
1827
  length: 256;
1828
1828
  }>;
1829
- agentId: drizzle_orm_pg_core364.PgColumn<{
1829
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
1830
1830
  name: "agent_id";
1831
1831
  tableName: "sub_agent_data_components";
1832
1832
  dataType: "string";
@@ -1845,7 +1845,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1845
1845
  }, {}, {
1846
1846
  length: 256;
1847
1847
  }>;
1848
- projectId: drizzle_orm_pg_core364.PgColumn<{
1848
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
1849
1849
  name: "project_id";
1850
1850
  tableName: "sub_agent_data_components";
1851
1851
  dataType: "string";
@@ -1864,7 +1864,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1864
1864
  }, {}, {
1865
1865
  length: 256;
1866
1866
  }>;
1867
- tenantId: drizzle_orm_pg_core364.PgColumn<{
1867
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
1868
1868
  name: "tenant_id";
1869
1869
  tableName: "sub_agent_data_components";
1870
1870
  dataType: "string";
@@ -1883,7 +1883,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1883
1883
  }, {}, {
1884
1884
  length: 256;
1885
1885
  }>;
1886
- id: drizzle_orm_pg_core364.PgColumn<{
1886
+ id: drizzle_orm_pg_core1278.PgColumn<{
1887
1887
  name: "id";
1888
1888
  tableName: "sub_agent_data_components";
1889
1889
  dataType: "string";
@@ -1905,11 +1905,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core364.PgTableWithColumns<
1905
1905
  };
1906
1906
  dialect: "pg";
1907
1907
  }>;
1908
- declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1908
+ declare const artifactComponents: drizzle_orm_pg_core1278.PgTableWithColumns<{
1909
1909
  name: "artifact_components";
1910
1910
  schema: undefined;
1911
1911
  columns: {
1912
- createdAt: drizzle_orm_pg_core364.PgColumn<{
1912
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
1913
1913
  name: "created_at";
1914
1914
  tableName: "artifact_components";
1915
1915
  dataType: "string";
@@ -1926,7 +1926,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1926
1926
  identity: undefined;
1927
1927
  generated: undefined;
1928
1928
  }, {}, {}>;
1929
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
1929
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
1930
1930
  name: "updated_at";
1931
1931
  tableName: "artifact_components";
1932
1932
  dataType: "string";
@@ -1943,7 +1943,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1943
1943
  identity: undefined;
1944
1944
  generated: undefined;
1945
1945
  }, {}, {}>;
1946
- props: drizzle_orm_pg_core364.PgColumn<{
1946
+ props: drizzle_orm_pg_core1278.PgColumn<{
1947
1947
  name: "props";
1948
1948
  tableName: "artifact_components";
1949
1949
  dataType: "json";
@@ -1962,7 +1962,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1962
1962
  }, {}, {
1963
1963
  $type: Record<string, unknown>;
1964
1964
  }>;
1965
- render: drizzle_orm_pg_core364.PgColumn<{
1965
+ render: drizzle_orm_pg_core1278.PgColumn<{
1966
1966
  name: "render";
1967
1967
  tableName: "artifact_components";
1968
1968
  dataType: "json";
@@ -1987,7 +1987,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
1987
1987
  mockData: Record<string, unknown>;
1988
1988
  };
1989
1989
  }>;
1990
- name: drizzle_orm_pg_core364.PgColumn<{
1990
+ name: drizzle_orm_pg_core1278.PgColumn<{
1991
1991
  name: "name";
1992
1992
  tableName: "artifact_components";
1993
1993
  dataType: "string";
@@ -2006,7 +2006,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2006
2006
  }, {}, {
2007
2007
  length: 256;
2008
2008
  }>;
2009
- description: drizzle_orm_pg_core364.PgColumn<{
2009
+ description: drizzle_orm_pg_core1278.PgColumn<{
2010
2010
  name: "description";
2011
2011
  tableName: "artifact_components";
2012
2012
  dataType: "string";
@@ -2023,7 +2023,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2023
2023
  identity: undefined;
2024
2024
  generated: undefined;
2025
2025
  }, {}, {}>;
2026
- projectId: drizzle_orm_pg_core364.PgColumn<{
2026
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2027
2027
  name: "project_id";
2028
2028
  tableName: "artifact_components";
2029
2029
  dataType: "string";
@@ -2042,7 +2042,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2042
2042
  }, {}, {
2043
2043
  length: 256;
2044
2044
  }>;
2045
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2045
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2046
2046
  name: "tenant_id";
2047
2047
  tableName: "artifact_components";
2048
2048
  dataType: "string";
@@ -2061,7 +2061,7 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2061
2061
  }, {}, {
2062
2062
  length: 256;
2063
2063
  }>;
2064
- id: drizzle_orm_pg_core364.PgColumn<{
2064
+ id: drizzle_orm_pg_core1278.PgColumn<{
2065
2065
  name: "id";
2066
2066
  tableName: "artifact_components";
2067
2067
  dataType: "string";
@@ -2083,11 +2083,11 @@ declare const artifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2083
2083
  };
2084
2084
  dialect: "pg";
2085
2085
  }>;
2086
- declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColumns<{
2086
+ declare const subAgentArtifactComponents: drizzle_orm_pg_core1278.PgTableWithColumns<{
2087
2087
  name: "sub_agent_artifact_components";
2088
2088
  schema: undefined;
2089
2089
  columns: {
2090
- artifactComponentId: drizzle_orm_pg_core364.PgColumn<{
2090
+ artifactComponentId: drizzle_orm_pg_core1278.PgColumn<{
2091
2091
  name: "artifact_component_id";
2092
2092
  tableName: "sub_agent_artifact_components";
2093
2093
  dataType: "string";
@@ -2106,7 +2106,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2106
2106
  }, {}, {
2107
2107
  length: 256;
2108
2108
  }>;
2109
- createdAt: drizzle_orm_pg_core364.PgColumn<{
2109
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
2110
2110
  name: "created_at";
2111
2111
  tableName: "sub_agent_artifact_components";
2112
2112
  dataType: "string";
@@ -2123,7 +2123,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2123
2123
  identity: undefined;
2124
2124
  generated: undefined;
2125
2125
  }, {}, {}>;
2126
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
2126
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
2127
2127
  name: "sub_agent_id";
2128
2128
  tableName: "sub_agent_artifact_components";
2129
2129
  dataType: "string";
@@ -2142,7 +2142,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2142
2142
  }, {}, {
2143
2143
  length: 256;
2144
2144
  }>;
2145
- agentId: drizzle_orm_pg_core364.PgColumn<{
2145
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
2146
2146
  name: "agent_id";
2147
2147
  tableName: "sub_agent_artifact_components";
2148
2148
  dataType: "string";
@@ -2161,7 +2161,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2161
2161
  }, {}, {
2162
2162
  length: 256;
2163
2163
  }>;
2164
- projectId: drizzle_orm_pg_core364.PgColumn<{
2164
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2165
2165
  name: "project_id";
2166
2166
  tableName: "sub_agent_artifact_components";
2167
2167
  dataType: "string";
@@ -2180,7 +2180,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2180
2180
  }, {}, {
2181
2181
  length: 256;
2182
2182
  }>;
2183
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2183
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2184
2184
  name: "tenant_id";
2185
2185
  tableName: "sub_agent_artifact_components";
2186
2186
  dataType: "string";
@@ -2199,7 +2199,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2199
2199
  }, {}, {
2200
2200
  length: 256;
2201
2201
  }>;
2202
- id: drizzle_orm_pg_core364.PgColumn<{
2202
+ id: drizzle_orm_pg_core1278.PgColumn<{
2203
2203
  name: "id";
2204
2204
  tableName: "sub_agent_artifact_components";
2205
2205
  dataType: "string";
@@ -2221,11 +2221,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core364.PgTableWithColu
2221
2221
  };
2222
2222
  dialect: "pg";
2223
2223
  }>;
2224
- declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2224
+ declare const tools: drizzle_orm_pg_core1278.PgTableWithColumns<{
2225
2225
  name: "tools";
2226
2226
  schema: undefined;
2227
2227
  columns: {
2228
- createdAt: drizzle_orm_pg_core364.PgColumn<{
2228
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
2229
2229
  name: "created_at";
2230
2230
  tableName: "tools";
2231
2231
  dataType: "string";
@@ -2242,7 +2242,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2242
2242
  identity: undefined;
2243
2243
  generated: undefined;
2244
2244
  }, {}, {}>;
2245
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
2245
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
2246
2246
  name: "updated_at";
2247
2247
  tableName: "tools";
2248
2248
  dataType: "string";
@@ -2259,7 +2259,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2259
2259
  identity: undefined;
2260
2260
  generated: undefined;
2261
2261
  }, {}, {}>;
2262
- name: drizzle_orm_pg_core364.PgColumn<{
2262
+ name: drizzle_orm_pg_core1278.PgColumn<{
2263
2263
  name: "name";
2264
2264
  tableName: "tools";
2265
2265
  dataType: "string";
@@ -2278,7 +2278,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2278
2278
  }, {}, {
2279
2279
  length: 256;
2280
2280
  }>;
2281
- description: drizzle_orm_pg_core364.PgColumn<{
2281
+ description: drizzle_orm_pg_core1278.PgColumn<{
2282
2282
  name: "description";
2283
2283
  tableName: "tools";
2284
2284
  dataType: "string";
@@ -2295,7 +2295,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2295
2295
  identity: undefined;
2296
2296
  generated: undefined;
2297
2297
  }, {}, {}>;
2298
- config: drizzle_orm_pg_core364.PgColumn<{
2298
+ config: drizzle_orm_pg_core1278.PgColumn<{
2299
2299
  name: "config";
2300
2300
  tableName: "tools";
2301
2301
  dataType: "json";
@@ -2320,7 +2320,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2320
2320
  mcp: ToolMcpConfig;
2321
2321
  };
2322
2322
  }>;
2323
- credentialReferenceId: drizzle_orm_pg_core364.PgColumn<{
2323
+ credentialReferenceId: drizzle_orm_pg_core1278.PgColumn<{
2324
2324
  name: "credential_reference_id";
2325
2325
  tableName: "tools";
2326
2326
  dataType: "string";
@@ -2339,7 +2339,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2339
2339
  }, {}, {
2340
2340
  length: 256;
2341
2341
  }>;
2342
- credentialScope: drizzle_orm_pg_core364.PgColumn<{
2342
+ credentialScope: drizzle_orm_pg_core1278.PgColumn<{
2343
2343
  name: "credential_scope";
2344
2344
  tableName: "tools";
2345
2345
  dataType: "string";
@@ -2358,7 +2358,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2358
2358
  }, {}, {
2359
2359
  length: 50;
2360
2360
  }>;
2361
- headers: drizzle_orm_pg_core364.PgColumn<{
2361
+ headers: drizzle_orm_pg_core1278.PgColumn<{
2362
2362
  name: "headers";
2363
2363
  tableName: "tools";
2364
2364
  dataType: "json";
@@ -2377,7 +2377,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2377
2377
  }, {}, {
2378
2378
  $type: Record<string, string>;
2379
2379
  }>;
2380
- imageUrl: drizzle_orm_pg_core364.PgColumn<{
2380
+ imageUrl: drizzle_orm_pg_core1278.PgColumn<{
2381
2381
  name: "image_url";
2382
2382
  tableName: "tools";
2383
2383
  dataType: "string";
@@ -2394,7 +2394,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2394
2394
  identity: undefined;
2395
2395
  generated: undefined;
2396
2396
  }, {}, {}>;
2397
- capabilities: drizzle_orm_pg_core364.PgColumn<{
2397
+ capabilities: drizzle_orm_pg_core1278.PgColumn<{
2398
2398
  name: "capabilities";
2399
2399
  tableName: "tools";
2400
2400
  dataType: "json";
@@ -2413,7 +2413,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2413
2413
  }, {}, {
2414
2414
  $type: ToolServerCapabilities;
2415
2415
  }>;
2416
- lastError: drizzle_orm_pg_core364.PgColumn<{
2416
+ lastError: drizzle_orm_pg_core1278.PgColumn<{
2417
2417
  name: "last_error";
2418
2418
  tableName: "tools";
2419
2419
  dataType: "string";
@@ -2430,7 +2430,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2430
2430
  identity: undefined;
2431
2431
  generated: undefined;
2432
2432
  }, {}, {}>;
2433
- projectId: drizzle_orm_pg_core364.PgColumn<{
2433
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2434
2434
  name: "project_id";
2435
2435
  tableName: "tools";
2436
2436
  dataType: "string";
@@ -2449,7 +2449,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2449
2449
  }, {}, {
2450
2450
  length: 256;
2451
2451
  }>;
2452
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2452
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2453
2453
  name: "tenant_id";
2454
2454
  tableName: "tools";
2455
2455
  dataType: "string";
@@ -2468,7 +2468,7 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2468
2468
  }, {}, {
2469
2469
  length: 256;
2470
2470
  }>;
2471
- id: drizzle_orm_pg_core364.PgColumn<{
2471
+ id: drizzle_orm_pg_core1278.PgColumn<{
2472
2472
  name: "id";
2473
2473
  tableName: "tools";
2474
2474
  dataType: "string";
@@ -2490,11 +2490,11 @@ declare const tools: drizzle_orm_pg_core364.PgTableWithColumns<{
2490
2490
  };
2491
2491
  dialect: "pg";
2492
2492
  }>;
2493
- declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2493
+ declare const functionTools: drizzle_orm_pg_core1278.PgTableWithColumns<{
2494
2494
  name: "function_tools";
2495
2495
  schema: undefined;
2496
2496
  columns: {
2497
- createdAt: drizzle_orm_pg_core364.PgColumn<{
2497
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
2498
2498
  name: "created_at";
2499
2499
  tableName: "function_tools";
2500
2500
  dataType: "string";
@@ -2511,7 +2511,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2511
2511
  identity: undefined;
2512
2512
  generated: undefined;
2513
2513
  }, {}, {}>;
2514
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
2514
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
2515
2515
  name: "updated_at";
2516
2516
  tableName: "function_tools";
2517
2517
  dataType: "string";
@@ -2528,7 +2528,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2528
2528
  identity: undefined;
2529
2529
  generated: undefined;
2530
2530
  }, {}, {}>;
2531
- name: drizzle_orm_pg_core364.PgColumn<{
2531
+ name: drizzle_orm_pg_core1278.PgColumn<{
2532
2532
  name: "name";
2533
2533
  tableName: "function_tools";
2534
2534
  dataType: "string";
@@ -2547,7 +2547,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2547
2547
  }, {}, {
2548
2548
  length: 256;
2549
2549
  }>;
2550
- description: drizzle_orm_pg_core364.PgColumn<{
2550
+ description: drizzle_orm_pg_core1278.PgColumn<{
2551
2551
  name: "description";
2552
2552
  tableName: "function_tools";
2553
2553
  dataType: "string";
@@ -2564,7 +2564,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2564
2564
  identity: undefined;
2565
2565
  generated: undefined;
2566
2566
  }, {}, {}>;
2567
- functionId: drizzle_orm_pg_core364.PgColumn<{
2567
+ functionId: drizzle_orm_pg_core1278.PgColumn<{
2568
2568
  name: "function_id";
2569
2569
  tableName: "function_tools";
2570
2570
  dataType: "string";
@@ -2583,7 +2583,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2583
2583
  }, {}, {
2584
2584
  length: 256;
2585
2585
  }>;
2586
- agentId: drizzle_orm_pg_core364.PgColumn<{
2586
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
2587
2587
  name: "agent_id";
2588
2588
  tableName: "function_tools";
2589
2589
  dataType: "string";
@@ -2602,7 +2602,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2602
2602
  }, {}, {
2603
2603
  length: 256;
2604
2604
  }>;
2605
- projectId: drizzle_orm_pg_core364.PgColumn<{
2605
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2606
2606
  name: "project_id";
2607
2607
  tableName: "function_tools";
2608
2608
  dataType: "string";
@@ -2621,7 +2621,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2621
2621
  }, {}, {
2622
2622
  length: 256;
2623
2623
  }>;
2624
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2624
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2625
2625
  name: "tenant_id";
2626
2626
  tableName: "function_tools";
2627
2627
  dataType: "string";
@@ -2640,7 +2640,7 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2640
2640
  }, {}, {
2641
2641
  length: 256;
2642
2642
  }>;
2643
- id: drizzle_orm_pg_core364.PgColumn<{
2643
+ id: drizzle_orm_pg_core1278.PgColumn<{
2644
2644
  name: "id";
2645
2645
  tableName: "function_tools";
2646
2646
  dataType: "string";
@@ -2662,11 +2662,11 @@ declare const functionTools: drizzle_orm_pg_core364.PgTableWithColumns<{
2662
2662
  };
2663
2663
  dialect: "pg";
2664
2664
  }>;
2665
- declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2665
+ declare const functions: drizzle_orm_pg_core1278.PgTableWithColumns<{
2666
2666
  name: "functions";
2667
2667
  schema: undefined;
2668
2668
  columns: {
2669
- createdAt: drizzle_orm_pg_core364.PgColumn<{
2669
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
2670
2670
  name: "created_at";
2671
2671
  tableName: "functions";
2672
2672
  dataType: "string";
@@ -2683,7 +2683,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2683
2683
  identity: undefined;
2684
2684
  generated: undefined;
2685
2685
  }, {}, {}>;
2686
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
2686
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
2687
2687
  name: "updated_at";
2688
2688
  tableName: "functions";
2689
2689
  dataType: "string";
@@ -2700,7 +2700,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2700
2700
  identity: undefined;
2701
2701
  generated: undefined;
2702
2702
  }, {}, {}>;
2703
- inputSchema: drizzle_orm_pg_core364.PgColumn<{
2703
+ inputSchema: drizzle_orm_pg_core1278.PgColumn<{
2704
2704
  name: "input_schema";
2705
2705
  tableName: "functions";
2706
2706
  dataType: "json";
@@ -2719,7 +2719,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2719
2719
  }, {}, {
2720
2720
  $type: Record<string, unknown>;
2721
2721
  }>;
2722
- executeCode: drizzle_orm_pg_core364.PgColumn<{
2722
+ executeCode: drizzle_orm_pg_core1278.PgColumn<{
2723
2723
  name: "execute_code";
2724
2724
  tableName: "functions";
2725
2725
  dataType: "string";
@@ -2736,7 +2736,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2736
2736
  identity: undefined;
2737
2737
  generated: undefined;
2738
2738
  }, {}, {}>;
2739
- dependencies: drizzle_orm_pg_core364.PgColumn<{
2739
+ dependencies: drizzle_orm_pg_core1278.PgColumn<{
2740
2740
  name: "dependencies";
2741
2741
  tableName: "functions";
2742
2742
  dataType: "json";
@@ -2755,7 +2755,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2755
2755
  }, {}, {
2756
2756
  $type: Record<string, string>;
2757
2757
  }>;
2758
- projectId: drizzle_orm_pg_core364.PgColumn<{
2758
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2759
2759
  name: "project_id";
2760
2760
  tableName: "functions";
2761
2761
  dataType: "string";
@@ -2774,7 +2774,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2774
2774
  }, {}, {
2775
2775
  length: 256;
2776
2776
  }>;
2777
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2777
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2778
2778
  name: "tenant_id";
2779
2779
  tableName: "functions";
2780
2780
  dataType: "string";
@@ -2793,7 +2793,7 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2793
2793
  }, {}, {
2794
2794
  length: 256;
2795
2795
  }>;
2796
- id: drizzle_orm_pg_core364.PgColumn<{
2796
+ id: drizzle_orm_pg_core1278.PgColumn<{
2797
2797
  name: "id";
2798
2798
  tableName: "functions";
2799
2799
  dataType: "string";
@@ -2815,11 +2815,11 @@ declare const functions: drizzle_orm_pg_core364.PgTableWithColumns<{
2815
2815
  };
2816
2816
  dialect: "pg";
2817
2817
  }>;
2818
- declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2818
+ declare const subAgentToolRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
2819
2819
  name: "sub_agent_tool_relations";
2820
2820
  schema: undefined;
2821
2821
  columns: {
2822
- createdAt: drizzle_orm_pg_core364.PgColumn<{
2822
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
2823
2823
  name: "created_at";
2824
2824
  tableName: "sub_agent_tool_relations";
2825
2825
  dataType: "string";
@@ -2836,7 +2836,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2836
2836
  identity: undefined;
2837
2837
  generated: undefined;
2838
2838
  }, {}, {}>;
2839
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
2839
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
2840
2840
  name: "updated_at";
2841
2841
  tableName: "sub_agent_tool_relations";
2842
2842
  dataType: "string";
@@ -2853,7 +2853,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2853
2853
  identity: undefined;
2854
2854
  generated: undefined;
2855
2855
  }, {}, {}>;
2856
- toolId: drizzle_orm_pg_core364.PgColumn<{
2856
+ toolId: drizzle_orm_pg_core1278.PgColumn<{
2857
2857
  name: "tool_id";
2858
2858
  tableName: "sub_agent_tool_relations";
2859
2859
  dataType: "string";
@@ -2872,7 +2872,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2872
2872
  }, {}, {
2873
2873
  length: 256;
2874
2874
  }>;
2875
- selectedTools: drizzle_orm_pg_core364.PgColumn<{
2875
+ selectedTools: drizzle_orm_pg_core1278.PgColumn<{
2876
2876
  name: "selected_tools";
2877
2877
  tableName: "sub_agent_tool_relations";
2878
2878
  dataType: "json";
@@ -2891,7 +2891,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2891
2891
  }, {}, {
2892
2892
  $type: string[] | null;
2893
2893
  }>;
2894
- headers: drizzle_orm_pg_core364.PgColumn<{
2894
+ headers: drizzle_orm_pg_core1278.PgColumn<{
2895
2895
  name: "headers";
2896
2896
  tableName: "sub_agent_tool_relations";
2897
2897
  dataType: "json";
@@ -2910,7 +2910,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2910
2910
  }, {}, {
2911
2911
  $type: Record<string, string> | null;
2912
2912
  }>;
2913
- toolPolicies: drizzle_orm_pg_core364.PgColumn<{
2913
+ toolPolicies: drizzle_orm_pg_core1278.PgColumn<{
2914
2914
  name: "tool_policies";
2915
2915
  tableName: "sub_agent_tool_relations";
2916
2916
  dataType: "json";
@@ -2933,7 +2933,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2933
2933
  needsApproval?: boolean;
2934
2934
  }> | null;
2935
2935
  }>;
2936
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
2936
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
2937
2937
  name: "sub_agent_id";
2938
2938
  tableName: "sub_agent_tool_relations";
2939
2939
  dataType: "string";
@@ -2952,7 +2952,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2952
2952
  }, {}, {
2953
2953
  length: 256;
2954
2954
  }>;
2955
- agentId: drizzle_orm_pg_core364.PgColumn<{
2955
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
2956
2956
  name: "agent_id";
2957
2957
  tableName: "sub_agent_tool_relations";
2958
2958
  dataType: "string";
@@ -2971,7 +2971,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2971
2971
  }, {}, {
2972
2972
  length: 256;
2973
2973
  }>;
2974
- projectId: drizzle_orm_pg_core364.PgColumn<{
2974
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
2975
2975
  name: "project_id";
2976
2976
  tableName: "sub_agent_tool_relations";
2977
2977
  dataType: "string";
@@ -2990,7 +2990,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
2990
2990
  }, {}, {
2991
2991
  length: 256;
2992
2992
  }>;
2993
- tenantId: drizzle_orm_pg_core364.PgColumn<{
2993
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
2994
2994
  name: "tenant_id";
2995
2995
  tableName: "sub_agent_tool_relations";
2996
2996
  dataType: "string";
@@ -3009,7 +3009,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
3009
3009
  }, {}, {
3010
3010
  length: 256;
3011
3011
  }>;
3012
- id: drizzle_orm_pg_core364.PgColumn<{
3012
+ id: drizzle_orm_pg_core1278.PgColumn<{
3013
3013
  name: "id";
3014
3014
  tableName: "sub_agent_tool_relations";
3015
3015
  dataType: "string";
@@ -3031,11 +3031,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
3031
3031
  };
3032
3032
  dialect: "pg";
3033
3033
  }>;
3034
- declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
3034
+ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
3035
3035
  name: "sub_agent_external_agent_relations";
3036
3036
  schema: undefined;
3037
3037
  columns: {
3038
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3038
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3039
3039
  name: "created_at";
3040
3040
  tableName: "sub_agent_external_agent_relations";
3041
3041
  dataType: "string";
@@ -3052,7 +3052,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3052
3052
  identity: undefined;
3053
3053
  generated: undefined;
3054
3054
  }, {}, {}>;
3055
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3055
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3056
3056
  name: "updated_at";
3057
3057
  tableName: "sub_agent_external_agent_relations";
3058
3058
  dataType: "string";
@@ -3069,7 +3069,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3069
3069
  identity: undefined;
3070
3070
  generated: undefined;
3071
3071
  }, {}, {}>;
3072
- externalAgentId: drizzle_orm_pg_core364.PgColumn<{
3072
+ externalAgentId: drizzle_orm_pg_core1278.PgColumn<{
3073
3073
  name: "external_agent_id";
3074
3074
  tableName: "sub_agent_external_agent_relations";
3075
3075
  dataType: "string";
@@ -3088,7 +3088,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3088
3088
  }, {}, {
3089
3089
  length: 256;
3090
3090
  }>;
3091
- headers: drizzle_orm_pg_core364.PgColumn<{
3091
+ headers: drizzle_orm_pg_core1278.PgColumn<{
3092
3092
  name: "headers";
3093
3093
  tableName: "sub_agent_external_agent_relations";
3094
3094
  dataType: "json";
@@ -3107,7 +3107,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3107
3107
  }, {}, {
3108
3108
  $type: Record<string, string> | null;
3109
3109
  }>;
3110
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
3110
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
3111
3111
  name: "sub_agent_id";
3112
3112
  tableName: "sub_agent_external_agent_relations";
3113
3113
  dataType: "string";
@@ -3126,7 +3126,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3126
3126
  }, {}, {
3127
3127
  length: 256;
3128
3128
  }>;
3129
- agentId: drizzle_orm_pg_core364.PgColumn<{
3129
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
3130
3130
  name: "agent_id";
3131
3131
  tableName: "sub_agent_external_agent_relations";
3132
3132
  dataType: "string";
@@ -3145,7 +3145,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3145
3145
  }, {}, {
3146
3146
  length: 256;
3147
3147
  }>;
3148
- projectId: drizzle_orm_pg_core364.PgColumn<{
3148
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
3149
3149
  name: "project_id";
3150
3150
  tableName: "sub_agent_external_agent_relations";
3151
3151
  dataType: "string";
@@ -3164,7 +3164,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3164
3164
  }, {}, {
3165
3165
  length: 256;
3166
3166
  }>;
3167
- tenantId: drizzle_orm_pg_core364.PgColumn<{
3167
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
3168
3168
  name: "tenant_id";
3169
3169
  tableName: "sub_agent_external_agent_relations";
3170
3170
  dataType: "string";
@@ -3183,7 +3183,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3183
3183
  }, {}, {
3184
3184
  length: 256;
3185
3185
  }>;
3186
- id: drizzle_orm_pg_core364.PgColumn<{
3186
+ id: drizzle_orm_pg_core1278.PgColumn<{
3187
3187
  name: "id";
3188
3188
  tableName: "sub_agent_external_agent_relations";
3189
3189
  dataType: "string";
@@ -3205,11 +3205,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core364.PgTableWith
3205
3205
  };
3206
3206
  dialect: "pg";
3207
3207
  }>;
3208
- declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
3208
+ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
3209
3209
  name: "sub_agent_team_agent_relations";
3210
3210
  schema: undefined;
3211
3211
  columns: {
3212
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3212
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3213
3213
  name: "created_at";
3214
3214
  tableName: "sub_agent_team_agent_relations";
3215
3215
  dataType: "string";
@@ -3226,7 +3226,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3226
3226
  identity: undefined;
3227
3227
  generated: undefined;
3228
3228
  }, {}, {}>;
3229
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3229
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3230
3230
  name: "updated_at";
3231
3231
  tableName: "sub_agent_team_agent_relations";
3232
3232
  dataType: "string";
@@ -3243,7 +3243,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3243
3243
  identity: undefined;
3244
3244
  generated: undefined;
3245
3245
  }, {}, {}>;
3246
- targetAgentId: drizzle_orm_pg_core364.PgColumn<{
3246
+ targetAgentId: drizzle_orm_pg_core1278.PgColumn<{
3247
3247
  name: "target_agent_id";
3248
3248
  tableName: "sub_agent_team_agent_relations";
3249
3249
  dataType: "string";
@@ -3262,7 +3262,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3262
3262
  }, {}, {
3263
3263
  length: 256;
3264
3264
  }>;
3265
- headers: drizzle_orm_pg_core364.PgColumn<{
3265
+ headers: drizzle_orm_pg_core1278.PgColumn<{
3266
3266
  name: "headers";
3267
3267
  tableName: "sub_agent_team_agent_relations";
3268
3268
  dataType: "json";
@@ -3281,7 +3281,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3281
3281
  }, {}, {
3282
3282
  $type: Record<string, string> | null;
3283
3283
  }>;
3284
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
3284
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
3285
3285
  name: "sub_agent_id";
3286
3286
  tableName: "sub_agent_team_agent_relations";
3287
3287
  dataType: "string";
@@ -3300,7 +3300,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3300
3300
  }, {}, {
3301
3301
  length: 256;
3302
3302
  }>;
3303
- agentId: drizzle_orm_pg_core364.PgColumn<{
3303
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
3304
3304
  name: "agent_id";
3305
3305
  tableName: "sub_agent_team_agent_relations";
3306
3306
  dataType: "string";
@@ -3319,7 +3319,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3319
3319
  }, {}, {
3320
3320
  length: 256;
3321
3321
  }>;
3322
- projectId: drizzle_orm_pg_core364.PgColumn<{
3322
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
3323
3323
  name: "project_id";
3324
3324
  tableName: "sub_agent_team_agent_relations";
3325
3325
  dataType: "string";
@@ -3338,7 +3338,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3338
3338
  }, {}, {
3339
3339
  length: 256;
3340
3340
  }>;
3341
- tenantId: drizzle_orm_pg_core364.PgColumn<{
3341
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
3342
3342
  name: "tenant_id";
3343
3343
  tableName: "sub_agent_team_agent_relations";
3344
3344
  dataType: "string";
@@ -3357,7 +3357,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3357
3357
  }, {}, {
3358
3358
  length: 256;
3359
3359
  }>;
3360
- id: drizzle_orm_pg_core364.PgColumn<{
3360
+ id: drizzle_orm_pg_core1278.PgColumn<{
3361
3361
  name: "id";
3362
3362
  tableName: "sub_agent_team_agent_relations";
3363
3363
  dataType: "string";
@@ -3379,11 +3379,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core364.PgTableWithColu
3379
3379
  };
3380
3380
  dialect: "pg";
3381
3381
  }>;
3382
- declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
3382
+ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
3383
3383
  name: "sub_agent_function_tool_relations";
3384
3384
  schema: undefined;
3385
3385
  columns: {
3386
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3386
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3387
3387
  name: "created_at";
3388
3388
  tableName: "sub_agent_function_tool_relations";
3389
3389
  dataType: "string";
@@ -3400,7 +3400,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3400
3400
  identity: undefined;
3401
3401
  generated: undefined;
3402
3402
  }, {}, {}>;
3403
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3403
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3404
3404
  name: "updated_at";
3405
3405
  tableName: "sub_agent_function_tool_relations";
3406
3406
  dataType: "string";
@@ -3417,7 +3417,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3417
3417
  identity: undefined;
3418
3418
  generated: undefined;
3419
3419
  }, {}, {}>;
3420
- functionToolId: drizzle_orm_pg_core364.PgColumn<{
3420
+ functionToolId: drizzle_orm_pg_core1278.PgColumn<{
3421
3421
  name: "function_tool_id";
3422
3422
  tableName: "sub_agent_function_tool_relations";
3423
3423
  dataType: "string";
@@ -3436,7 +3436,30 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3436
3436
  }, {}, {
3437
3437
  length: 256;
3438
3438
  }>;
3439
- subAgentId: drizzle_orm_pg_core364.PgColumn<{
3439
+ toolPolicies: drizzle_orm_pg_core1278.PgColumn<{
3440
+ name: "tool_policies";
3441
+ tableName: "sub_agent_function_tool_relations";
3442
+ dataType: "json";
3443
+ columnType: "PgJsonb";
3444
+ data: Record<string, {
3445
+ needsApproval?: boolean;
3446
+ }> | null;
3447
+ driverParam: unknown;
3448
+ notNull: false;
3449
+ hasDefault: false;
3450
+ isPrimaryKey: false;
3451
+ isAutoincrement: false;
3452
+ hasRuntimeDefault: false;
3453
+ enumValues: undefined;
3454
+ baseColumn: never;
3455
+ identity: undefined;
3456
+ generated: undefined;
3457
+ }, {}, {
3458
+ $type: Record<string, {
3459
+ needsApproval?: boolean;
3460
+ }> | null;
3461
+ }>;
3462
+ subAgentId: drizzle_orm_pg_core1278.PgColumn<{
3440
3463
  name: "sub_agent_id";
3441
3464
  tableName: "sub_agent_function_tool_relations";
3442
3465
  dataType: "string";
@@ -3455,7 +3478,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3455
3478
  }, {}, {
3456
3479
  length: 256;
3457
3480
  }>;
3458
- agentId: drizzle_orm_pg_core364.PgColumn<{
3481
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
3459
3482
  name: "agent_id";
3460
3483
  tableName: "sub_agent_function_tool_relations";
3461
3484
  dataType: "string";
@@ -3474,7 +3497,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3474
3497
  }, {}, {
3475
3498
  length: 256;
3476
3499
  }>;
3477
- projectId: drizzle_orm_pg_core364.PgColumn<{
3500
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
3478
3501
  name: "project_id";
3479
3502
  tableName: "sub_agent_function_tool_relations";
3480
3503
  dataType: "string";
@@ -3493,7 +3516,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3493
3516
  }, {}, {
3494
3517
  length: 256;
3495
3518
  }>;
3496
- tenantId: drizzle_orm_pg_core364.PgColumn<{
3519
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
3497
3520
  name: "tenant_id";
3498
3521
  tableName: "sub_agent_function_tool_relations";
3499
3522
  dataType: "string";
@@ -3512,7 +3535,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3512
3535
  }, {}, {
3513
3536
  length: 256;
3514
3537
  }>;
3515
- id: drizzle_orm_pg_core364.PgColumn<{
3538
+ id: drizzle_orm_pg_core1278.PgColumn<{
3516
3539
  name: "id";
3517
3540
  tableName: "sub_agent_function_tool_relations";
3518
3541
  dataType: "string";
@@ -3534,11 +3557,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core364.PgTableWithC
3534
3557
  };
3535
3558
  dialect: "pg";
3536
3559
  }>;
3537
- declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3560
+ declare const credentialReferences: drizzle_orm_pg_core1278.PgTableWithColumns<{
3538
3561
  name: "credential_references";
3539
3562
  schema: undefined;
3540
3563
  columns: {
3541
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3564
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3542
3565
  name: "created_at";
3543
3566
  tableName: "credential_references";
3544
3567
  dataType: "string";
@@ -3555,7 +3578,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3555
3578
  identity: undefined;
3556
3579
  generated: undefined;
3557
3580
  }, {}, {}>;
3558
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3581
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3559
3582
  name: "updated_at";
3560
3583
  tableName: "credential_references";
3561
3584
  dataType: "string";
@@ -3572,7 +3595,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3572
3595
  identity: undefined;
3573
3596
  generated: undefined;
3574
3597
  }, {}, {}>;
3575
- name: drizzle_orm_pg_core364.PgColumn<{
3598
+ name: drizzle_orm_pg_core1278.PgColumn<{
3576
3599
  name: "name";
3577
3600
  tableName: "credential_references";
3578
3601
  dataType: "string";
@@ -3591,7 +3614,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3591
3614
  }, {}, {
3592
3615
  length: 256;
3593
3616
  }>;
3594
- type: drizzle_orm_pg_core364.PgColumn<{
3617
+ type: drizzle_orm_pg_core1278.PgColumn<{
3595
3618
  name: "type";
3596
3619
  tableName: "credential_references";
3597
3620
  dataType: "string";
@@ -3610,7 +3633,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3610
3633
  }, {}, {
3611
3634
  length: 256;
3612
3635
  }>;
3613
- credentialStoreId: drizzle_orm_pg_core364.PgColumn<{
3636
+ credentialStoreId: drizzle_orm_pg_core1278.PgColumn<{
3614
3637
  name: "credential_store_id";
3615
3638
  tableName: "credential_references";
3616
3639
  dataType: "string";
@@ -3629,7 +3652,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3629
3652
  }, {}, {
3630
3653
  length: 256;
3631
3654
  }>;
3632
- retrievalParams: drizzle_orm_pg_core364.PgColumn<{
3655
+ retrievalParams: drizzle_orm_pg_core1278.PgColumn<{
3633
3656
  name: "retrieval_params";
3634
3657
  tableName: "credential_references";
3635
3658
  dataType: "json";
@@ -3648,7 +3671,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3648
3671
  }, {}, {
3649
3672
  $type: Record<string, unknown>;
3650
3673
  }>;
3651
- toolId: drizzle_orm_pg_core364.PgColumn<{
3674
+ toolId: drizzle_orm_pg_core1278.PgColumn<{
3652
3675
  name: "tool_id";
3653
3676
  tableName: "credential_references";
3654
3677
  dataType: "string";
@@ -3667,7 +3690,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3667
3690
  }, {}, {
3668
3691
  length: 256;
3669
3692
  }>;
3670
- userId: drizzle_orm_pg_core364.PgColumn<{
3693
+ userId: drizzle_orm_pg_core1278.PgColumn<{
3671
3694
  name: "user_id";
3672
3695
  tableName: "credential_references";
3673
3696
  dataType: "string";
@@ -3686,7 +3709,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3686
3709
  }, {}, {
3687
3710
  length: 256;
3688
3711
  }>;
3689
- createdBy: drizzle_orm_pg_core364.PgColumn<{
3712
+ createdBy: drizzle_orm_pg_core1278.PgColumn<{
3690
3713
  name: "created_by";
3691
3714
  tableName: "credential_references";
3692
3715
  dataType: "string";
@@ -3705,7 +3728,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3705
3728
  }, {}, {
3706
3729
  length: 256;
3707
3730
  }>;
3708
- projectId: drizzle_orm_pg_core364.PgColumn<{
3731
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
3709
3732
  name: "project_id";
3710
3733
  tableName: "credential_references";
3711
3734
  dataType: "string";
@@ -3724,7 +3747,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3724
3747
  }, {}, {
3725
3748
  length: 256;
3726
3749
  }>;
3727
- tenantId: drizzle_orm_pg_core364.PgColumn<{
3750
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
3728
3751
  name: "tenant_id";
3729
3752
  tableName: "credential_references";
3730
3753
  dataType: "string";
@@ -3743,7 +3766,7 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3743
3766
  }, {}, {
3744
3767
  length: 256;
3745
3768
  }>;
3746
- id: drizzle_orm_pg_core364.PgColumn<{
3769
+ id: drizzle_orm_pg_core1278.PgColumn<{
3747
3770
  name: "id";
3748
3771
  tableName: "credential_references";
3749
3772
  dataType: "string";
@@ -3775,11 +3798,11 @@ declare const credentialReferences: drizzle_orm_pg_core364.PgTableWithColumns<{
3775
3798
  *
3776
3799
  * Includes: name and timestamps
3777
3800
  */
3778
- declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3801
+ declare const dataset: drizzle_orm_pg_core1278.PgTableWithColumns<{
3779
3802
  name: "dataset";
3780
3803
  schema: undefined;
3781
3804
  columns: {
3782
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3805
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3783
3806
  name: "created_at";
3784
3807
  tableName: "dataset";
3785
3808
  dataType: "string";
@@ -3796,7 +3819,7 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3796
3819
  identity: undefined;
3797
3820
  generated: undefined;
3798
3821
  }, {}, {}>;
3799
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3822
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3800
3823
  name: "updated_at";
3801
3824
  tableName: "dataset";
3802
3825
  dataType: "string";
@@ -3813,7 +3836,7 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3813
3836
  identity: undefined;
3814
3837
  generated: undefined;
3815
3838
  }, {}, {}>;
3816
- name: drizzle_orm_pg_core364.PgColumn<{
3839
+ name: drizzle_orm_pg_core1278.PgColumn<{
3817
3840
  name: "name";
3818
3841
  tableName: "dataset";
3819
3842
  dataType: "string";
@@ -3832,7 +3855,7 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3832
3855
  }, {}, {
3833
3856
  length: 256;
3834
3857
  }>;
3835
- projectId: drizzle_orm_pg_core364.PgColumn<{
3858
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
3836
3859
  name: "project_id";
3837
3860
  tableName: "dataset";
3838
3861
  dataType: "string";
@@ -3851,7 +3874,7 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3851
3874
  }, {}, {
3852
3875
  length: 256;
3853
3876
  }>;
3854
- tenantId: drizzle_orm_pg_core364.PgColumn<{
3877
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
3855
3878
  name: "tenant_id";
3856
3879
  tableName: "dataset";
3857
3880
  dataType: "string";
@@ -3870,7 +3893,7 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3870
3893
  }, {}, {
3871
3894
  length: 256;
3872
3895
  }>;
3873
- id: drizzle_orm_pg_core364.PgColumn<{
3896
+ id: drizzle_orm_pg_core1278.PgColumn<{
3874
3897
  name: "id";
3875
3898
  tableName: "dataset";
3876
3899
  dataType: "string";
@@ -3903,11 +3926,11 @@ declare const dataset: drizzle_orm_pg_core364.PgTableWithColumns<{
3903
3926
  * simulation agent (stopWhen conditions, prompt/modelConfig), and timestamps
3904
3927
  * simulationAgent is for when a user wants to create a multi-turn simulation aka a simulating agent is creating input messages based on a persona
3905
3928
  */
3906
- declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3929
+ declare const datasetItem: drizzle_orm_pg_core1278.PgTableWithColumns<{
3907
3930
  name: "dataset_item";
3908
3931
  schema: undefined;
3909
3932
  columns: {
3910
- createdAt: drizzle_orm_pg_core364.PgColumn<{
3933
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
3911
3934
  name: "created_at";
3912
3935
  tableName: "dataset_item";
3913
3936
  dataType: "string";
@@ -3924,7 +3947,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3924
3947
  identity: undefined;
3925
3948
  generated: undefined;
3926
3949
  }, {}, {}>;
3927
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
3950
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
3928
3951
  name: "updated_at";
3929
3952
  tableName: "dataset_item";
3930
3953
  dataType: "string";
@@ -3941,7 +3964,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3941
3964
  identity: undefined;
3942
3965
  generated: undefined;
3943
3966
  }, {}, {}>;
3944
- datasetId: drizzle_orm_pg_core364.PgColumn<{
3967
+ datasetId: drizzle_orm_pg_core1278.PgColumn<{
3945
3968
  name: "dataset_id";
3946
3969
  tableName: "dataset_item";
3947
3970
  dataType: "string";
@@ -3958,7 +3981,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3958
3981
  identity: undefined;
3959
3982
  generated: undefined;
3960
3983
  }, {}, {}>;
3961
- input: drizzle_orm_pg_core364.PgColumn<{
3984
+ input: drizzle_orm_pg_core1278.PgColumn<{
3962
3985
  name: "input";
3963
3986
  tableName: "dataset_item";
3964
3987
  dataType: "json";
@@ -3977,7 +4000,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3977
4000
  }, {}, {
3978
4001
  $type: DatasetItemInput;
3979
4002
  }>;
3980
- expectedOutput: drizzle_orm_pg_core364.PgColumn<{
4003
+ expectedOutput: drizzle_orm_pg_core1278.PgColumn<{
3981
4004
  name: "expected_output";
3982
4005
  tableName: "dataset_item";
3983
4006
  dataType: "json";
@@ -3996,7 +4019,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
3996
4019
  }, {}, {
3997
4020
  $type: DatasetItemExpectedOutput;
3998
4021
  }>;
3999
- simulationAgent: drizzle_orm_pg_core364.PgColumn<{
4022
+ simulationAgent: drizzle_orm_pg_core1278.PgColumn<{
4000
4023
  name: "simulation_agent";
4001
4024
  tableName: "dataset_item";
4002
4025
  dataType: "json";
@@ -4035,7 +4058,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
4035
4058
  } | undefined;
4036
4059
  };
4037
4060
  }>;
4038
- projectId: drizzle_orm_pg_core364.PgColumn<{
4061
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4039
4062
  name: "project_id";
4040
4063
  tableName: "dataset_item";
4041
4064
  dataType: "string";
@@ -4054,7 +4077,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
4054
4077
  }, {}, {
4055
4078
  length: 256;
4056
4079
  }>;
4057
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4080
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4058
4081
  name: "tenant_id";
4059
4082
  tableName: "dataset_item";
4060
4083
  dataType: "string";
@@ -4073,7 +4096,7 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
4073
4096
  }, {}, {
4074
4097
  length: 256;
4075
4098
  }>;
4076
- id: drizzle_orm_pg_core364.PgColumn<{
4099
+ id: drizzle_orm_pg_core1278.PgColumn<{
4077
4100
  name: "id";
4078
4101
  tableName: "dataset_item";
4079
4102
  dataType: "string";
@@ -4095,11 +4118,11 @@ declare const datasetItem: drizzle_orm_pg_core364.PgTableWithColumns<{
4095
4118
  };
4096
4119
  dialect: "pg";
4097
4120
  }>;
4098
- declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4121
+ declare const evaluator: drizzle_orm_pg_core1278.PgTableWithColumns<{
4099
4122
  name: "evaluator";
4100
4123
  schema: undefined;
4101
4124
  columns: {
4102
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4125
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4103
4126
  name: "created_at";
4104
4127
  tableName: "evaluator";
4105
4128
  dataType: "string";
@@ -4116,7 +4139,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4116
4139
  identity: undefined;
4117
4140
  generated: undefined;
4118
4141
  }, {}, {}>;
4119
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4142
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4120
4143
  name: "updated_at";
4121
4144
  tableName: "evaluator";
4122
4145
  dataType: "string";
@@ -4133,7 +4156,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4133
4156
  identity: undefined;
4134
4157
  generated: undefined;
4135
4158
  }, {}, {}>;
4136
- prompt: drizzle_orm_pg_core364.PgColumn<{
4159
+ prompt: drizzle_orm_pg_core1278.PgColumn<{
4137
4160
  name: "prompt";
4138
4161
  tableName: "evaluator";
4139
4162
  dataType: "string";
@@ -4150,7 +4173,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4150
4173
  identity: undefined;
4151
4174
  generated: undefined;
4152
4175
  }, {}, {}>;
4153
- schema: drizzle_orm_pg_core364.PgColumn<{
4176
+ schema: drizzle_orm_pg_core1278.PgColumn<{
4154
4177
  name: "schema";
4155
4178
  tableName: "evaluator";
4156
4179
  dataType: "json";
@@ -4169,7 +4192,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4169
4192
  }, {}, {
4170
4193
  $type: Record<string, unknown>;
4171
4194
  }>;
4172
- model: drizzle_orm_pg_core364.PgColumn<{
4195
+ model: drizzle_orm_pg_core1278.PgColumn<{
4173
4196
  name: "model";
4174
4197
  tableName: "evaluator";
4175
4198
  dataType: "json";
@@ -4194,7 +4217,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4194
4217
  providerOptions?: Record<string, any> | undefined;
4195
4218
  };
4196
4219
  }>;
4197
- passCriteria: drizzle_orm_pg_core364.PgColumn<{
4220
+ passCriteria: drizzle_orm_pg_core1278.PgColumn<{
4198
4221
  name: "pass_criteria";
4199
4222
  tableName: "evaluator";
4200
4223
  dataType: "json";
@@ -4213,7 +4236,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4213
4236
  }, {}, {
4214
4237
  $type: PassCriteria;
4215
4238
  }>;
4216
- name: drizzle_orm_pg_core364.PgColumn<{
4239
+ name: drizzle_orm_pg_core1278.PgColumn<{
4217
4240
  name: "name";
4218
4241
  tableName: "evaluator";
4219
4242
  dataType: "string";
@@ -4232,7 +4255,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4232
4255
  }, {}, {
4233
4256
  length: 256;
4234
4257
  }>;
4235
- description: drizzle_orm_pg_core364.PgColumn<{
4258
+ description: drizzle_orm_pg_core1278.PgColumn<{
4236
4259
  name: "description";
4237
4260
  tableName: "evaluator";
4238
4261
  dataType: "string";
@@ -4249,7 +4272,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4249
4272
  identity: undefined;
4250
4273
  generated: undefined;
4251
4274
  }, {}, {}>;
4252
- projectId: drizzle_orm_pg_core364.PgColumn<{
4275
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4253
4276
  name: "project_id";
4254
4277
  tableName: "evaluator";
4255
4278
  dataType: "string";
@@ -4268,7 +4291,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4268
4291
  }, {}, {
4269
4292
  length: 256;
4270
4293
  }>;
4271
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4294
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4272
4295
  name: "tenant_id";
4273
4296
  tableName: "evaluator";
4274
4297
  dataType: "string";
@@ -4287,7 +4310,7 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4287
4310
  }, {}, {
4288
4311
  length: 256;
4289
4312
  }>;
4290
- id: drizzle_orm_pg_core364.PgColumn<{
4313
+ id: drizzle_orm_pg_core1278.PgColumn<{
4291
4314
  name: "id";
4292
4315
  tableName: "evaluator";
4293
4316
  dataType: "string";
@@ -4309,11 +4332,11 @@ declare const evaluator: drizzle_orm_pg_core364.PgTableWithColumns<{
4309
4332
  };
4310
4333
  dialect: "pg";
4311
4334
  }>;
4312
- declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4335
+ declare const datasetRunConfig: drizzle_orm_pg_core1278.PgTableWithColumns<{
4313
4336
  name: "dataset_run_config";
4314
4337
  schema: undefined;
4315
4338
  columns: {
4316
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4339
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4317
4340
  name: "created_at";
4318
4341
  tableName: "dataset_run_config";
4319
4342
  dataType: "string";
@@ -4330,7 +4353,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4330
4353
  identity: undefined;
4331
4354
  generated: undefined;
4332
4355
  }, {}, {}>;
4333
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4356
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4334
4357
  name: "updated_at";
4335
4358
  tableName: "dataset_run_config";
4336
4359
  dataType: "string";
@@ -4347,7 +4370,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4347
4370
  identity: undefined;
4348
4371
  generated: undefined;
4349
4372
  }, {}, {}>;
4350
- datasetId: drizzle_orm_pg_core364.PgColumn<{
4373
+ datasetId: drizzle_orm_pg_core1278.PgColumn<{
4351
4374
  name: "dataset_id";
4352
4375
  tableName: "dataset_run_config";
4353
4376
  dataType: "string";
@@ -4364,7 +4387,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4364
4387
  identity: undefined;
4365
4388
  generated: undefined;
4366
4389
  }, {}, {}>;
4367
- name: drizzle_orm_pg_core364.PgColumn<{
4390
+ name: drizzle_orm_pg_core1278.PgColumn<{
4368
4391
  name: "name";
4369
4392
  tableName: "dataset_run_config";
4370
4393
  dataType: "string";
@@ -4383,7 +4406,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4383
4406
  }, {}, {
4384
4407
  length: 256;
4385
4408
  }>;
4386
- description: drizzle_orm_pg_core364.PgColumn<{
4409
+ description: drizzle_orm_pg_core1278.PgColumn<{
4387
4410
  name: "description";
4388
4411
  tableName: "dataset_run_config";
4389
4412
  dataType: "string";
@@ -4400,7 +4423,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4400
4423
  identity: undefined;
4401
4424
  generated: undefined;
4402
4425
  }, {}, {}>;
4403
- projectId: drizzle_orm_pg_core364.PgColumn<{
4426
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4404
4427
  name: "project_id";
4405
4428
  tableName: "dataset_run_config";
4406
4429
  dataType: "string";
@@ -4419,7 +4442,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4419
4442
  }, {}, {
4420
4443
  length: 256;
4421
4444
  }>;
4422
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4445
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4423
4446
  name: "tenant_id";
4424
4447
  tableName: "dataset_run_config";
4425
4448
  dataType: "string";
@@ -4438,7 +4461,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4438
4461
  }, {}, {
4439
4462
  length: 256;
4440
4463
  }>;
4441
- id: drizzle_orm_pg_core364.PgColumn<{
4464
+ id: drizzle_orm_pg_core1278.PgColumn<{
4442
4465
  name: "id";
4443
4466
  tableName: "dataset_run_config";
4444
4467
  dataType: "string";
@@ -4475,11 +4498,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4475
4498
  * Includes: name, description, filters (JSONB for evaluation criteria),
4476
4499
  * sampleRate for sampling, and timestamps
4477
4500
  */
4478
- declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4501
+ declare const evaluationSuiteConfig: drizzle_orm_pg_core1278.PgTableWithColumns<{
4479
4502
  name: "evaluation_suite_config";
4480
4503
  schema: undefined;
4481
4504
  columns: {
4482
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4505
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4483
4506
  name: "created_at";
4484
4507
  tableName: "evaluation_suite_config";
4485
4508
  dataType: "string";
@@ -4496,7 +4519,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4496
4519
  identity: undefined;
4497
4520
  generated: undefined;
4498
4521
  }, {}, {}>;
4499
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4522
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4500
4523
  name: "updated_at";
4501
4524
  tableName: "evaluation_suite_config";
4502
4525
  dataType: "string";
@@ -4513,7 +4536,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4513
4536
  identity: undefined;
4514
4537
  generated: undefined;
4515
4538
  }, {}, {}>;
4516
- filters: drizzle_orm_pg_core364.PgColumn<{
4539
+ filters: drizzle_orm_pg_core1278.PgColumn<{
4517
4540
  name: "filters";
4518
4541
  tableName: "evaluation_suite_config";
4519
4542
  dataType: "json";
@@ -4532,7 +4555,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4532
4555
  }, {}, {
4533
4556
  $type: Filter<EvaluationSuiteFilterCriteria>;
4534
4557
  }>;
4535
- sampleRate: drizzle_orm_pg_core364.PgColumn<{
4558
+ sampleRate: drizzle_orm_pg_core1278.PgColumn<{
4536
4559
  name: "sample_rate";
4537
4560
  tableName: "evaluation_suite_config";
4538
4561
  dataType: "number";
@@ -4549,7 +4572,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4549
4572
  identity: undefined;
4550
4573
  generated: undefined;
4551
4574
  }, {}, {}>;
4552
- projectId: drizzle_orm_pg_core364.PgColumn<{
4575
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4553
4576
  name: "project_id";
4554
4577
  tableName: "evaluation_suite_config";
4555
4578
  dataType: "string";
@@ -4568,7 +4591,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4568
4591
  }, {}, {
4569
4592
  length: 256;
4570
4593
  }>;
4571
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4594
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4572
4595
  name: "tenant_id";
4573
4596
  tableName: "evaluation_suite_config";
4574
4597
  dataType: "string";
@@ -4587,7 +4610,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4587
4610
  }, {}, {
4588
4611
  length: 256;
4589
4612
  }>;
4590
- id: drizzle_orm_pg_core364.PgColumn<{
4613
+ id: drizzle_orm_pg_core1278.PgColumn<{
4591
4614
  name: "id";
4592
4615
  tableName: "evaluation_suite_config";
4593
4616
  dataType: "string";
@@ -4616,11 +4639,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4616
4639
  *
4617
4640
  * Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
4618
4641
  */
4619
- declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
4642
+ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
4620
4643
  name: "evaluation_suite_config_evaluator_relations";
4621
4644
  schema: undefined;
4622
4645
  columns: {
4623
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4646
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4624
4647
  name: "created_at";
4625
4648
  tableName: "evaluation_suite_config_evaluator_relations";
4626
4649
  dataType: "string";
@@ -4637,7 +4660,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4637
4660
  identity: undefined;
4638
4661
  generated: undefined;
4639
4662
  }, {}, {}>;
4640
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4663
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4641
4664
  name: "updated_at";
4642
4665
  tableName: "evaluation_suite_config_evaluator_relations";
4643
4666
  dataType: "string";
@@ -4654,7 +4677,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4654
4677
  identity: undefined;
4655
4678
  generated: undefined;
4656
4679
  }, {}, {}>;
4657
- evaluationSuiteConfigId: drizzle_orm_pg_core364.PgColumn<{
4680
+ evaluationSuiteConfigId: drizzle_orm_pg_core1278.PgColumn<{
4658
4681
  name: "evaluation_suite_config_id";
4659
4682
  tableName: "evaluation_suite_config_evaluator_relations";
4660
4683
  dataType: "string";
@@ -4671,7 +4694,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4671
4694
  identity: undefined;
4672
4695
  generated: undefined;
4673
4696
  }, {}, {}>;
4674
- evaluatorId: drizzle_orm_pg_core364.PgColumn<{
4697
+ evaluatorId: drizzle_orm_pg_core1278.PgColumn<{
4675
4698
  name: "evaluator_id";
4676
4699
  tableName: "evaluation_suite_config_evaluator_relations";
4677
4700
  dataType: "string";
@@ -4688,7 +4711,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4688
4711
  identity: undefined;
4689
4712
  generated: undefined;
4690
4713
  }, {}, {}>;
4691
- projectId: drizzle_orm_pg_core364.PgColumn<{
4714
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4692
4715
  name: "project_id";
4693
4716
  tableName: "evaluation_suite_config_evaluator_relations";
4694
4717
  dataType: "string";
@@ -4707,7 +4730,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4707
4730
  }, {}, {
4708
4731
  length: 256;
4709
4732
  }>;
4710
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4733
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4711
4734
  name: "tenant_id";
4712
4735
  tableName: "evaluation_suite_config_evaluator_relations";
4713
4736
  dataType: "string";
@@ -4726,7 +4749,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4726
4749
  }, {}, {
4727
4750
  length: 256;
4728
4751
  }>;
4729
- id: drizzle_orm_pg_core364.PgColumn<{
4752
+ id: drizzle_orm_pg_core1278.PgColumn<{
4730
4753
  name: "id";
4731
4754
  tableName: "evaluation_suite_config_evaluator_relations";
4732
4755
  dataType: "string";
@@ -4755,11 +4778,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core364.Pg
4755
4778
  *
4756
4779
  * Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
4757
4780
  */
4758
- declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
4781
+ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
4759
4782
  name: "evaluation_run_config_evaluation_suite_config_relations";
4760
4783
  schema: undefined;
4761
4784
  columns: {
4762
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4785
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4763
4786
  name: "created_at";
4764
4787
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4765
4788
  dataType: "string";
@@ -4776,7 +4799,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4776
4799
  identity: undefined;
4777
4800
  generated: undefined;
4778
4801
  }, {}, {}>;
4779
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4802
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4780
4803
  name: "updated_at";
4781
4804
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4782
4805
  dataType: "string";
@@ -4793,7 +4816,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4793
4816
  identity: undefined;
4794
4817
  generated: undefined;
4795
4818
  }, {}, {}>;
4796
- evaluationRunConfigId: drizzle_orm_pg_core364.PgColumn<{
4819
+ evaluationRunConfigId: drizzle_orm_pg_core1278.PgColumn<{
4797
4820
  name: "evaluation_run_config_id";
4798
4821
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4799
4822
  dataType: "string";
@@ -4810,7 +4833,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4810
4833
  identity: undefined;
4811
4834
  generated: undefined;
4812
4835
  }, {}, {}>;
4813
- evaluationSuiteConfigId: drizzle_orm_pg_core364.PgColumn<{
4836
+ evaluationSuiteConfigId: drizzle_orm_pg_core1278.PgColumn<{
4814
4837
  name: "evaluation_suite_config_id";
4815
4838
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4816
4839
  dataType: "string";
@@ -4827,7 +4850,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4827
4850
  identity: undefined;
4828
4851
  generated: undefined;
4829
4852
  }, {}, {}>;
4830
- projectId: drizzle_orm_pg_core364.PgColumn<{
4853
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4831
4854
  name: "project_id";
4832
4855
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4833
4856
  dataType: "string";
@@ -4846,7 +4869,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4846
4869
  }, {}, {
4847
4870
  length: 256;
4848
4871
  }>;
4849
- tenantId: drizzle_orm_pg_core364.PgColumn<{
4872
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
4850
4873
  name: "tenant_id";
4851
4874
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4852
4875
  dataType: "string";
@@ -4865,7 +4888,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4865
4888
  }, {}, {
4866
4889
  length: 256;
4867
4890
  }>;
4868
- id: drizzle_orm_pg_core364.PgColumn<{
4891
+ id: drizzle_orm_pg_core1278.PgColumn<{
4869
4892
  name: "id";
4870
4893
  tableName: "evaluation_run_config_evaluation_suite_config_relations";
4871
4894
  dataType: "string";
@@ -4900,11 +4923,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
4900
4923
  *
4901
4924
  * one to many relationship with evaluationRun
4902
4925
  */
4903
- declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4926
+ declare const evaluationRunConfig: drizzle_orm_pg_core1278.PgTableWithColumns<{
4904
4927
  name: "evaluation_run_config";
4905
4928
  schema: undefined;
4906
4929
  columns: {
4907
- createdAt: drizzle_orm_pg_core364.PgColumn<{
4930
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
4908
4931
  name: "created_at";
4909
4932
  tableName: "evaluation_run_config";
4910
4933
  dataType: "string";
@@ -4921,7 +4944,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4921
4944
  identity: undefined;
4922
4945
  generated: undefined;
4923
4946
  }, {}, {}>;
4924
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
4947
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
4925
4948
  name: "updated_at";
4926
4949
  tableName: "evaluation_run_config";
4927
4950
  dataType: "string";
@@ -4938,7 +4961,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4938
4961
  identity: undefined;
4939
4962
  generated: undefined;
4940
4963
  }, {}, {}>;
4941
- isActive: drizzle_orm_pg_core364.PgColumn<{
4964
+ isActive: drizzle_orm_pg_core1278.PgColumn<{
4942
4965
  name: "is_active";
4943
4966
  tableName: "evaluation_run_config";
4944
4967
  dataType: "boolean";
@@ -4955,7 +4978,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4955
4978
  identity: undefined;
4956
4979
  generated: undefined;
4957
4980
  }, {}, {}>;
4958
- name: drizzle_orm_pg_core364.PgColumn<{
4981
+ name: drizzle_orm_pg_core1278.PgColumn<{
4959
4982
  name: "name";
4960
4983
  tableName: "evaluation_run_config";
4961
4984
  dataType: "string";
@@ -4974,7 +4997,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4974
4997
  }, {}, {
4975
4998
  length: 256;
4976
4999
  }>;
4977
- description: drizzle_orm_pg_core364.PgColumn<{
5000
+ description: drizzle_orm_pg_core1278.PgColumn<{
4978
5001
  name: "description";
4979
5002
  tableName: "evaluation_run_config";
4980
5003
  dataType: "string";
@@ -4991,7 +5014,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
4991
5014
  identity: undefined;
4992
5015
  generated: undefined;
4993
5016
  }, {}, {}>;
4994
- projectId: drizzle_orm_pg_core364.PgColumn<{
5017
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
4995
5018
  name: "project_id";
4996
5019
  tableName: "evaluation_run_config";
4997
5020
  dataType: "string";
@@ -5010,7 +5033,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5010
5033
  }, {}, {
5011
5034
  length: 256;
5012
5035
  }>;
5013
- tenantId: drizzle_orm_pg_core364.PgColumn<{
5036
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
5014
5037
  name: "tenant_id";
5015
5038
  tableName: "evaluation_run_config";
5016
5039
  dataType: "string";
@@ -5029,7 +5052,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5029
5052
  }, {}, {
5030
5053
  length: 256;
5031
5054
  }>;
5032
- id: drizzle_orm_pg_core364.PgColumn<{
5055
+ id: drizzle_orm_pg_core1278.PgColumn<{
5033
5056
  name: "id";
5034
5057
  tableName: "evaluation_run_config";
5035
5058
  dataType: "string";
@@ -5065,11 +5088,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5065
5088
  * Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
5066
5089
  * dateRange with absolute dates), and timestamps
5067
5090
  */
5068
- declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5091
+ declare const evaluationJobConfig: drizzle_orm_pg_core1278.PgTableWithColumns<{
5069
5092
  name: "evaluation_job_config";
5070
5093
  schema: undefined;
5071
5094
  columns: {
5072
- createdAt: drizzle_orm_pg_core364.PgColumn<{
5095
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
5073
5096
  name: "created_at";
5074
5097
  tableName: "evaluation_job_config";
5075
5098
  dataType: "string";
@@ -5086,7 +5109,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5086
5109
  identity: undefined;
5087
5110
  generated: undefined;
5088
5111
  }, {}, {}>;
5089
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
5112
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
5090
5113
  name: "updated_at";
5091
5114
  tableName: "evaluation_job_config";
5092
5115
  dataType: "string";
@@ -5103,7 +5126,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5103
5126
  identity: undefined;
5104
5127
  generated: undefined;
5105
5128
  }, {}, {}>;
5106
- jobFilters: drizzle_orm_pg_core364.PgColumn<{
5129
+ jobFilters: drizzle_orm_pg_core1278.PgColumn<{
5107
5130
  name: "job_filters";
5108
5131
  tableName: "evaluation_job_config";
5109
5132
  dataType: "json";
@@ -5136,7 +5159,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5136
5159
  } | undefined;
5137
5160
  }>;
5138
5161
  }>;
5139
- projectId: drizzle_orm_pg_core364.PgColumn<{
5162
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
5140
5163
  name: "project_id";
5141
5164
  tableName: "evaluation_job_config";
5142
5165
  dataType: "string";
@@ -5155,7 +5178,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5155
5178
  }, {}, {
5156
5179
  length: 256;
5157
5180
  }>;
5158
- tenantId: drizzle_orm_pg_core364.PgColumn<{
5181
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
5159
5182
  name: "tenant_id";
5160
5183
  tableName: "evaluation_job_config";
5161
5184
  dataType: "string";
@@ -5174,7 +5197,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5174
5197
  }, {}, {
5175
5198
  length: 256;
5176
5199
  }>;
5177
- id: drizzle_orm_pg_core364.PgColumn<{
5200
+ id: drizzle_orm_pg_core1278.PgColumn<{
5178
5201
  name: "id";
5179
5202
  tableName: "evaluation_job_config";
5180
5203
  dataType: "string";
@@ -5203,11 +5226,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core364.PgTableWithColumns<{
5203
5226
  *
5204
5227
  * Includes: evaluationJobConfigId, evaluatorId, and timestamps
5205
5228
  */
5206
- declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
5229
+ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
5207
5230
  name: "evaluation_job_config_evaluator_relations";
5208
5231
  schema: undefined;
5209
5232
  columns: {
5210
- createdAt: drizzle_orm_pg_core364.PgColumn<{
5233
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
5211
5234
  name: "created_at";
5212
5235
  tableName: "evaluation_job_config_evaluator_relations";
5213
5236
  dataType: "string";
@@ -5224,7 +5247,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5224
5247
  identity: undefined;
5225
5248
  generated: undefined;
5226
5249
  }, {}, {}>;
5227
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
5250
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
5228
5251
  name: "updated_at";
5229
5252
  tableName: "evaluation_job_config_evaluator_relations";
5230
5253
  dataType: "string";
@@ -5241,7 +5264,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5241
5264
  identity: undefined;
5242
5265
  generated: undefined;
5243
5266
  }, {}, {}>;
5244
- evaluationJobConfigId: drizzle_orm_pg_core364.PgColumn<{
5267
+ evaluationJobConfigId: drizzle_orm_pg_core1278.PgColumn<{
5245
5268
  name: "evaluation_job_config_id";
5246
5269
  tableName: "evaluation_job_config_evaluator_relations";
5247
5270
  dataType: "string";
@@ -5258,7 +5281,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5258
5281
  identity: undefined;
5259
5282
  generated: undefined;
5260
5283
  }, {}, {}>;
5261
- evaluatorId: drizzle_orm_pg_core364.PgColumn<{
5284
+ evaluatorId: drizzle_orm_pg_core1278.PgColumn<{
5262
5285
  name: "evaluator_id";
5263
5286
  tableName: "evaluation_job_config_evaluator_relations";
5264
5287
  dataType: "string";
@@ -5275,7 +5298,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5275
5298
  identity: undefined;
5276
5299
  generated: undefined;
5277
5300
  }, {}, {}>;
5278
- projectId: drizzle_orm_pg_core364.PgColumn<{
5301
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
5279
5302
  name: "project_id";
5280
5303
  tableName: "evaluation_job_config_evaluator_relations";
5281
5304
  dataType: "string";
@@ -5294,7 +5317,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5294
5317
  }, {}, {
5295
5318
  length: 256;
5296
5319
  }>;
5297
- tenantId: drizzle_orm_pg_core364.PgColumn<{
5320
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
5298
5321
  name: "tenant_id";
5299
5322
  tableName: "evaluation_job_config_evaluator_relations";
5300
5323
  dataType: "string";
@@ -5313,7 +5336,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5313
5336
  }, {}, {
5314
5337
  length: 256;
5315
5338
  }>;
5316
- id: drizzle_orm_pg_core364.PgColumn<{
5339
+ id: drizzle_orm_pg_core1278.PgColumn<{
5317
5340
  name: "id";
5318
5341
  tableName: "evaluation_job_config_evaluator_relations";
5319
5342
  dataType: "string";
@@ -5335,98 +5358,98 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core364.PgTa
5335
5358
  };
5336
5359
  dialect: "pg";
5337
5360
  }>;
5338
- declare const projectsRelations: drizzle_orm37.Relations<"projects", {
5339
- subAgents: drizzle_orm37.Many<"sub_agents">;
5340
- agents: drizzle_orm37.Many<"agent">;
5341
- tools: drizzle_orm37.Many<"tools">;
5342
- functions: drizzle_orm37.Many<"functions">;
5343
- contextConfigs: drizzle_orm37.Many<"context_configs">;
5344
- externalAgents: drizzle_orm37.Many<"external_agents">;
5345
- dataComponents: drizzle_orm37.Many<"data_components">;
5346
- artifactComponents: drizzle_orm37.Many<"artifact_components">;
5347
- credentialReferences: drizzle_orm37.Many<"credential_references">;
5361
+ declare const projectsRelations: drizzle_orm20.Relations<"projects", {
5362
+ subAgents: drizzle_orm20.Many<"sub_agents">;
5363
+ agents: drizzle_orm20.Many<"agent">;
5364
+ tools: drizzle_orm20.Many<"tools">;
5365
+ functions: drizzle_orm20.Many<"functions">;
5366
+ contextConfigs: drizzle_orm20.Many<"context_configs">;
5367
+ externalAgents: drizzle_orm20.Many<"external_agents">;
5368
+ dataComponents: drizzle_orm20.Many<"data_components">;
5369
+ artifactComponents: drizzle_orm20.Many<"artifact_components">;
5370
+ credentialReferences: drizzle_orm20.Many<"credential_references">;
5348
5371
  }>;
5349
- declare const contextConfigsRelations: drizzle_orm37.Relations<"context_configs", {
5350
- project: drizzle_orm37.One<"projects", true>;
5351
- agents: drizzle_orm37.Many<"agent">;
5372
+ declare const contextConfigsRelations: drizzle_orm20.Relations<"context_configs", {
5373
+ project: drizzle_orm20.One<"projects", true>;
5374
+ agents: drizzle_orm20.Many<"agent">;
5352
5375
  }>;
5353
- declare const subAgentsRelations: drizzle_orm37.Relations<"sub_agents", {
5354
- project: drizzle_orm37.One<"projects", true>;
5355
- defaultForAgents: drizzle_orm37.Many<"agent">;
5356
- sourceRelations: drizzle_orm37.Many<"sub_agent_relations">;
5357
- targetRelations: drizzle_orm37.Many<"sub_agent_relations">;
5358
- toolRelations: drizzle_orm37.Many<"sub_agent_tool_relations">;
5359
- functionToolRelations: drizzle_orm37.Many<"sub_agent_function_tool_relations">;
5360
- dataComponentRelations: drizzle_orm37.Many<"sub_agent_data_components">;
5361
- artifactComponentRelations: drizzle_orm37.Many<"sub_agent_artifact_components">;
5376
+ declare const subAgentsRelations: drizzle_orm20.Relations<"sub_agents", {
5377
+ project: drizzle_orm20.One<"projects", true>;
5378
+ defaultForAgents: drizzle_orm20.Many<"agent">;
5379
+ sourceRelations: drizzle_orm20.Many<"sub_agent_relations">;
5380
+ targetRelations: drizzle_orm20.Many<"sub_agent_relations">;
5381
+ toolRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
5382
+ functionToolRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
5383
+ dataComponentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
5384
+ artifactComponentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
5362
5385
  }>;
5363
- declare const agentRelations: drizzle_orm37.Relations<"agent", {
5364
- project: drizzle_orm37.One<"projects", true>;
5365
- defaultSubAgent: drizzle_orm37.One<"sub_agents", false>;
5366
- contextConfig: drizzle_orm37.One<"context_configs", false>;
5367
- functionTools: drizzle_orm37.Many<"function_tools">;
5386
+ declare const agentRelations: drizzle_orm20.Relations<"agent", {
5387
+ project: drizzle_orm20.One<"projects", true>;
5388
+ defaultSubAgent: drizzle_orm20.One<"sub_agents", false>;
5389
+ contextConfig: drizzle_orm20.One<"context_configs", false>;
5390
+ functionTools: drizzle_orm20.Many<"function_tools">;
5368
5391
  }>;
5369
- declare const externalAgentsRelations: drizzle_orm37.Relations<"external_agents", {
5370
- project: drizzle_orm37.One<"projects", true>;
5371
- subAgentExternalAgentRelations: drizzle_orm37.Many<"sub_agent_external_agent_relations">;
5372
- credentialReference: drizzle_orm37.One<"credential_references", false>;
5392
+ declare const externalAgentsRelations: drizzle_orm20.Relations<"external_agents", {
5393
+ project: drizzle_orm20.One<"projects", true>;
5394
+ subAgentExternalAgentRelations: drizzle_orm20.Many<"sub_agent_external_agent_relations">;
5395
+ credentialReference: drizzle_orm20.One<"credential_references", false>;
5373
5396
  }>;
5374
- declare const agentToolRelationsRelations: drizzle_orm37.Relations<"sub_agent_tool_relations", {
5375
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5376
- tool: drizzle_orm37.One<"tools", true>;
5397
+ declare const agentToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_tool_relations", {
5398
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5399
+ tool: drizzle_orm20.One<"tools", true>;
5377
5400
  }>;
5378
- declare const credentialReferencesRelations: drizzle_orm37.Relations<"credential_references", {
5379
- project: drizzle_orm37.One<"projects", true>;
5380
- tools: drizzle_orm37.Many<"tools">;
5381
- externalAgents: drizzle_orm37.Many<"external_agents">;
5401
+ declare const credentialReferencesRelations: drizzle_orm20.Relations<"credential_references", {
5402
+ project: drizzle_orm20.One<"projects", true>;
5403
+ tools: drizzle_orm20.Many<"tools">;
5404
+ externalAgents: drizzle_orm20.Many<"external_agents">;
5382
5405
  }>;
5383
- declare const toolsRelations: drizzle_orm37.Relations<"tools", {
5384
- project: drizzle_orm37.One<"projects", true>;
5385
- subAgentRelations: drizzle_orm37.Many<"sub_agent_tool_relations">;
5386
- credentialReference: drizzle_orm37.One<"credential_references", false>;
5406
+ declare const toolsRelations: drizzle_orm20.Relations<"tools", {
5407
+ project: drizzle_orm20.One<"projects", true>;
5408
+ subAgentRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
5409
+ credentialReference: drizzle_orm20.One<"credential_references", false>;
5387
5410
  }>;
5388
- declare const artifactComponentsRelations: drizzle_orm37.Relations<"artifact_components", {
5389
- project: drizzle_orm37.One<"projects", true>;
5390
- subAgentRelations: drizzle_orm37.Many<"sub_agent_artifact_components">;
5411
+ declare const artifactComponentsRelations: drizzle_orm20.Relations<"artifact_components", {
5412
+ project: drizzle_orm20.One<"projects", true>;
5413
+ subAgentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
5391
5414
  }>;
5392
- declare const subAgentArtifactComponentsRelations: drizzle_orm37.Relations<"sub_agent_artifact_components", {
5393
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5394
- artifactComponent: drizzle_orm37.One<"artifact_components", true>;
5415
+ declare const subAgentArtifactComponentsRelations: drizzle_orm20.Relations<"sub_agent_artifact_components", {
5416
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5417
+ artifactComponent: drizzle_orm20.One<"artifact_components", true>;
5395
5418
  }>;
5396
- declare const dataComponentsRelations: drizzle_orm37.Relations<"data_components", {
5397
- project: drizzle_orm37.One<"projects", true>;
5398
- subAgentRelations: drizzle_orm37.Many<"sub_agent_data_components">;
5419
+ declare const dataComponentsRelations: drizzle_orm20.Relations<"data_components", {
5420
+ project: drizzle_orm20.One<"projects", true>;
5421
+ subAgentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
5399
5422
  }>;
5400
- declare const subAgentDataComponentsRelations: drizzle_orm37.Relations<"sub_agent_data_components", {
5401
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5402
- dataComponent: drizzle_orm37.One<"data_components", true>;
5423
+ declare const subAgentDataComponentsRelations: drizzle_orm20.Relations<"sub_agent_data_components", {
5424
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5425
+ dataComponent: drizzle_orm20.One<"data_components", true>;
5403
5426
  }>;
5404
- declare const functionsRelations: drizzle_orm37.Relations<"functions", {
5405
- functionTools: drizzle_orm37.Many<"function_tools">;
5406
- project: drizzle_orm37.One<"projects", true>;
5427
+ declare const functionsRelations: drizzle_orm20.Relations<"functions", {
5428
+ functionTools: drizzle_orm20.Many<"function_tools">;
5429
+ project: drizzle_orm20.One<"projects", true>;
5407
5430
  }>;
5408
- declare const subAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_relations", {
5409
- agent: drizzle_orm37.One<"agent", true>;
5410
- sourceSubAgent: drizzle_orm37.One<"sub_agents", true>;
5411
- targetSubAgent: drizzle_orm37.One<"sub_agents", false>;
5431
+ declare const subAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_relations", {
5432
+ agent: drizzle_orm20.One<"agent", true>;
5433
+ sourceSubAgent: drizzle_orm20.One<"sub_agents", true>;
5434
+ targetSubAgent: drizzle_orm20.One<"sub_agents", false>;
5412
5435
  }>;
5413
- declare const functionToolsRelations: drizzle_orm37.Relations<"function_tools", {
5414
- project: drizzle_orm37.One<"projects", true>;
5415
- agent: drizzle_orm37.One<"agent", true>;
5416
- function: drizzle_orm37.One<"functions", true>;
5417
- subAgentRelations: drizzle_orm37.Many<"sub_agent_function_tool_relations">;
5436
+ declare const functionToolsRelations: drizzle_orm20.Relations<"function_tools", {
5437
+ project: drizzle_orm20.One<"projects", true>;
5438
+ agent: drizzle_orm20.One<"agent", true>;
5439
+ function: drizzle_orm20.One<"functions", true>;
5440
+ subAgentRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
5418
5441
  }>;
5419
- declare const subAgentFunctionToolRelationsRelations: drizzle_orm37.Relations<"sub_agent_function_tool_relations", {
5420
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5421
- functionTool: drizzle_orm37.One<"function_tools", true>;
5442
+ declare const subAgentFunctionToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_function_tool_relations", {
5443
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5444
+ functionTool: drizzle_orm20.One<"function_tools", true>;
5422
5445
  }>;
5423
- declare const subAgentExternalAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_external_agent_relations", {
5424
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5425
- externalAgent: drizzle_orm37.One<"external_agents", true>;
5446
+ declare const subAgentExternalAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_external_agent_relations", {
5447
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5448
+ externalAgent: drizzle_orm20.One<"external_agents", true>;
5426
5449
  }>;
5427
- declare const subAgentTeamAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_team_agent_relations", {
5428
- subAgent: drizzle_orm37.One<"sub_agents", true>;
5429
- targetAgent: drizzle_orm37.One<"agent", true>;
5450
+ declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_team_agent_relations", {
5451
+ subAgent: drizzle_orm20.One<"sub_agents", true>;
5452
+ targetAgent: drizzle_orm20.One<"agent", true>;
5430
5453
  }>;
5431
5454
  /**
5432
5455
  * Links agents to dataset run configs. Many-to-many relationship that
@@ -5435,11 +5458,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm37.Relations<"sub_
5435
5458
  *
5436
5459
  * Includes: datasetRunConfigId, agentId, and timestamps
5437
5460
  */
5438
- declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWithColumns<{
5461
+ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1278.PgTableWithColumns<{
5439
5462
  name: "dataset_run_config_agent_relations";
5440
5463
  schema: undefined;
5441
5464
  columns: {
5442
- createdAt: drizzle_orm_pg_core364.PgColumn<{
5465
+ createdAt: drizzle_orm_pg_core1278.PgColumn<{
5443
5466
  name: "created_at";
5444
5467
  tableName: "dataset_run_config_agent_relations";
5445
5468
  dataType: "string";
@@ -5456,7 +5479,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5456
5479
  identity: undefined;
5457
5480
  generated: undefined;
5458
5481
  }, {}, {}>;
5459
- updatedAt: drizzle_orm_pg_core364.PgColumn<{
5482
+ updatedAt: drizzle_orm_pg_core1278.PgColumn<{
5460
5483
  name: "updated_at";
5461
5484
  tableName: "dataset_run_config_agent_relations";
5462
5485
  dataType: "string";
@@ -5473,7 +5496,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5473
5496
  identity: undefined;
5474
5497
  generated: undefined;
5475
5498
  }, {}, {}>;
5476
- datasetRunConfigId: drizzle_orm_pg_core364.PgColumn<{
5499
+ datasetRunConfigId: drizzle_orm_pg_core1278.PgColumn<{
5477
5500
  name: "dataset_run_config_id";
5478
5501
  tableName: "dataset_run_config_agent_relations";
5479
5502
  dataType: "string";
@@ -5490,7 +5513,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5490
5513
  identity: undefined;
5491
5514
  generated: undefined;
5492
5515
  }, {}, {}>;
5493
- agentId: drizzle_orm_pg_core364.PgColumn<{
5516
+ agentId: drizzle_orm_pg_core1278.PgColumn<{
5494
5517
  name: "agent_id";
5495
5518
  tableName: "dataset_run_config_agent_relations";
5496
5519
  dataType: "string";
@@ -5507,7 +5530,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5507
5530
  identity: undefined;
5508
5531
  generated: undefined;
5509
5532
  }, {}, {}>;
5510
- projectId: drizzle_orm_pg_core364.PgColumn<{
5533
+ projectId: drizzle_orm_pg_core1278.PgColumn<{
5511
5534
  name: "project_id";
5512
5535
  tableName: "dataset_run_config_agent_relations";
5513
5536
  dataType: "string";
@@ -5526,7 +5549,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5526
5549
  }, {}, {
5527
5550
  length: 256;
5528
5551
  }>;
5529
- tenantId: drizzle_orm_pg_core364.PgColumn<{
5552
+ tenantId: drizzle_orm_pg_core1278.PgColumn<{
5530
5553
  name: "tenant_id";
5531
5554
  tableName: "dataset_run_config_agent_relations";
5532
5555
  dataType: "string";
@@ -5545,7 +5568,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core364.PgTableWith
5545
5568
  }, {}, {
5546
5569
  length: 256;
5547
5570
  }>;
5548
- id: drizzle_orm_pg_core364.PgColumn<{
5571
+ id: drizzle_orm_pg_core1278.PgColumn<{
5549
5572
  name: "id";
5550
5573
  tableName: "dataset_run_config_agent_relations";
5551
5574
  dataType: "string";