@inkeep/agents-core 0.0.0-dev-20260117204004 → 0.0.0-dev-20260118145507
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +18 -18
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/db/manage/manage-schema.d.ts +360 -360
- package/dist/db/runtime/runtime-schema.d.ts +163 -163
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +140 -140
- package/package.json +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as drizzle_orm37 from "drizzle-orm";
|
|
3
|
+
import * as drizzle_orm_pg_core1346 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 };
|
|
8
8
|
}
|
|
9
|
-
declare const projects:
|
|
9
|
+
declare const projects: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
10
10
|
name: "projects";
|
|
11
11
|
schema: undefined;
|
|
12
12
|
columns: {
|
|
13
|
-
createdAt:
|
|
13
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
14
14
|
name: "created_at";
|
|
15
15
|
tableName: "projects";
|
|
16
16
|
dataType: "string";
|
|
@@ -27,7 +27,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
27
27
|
identity: undefined;
|
|
28
28
|
generated: undefined;
|
|
29
29
|
}, {}, {}>;
|
|
30
|
-
updatedAt:
|
|
30
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
31
31
|
name: "updated_at";
|
|
32
32
|
tableName: "projects";
|
|
33
33
|
dataType: "string";
|
|
@@ -44,7 +44,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
44
44
|
identity: undefined;
|
|
45
45
|
generated: undefined;
|
|
46
46
|
}, {}, {}>;
|
|
47
|
-
models:
|
|
47
|
+
models: drizzle_orm_pg_core1346.PgColumn<{
|
|
48
48
|
name: "models";
|
|
49
49
|
tableName: "projects";
|
|
50
50
|
dataType: "json";
|
|
@@ -89,7 +89,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
89
89
|
} | undefined;
|
|
90
90
|
};
|
|
91
91
|
}>;
|
|
92
|
-
stopWhen:
|
|
92
|
+
stopWhen: drizzle_orm_pg_core1346.PgColumn<{
|
|
93
93
|
name: "stop_when";
|
|
94
94
|
tableName: "projects";
|
|
95
95
|
dataType: "json";
|
|
@@ -114,7 +114,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
114
114
|
stepCountIs?: number | undefined;
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
|
-
name:
|
|
117
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
118
118
|
name: "name";
|
|
119
119
|
tableName: "projects";
|
|
120
120
|
dataType: "string";
|
|
@@ -133,7 +133,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
133
133
|
}, {}, {
|
|
134
134
|
length: 256;
|
|
135
135
|
}>;
|
|
136
|
-
description:
|
|
136
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
137
137
|
name: "description";
|
|
138
138
|
tableName: "projects";
|
|
139
139
|
dataType: "string";
|
|
@@ -150,7 +150,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
150
150
|
identity: undefined;
|
|
151
151
|
generated: undefined;
|
|
152
152
|
}, {}, {}>;
|
|
153
|
-
tenantId:
|
|
153
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
154
154
|
name: "tenant_id";
|
|
155
155
|
tableName: "projects";
|
|
156
156
|
dataType: "string";
|
|
@@ -169,7 +169,7 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
169
169
|
}, {}, {
|
|
170
170
|
length: 256;
|
|
171
171
|
}>;
|
|
172
|
-
id:
|
|
172
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
173
173
|
name: "id";
|
|
174
174
|
tableName: "projects";
|
|
175
175
|
dataType: "string";
|
|
@@ -191,11 +191,11 @@ declare const projects: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
191
191
|
};
|
|
192
192
|
dialect: "pg";
|
|
193
193
|
}>;
|
|
194
|
-
declare const agents:
|
|
194
|
+
declare const agents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
195
195
|
name: "agent";
|
|
196
196
|
schema: undefined;
|
|
197
197
|
columns: {
|
|
198
|
-
createdAt:
|
|
198
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
199
199
|
name: "created_at";
|
|
200
200
|
tableName: "agent";
|
|
201
201
|
dataType: "string";
|
|
@@ -212,7 +212,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
212
212
|
identity: undefined;
|
|
213
213
|
generated: undefined;
|
|
214
214
|
}, {}, {}>;
|
|
215
|
-
updatedAt:
|
|
215
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
216
216
|
name: "updated_at";
|
|
217
217
|
tableName: "agent";
|
|
218
218
|
dataType: "string";
|
|
@@ -229,7 +229,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
229
229
|
identity: undefined;
|
|
230
230
|
generated: undefined;
|
|
231
231
|
}, {}, {}>;
|
|
232
|
-
name:
|
|
232
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
233
233
|
name: "name";
|
|
234
234
|
tableName: "agent";
|
|
235
235
|
dataType: "string";
|
|
@@ -248,7 +248,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
248
248
|
}, {}, {
|
|
249
249
|
length: 256;
|
|
250
250
|
}>;
|
|
251
|
-
description:
|
|
251
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
252
252
|
name: "description";
|
|
253
253
|
tableName: "agent";
|
|
254
254
|
dataType: "string";
|
|
@@ -265,7 +265,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
265
265
|
identity: undefined;
|
|
266
266
|
generated: undefined;
|
|
267
267
|
}, {}, {}>;
|
|
268
|
-
defaultSubAgentId:
|
|
268
|
+
defaultSubAgentId: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
284
284
|
}, {}, {
|
|
285
285
|
length: 256;
|
|
286
286
|
}>;
|
|
287
|
-
contextConfigId:
|
|
287
|
+
contextConfigId: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
303
303
|
}, {}, {
|
|
304
304
|
length: 256;
|
|
305
305
|
}>;
|
|
306
|
-
models:
|
|
306
|
+
models: drizzle_orm_pg_core1346.PgColumn<{
|
|
307
307
|
name: "models";
|
|
308
308
|
tableName: "agent";
|
|
309
309
|
dataType: "json";
|
|
@@ -348,7 +348,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
348
348
|
} | undefined;
|
|
349
349
|
};
|
|
350
350
|
}>;
|
|
351
|
-
statusUpdates:
|
|
351
|
+
statusUpdates: drizzle_orm_pg_core1346.PgColumn<{
|
|
352
352
|
name: "status_updates";
|
|
353
353
|
tableName: "agent";
|
|
354
354
|
dataType: "json";
|
|
@@ -395,7 +395,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
395
395
|
}[] | undefined;
|
|
396
396
|
};
|
|
397
397
|
}>;
|
|
398
|
-
prompt:
|
|
398
|
+
prompt: drizzle_orm_pg_core1346.PgColumn<{
|
|
399
399
|
name: "prompt";
|
|
400
400
|
tableName: "agent";
|
|
401
401
|
dataType: "string";
|
|
@@ -412,7 +412,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
412
412
|
identity: undefined;
|
|
413
413
|
generated: undefined;
|
|
414
414
|
}, {}, {}>;
|
|
415
|
-
stopWhen:
|
|
415
|
+
stopWhen: drizzle_orm_pg_core1346.PgColumn<{
|
|
416
416
|
name: "stop_when";
|
|
417
417
|
tableName: "agent";
|
|
418
418
|
dataType: "json";
|
|
@@ -435,7 +435,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
435
435
|
transferCountIs?: number | undefined;
|
|
436
436
|
};
|
|
437
437
|
}>;
|
|
438
|
-
projectId:
|
|
438
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
439
439
|
name: "project_id";
|
|
440
440
|
tableName: "agent";
|
|
441
441
|
dataType: "string";
|
|
@@ -454,7 +454,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
454
454
|
}, {}, {
|
|
455
455
|
length: 256;
|
|
456
456
|
}>;
|
|
457
|
-
tenantId:
|
|
457
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
458
458
|
name: "tenant_id";
|
|
459
459
|
tableName: "agent";
|
|
460
460
|
dataType: "string";
|
|
@@ -473,7 +473,7 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
473
473
|
}, {}, {
|
|
474
474
|
length: 256;
|
|
475
475
|
}>;
|
|
476
|
-
id:
|
|
476
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
477
477
|
name: "id";
|
|
478
478
|
tableName: "agent";
|
|
479
479
|
dataType: "string";
|
|
@@ -495,11 +495,11 @@ declare const agents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
495
495
|
};
|
|
496
496
|
dialect: "pg";
|
|
497
497
|
}>;
|
|
498
|
-
declare const contextConfigs:
|
|
498
|
+
declare const contextConfigs: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
499
499
|
name: "context_configs";
|
|
500
500
|
schema: undefined;
|
|
501
501
|
columns: {
|
|
502
|
-
createdAt:
|
|
502
|
+
createdAt: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
516
516
|
identity: undefined;
|
|
517
517
|
generated: undefined;
|
|
518
518
|
}, {}, {}>;
|
|
519
|
-
updatedAt:
|
|
519
|
+
updatedAt: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
533
533
|
identity: undefined;
|
|
534
534
|
generated: undefined;
|
|
535
535
|
}, {}, {}>;
|
|
536
|
-
headersSchema:
|
|
536
|
+
headersSchema: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
552
552
|
}, {}, {
|
|
553
553
|
$type: unknown;
|
|
554
554
|
}>;
|
|
555
|
-
contextVariables:
|
|
555
|
+
contextVariables: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
571
571
|
}, {}, {
|
|
572
572
|
$type: Record<string, ContextFetchDefinition>;
|
|
573
573
|
}>;
|
|
574
|
-
agentId:
|
|
574
|
+
agentId: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
590
590
|
}, {}, {
|
|
591
591
|
length: 256;
|
|
592
592
|
}>;
|
|
593
|
-
projectId:
|
|
593
|
+
projectId: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
609
609
|
}, {}, {
|
|
610
610
|
length: 256;
|
|
611
611
|
}>;
|
|
612
|
-
tenantId:
|
|
612
|
+
tenantId: drizzle_orm_pg_core1346.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_core1202.PgTableWithColumns<{
|
|
|
628
628
|
}, {}, {
|
|
629
629
|
length: 256;
|
|
630
630
|
}>;
|
|
631
|
-
id:
|
|
631
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
632
632
|
name: "id";
|
|
633
633
|
tableName: "context_configs";
|
|
634
634
|
dataType: "string";
|
|
@@ -650,11 +650,11 @@ declare const contextConfigs: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
650
650
|
};
|
|
651
651
|
dialect: "pg";
|
|
652
652
|
}>;
|
|
653
|
-
declare const subAgents:
|
|
653
|
+
declare const subAgents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
654
654
|
name: "sub_agents";
|
|
655
655
|
schema: undefined;
|
|
656
656
|
columns: {
|
|
657
|
-
createdAt:
|
|
657
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
658
658
|
name: "created_at";
|
|
659
659
|
tableName: "sub_agents";
|
|
660
660
|
dataType: "string";
|
|
@@ -671,7 +671,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
671
671
|
identity: undefined;
|
|
672
672
|
generated: undefined;
|
|
673
673
|
}, {}, {}>;
|
|
674
|
-
updatedAt:
|
|
674
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
675
675
|
name: "updated_at";
|
|
676
676
|
tableName: "sub_agents";
|
|
677
677
|
dataType: "string";
|
|
@@ -688,7 +688,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
688
688
|
identity: undefined;
|
|
689
689
|
generated: undefined;
|
|
690
690
|
}, {}, {}>;
|
|
691
|
-
prompt:
|
|
691
|
+
prompt: drizzle_orm_pg_core1346.PgColumn<{
|
|
692
692
|
name: "prompt";
|
|
693
693
|
tableName: "sub_agents";
|
|
694
694
|
dataType: "string";
|
|
@@ -705,7 +705,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
705
705
|
identity: undefined;
|
|
706
706
|
generated: undefined;
|
|
707
707
|
}, {}, {}>;
|
|
708
|
-
conversationHistoryConfig:
|
|
708
|
+
conversationHistoryConfig: drizzle_orm_pg_core1346.PgColumn<{
|
|
709
709
|
name: "conversation_history_config";
|
|
710
710
|
tableName: "sub_agents";
|
|
711
711
|
dataType: "json";
|
|
@@ -724,7 +724,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
724
724
|
}, {}, {
|
|
725
725
|
$type: ConversationHistoryConfig;
|
|
726
726
|
}>;
|
|
727
|
-
models:
|
|
727
|
+
models: drizzle_orm_pg_core1346.PgColumn<{
|
|
728
728
|
name: "models";
|
|
729
729
|
tableName: "sub_agents";
|
|
730
730
|
dataType: "json";
|
|
@@ -769,7 +769,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
769
769
|
} | undefined;
|
|
770
770
|
};
|
|
771
771
|
}>;
|
|
772
|
-
stopWhen:
|
|
772
|
+
stopWhen: drizzle_orm_pg_core1346.PgColumn<{
|
|
773
773
|
name: "stop_when";
|
|
774
774
|
tableName: "sub_agents";
|
|
775
775
|
dataType: "json";
|
|
@@ -792,7 +792,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
792
792
|
stepCountIs?: number | undefined;
|
|
793
793
|
};
|
|
794
794
|
}>;
|
|
795
|
-
name:
|
|
795
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
796
796
|
name: "name";
|
|
797
797
|
tableName: "sub_agents";
|
|
798
798
|
dataType: "string";
|
|
@@ -811,7 +811,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
811
811
|
}, {}, {
|
|
812
812
|
length: 256;
|
|
813
813
|
}>;
|
|
814
|
-
description:
|
|
814
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
815
815
|
name: "description";
|
|
816
816
|
tableName: "sub_agents";
|
|
817
817
|
dataType: "string";
|
|
@@ -828,7 +828,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
828
828
|
identity: undefined;
|
|
829
829
|
generated: undefined;
|
|
830
830
|
}, {}, {}>;
|
|
831
|
-
agentId:
|
|
831
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
832
832
|
name: "agent_id";
|
|
833
833
|
tableName: "sub_agents";
|
|
834
834
|
dataType: "string";
|
|
@@ -847,7 +847,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
847
847
|
}, {}, {
|
|
848
848
|
length: 256;
|
|
849
849
|
}>;
|
|
850
|
-
projectId:
|
|
850
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
851
851
|
name: "project_id";
|
|
852
852
|
tableName: "sub_agents";
|
|
853
853
|
dataType: "string";
|
|
@@ -866,7 +866,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
866
866
|
}, {}, {
|
|
867
867
|
length: 256;
|
|
868
868
|
}>;
|
|
869
|
-
tenantId:
|
|
869
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
870
870
|
name: "tenant_id";
|
|
871
871
|
tableName: "sub_agents";
|
|
872
872
|
dataType: "string";
|
|
@@ -885,7 +885,7 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
885
885
|
}, {}, {
|
|
886
886
|
length: 256;
|
|
887
887
|
}>;
|
|
888
|
-
id:
|
|
888
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
889
889
|
name: "id";
|
|
890
890
|
tableName: "sub_agents";
|
|
891
891
|
dataType: "string";
|
|
@@ -907,11 +907,11 @@ declare const subAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
907
907
|
};
|
|
908
908
|
dialect: "pg";
|
|
909
909
|
}>;
|
|
910
|
-
declare const subAgentRelations:
|
|
910
|
+
declare const subAgentRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
911
911
|
name: "sub_agent_relations";
|
|
912
912
|
schema: undefined;
|
|
913
913
|
columns: {
|
|
914
|
-
createdAt:
|
|
914
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
915
915
|
name: "created_at";
|
|
916
916
|
tableName: "sub_agent_relations";
|
|
917
917
|
dataType: "string";
|
|
@@ -928,7 +928,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
928
928
|
identity: undefined;
|
|
929
929
|
generated: undefined;
|
|
930
930
|
}, {}, {}>;
|
|
931
|
-
updatedAt:
|
|
931
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
932
932
|
name: "updated_at";
|
|
933
933
|
tableName: "sub_agent_relations";
|
|
934
934
|
dataType: "string";
|
|
@@ -945,7 +945,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
945
945
|
identity: undefined;
|
|
946
946
|
generated: undefined;
|
|
947
947
|
}, {}, {}>;
|
|
948
|
-
sourceSubAgentId:
|
|
948
|
+
sourceSubAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
949
949
|
name: "source_sub_agent_id";
|
|
950
950
|
tableName: "sub_agent_relations";
|
|
951
951
|
dataType: "string";
|
|
@@ -964,7 +964,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
964
964
|
}, {}, {
|
|
965
965
|
length: 256;
|
|
966
966
|
}>;
|
|
967
|
-
targetSubAgentId:
|
|
967
|
+
targetSubAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
968
968
|
name: "target_sub_agent_id";
|
|
969
969
|
tableName: "sub_agent_relations";
|
|
970
970
|
dataType: "string";
|
|
@@ -983,7 +983,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
983
983
|
}, {}, {
|
|
984
984
|
length: 256;
|
|
985
985
|
}>;
|
|
986
|
-
relationType:
|
|
986
|
+
relationType: drizzle_orm_pg_core1346.PgColumn<{
|
|
987
987
|
name: "relation_type";
|
|
988
988
|
tableName: "sub_agent_relations";
|
|
989
989
|
dataType: "string";
|
|
@@ -1002,7 +1002,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1002
1002
|
}, {}, {
|
|
1003
1003
|
length: 256;
|
|
1004
1004
|
}>;
|
|
1005
|
-
agentId:
|
|
1005
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1006
1006
|
name: "agent_id";
|
|
1007
1007
|
tableName: "sub_agent_relations";
|
|
1008
1008
|
dataType: "string";
|
|
@@ -1021,7 +1021,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1021
1021
|
}, {}, {
|
|
1022
1022
|
length: 256;
|
|
1023
1023
|
}>;
|
|
1024
|
-
projectId:
|
|
1024
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1025
1025
|
name: "project_id";
|
|
1026
1026
|
tableName: "sub_agent_relations";
|
|
1027
1027
|
dataType: "string";
|
|
@@ -1040,7 +1040,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1040
1040
|
}, {}, {
|
|
1041
1041
|
length: 256;
|
|
1042
1042
|
}>;
|
|
1043
|
-
tenantId:
|
|
1043
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1044
1044
|
name: "tenant_id";
|
|
1045
1045
|
tableName: "sub_agent_relations";
|
|
1046
1046
|
dataType: "string";
|
|
@@ -1059,7 +1059,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1059
1059
|
}, {}, {
|
|
1060
1060
|
length: 256;
|
|
1061
1061
|
}>;
|
|
1062
|
-
id:
|
|
1062
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1063
1063
|
name: "id";
|
|
1064
1064
|
tableName: "sub_agent_relations";
|
|
1065
1065
|
dataType: "string";
|
|
@@ -1081,11 +1081,11 @@ declare const subAgentRelations: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1081
1081
|
};
|
|
1082
1082
|
dialect: "pg";
|
|
1083
1083
|
}>;
|
|
1084
|
-
declare const externalAgents:
|
|
1084
|
+
declare const externalAgents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1085
1085
|
name: "external_agents";
|
|
1086
1086
|
schema: undefined;
|
|
1087
1087
|
columns: {
|
|
1088
|
-
createdAt:
|
|
1088
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1089
1089
|
name: "created_at";
|
|
1090
1090
|
tableName: "external_agents";
|
|
1091
1091
|
dataType: "string";
|
|
@@ -1102,7 +1102,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1102
1102
|
identity: undefined;
|
|
1103
1103
|
generated: undefined;
|
|
1104
1104
|
}, {}, {}>;
|
|
1105
|
-
updatedAt:
|
|
1105
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1106
1106
|
name: "updated_at";
|
|
1107
1107
|
tableName: "external_agents";
|
|
1108
1108
|
dataType: "string";
|
|
@@ -1119,7 +1119,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1119
1119
|
identity: undefined;
|
|
1120
1120
|
generated: undefined;
|
|
1121
1121
|
}, {}, {}>;
|
|
1122
|
-
baseUrl:
|
|
1122
|
+
baseUrl: drizzle_orm_pg_core1346.PgColumn<{
|
|
1123
1123
|
name: "base_url";
|
|
1124
1124
|
tableName: "external_agents";
|
|
1125
1125
|
dataType: "string";
|
|
@@ -1136,7 +1136,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1136
1136
|
identity: undefined;
|
|
1137
1137
|
generated: undefined;
|
|
1138
1138
|
}, {}, {}>;
|
|
1139
|
-
credentialReferenceId:
|
|
1139
|
+
credentialReferenceId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1140
1140
|
name: "credential_reference_id";
|
|
1141
1141
|
tableName: "external_agents";
|
|
1142
1142
|
dataType: "string";
|
|
@@ -1155,7 +1155,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1155
1155
|
}, {}, {
|
|
1156
1156
|
length: 256;
|
|
1157
1157
|
}>;
|
|
1158
|
-
name:
|
|
1158
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
1159
1159
|
name: "name";
|
|
1160
1160
|
tableName: "external_agents";
|
|
1161
1161
|
dataType: "string";
|
|
@@ -1174,7 +1174,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1174
1174
|
}, {}, {
|
|
1175
1175
|
length: 256;
|
|
1176
1176
|
}>;
|
|
1177
|
-
description:
|
|
1177
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
1178
1178
|
name: "description";
|
|
1179
1179
|
tableName: "external_agents";
|
|
1180
1180
|
dataType: "string";
|
|
@@ -1191,7 +1191,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1191
1191
|
identity: undefined;
|
|
1192
1192
|
generated: undefined;
|
|
1193
1193
|
}, {}, {}>;
|
|
1194
|
-
projectId:
|
|
1194
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1195
1195
|
name: "project_id";
|
|
1196
1196
|
tableName: "external_agents";
|
|
1197
1197
|
dataType: "string";
|
|
@@ -1210,7 +1210,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1210
1210
|
}, {}, {
|
|
1211
1211
|
length: 256;
|
|
1212
1212
|
}>;
|
|
1213
|
-
tenantId:
|
|
1213
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1214
1214
|
name: "tenant_id";
|
|
1215
1215
|
tableName: "external_agents";
|
|
1216
1216
|
dataType: "string";
|
|
@@ -1229,7 +1229,7 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1229
1229
|
}, {}, {
|
|
1230
1230
|
length: 256;
|
|
1231
1231
|
}>;
|
|
1232
|
-
id:
|
|
1232
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1233
1233
|
name: "id";
|
|
1234
1234
|
tableName: "external_agents";
|
|
1235
1235
|
dataType: "string";
|
|
@@ -1251,11 +1251,11 @@ declare const externalAgents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1251
1251
|
};
|
|
1252
1252
|
dialect: "pg";
|
|
1253
1253
|
}>;
|
|
1254
|
-
declare const dataComponents:
|
|
1254
|
+
declare const dataComponents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1255
1255
|
name: "data_components";
|
|
1256
1256
|
schema: undefined;
|
|
1257
1257
|
columns: {
|
|
1258
|
-
createdAt:
|
|
1258
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1259
1259
|
name: "created_at";
|
|
1260
1260
|
tableName: "data_components";
|
|
1261
1261
|
dataType: "string";
|
|
@@ -1272,7 +1272,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1272
1272
|
identity: undefined;
|
|
1273
1273
|
generated: undefined;
|
|
1274
1274
|
}, {}, {}>;
|
|
1275
|
-
updatedAt:
|
|
1275
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1276
1276
|
name: "updated_at";
|
|
1277
1277
|
tableName: "data_components";
|
|
1278
1278
|
dataType: "string";
|
|
@@ -1289,7 +1289,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1289
1289
|
identity: undefined;
|
|
1290
1290
|
generated: undefined;
|
|
1291
1291
|
}, {}, {}>;
|
|
1292
|
-
props:
|
|
1292
|
+
props: drizzle_orm_pg_core1346.PgColumn<{
|
|
1293
1293
|
name: "props";
|
|
1294
1294
|
tableName: "data_components";
|
|
1295
1295
|
dataType: "json";
|
|
@@ -1308,7 +1308,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1308
1308
|
}, {}, {
|
|
1309
1309
|
$type: Record<string, unknown>;
|
|
1310
1310
|
}>;
|
|
1311
|
-
render:
|
|
1311
|
+
render: drizzle_orm_pg_core1346.PgColumn<{
|
|
1312
1312
|
name: "render";
|
|
1313
1313
|
tableName: "data_components";
|
|
1314
1314
|
dataType: "json";
|
|
@@ -1333,7 +1333,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1333
1333
|
mockData: Record<string, unknown>;
|
|
1334
1334
|
};
|
|
1335
1335
|
}>;
|
|
1336
|
-
name:
|
|
1336
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
1337
1337
|
name: "name";
|
|
1338
1338
|
tableName: "data_components";
|
|
1339
1339
|
dataType: "string";
|
|
@@ -1352,7 +1352,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1352
1352
|
}, {}, {
|
|
1353
1353
|
length: 256;
|
|
1354
1354
|
}>;
|
|
1355
|
-
description:
|
|
1355
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
1356
1356
|
name: "description";
|
|
1357
1357
|
tableName: "data_components";
|
|
1358
1358
|
dataType: "string";
|
|
@@ -1369,7 +1369,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1369
1369
|
identity: undefined;
|
|
1370
1370
|
generated: undefined;
|
|
1371
1371
|
}, {}, {}>;
|
|
1372
|
-
projectId:
|
|
1372
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1373
1373
|
name: "project_id";
|
|
1374
1374
|
tableName: "data_components";
|
|
1375
1375
|
dataType: "string";
|
|
@@ -1388,7 +1388,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1388
1388
|
}, {}, {
|
|
1389
1389
|
length: 256;
|
|
1390
1390
|
}>;
|
|
1391
|
-
tenantId:
|
|
1391
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1392
1392
|
name: "tenant_id";
|
|
1393
1393
|
tableName: "data_components";
|
|
1394
1394
|
dataType: "string";
|
|
@@ -1407,7 +1407,7 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1407
1407
|
}, {}, {
|
|
1408
1408
|
length: 256;
|
|
1409
1409
|
}>;
|
|
1410
|
-
id:
|
|
1410
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1411
1411
|
name: "id";
|
|
1412
1412
|
tableName: "data_components";
|
|
1413
1413
|
dataType: "string";
|
|
@@ -1429,11 +1429,11 @@ declare const dataComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1429
1429
|
};
|
|
1430
1430
|
dialect: "pg";
|
|
1431
1431
|
}>;
|
|
1432
|
-
declare const subAgentDataComponents:
|
|
1432
|
+
declare const subAgentDataComponents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1433
1433
|
name: "sub_agent_data_components";
|
|
1434
1434
|
schema: undefined;
|
|
1435
1435
|
columns: {
|
|
1436
|
-
dataComponentId:
|
|
1436
|
+
dataComponentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1437
1437
|
name: "data_component_id";
|
|
1438
1438
|
tableName: "sub_agent_data_components";
|
|
1439
1439
|
dataType: "string";
|
|
@@ -1452,7 +1452,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1452
1452
|
}, {}, {
|
|
1453
1453
|
length: 256;
|
|
1454
1454
|
}>;
|
|
1455
|
-
createdAt:
|
|
1455
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1456
1456
|
name: "created_at";
|
|
1457
1457
|
tableName: "sub_agent_data_components";
|
|
1458
1458
|
dataType: "string";
|
|
@@ -1469,7 +1469,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1469
1469
|
identity: undefined;
|
|
1470
1470
|
generated: undefined;
|
|
1471
1471
|
}, {}, {}>;
|
|
1472
|
-
subAgentId:
|
|
1472
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1473
1473
|
name: "sub_agent_id";
|
|
1474
1474
|
tableName: "sub_agent_data_components";
|
|
1475
1475
|
dataType: "string";
|
|
@@ -1488,7 +1488,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1488
1488
|
}, {}, {
|
|
1489
1489
|
length: 256;
|
|
1490
1490
|
}>;
|
|
1491
|
-
agentId:
|
|
1491
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1492
1492
|
name: "agent_id";
|
|
1493
1493
|
tableName: "sub_agent_data_components";
|
|
1494
1494
|
dataType: "string";
|
|
@@ -1507,7 +1507,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1507
1507
|
}, {}, {
|
|
1508
1508
|
length: 256;
|
|
1509
1509
|
}>;
|
|
1510
|
-
projectId:
|
|
1510
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1511
1511
|
name: "project_id";
|
|
1512
1512
|
tableName: "sub_agent_data_components";
|
|
1513
1513
|
dataType: "string";
|
|
@@ -1526,7 +1526,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1526
1526
|
}, {}, {
|
|
1527
1527
|
length: 256;
|
|
1528
1528
|
}>;
|
|
1529
|
-
tenantId:
|
|
1529
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1530
1530
|
name: "tenant_id";
|
|
1531
1531
|
tableName: "sub_agent_data_components";
|
|
1532
1532
|
dataType: "string";
|
|
@@ -1545,7 +1545,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1545
1545
|
}, {}, {
|
|
1546
1546
|
length: 256;
|
|
1547
1547
|
}>;
|
|
1548
|
-
id:
|
|
1548
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1549
1549
|
name: "id";
|
|
1550
1550
|
tableName: "sub_agent_data_components";
|
|
1551
1551
|
dataType: "string";
|
|
@@ -1567,11 +1567,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1202.PgTableWithColumns
|
|
|
1567
1567
|
};
|
|
1568
1568
|
dialect: "pg";
|
|
1569
1569
|
}>;
|
|
1570
|
-
declare const artifactComponents:
|
|
1570
|
+
declare const artifactComponents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1571
1571
|
name: "artifact_components";
|
|
1572
1572
|
schema: undefined;
|
|
1573
1573
|
columns: {
|
|
1574
|
-
createdAt:
|
|
1574
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1575
1575
|
name: "created_at";
|
|
1576
1576
|
tableName: "artifact_components";
|
|
1577
1577
|
dataType: "string";
|
|
@@ -1588,7 +1588,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1588
1588
|
identity: undefined;
|
|
1589
1589
|
generated: undefined;
|
|
1590
1590
|
}, {}, {}>;
|
|
1591
|
-
updatedAt:
|
|
1591
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1592
1592
|
name: "updated_at";
|
|
1593
1593
|
tableName: "artifact_components";
|
|
1594
1594
|
dataType: "string";
|
|
@@ -1605,7 +1605,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1605
1605
|
identity: undefined;
|
|
1606
1606
|
generated: undefined;
|
|
1607
1607
|
}, {}, {}>;
|
|
1608
|
-
props:
|
|
1608
|
+
props: drizzle_orm_pg_core1346.PgColumn<{
|
|
1609
1609
|
name: "props";
|
|
1610
1610
|
tableName: "artifact_components";
|
|
1611
1611
|
dataType: "json";
|
|
@@ -1624,7 +1624,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1624
1624
|
}, {}, {
|
|
1625
1625
|
$type: Record<string, unknown>;
|
|
1626
1626
|
}>;
|
|
1627
|
-
render:
|
|
1627
|
+
render: drizzle_orm_pg_core1346.PgColumn<{
|
|
1628
1628
|
name: "render";
|
|
1629
1629
|
tableName: "artifact_components";
|
|
1630
1630
|
dataType: "json";
|
|
@@ -1649,7 +1649,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1649
1649
|
mockData: Record<string, unknown>;
|
|
1650
1650
|
};
|
|
1651
1651
|
}>;
|
|
1652
|
-
name:
|
|
1652
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
1653
1653
|
name: "name";
|
|
1654
1654
|
tableName: "artifact_components";
|
|
1655
1655
|
dataType: "string";
|
|
@@ -1668,7 +1668,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1668
1668
|
}, {}, {
|
|
1669
1669
|
length: 256;
|
|
1670
1670
|
}>;
|
|
1671
|
-
description:
|
|
1671
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
1672
1672
|
name: "description";
|
|
1673
1673
|
tableName: "artifact_components";
|
|
1674
1674
|
dataType: "string";
|
|
@@ -1685,7 +1685,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1685
1685
|
identity: undefined;
|
|
1686
1686
|
generated: undefined;
|
|
1687
1687
|
}, {}, {}>;
|
|
1688
|
-
projectId:
|
|
1688
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1689
1689
|
name: "project_id";
|
|
1690
1690
|
tableName: "artifact_components";
|
|
1691
1691
|
dataType: "string";
|
|
@@ -1704,7 +1704,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1704
1704
|
}, {}, {
|
|
1705
1705
|
length: 256;
|
|
1706
1706
|
}>;
|
|
1707
|
-
tenantId:
|
|
1707
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1708
1708
|
name: "tenant_id";
|
|
1709
1709
|
tableName: "artifact_components";
|
|
1710
1710
|
dataType: "string";
|
|
@@ -1723,7 +1723,7 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1723
1723
|
}, {}, {
|
|
1724
1724
|
length: 256;
|
|
1725
1725
|
}>;
|
|
1726
|
-
id:
|
|
1726
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1727
1727
|
name: "id";
|
|
1728
1728
|
tableName: "artifact_components";
|
|
1729
1729
|
dataType: "string";
|
|
@@ -1745,11 +1745,11 @@ declare const artifactComponents: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1745
1745
|
};
|
|
1746
1746
|
dialect: "pg";
|
|
1747
1747
|
}>;
|
|
1748
|
-
declare const subAgentArtifactComponents:
|
|
1748
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1749
1749
|
name: "sub_agent_artifact_components";
|
|
1750
1750
|
schema: undefined;
|
|
1751
1751
|
columns: {
|
|
1752
|
-
artifactComponentId:
|
|
1752
|
+
artifactComponentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1753
1753
|
name: "artifact_component_id";
|
|
1754
1754
|
tableName: "sub_agent_artifact_components";
|
|
1755
1755
|
dataType: "string";
|
|
@@ -1768,7 +1768,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1768
1768
|
}, {}, {
|
|
1769
1769
|
length: 256;
|
|
1770
1770
|
}>;
|
|
1771
|
-
createdAt:
|
|
1771
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1772
1772
|
name: "created_at";
|
|
1773
1773
|
tableName: "sub_agent_artifact_components";
|
|
1774
1774
|
dataType: "string";
|
|
@@ -1785,7 +1785,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1785
1785
|
identity: undefined;
|
|
1786
1786
|
generated: undefined;
|
|
1787
1787
|
}, {}, {}>;
|
|
1788
|
-
subAgentId:
|
|
1788
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1789
1789
|
name: "sub_agent_id";
|
|
1790
1790
|
tableName: "sub_agent_artifact_components";
|
|
1791
1791
|
dataType: "string";
|
|
@@ -1804,7 +1804,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1804
1804
|
}, {}, {
|
|
1805
1805
|
length: 256;
|
|
1806
1806
|
}>;
|
|
1807
|
-
agentId:
|
|
1807
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1808
1808
|
name: "agent_id";
|
|
1809
1809
|
tableName: "sub_agent_artifact_components";
|
|
1810
1810
|
dataType: "string";
|
|
@@ -1823,7 +1823,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1823
1823
|
}, {}, {
|
|
1824
1824
|
length: 256;
|
|
1825
1825
|
}>;
|
|
1826
|
-
projectId:
|
|
1826
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1827
1827
|
name: "project_id";
|
|
1828
1828
|
tableName: "sub_agent_artifact_components";
|
|
1829
1829
|
dataType: "string";
|
|
@@ -1842,7 +1842,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1842
1842
|
}, {}, {
|
|
1843
1843
|
length: 256;
|
|
1844
1844
|
}>;
|
|
1845
|
-
tenantId:
|
|
1845
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1846
1846
|
name: "tenant_id";
|
|
1847
1847
|
tableName: "sub_agent_artifact_components";
|
|
1848
1848
|
dataType: "string";
|
|
@@ -1861,7 +1861,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1861
1861
|
}, {}, {
|
|
1862
1862
|
length: 256;
|
|
1863
1863
|
}>;
|
|
1864
|
-
id:
|
|
1864
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
1865
1865
|
name: "id";
|
|
1866
1866
|
tableName: "sub_agent_artifact_components";
|
|
1867
1867
|
dataType: "string";
|
|
@@ -1883,11 +1883,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
1883
1883
|
};
|
|
1884
1884
|
dialect: "pg";
|
|
1885
1885
|
}>;
|
|
1886
|
-
declare const tools:
|
|
1886
|
+
declare const tools: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
1887
1887
|
name: "tools";
|
|
1888
1888
|
schema: undefined;
|
|
1889
1889
|
columns: {
|
|
1890
|
-
createdAt:
|
|
1890
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1891
1891
|
name: "created_at";
|
|
1892
1892
|
tableName: "tools";
|
|
1893
1893
|
dataType: "string";
|
|
@@ -1904,7 +1904,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1904
1904
|
identity: undefined;
|
|
1905
1905
|
generated: undefined;
|
|
1906
1906
|
}, {}, {}>;
|
|
1907
|
-
updatedAt:
|
|
1907
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
1908
1908
|
name: "updated_at";
|
|
1909
1909
|
tableName: "tools";
|
|
1910
1910
|
dataType: "string";
|
|
@@ -1921,7 +1921,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1921
1921
|
identity: undefined;
|
|
1922
1922
|
generated: undefined;
|
|
1923
1923
|
}, {}, {}>;
|
|
1924
|
-
name:
|
|
1924
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
1925
1925
|
name: "name";
|
|
1926
1926
|
tableName: "tools";
|
|
1927
1927
|
dataType: "string";
|
|
@@ -1940,7 +1940,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1940
1940
|
}, {}, {
|
|
1941
1941
|
length: 256;
|
|
1942
1942
|
}>;
|
|
1943
|
-
description:
|
|
1943
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
1944
1944
|
name: "description";
|
|
1945
1945
|
tableName: "tools";
|
|
1946
1946
|
dataType: "string";
|
|
@@ -1957,7 +1957,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1957
1957
|
identity: undefined;
|
|
1958
1958
|
generated: undefined;
|
|
1959
1959
|
}, {}, {}>;
|
|
1960
|
-
config:
|
|
1960
|
+
config: drizzle_orm_pg_core1346.PgColumn<{
|
|
1961
1961
|
name: "config";
|
|
1962
1962
|
tableName: "tools";
|
|
1963
1963
|
dataType: "json";
|
|
@@ -1982,7 +1982,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
1982
1982
|
mcp: ToolMcpConfig;
|
|
1983
1983
|
};
|
|
1984
1984
|
}>;
|
|
1985
|
-
credentialReferenceId:
|
|
1985
|
+
credentialReferenceId: drizzle_orm_pg_core1346.PgColumn<{
|
|
1986
1986
|
name: "credential_reference_id";
|
|
1987
1987
|
tableName: "tools";
|
|
1988
1988
|
dataType: "string";
|
|
@@ -2001,7 +2001,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2001
2001
|
}, {}, {
|
|
2002
2002
|
length: 256;
|
|
2003
2003
|
}>;
|
|
2004
|
-
credentialScope:
|
|
2004
|
+
credentialScope: drizzle_orm_pg_core1346.PgColumn<{
|
|
2005
2005
|
name: "credential_scope";
|
|
2006
2006
|
tableName: "tools";
|
|
2007
2007
|
dataType: "string";
|
|
@@ -2020,7 +2020,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2020
2020
|
}, {}, {
|
|
2021
2021
|
length: 50;
|
|
2022
2022
|
}>;
|
|
2023
|
-
headers:
|
|
2023
|
+
headers: drizzle_orm_pg_core1346.PgColumn<{
|
|
2024
2024
|
name: "headers";
|
|
2025
2025
|
tableName: "tools";
|
|
2026
2026
|
dataType: "json";
|
|
@@ -2039,7 +2039,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2039
2039
|
}, {}, {
|
|
2040
2040
|
$type: Record<string, string>;
|
|
2041
2041
|
}>;
|
|
2042
|
-
imageUrl:
|
|
2042
|
+
imageUrl: drizzle_orm_pg_core1346.PgColumn<{
|
|
2043
2043
|
name: "image_url";
|
|
2044
2044
|
tableName: "tools";
|
|
2045
2045
|
dataType: "string";
|
|
@@ -2056,7 +2056,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2056
2056
|
identity: undefined;
|
|
2057
2057
|
generated: undefined;
|
|
2058
2058
|
}, {}, {}>;
|
|
2059
|
-
capabilities:
|
|
2059
|
+
capabilities: drizzle_orm_pg_core1346.PgColumn<{
|
|
2060
2060
|
name: "capabilities";
|
|
2061
2061
|
tableName: "tools";
|
|
2062
2062
|
dataType: "json";
|
|
@@ -2075,7 +2075,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2075
2075
|
}, {}, {
|
|
2076
2076
|
$type: ToolServerCapabilities;
|
|
2077
2077
|
}>;
|
|
2078
|
-
lastError:
|
|
2078
|
+
lastError: drizzle_orm_pg_core1346.PgColumn<{
|
|
2079
2079
|
name: "last_error";
|
|
2080
2080
|
tableName: "tools";
|
|
2081
2081
|
dataType: "string";
|
|
@@ -2092,7 +2092,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2092
2092
|
identity: undefined;
|
|
2093
2093
|
generated: undefined;
|
|
2094
2094
|
}, {}, {}>;
|
|
2095
|
-
projectId:
|
|
2095
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2096
2096
|
name: "project_id";
|
|
2097
2097
|
tableName: "tools";
|
|
2098
2098
|
dataType: "string";
|
|
@@ -2111,7 +2111,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2111
2111
|
}, {}, {
|
|
2112
2112
|
length: 256;
|
|
2113
2113
|
}>;
|
|
2114
|
-
tenantId:
|
|
2114
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2115
2115
|
name: "tenant_id";
|
|
2116
2116
|
tableName: "tools";
|
|
2117
2117
|
dataType: "string";
|
|
@@ -2130,7 +2130,7 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2130
2130
|
}, {}, {
|
|
2131
2131
|
length: 256;
|
|
2132
2132
|
}>;
|
|
2133
|
-
id:
|
|
2133
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
2134
2134
|
name: "id";
|
|
2135
2135
|
tableName: "tools";
|
|
2136
2136
|
dataType: "string";
|
|
@@ -2152,11 +2152,11 @@ declare const tools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2152
2152
|
};
|
|
2153
2153
|
dialect: "pg";
|
|
2154
2154
|
}>;
|
|
2155
|
-
declare const functionTools:
|
|
2155
|
+
declare const functionTools: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
2156
2156
|
name: "function_tools";
|
|
2157
2157
|
schema: undefined;
|
|
2158
2158
|
columns: {
|
|
2159
|
-
createdAt:
|
|
2159
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2160
2160
|
name: "created_at";
|
|
2161
2161
|
tableName: "function_tools";
|
|
2162
2162
|
dataType: "string";
|
|
@@ -2173,7 +2173,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2173
2173
|
identity: undefined;
|
|
2174
2174
|
generated: undefined;
|
|
2175
2175
|
}, {}, {}>;
|
|
2176
|
-
updatedAt:
|
|
2176
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2177
2177
|
name: "updated_at";
|
|
2178
2178
|
tableName: "function_tools";
|
|
2179
2179
|
dataType: "string";
|
|
@@ -2190,7 +2190,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2190
2190
|
identity: undefined;
|
|
2191
2191
|
generated: undefined;
|
|
2192
2192
|
}, {}, {}>;
|
|
2193
|
-
name:
|
|
2193
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
2194
2194
|
name: "name";
|
|
2195
2195
|
tableName: "function_tools";
|
|
2196
2196
|
dataType: "string";
|
|
@@ -2209,7 +2209,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2209
2209
|
}, {}, {
|
|
2210
2210
|
length: 256;
|
|
2211
2211
|
}>;
|
|
2212
|
-
description:
|
|
2212
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
2213
2213
|
name: "description";
|
|
2214
2214
|
tableName: "function_tools";
|
|
2215
2215
|
dataType: "string";
|
|
@@ -2226,7 +2226,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2226
2226
|
identity: undefined;
|
|
2227
2227
|
generated: undefined;
|
|
2228
2228
|
}, {}, {}>;
|
|
2229
|
-
functionId:
|
|
2229
|
+
functionId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2230
2230
|
name: "function_id";
|
|
2231
2231
|
tableName: "function_tools";
|
|
2232
2232
|
dataType: "string";
|
|
@@ -2245,7 +2245,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2245
2245
|
}, {}, {
|
|
2246
2246
|
length: 256;
|
|
2247
2247
|
}>;
|
|
2248
|
-
agentId:
|
|
2248
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2249
2249
|
name: "agent_id";
|
|
2250
2250
|
tableName: "function_tools";
|
|
2251
2251
|
dataType: "string";
|
|
@@ -2264,7 +2264,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2264
2264
|
}, {}, {
|
|
2265
2265
|
length: 256;
|
|
2266
2266
|
}>;
|
|
2267
|
-
projectId:
|
|
2267
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2268
2268
|
name: "project_id";
|
|
2269
2269
|
tableName: "function_tools";
|
|
2270
2270
|
dataType: "string";
|
|
@@ -2283,7 +2283,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2283
2283
|
}, {}, {
|
|
2284
2284
|
length: 256;
|
|
2285
2285
|
}>;
|
|
2286
|
-
tenantId:
|
|
2286
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2287
2287
|
name: "tenant_id";
|
|
2288
2288
|
tableName: "function_tools";
|
|
2289
2289
|
dataType: "string";
|
|
@@ -2302,7 +2302,7 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2302
2302
|
}, {}, {
|
|
2303
2303
|
length: 256;
|
|
2304
2304
|
}>;
|
|
2305
|
-
id:
|
|
2305
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
2306
2306
|
name: "id";
|
|
2307
2307
|
tableName: "function_tools";
|
|
2308
2308
|
dataType: "string";
|
|
@@ -2324,11 +2324,11 @@ declare const functionTools: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2324
2324
|
};
|
|
2325
2325
|
dialect: "pg";
|
|
2326
2326
|
}>;
|
|
2327
|
-
declare const functions:
|
|
2327
|
+
declare const functions: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
2328
2328
|
name: "functions";
|
|
2329
2329
|
schema: undefined;
|
|
2330
2330
|
columns: {
|
|
2331
|
-
createdAt:
|
|
2331
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2332
2332
|
name: "created_at";
|
|
2333
2333
|
tableName: "functions";
|
|
2334
2334
|
dataType: "string";
|
|
@@ -2345,7 +2345,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2345
2345
|
identity: undefined;
|
|
2346
2346
|
generated: undefined;
|
|
2347
2347
|
}, {}, {}>;
|
|
2348
|
-
updatedAt:
|
|
2348
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2349
2349
|
name: "updated_at";
|
|
2350
2350
|
tableName: "functions";
|
|
2351
2351
|
dataType: "string";
|
|
@@ -2362,7 +2362,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2362
2362
|
identity: undefined;
|
|
2363
2363
|
generated: undefined;
|
|
2364
2364
|
}, {}, {}>;
|
|
2365
|
-
inputSchema:
|
|
2365
|
+
inputSchema: drizzle_orm_pg_core1346.PgColumn<{
|
|
2366
2366
|
name: "input_schema";
|
|
2367
2367
|
tableName: "functions";
|
|
2368
2368
|
dataType: "json";
|
|
@@ -2381,7 +2381,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2381
2381
|
}, {}, {
|
|
2382
2382
|
$type: Record<string, unknown>;
|
|
2383
2383
|
}>;
|
|
2384
|
-
executeCode:
|
|
2384
|
+
executeCode: drizzle_orm_pg_core1346.PgColumn<{
|
|
2385
2385
|
name: "execute_code";
|
|
2386
2386
|
tableName: "functions";
|
|
2387
2387
|
dataType: "string";
|
|
@@ -2398,7 +2398,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2398
2398
|
identity: undefined;
|
|
2399
2399
|
generated: undefined;
|
|
2400
2400
|
}, {}, {}>;
|
|
2401
|
-
dependencies:
|
|
2401
|
+
dependencies: drizzle_orm_pg_core1346.PgColumn<{
|
|
2402
2402
|
name: "dependencies";
|
|
2403
2403
|
tableName: "functions";
|
|
2404
2404
|
dataType: "json";
|
|
@@ -2417,7 +2417,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2417
2417
|
}, {}, {
|
|
2418
2418
|
$type: Record<string, string>;
|
|
2419
2419
|
}>;
|
|
2420
|
-
projectId:
|
|
2420
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2421
2421
|
name: "project_id";
|
|
2422
2422
|
tableName: "functions";
|
|
2423
2423
|
dataType: "string";
|
|
@@ -2436,7 +2436,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2436
2436
|
}, {}, {
|
|
2437
2437
|
length: 256;
|
|
2438
2438
|
}>;
|
|
2439
|
-
tenantId:
|
|
2439
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2440
2440
|
name: "tenant_id";
|
|
2441
2441
|
tableName: "functions";
|
|
2442
2442
|
dataType: "string";
|
|
@@ -2455,7 +2455,7 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2455
2455
|
}, {}, {
|
|
2456
2456
|
length: 256;
|
|
2457
2457
|
}>;
|
|
2458
|
-
id:
|
|
2458
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
2459
2459
|
name: "id";
|
|
2460
2460
|
tableName: "functions";
|
|
2461
2461
|
dataType: "string";
|
|
@@ -2477,11 +2477,11 @@ declare const functions: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
2477
2477
|
};
|
|
2478
2478
|
dialect: "pg";
|
|
2479
2479
|
}>;
|
|
2480
|
-
declare const subAgentToolRelations:
|
|
2480
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
2481
2481
|
name: "sub_agent_tool_relations";
|
|
2482
2482
|
schema: undefined;
|
|
2483
2483
|
columns: {
|
|
2484
|
-
createdAt:
|
|
2484
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2485
2485
|
name: "created_at";
|
|
2486
2486
|
tableName: "sub_agent_tool_relations";
|
|
2487
2487
|
dataType: "string";
|
|
@@ -2498,7 +2498,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2498
2498
|
identity: undefined;
|
|
2499
2499
|
generated: undefined;
|
|
2500
2500
|
}, {}, {}>;
|
|
2501
|
-
updatedAt:
|
|
2501
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2502
2502
|
name: "updated_at";
|
|
2503
2503
|
tableName: "sub_agent_tool_relations";
|
|
2504
2504
|
dataType: "string";
|
|
@@ -2515,7 +2515,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2515
2515
|
identity: undefined;
|
|
2516
2516
|
generated: undefined;
|
|
2517
2517
|
}, {}, {}>;
|
|
2518
|
-
toolId:
|
|
2518
|
+
toolId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2519
2519
|
name: "tool_id";
|
|
2520
2520
|
tableName: "sub_agent_tool_relations";
|
|
2521
2521
|
dataType: "string";
|
|
@@ -2534,7 +2534,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2534
2534
|
}, {}, {
|
|
2535
2535
|
length: 256;
|
|
2536
2536
|
}>;
|
|
2537
|
-
selectedTools:
|
|
2537
|
+
selectedTools: drizzle_orm_pg_core1346.PgColumn<{
|
|
2538
2538
|
name: "selected_tools";
|
|
2539
2539
|
tableName: "sub_agent_tool_relations";
|
|
2540
2540
|
dataType: "json";
|
|
@@ -2553,7 +2553,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2553
2553
|
}, {}, {
|
|
2554
2554
|
$type: string[] | null;
|
|
2555
2555
|
}>;
|
|
2556
|
-
headers:
|
|
2556
|
+
headers: drizzle_orm_pg_core1346.PgColumn<{
|
|
2557
2557
|
name: "headers";
|
|
2558
2558
|
tableName: "sub_agent_tool_relations";
|
|
2559
2559
|
dataType: "json";
|
|
@@ -2572,7 +2572,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2572
2572
|
}, {}, {
|
|
2573
2573
|
$type: Record<string, string> | null;
|
|
2574
2574
|
}>;
|
|
2575
|
-
toolPolicies:
|
|
2575
|
+
toolPolicies: drizzle_orm_pg_core1346.PgColumn<{
|
|
2576
2576
|
name: "tool_policies";
|
|
2577
2577
|
tableName: "sub_agent_tool_relations";
|
|
2578
2578
|
dataType: "json";
|
|
@@ -2595,7 +2595,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2595
2595
|
needsApproval?: boolean;
|
|
2596
2596
|
}> | null;
|
|
2597
2597
|
}>;
|
|
2598
|
-
subAgentId:
|
|
2598
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2599
2599
|
name: "sub_agent_id";
|
|
2600
2600
|
tableName: "sub_agent_tool_relations";
|
|
2601
2601
|
dataType: "string";
|
|
@@ -2614,7 +2614,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2614
2614
|
}, {}, {
|
|
2615
2615
|
length: 256;
|
|
2616
2616
|
}>;
|
|
2617
|
-
agentId:
|
|
2617
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2618
2618
|
name: "agent_id";
|
|
2619
2619
|
tableName: "sub_agent_tool_relations";
|
|
2620
2620
|
dataType: "string";
|
|
@@ -2633,7 +2633,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2633
2633
|
}, {}, {
|
|
2634
2634
|
length: 256;
|
|
2635
2635
|
}>;
|
|
2636
|
-
projectId:
|
|
2636
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2637
2637
|
name: "project_id";
|
|
2638
2638
|
tableName: "sub_agent_tool_relations";
|
|
2639
2639
|
dataType: "string";
|
|
@@ -2652,7 +2652,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2652
2652
|
}, {}, {
|
|
2653
2653
|
length: 256;
|
|
2654
2654
|
}>;
|
|
2655
|
-
tenantId:
|
|
2655
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2656
2656
|
name: "tenant_id";
|
|
2657
2657
|
tableName: "sub_agent_tool_relations";
|
|
2658
2658
|
dataType: "string";
|
|
@@ -2671,7 +2671,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2671
2671
|
}, {}, {
|
|
2672
2672
|
length: 256;
|
|
2673
2673
|
}>;
|
|
2674
|
-
id:
|
|
2674
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
2675
2675
|
name: "id";
|
|
2676
2676
|
tableName: "sub_agent_tool_relations";
|
|
2677
2677
|
dataType: "string";
|
|
@@ -2693,11 +2693,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
2693
2693
|
};
|
|
2694
2694
|
dialect: "pg";
|
|
2695
2695
|
}>;
|
|
2696
|
-
declare const subAgentExternalAgentRelations:
|
|
2696
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
2697
2697
|
name: "sub_agent_external_agent_relations";
|
|
2698
2698
|
schema: undefined;
|
|
2699
2699
|
columns: {
|
|
2700
|
-
createdAt:
|
|
2700
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2701
2701
|
name: "created_at";
|
|
2702
2702
|
tableName: "sub_agent_external_agent_relations";
|
|
2703
2703
|
dataType: "string";
|
|
@@ -2714,7 +2714,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2714
2714
|
identity: undefined;
|
|
2715
2715
|
generated: undefined;
|
|
2716
2716
|
}, {}, {}>;
|
|
2717
|
-
updatedAt:
|
|
2717
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2718
2718
|
name: "updated_at";
|
|
2719
2719
|
tableName: "sub_agent_external_agent_relations";
|
|
2720
2720
|
dataType: "string";
|
|
@@ -2731,7 +2731,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2731
2731
|
identity: undefined;
|
|
2732
2732
|
generated: undefined;
|
|
2733
2733
|
}, {}, {}>;
|
|
2734
|
-
externalAgentId:
|
|
2734
|
+
externalAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2735
2735
|
name: "external_agent_id";
|
|
2736
2736
|
tableName: "sub_agent_external_agent_relations";
|
|
2737
2737
|
dataType: "string";
|
|
@@ -2750,7 +2750,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2750
2750
|
}, {}, {
|
|
2751
2751
|
length: 256;
|
|
2752
2752
|
}>;
|
|
2753
|
-
headers:
|
|
2753
|
+
headers: drizzle_orm_pg_core1346.PgColumn<{
|
|
2754
2754
|
name: "headers";
|
|
2755
2755
|
tableName: "sub_agent_external_agent_relations";
|
|
2756
2756
|
dataType: "json";
|
|
@@ -2769,7 +2769,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2769
2769
|
}, {}, {
|
|
2770
2770
|
$type: Record<string, string> | null;
|
|
2771
2771
|
}>;
|
|
2772
|
-
subAgentId:
|
|
2772
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2773
2773
|
name: "sub_agent_id";
|
|
2774
2774
|
tableName: "sub_agent_external_agent_relations";
|
|
2775
2775
|
dataType: "string";
|
|
@@ -2788,7 +2788,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2788
2788
|
}, {}, {
|
|
2789
2789
|
length: 256;
|
|
2790
2790
|
}>;
|
|
2791
|
-
agentId:
|
|
2791
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2792
2792
|
name: "agent_id";
|
|
2793
2793
|
tableName: "sub_agent_external_agent_relations";
|
|
2794
2794
|
dataType: "string";
|
|
@@ -2807,7 +2807,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2807
2807
|
}, {}, {
|
|
2808
2808
|
length: 256;
|
|
2809
2809
|
}>;
|
|
2810
|
-
projectId:
|
|
2810
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2811
2811
|
name: "project_id";
|
|
2812
2812
|
tableName: "sub_agent_external_agent_relations";
|
|
2813
2813
|
dataType: "string";
|
|
@@ -2826,7 +2826,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2826
2826
|
}, {}, {
|
|
2827
2827
|
length: 256;
|
|
2828
2828
|
}>;
|
|
2829
|
-
tenantId:
|
|
2829
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2830
2830
|
name: "tenant_id";
|
|
2831
2831
|
tableName: "sub_agent_external_agent_relations";
|
|
2832
2832
|
dataType: "string";
|
|
@@ -2845,7 +2845,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2845
2845
|
}, {}, {
|
|
2846
2846
|
length: 256;
|
|
2847
2847
|
}>;
|
|
2848
|
-
id:
|
|
2848
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
2849
2849
|
name: "id";
|
|
2850
2850
|
tableName: "sub_agent_external_agent_relations";
|
|
2851
2851
|
dataType: "string";
|
|
@@ -2867,11 +2867,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
2867
2867
|
};
|
|
2868
2868
|
dialect: "pg";
|
|
2869
2869
|
}>;
|
|
2870
|
-
declare const subAgentTeamAgentRelations:
|
|
2870
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
2871
2871
|
name: "sub_agent_team_agent_relations";
|
|
2872
2872
|
schema: undefined;
|
|
2873
2873
|
columns: {
|
|
2874
|
-
createdAt:
|
|
2874
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2875
2875
|
name: "created_at";
|
|
2876
2876
|
tableName: "sub_agent_team_agent_relations";
|
|
2877
2877
|
dataType: "string";
|
|
@@ -2888,7 +2888,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2888
2888
|
identity: undefined;
|
|
2889
2889
|
generated: undefined;
|
|
2890
2890
|
}, {}, {}>;
|
|
2891
|
-
updatedAt:
|
|
2891
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
2892
2892
|
name: "updated_at";
|
|
2893
2893
|
tableName: "sub_agent_team_agent_relations";
|
|
2894
2894
|
dataType: "string";
|
|
@@ -2905,7 +2905,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2905
2905
|
identity: undefined;
|
|
2906
2906
|
generated: undefined;
|
|
2907
2907
|
}, {}, {}>;
|
|
2908
|
-
targetAgentId:
|
|
2908
|
+
targetAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2909
2909
|
name: "target_agent_id";
|
|
2910
2910
|
tableName: "sub_agent_team_agent_relations";
|
|
2911
2911
|
dataType: "string";
|
|
@@ -2924,7 +2924,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2924
2924
|
}, {}, {
|
|
2925
2925
|
length: 256;
|
|
2926
2926
|
}>;
|
|
2927
|
-
headers:
|
|
2927
|
+
headers: drizzle_orm_pg_core1346.PgColumn<{
|
|
2928
2928
|
name: "headers";
|
|
2929
2929
|
tableName: "sub_agent_team_agent_relations";
|
|
2930
2930
|
dataType: "json";
|
|
@@ -2943,7 +2943,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2943
2943
|
}, {}, {
|
|
2944
2944
|
$type: Record<string, string> | null;
|
|
2945
2945
|
}>;
|
|
2946
|
-
subAgentId:
|
|
2946
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2947
2947
|
name: "sub_agent_id";
|
|
2948
2948
|
tableName: "sub_agent_team_agent_relations";
|
|
2949
2949
|
dataType: "string";
|
|
@@ -2962,7 +2962,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2962
2962
|
}, {}, {
|
|
2963
2963
|
length: 256;
|
|
2964
2964
|
}>;
|
|
2965
|
-
agentId:
|
|
2965
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2966
2966
|
name: "agent_id";
|
|
2967
2967
|
tableName: "sub_agent_team_agent_relations";
|
|
2968
2968
|
dataType: "string";
|
|
@@ -2981,7 +2981,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
2981
2981
|
}, {}, {
|
|
2982
2982
|
length: 256;
|
|
2983
2983
|
}>;
|
|
2984
|
-
projectId:
|
|
2984
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
2985
2985
|
name: "project_id";
|
|
2986
2986
|
tableName: "sub_agent_team_agent_relations";
|
|
2987
2987
|
dataType: "string";
|
|
@@ -3000,7 +3000,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
3000
3000
|
}, {}, {
|
|
3001
3001
|
length: 256;
|
|
3002
3002
|
}>;
|
|
3003
|
-
tenantId:
|
|
3003
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3004
3004
|
name: "tenant_id";
|
|
3005
3005
|
tableName: "sub_agent_team_agent_relations";
|
|
3006
3006
|
dataType: "string";
|
|
@@ -3019,7 +3019,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
3019
3019
|
}, {}, {
|
|
3020
3020
|
length: 256;
|
|
3021
3021
|
}>;
|
|
3022
|
-
id:
|
|
3022
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3023
3023
|
name: "id";
|
|
3024
3024
|
tableName: "sub_agent_team_agent_relations";
|
|
3025
3025
|
dataType: "string";
|
|
@@ -3041,11 +3041,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1202.PgTableWithCol
|
|
|
3041
3041
|
};
|
|
3042
3042
|
dialect: "pg";
|
|
3043
3043
|
}>;
|
|
3044
|
-
declare const subAgentFunctionToolRelations:
|
|
3044
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3045
3045
|
name: "sub_agent_function_tool_relations";
|
|
3046
3046
|
schema: undefined;
|
|
3047
3047
|
columns: {
|
|
3048
|
-
createdAt:
|
|
3048
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3049
3049
|
name: "created_at";
|
|
3050
3050
|
tableName: "sub_agent_function_tool_relations";
|
|
3051
3051
|
dataType: "string";
|
|
@@ -3062,7 +3062,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3062
3062
|
identity: undefined;
|
|
3063
3063
|
generated: undefined;
|
|
3064
3064
|
}, {}, {}>;
|
|
3065
|
-
updatedAt:
|
|
3065
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3066
3066
|
name: "updated_at";
|
|
3067
3067
|
tableName: "sub_agent_function_tool_relations";
|
|
3068
3068
|
dataType: "string";
|
|
@@ -3079,7 +3079,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3079
3079
|
identity: undefined;
|
|
3080
3080
|
generated: undefined;
|
|
3081
3081
|
}, {}, {}>;
|
|
3082
|
-
functionToolId:
|
|
3082
|
+
functionToolId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3083
3083
|
name: "function_tool_id";
|
|
3084
3084
|
tableName: "sub_agent_function_tool_relations";
|
|
3085
3085
|
dataType: "string";
|
|
@@ -3098,7 +3098,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3098
3098
|
}, {}, {
|
|
3099
3099
|
length: 256;
|
|
3100
3100
|
}>;
|
|
3101
|
-
subAgentId:
|
|
3101
|
+
subAgentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3102
3102
|
name: "sub_agent_id";
|
|
3103
3103
|
tableName: "sub_agent_function_tool_relations";
|
|
3104
3104
|
dataType: "string";
|
|
@@ -3117,7 +3117,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3117
3117
|
}, {}, {
|
|
3118
3118
|
length: 256;
|
|
3119
3119
|
}>;
|
|
3120
|
-
agentId:
|
|
3120
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3121
3121
|
name: "agent_id";
|
|
3122
3122
|
tableName: "sub_agent_function_tool_relations";
|
|
3123
3123
|
dataType: "string";
|
|
@@ -3136,7 +3136,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3136
3136
|
}, {}, {
|
|
3137
3137
|
length: 256;
|
|
3138
3138
|
}>;
|
|
3139
|
-
projectId:
|
|
3139
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3140
3140
|
name: "project_id";
|
|
3141
3141
|
tableName: "sub_agent_function_tool_relations";
|
|
3142
3142
|
dataType: "string";
|
|
@@ -3155,7 +3155,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3155
3155
|
}, {}, {
|
|
3156
3156
|
length: 256;
|
|
3157
3157
|
}>;
|
|
3158
|
-
tenantId:
|
|
3158
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3159
3159
|
name: "tenant_id";
|
|
3160
3160
|
tableName: "sub_agent_function_tool_relations";
|
|
3161
3161
|
dataType: "string";
|
|
@@ -3174,7 +3174,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3174
3174
|
}, {}, {
|
|
3175
3175
|
length: 256;
|
|
3176
3176
|
}>;
|
|
3177
|
-
id:
|
|
3177
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3178
3178
|
name: "id";
|
|
3179
3179
|
tableName: "sub_agent_function_tool_relations";
|
|
3180
3180
|
dataType: "string";
|
|
@@ -3196,11 +3196,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1202.PgTableWith
|
|
|
3196
3196
|
};
|
|
3197
3197
|
dialect: "pg";
|
|
3198
3198
|
}>;
|
|
3199
|
-
declare const credentialReferences:
|
|
3199
|
+
declare const credentialReferences: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3200
3200
|
name: "credential_references";
|
|
3201
3201
|
schema: undefined;
|
|
3202
3202
|
columns: {
|
|
3203
|
-
createdAt:
|
|
3203
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3204
3204
|
name: "created_at";
|
|
3205
3205
|
tableName: "credential_references";
|
|
3206
3206
|
dataType: "string";
|
|
@@ -3217,7 +3217,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3217
3217
|
identity: undefined;
|
|
3218
3218
|
generated: undefined;
|
|
3219
3219
|
}, {}, {}>;
|
|
3220
|
-
updatedAt:
|
|
3220
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3221
3221
|
name: "updated_at";
|
|
3222
3222
|
tableName: "credential_references";
|
|
3223
3223
|
dataType: "string";
|
|
@@ -3234,7 +3234,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3234
3234
|
identity: undefined;
|
|
3235
3235
|
generated: undefined;
|
|
3236
3236
|
}, {}, {}>;
|
|
3237
|
-
name:
|
|
3237
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
3238
3238
|
name: "name";
|
|
3239
3239
|
tableName: "credential_references";
|
|
3240
3240
|
dataType: "string";
|
|
@@ -3253,7 +3253,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3253
3253
|
}, {}, {
|
|
3254
3254
|
length: 256;
|
|
3255
3255
|
}>;
|
|
3256
|
-
type:
|
|
3256
|
+
type: drizzle_orm_pg_core1346.PgColumn<{
|
|
3257
3257
|
name: "type";
|
|
3258
3258
|
tableName: "credential_references";
|
|
3259
3259
|
dataType: "string";
|
|
@@ -3272,7 +3272,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3272
3272
|
}, {}, {
|
|
3273
3273
|
length: 256;
|
|
3274
3274
|
}>;
|
|
3275
|
-
credentialStoreId:
|
|
3275
|
+
credentialStoreId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3276
3276
|
name: "credential_store_id";
|
|
3277
3277
|
tableName: "credential_references";
|
|
3278
3278
|
dataType: "string";
|
|
@@ -3291,7 +3291,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3291
3291
|
}, {}, {
|
|
3292
3292
|
length: 256;
|
|
3293
3293
|
}>;
|
|
3294
|
-
retrievalParams:
|
|
3294
|
+
retrievalParams: drizzle_orm_pg_core1346.PgColumn<{
|
|
3295
3295
|
name: "retrieval_params";
|
|
3296
3296
|
tableName: "credential_references";
|
|
3297
3297
|
dataType: "json";
|
|
@@ -3310,7 +3310,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3310
3310
|
}, {}, {
|
|
3311
3311
|
$type: Record<string, unknown>;
|
|
3312
3312
|
}>;
|
|
3313
|
-
toolId:
|
|
3313
|
+
toolId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3314
3314
|
name: "tool_id";
|
|
3315
3315
|
tableName: "credential_references";
|
|
3316
3316
|
dataType: "string";
|
|
@@ -3329,7 +3329,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3329
3329
|
}, {}, {
|
|
3330
3330
|
length: 256;
|
|
3331
3331
|
}>;
|
|
3332
|
-
userId:
|
|
3332
|
+
userId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3333
3333
|
name: "user_id";
|
|
3334
3334
|
tableName: "credential_references";
|
|
3335
3335
|
dataType: "string";
|
|
@@ -3348,7 +3348,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3348
3348
|
}, {}, {
|
|
3349
3349
|
length: 256;
|
|
3350
3350
|
}>;
|
|
3351
|
-
createdBy:
|
|
3351
|
+
createdBy: drizzle_orm_pg_core1346.PgColumn<{
|
|
3352
3352
|
name: "created_by";
|
|
3353
3353
|
tableName: "credential_references";
|
|
3354
3354
|
dataType: "string";
|
|
@@ -3367,7 +3367,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3367
3367
|
}, {}, {
|
|
3368
3368
|
length: 256;
|
|
3369
3369
|
}>;
|
|
3370
|
-
projectId:
|
|
3370
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3371
3371
|
name: "project_id";
|
|
3372
3372
|
tableName: "credential_references";
|
|
3373
3373
|
dataType: "string";
|
|
@@ -3386,7 +3386,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3386
3386
|
}, {}, {
|
|
3387
3387
|
length: 256;
|
|
3388
3388
|
}>;
|
|
3389
|
-
tenantId:
|
|
3389
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3390
3390
|
name: "tenant_id";
|
|
3391
3391
|
tableName: "credential_references";
|
|
3392
3392
|
dataType: "string";
|
|
@@ -3405,7 +3405,7 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3405
3405
|
}, {}, {
|
|
3406
3406
|
length: 256;
|
|
3407
3407
|
}>;
|
|
3408
|
-
id:
|
|
3408
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3409
3409
|
name: "id";
|
|
3410
3410
|
tableName: "credential_references";
|
|
3411
3411
|
dataType: "string";
|
|
@@ -3437,11 +3437,11 @@ declare const credentialReferences: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3437
3437
|
*
|
|
3438
3438
|
* Includes: name and timestamps
|
|
3439
3439
|
*/
|
|
3440
|
-
declare const dataset:
|
|
3440
|
+
declare const dataset: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3441
3441
|
name: "dataset";
|
|
3442
3442
|
schema: undefined;
|
|
3443
3443
|
columns: {
|
|
3444
|
-
createdAt:
|
|
3444
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3445
3445
|
name: "created_at";
|
|
3446
3446
|
tableName: "dataset";
|
|
3447
3447
|
dataType: "string";
|
|
@@ -3458,7 +3458,7 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3458
3458
|
identity: undefined;
|
|
3459
3459
|
generated: undefined;
|
|
3460
3460
|
}, {}, {}>;
|
|
3461
|
-
updatedAt:
|
|
3461
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3462
3462
|
name: "updated_at";
|
|
3463
3463
|
tableName: "dataset";
|
|
3464
3464
|
dataType: "string";
|
|
@@ -3475,7 +3475,7 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3475
3475
|
identity: undefined;
|
|
3476
3476
|
generated: undefined;
|
|
3477
3477
|
}, {}, {}>;
|
|
3478
|
-
name:
|
|
3478
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
3479
3479
|
name: "name";
|
|
3480
3480
|
tableName: "dataset";
|
|
3481
3481
|
dataType: "string";
|
|
@@ -3494,7 +3494,7 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3494
3494
|
}, {}, {
|
|
3495
3495
|
length: 256;
|
|
3496
3496
|
}>;
|
|
3497
|
-
projectId:
|
|
3497
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3498
3498
|
name: "project_id";
|
|
3499
3499
|
tableName: "dataset";
|
|
3500
3500
|
dataType: "string";
|
|
@@ -3513,7 +3513,7 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3513
3513
|
}, {}, {
|
|
3514
3514
|
length: 256;
|
|
3515
3515
|
}>;
|
|
3516
|
-
tenantId:
|
|
3516
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3517
3517
|
name: "tenant_id";
|
|
3518
3518
|
tableName: "dataset";
|
|
3519
3519
|
dataType: "string";
|
|
@@ -3532,7 +3532,7 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3532
3532
|
}, {}, {
|
|
3533
3533
|
length: 256;
|
|
3534
3534
|
}>;
|
|
3535
|
-
id:
|
|
3535
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3536
3536
|
name: "id";
|
|
3537
3537
|
tableName: "dataset";
|
|
3538
3538
|
dataType: "string";
|
|
@@ -3565,11 +3565,11 @@ declare const dataset: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3565
3565
|
* simulation agent (stopWhen conditions, prompt/modelConfig), and timestamps
|
|
3566
3566
|
* 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
|
|
3567
3567
|
*/
|
|
3568
|
-
declare const datasetItem:
|
|
3568
|
+
declare const datasetItem: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3569
3569
|
name: "dataset_item";
|
|
3570
3570
|
schema: undefined;
|
|
3571
3571
|
columns: {
|
|
3572
|
-
createdAt:
|
|
3572
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3573
3573
|
name: "created_at";
|
|
3574
3574
|
tableName: "dataset_item";
|
|
3575
3575
|
dataType: "string";
|
|
@@ -3586,7 +3586,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3586
3586
|
identity: undefined;
|
|
3587
3587
|
generated: undefined;
|
|
3588
3588
|
}, {}, {}>;
|
|
3589
|
-
updatedAt:
|
|
3589
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3590
3590
|
name: "updated_at";
|
|
3591
3591
|
tableName: "dataset_item";
|
|
3592
3592
|
dataType: "string";
|
|
@@ -3603,7 +3603,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3603
3603
|
identity: undefined;
|
|
3604
3604
|
generated: undefined;
|
|
3605
3605
|
}, {}, {}>;
|
|
3606
|
-
datasetId:
|
|
3606
|
+
datasetId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3607
3607
|
name: "dataset_id";
|
|
3608
3608
|
tableName: "dataset_item";
|
|
3609
3609
|
dataType: "string";
|
|
@@ -3620,7 +3620,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3620
3620
|
identity: undefined;
|
|
3621
3621
|
generated: undefined;
|
|
3622
3622
|
}, {}, {}>;
|
|
3623
|
-
input:
|
|
3623
|
+
input: drizzle_orm_pg_core1346.PgColumn<{
|
|
3624
3624
|
name: "input";
|
|
3625
3625
|
tableName: "dataset_item";
|
|
3626
3626
|
dataType: "json";
|
|
@@ -3639,7 +3639,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3639
3639
|
}, {}, {
|
|
3640
3640
|
$type: DatasetItemInput;
|
|
3641
3641
|
}>;
|
|
3642
|
-
expectedOutput:
|
|
3642
|
+
expectedOutput: drizzle_orm_pg_core1346.PgColumn<{
|
|
3643
3643
|
name: "expected_output";
|
|
3644
3644
|
tableName: "dataset_item";
|
|
3645
3645
|
dataType: "json";
|
|
@@ -3658,7 +3658,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3658
3658
|
}, {}, {
|
|
3659
3659
|
$type: DatasetItemExpectedOutput;
|
|
3660
3660
|
}>;
|
|
3661
|
-
simulationAgent:
|
|
3661
|
+
simulationAgent: drizzle_orm_pg_core1346.PgColumn<{
|
|
3662
3662
|
name: "simulation_agent";
|
|
3663
3663
|
tableName: "dataset_item";
|
|
3664
3664
|
dataType: "json";
|
|
@@ -3697,7 +3697,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3697
3697
|
} | undefined;
|
|
3698
3698
|
};
|
|
3699
3699
|
}>;
|
|
3700
|
-
projectId:
|
|
3700
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3701
3701
|
name: "project_id";
|
|
3702
3702
|
tableName: "dataset_item";
|
|
3703
3703
|
dataType: "string";
|
|
@@ -3716,7 +3716,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3716
3716
|
}, {}, {
|
|
3717
3717
|
length: 256;
|
|
3718
3718
|
}>;
|
|
3719
|
-
tenantId:
|
|
3719
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3720
3720
|
name: "tenant_id";
|
|
3721
3721
|
tableName: "dataset_item";
|
|
3722
3722
|
dataType: "string";
|
|
@@ -3735,7 +3735,7 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3735
3735
|
}, {}, {
|
|
3736
3736
|
length: 256;
|
|
3737
3737
|
}>;
|
|
3738
|
-
id:
|
|
3738
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3739
3739
|
name: "id";
|
|
3740
3740
|
tableName: "dataset_item";
|
|
3741
3741
|
dataType: "string";
|
|
@@ -3757,11 +3757,11 @@ declare const datasetItem: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3757
3757
|
};
|
|
3758
3758
|
dialect: "pg";
|
|
3759
3759
|
}>;
|
|
3760
|
-
declare const evaluator:
|
|
3760
|
+
declare const evaluator: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3761
3761
|
name: "evaluator";
|
|
3762
3762
|
schema: undefined;
|
|
3763
3763
|
columns: {
|
|
3764
|
-
createdAt:
|
|
3764
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3765
3765
|
name: "created_at";
|
|
3766
3766
|
tableName: "evaluator";
|
|
3767
3767
|
dataType: "string";
|
|
@@ -3778,7 +3778,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3778
3778
|
identity: undefined;
|
|
3779
3779
|
generated: undefined;
|
|
3780
3780
|
}, {}, {}>;
|
|
3781
|
-
updatedAt:
|
|
3781
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3782
3782
|
name: "updated_at";
|
|
3783
3783
|
tableName: "evaluator";
|
|
3784
3784
|
dataType: "string";
|
|
@@ -3795,7 +3795,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3795
3795
|
identity: undefined;
|
|
3796
3796
|
generated: undefined;
|
|
3797
3797
|
}, {}, {}>;
|
|
3798
|
-
prompt:
|
|
3798
|
+
prompt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3799
3799
|
name: "prompt";
|
|
3800
3800
|
tableName: "evaluator";
|
|
3801
3801
|
dataType: "string";
|
|
@@ -3812,7 +3812,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3812
3812
|
identity: undefined;
|
|
3813
3813
|
generated: undefined;
|
|
3814
3814
|
}, {}, {}>;
|
|
3815
|
-
schema:
|
|
3815
|
+
schema: drizzle_orm_pg_core1346.PgColumn<{
|
|
3816
3816
|
name: "schema";
|
|
3817
3817
|
tableName: "evaluator";
|
|
3818
3818
|
dataType: "json";
|
|
@@ -3831,7 +3831,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3831
3831
|
}, {}, {
|
|
3832
3832
|
$type: Record<string, unknown>;
|
|
3833
3833
|
}>;
|
|
3834
|
-
model:
|
|
3834
|
+
model: drizzle_orm_pg_core1346.PgColumn<{
|
|
3835
3835
|
name: "model";
|
|
3836
3836
|
tableName: "evaluator";
|
|
3837
3837
|
dataType: "json";
|
|
@@ -3856,7 +3856,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3856
3856
|
providerOptions?: Record<string, any> | undefined;
|
|
3857
3857
|
};
|
|
3858
3858
|
}>;
|
|
3859
|
-
passCriteria:
|
|
3859
|
+
passCriteria: drizzle_orm_pg_core1346.PgColumn<{
|
|
3860
3860
|
name: "pass_criteria";
|
|
3861
3861
|
tableName: "evaluator";
|
|
3862
3862
|
dataType: "json";
|
|
@@ -3875,7 +3875,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3875
3875
|
}, {}, {
|
|
3876
3876
|
$type: PassCriteria;
|
|
3877
3877
|
}>;
|
|
3878
|
-
name:
|
|
3878
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
3879
3879
|
name: "name";
|
|
3880
3880
|
tableName: "evaluator";
|
|
3881
3881
|
dataType: "string";
|
|
@@ -3894,7 +3894,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3894
3894
|
}, {}, {
|
|
3895
3895
|
length: 256;
|
|
3896
3896
|
}>;
|
|
3897
|
-
description:
|
|
3897
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
3898
3898
|
name: "description";
|
|
3899
3899
|
tableName: "evaluator";
|
|
3900
3900
|
dataType: "string";
|
|
@@ -3911,7 +3911,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3911
3911
|
identity: undefined;
|
|
3912
3912
|
generated: undefined;
|
|
3913
3913
|
}, {}, {}>;
|
|
3914
|
-
projectId:
|
|
3914
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3915
3915
|
name: "project_id";
|
|
3916
3916
|
tableName: "evaluator";
|
|
3917
3917
|
dataType: "string";
|
|
@@ -3930,7 +3930,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3930
3930
|
}, {}, {
|
|
3931
3931
|
length: 256;
|
|
3932
3932
|
}>;
|
|
3933
|
-
tenantId:
|
|
3933
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
3934
3934
|
name: "tenant_id";
|
|
3935
3935
|
tableName: "evaluator";
|
|
3936
3936
|
dataType: "string";
|
|
@@ -3949,7 +3949,7 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3949
3949
|
}, {}, {
|
|
3950
3950
|
length: 256;
|
|
3951
3951
|
}>;
|
|
3952
|
-
id:
|
|
3952
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
3953
3953
|
name: "id";
|
|
3954
3954
|
tableName: "evaluator";
|
|
3955
3955
|
dataType: "string";
|
|
@@ -3971,11 +3971,11 @@ declare const evaluator: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3971
3971
|
};
|
|
3972
3972
|
dialect: "pg";
|
|
3973
3973
|
}>;
|
|
3974
|
-
declare const datasetRunConfig:
|
|
3974
|
+
declare const datasetRunConfig: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
3975
3975
|
name: "dataset_run_config";
|
|
3976
3976
|
schema: undefined;
|
|
3977
3977
|
columns: {
|
|
3978
|
-
createdAt:
|
|
3978
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3979
3979
|
name: "created_at";
|
|
3980
3980
|
tableName: "dataset_run_config";
|
|
3981
3981
|
dataType: "string";
|
|
@@ -3992,7 +3992,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
3992
3992
|
identity: undefined;
|
|
3993
3993
|
generated: undefined;
|
|
3994
3994
|
}, {}, {}>;
|
|
3995
|
-
updatedAt:
|
|
3995
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
3996
3996
|
name: "updated_at";
|
|
3997
3997
|
tableName: "dataset_run_config";
|
|
3998
3998
|
dataType: "string";
|
|
@@ -4009,7 +4009,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4009
4009
|
identity: undefined;
|
|
4010
4010
|
generated: undefined;
|
|
4011
4011
|
}, {}, {}>;
|
|
4012
|
-
datasetId:
|
|
4012
|
+
datasetId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4013
4013
|
name: "dataset_id";
|
|
4014
4014
|
tableName: "dataset_run_config";
|
|
4015
4015
|
dataType: "string";
|
|
@@ -4026,7 +4026,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4026
4026
|
identity: undefined;
|
|
4027
4027
|
generated: undefined;
|
|
4028
4028
|
}, {}, {}>;
|
|
4029
|
-
name:
|
|
4029
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
4030
4030
|
name: "name";
|
|
4031
4031
|
tableName: "dataset_run_config";
|
|
4032
4032
|
dataType: "string";
|
|
@@ -4045,7 +4045,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4045
4045
|
}, {}, {
|
|
4046
4046
|
length: 256;
|
|
4047
4047
|
}>;
|
|
4048
|
-
description:
|
|
4048
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
4049
4049
|
name: "description";
|
|
4050
4050
|
tableName: "dataset_run_config";
|
|
4051
4051
|
dataType: "string";
|
|
@@ -4062,7 +4062,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4062
4062
|
identity: undefined;
|
|
4063
4063
|
generated: undefined;
|
|
4064
4064
|
}, {}, {}>;
|
|
4065
|
-
projectId:
|
|
4065
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4066
4066
|
name: "project_id";
|
|
4067
4067
|
tableName: "dataset_run_config";
|
|
4068
4068
|
dataType: "string";
|
|
@@ -4081,7 +4081,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4081
4081
|
}, {}, {
|
|
4082
4082
|
length: 256;
|
|
4083
4083
|
}>;
|
|
4084
|
-
tenantId:
|
|
4084
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4085
4085
|
name: "tenant_id";
|
|
4086
4086
|
tableName: "dataset_run_config";
|
|
4087
4087
|
dataType: "string";
|
|
@@ -4100,7 +4100,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4100
4100
|
}, {}, {
|
|
4101
4101
|
length: 256;
|
|
4102
4102
|
}>;
|
|
4103
|
-
id:
|
|
4103
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4104
4104
|
name: "id";
|
|
4105
4105
|
tableName: "dataset_run_config";
|
|
4106
4106
|
dataType: "string";
|
|
@@ -4137,11 +4137,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4137
4137
|
* Includes: name, description, filters (JSONB for evaluation criteria),
|
|
4138
4138
|
* sampleRate for sampling, and timestamps
|
|
4139
4139
|
*/
|
|
4140
|
-
declare const evaluationSuiteConfig:
|
|
4140
|
+
declare const evaluationSuiteConfig: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4141
4141
|
name: "evaluation_suite_config";
|
|
4142
4142
|
schema: undefined;
|
|
4143
4143
|
columns: {
|
|
4144
|
-
createdAt:
|
|
4144
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4145
4145
|
name: "created_at";
|
|
4146
4146
|
tableName: "evaluation_suite_config";
|
|
4147
4147
|
dataType: "string";
|
|
@@ -4158,7 +4158,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4158
4158
|
identity: undefined;
|
|
4159
4159
|
generated: undefined;
|
|
4160
4160
|
}, {}, {}>;
|
|
4161
|
-
updatedAt:
|
|
4161
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4162
4162
|
name: "updated_at";
|
|
4163
4163
|
tableName: "evaluation_suite_config";
|
|
4164
4164
|
dataType: "string";
|
|
@@ -4175,7 +4175,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4175
4175
|
identity: undefined;
|
|
4176
4176
|
generated: undefined;
|
|
4177
4177
|
}, {}, {}>;
|
|
4178
|
-
filters:
|
|
4178
|
+
filters: drizzle_orm_pg_core1346.PgColumn<{
|
|
4179
4179
|
name: "filters";
|
|
4180
4180
|
tableName: "evaluation_suite_config";
|
|
4181
4181
|
dataType: "json";
|
|
@@ -4194,7 +4194,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4194
4194
|
}, {}, {
|
|
4195
4195
|
$type: Filter<EvaluationSuiteFilterCriteria>;
|
|
4196
4196
|
}>;
|
|
4197
|
-
sampleRate:
|
|
4197
|
+
sampleRate: drizzle_orm_pg_core1346.PgColumn<{
|
|
4198
4198
|
name: "sample_rate";
|
|
4199
4199
|
tableName: "evaluation_suite_config";
|
|
4200
4200
|
dataType: "number";
|
|
@@ -4211,7 +4211,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4211
4211
|
identity: undefined;
|
|
4212
4212
|
generated: undefined;
|
|
4213
4213
|
}, {}, {}>;
|
|
4214
|
-
projectId:
|
|
4214
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4215
4215
|
name: "project_id";
|
|
4216
4216
|
tableName: "evaluation_suite_config";
|
|
4217
4217
|
dataType: "string";
|
|
@@ -4230,7 +4230,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4230
4230
|
}, {}, {
|
|
4231
4231
|
length: 256;
|
|
4232
4232
|
}>;
|
|
4233
|
-
tenantId:
|
|
4233
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4234
4234
|
name: "tenant_id";
|
|
4235
4235
|
tableName: "evaluation_suite_config";
|
|
4236
4236
|
dataType: "string";
|
|
@@ -4249,7 +4249,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4249
4249
|
}, {}, {
|
|
4250
4250
|
length: 256;
|
|
4251
4251
|
}>;
|
|
4252
|
-
id:
|
|
4252
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4253
4253
|
name: "id";
|
|
4254
4254
|
tableName: "evaluation_suite_config";
|
|
4255
4255
|
dataType: "string";
|
|
@@ -4278,11 +4278,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1202.PgTableWithColumns<
|
|
|
4278
4278
|
*
|
|
4279
4279
|
* Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
|
|
4280
4280
|
*/
|
|
4281
|
-
declare const evaluationSuiteConfigEvaluatorRelations:
|
|
4281
|
+
declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4282
4282
|
name: "evaluation_suite_config_evaluator_relations";
|
|
4283
4283
|
schema: undefined;
|
|
4284
4284
|
columns: {
|
|
4285
|
-
createdAt:
|
|
4285
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4286
4286
|
name: "created_at";
|
|
4287
4287
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4288
4288
|
dataType: "string";
|
|
@@ -4299,7 +4299,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4299
4299
|
identity: undefined;
|
|
4300
4300
|
generated: undefined;
|
|
4301
4301
|
}, {}, {}>;
|
|
4302
|
-
updatedAt:
|
|
4302
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4303
4303
|
name: "updated_at";
|
|
4304
4304
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4305
4305
|
dataType: "string";
|
|
@@ -4316,7 +4316,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4316
4316
|
identity: undefined;
|
|
4317
4317
|
generated: undefined;
|
|
4318
4318
|
}, {}, {}>;
|
|
4319
|
-
evaluationSuiteConfigId:
|
|
4319
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4320
4320
|
name: "evaluation_suite_config_id";
|
|
4321
4321
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4322
4322
|
dataType: "string";
|
|
@@ -4333,7 +4333,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4333
4333
|
identity: undefined;
|
|
4334
4334
|
generated: undefined;
|
|
4335
4335
|
}, {}, {}>;
|
|
4336
|
-
evaluatorId:
|
|
4336
|
+
evaluatorId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4337
4337
|
name: "evaluator_id";
|
|
4338
4338
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4339
4339
|
dataType: "string";
|
|
@@ -4350,7 +4350,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4350
4350
|
identity: undefined;
|
|
4351
4351
|
generated: undefined;
|
|
4352
4352
|
}, {}, {}>;
|
|
4353
|
-
projectId:
|
|
4353
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4354
4354
|
name: "project_id";
|
|
4355
4355
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4356
4356
|
dataType: "string";
|
|
@@ -4369,7 +4369,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4369
4369
|
}, {}, {
|
|
4370
4370
|
length: 256;
|
|
4371
4371
|
}>;
|
|
4372
|
-
tenantId:
|
|
4372
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4373
4373
|
name: "tenant_id";
|
|
4374
4374
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4375
4375
|
dataType: "string";
|
|
@@ -4388,7 +4388,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4388
4388
|
}, {}, {
|
|
4389
4389
|
length: 256;
|
|
4390
4390
|
}>;
|
|
4391
|
-
id:
|
|
4391
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4392
4392
|
name: "id";
|
|
4393
4393
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4394
4394
|
dataType: "string";
|
|
@@ -4417,11 +4417,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1202.P
|
|
|
4417
4417
|
*
|
|
4418
4418
|
* Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
|
|
4419
4419
|
*/
|
|
4420
|
-
declare const evaluationRunConfigEvaluationSuiteConfigRelations:
|
|
4420
|
+
declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4421
4421
|
name: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4422
4422
|
schema: undefined;
|
|
4423
4423
|
columns: {
|
|
4424
|
-
createdAt:
|
|
4424
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4425
4425
|
name: "created_at";
|
|
4426
4426
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4427
4427
|
dataType: "string";
|
|
@@ -4438,7 +4438,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4438
4438
|
identity: undefined;
|
|
4439
4439
|
generated: undefined;
|
|
4440
4440
|
}, {}, {}>;
|
|
4441
|
-
updatedAt:
|
|
4441
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4442
4442
|
name: "updated_at";
|
|
4443
4443
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4444
4444
|
dataType: "string";
|
|
@@ -4455,7 +4455,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4455
4455
|
identity: undefined;
|
|
4456
4456
|
generated: undefined;
|
|
4457
4457
|
}, {}, {}>;
|
|
4458
|
-
evaluationRunConfigId:
|
|
4458
|
+
evaluationRunConfigId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4459
4459
|
name: "evaluation_run_config_id";
|
|
4460
4460
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4461
4461
|
dataType: "string";
|
|
@@ -4472,7 +4472,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4472
4472
|
identity: undefined;
|
|
4473
4473
|
generated: undefined;
|
|
4474
4474
|
}, {}, {}>;
|
|
4475
|
-
evaluationSuiteConfigId:
|
|
4475
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4476
4476
|
name: "evaluation_suite_config_id";
|
|
4477
4477
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4478
4478
|
dataType: "string";
|
|
@@ -4489,7 +4489,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4489
4489
|
identity: undefined;
|
|
4490
4490
|
generated: undefined;
|
|
4491
4491
|
}, {}, {}>;
|
|
4492
|
-
projectId:
|
|
4492
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4493
4493
|
name: "project_id";
|
|
4494
4494
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4495
4495
|
dataType: "string";
|
|
@@ -4508,7 +4508,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4508
4508
|
}, {}, {
|
|
4509
4509
|
length: 256;
|
|
4510
4510
|
}>;
|
|
4511
|
-
tenantId:
|
|
4511
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4512
4512
|
name: "tenant_id";
|
|
4513
4513
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4514
4514
|
dataType: "string";
|
|
@@ -4527,7 +4527,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4527
4527
|
}, {}, {
|
|
4528
4528
|
length: 256;
|
|
4529
4529
|
}>;
|
|
4530
|
-
id:
|
|
4530
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4531
4531
|
name: "id";
|
|
4532
4532
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4533
4533
|
dataType: "string";
|
|
@@ -4562,11 +4562,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4562
4562
|
*
|
|
4563
4563
|
* one to many relationship with evaluationRun
|
|
4564
4564
|
*/
|
|
4565
|
-
declare const evaluationRunConfig:
|
|
4565
|
+
declare const evaluationRunConfig: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4566
4566
|
name: "evaluation_run_config";
|
|
4567
4567
|
schema: undefined;
|
|
4568
4568
|
columns: {
|
|
4569
|
-
createdAt:
|
|
4569
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4570
4570
|
name: "created_at";
|
|
4571
4571
|
tableName: "evaluation_run_config";
|
|
4572
4572
|
dataType: "string";
|
|
@@ -4583,7 +4583,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4583
4583
|
identity: undefined;
|
|
4584
4584
|
generated: undefined;
|
|
4585
4585
|
}, {}, {}>;
|
|
4586
|
-
updatedAt:
|
|
4586
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4587
4587
|
name: "updated_at";
|
|
4588
4588
|
tableName: "evaluation_run_config";
|
|
4589
4589
|
dataType: "string";
|
|
@@ -4600,7 +4600,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4600
4600
|
identity: undefined;
|
|
4601
4601
|
generated: undefined;
|
|
4602
4602
|
}, {}, {}>;
|
|
4603
|
-
isActive:
|
|
4603
|
+
isActive: drizzle_orm_pg_core1346.PgColumn<{
|
|
4604
4604
|
name: "is_active";
|
|
4605
4605
|
tableName: "evaluation_run_config";
|
|
4606
4606
|
dataType: "boolean";
|
|
@@ -4617,7 +4617,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4617
4617
|
identity: undefined;
|
|
4618
4618
|
generated: undefined;
|
|
4619
4619
|
}, {}, {}>;
|
|
4620
|
-
name:
|
|
4620
|
+
name: drizzle_orm_pg_core1346.PgColumn<{
|
|
4621
4621
|
name: "name";
|
|
4622
4622
|
tableName: "evaluation_run_config";
|
|
4623
4623
|
dataType: "string";
|
|
@@ -4636,7 +4636,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4636
4636
|
}, {}, {
|
|
4637
4637
|
length: 256;
|
|
4638
4638
|
}>;
|
|
4639
|
-
description:
|
|
4639
|
+
description: drizzle_orm_pg_core1346.PgColumn<{
|
|
4640
4640
|
name: "description";
|
|
4641
4641
|
tableName: "evaluation_run_config";
|
|
4642
4642
|
dataType: "string";
|
|
@@ -4653,7 +4653,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4653
4653
|
identity: undefined;
|
|
4654
4654
|
generated: undefined;
|
|
4655
4655
|
}, {}, {}>;
|
|
4656
|
-
projectId:
|
|
4656
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4657
4657
|
name: "project_id";
|
|
4658
4658
|
tableName: "evaluation_run_config";
|
|
4659
4659
|
dataType: "string";
|
|
@@ -4672,7 +4672,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4672
4672
|
}, {}, {
|
|
4673
4673
|
length: 256;
|
|
4674
4674
|
}>;
|
|
4675
|
-
tenantId:
|
|
4675
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4676
4676
|
name: "tenant_id";
|
|
4677
4677
|
tableName: "evaluation_run_config";
|
|
4678
4678
|
dataType: "string";
|
|
@@ -4691,7 +4691,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4691
4691
|
}, {}, {
|
|
4692
4692
|
length: 256;
|
|
4693
4693
|
}>;
|
|
4694
|
-
id:
|
|
4694
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4695
4695
|
name: "id";
|
|
4696
4696
|
tableName: "evaluation_run_config";
|
|
4697
4697
|
dataType: "string";
|
|
@@ -4727,11 +4727,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4727
4727
|
* Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
|
|
4728
4728
|
* dateRange with absolute dates), and timestamps
|
|
4729
4729
|
*/
|
|
4730
|
-
declare const evaluationJobConfig:
|
|
4730
|
+
declare const evaluationJobConfig: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4731
4731
|
name: "evaluation_job_config";
|
|
4732
4732
|
schema: undefined;
|
|
4733
4733
|
columns: {
|
|
4734
|
-
createdAt:
|
|
4734
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4735
4735
|
name: "created_at";
|
|
4736
4736
|
tableName: "evaluation_job_config";
|
|
4737
4737
|
dataType: "string";
|
|
@@ -4748,7 +4748,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4748
4748
|
identity: undefined;
|
|
4749
4749
|
generated: undefined;
|
|
4750
4750
|
}, {}, {}>;
|
|
4751
|
-
updatedAt:
|
|
4751
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4752
4752
|
name: "updated_at";
|
|
4753
4753
|
tableName: "evaluation_job_config";
|
|
4754
4754
|
dataType: "string";
|
|
@@ -4765,7 +4765,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4765
4765
|
identity: undefined;
|
|
4766
4766
|
generated: undefined;
|
|
4767
4767
|
}, {}, {}>;
|
|
4768
|
-
jobFilters:
|
|
4768
|
+
jobFilters: drizzle_orm_pg_core1346.PgColumn<{
|
|
4769
4769
|
name: "job_filters";
|
|
4770
4770
|
tableName: "evaluation_job_config";
|
|
4771
4771
|
dataType: "json";
|
|
@@ -4800,7 +4800,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4800
4800
|
} | undefined;
|
|
4801
4801
|
}>;
|
|
4802
4802
|
}>;
|
|
4803
|
-
projectId:
|
|
4803
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4804
4804
|
name: "project_id";
|
|
4805
4805
|
tableName: "evaluation_job_config";
|
|
4806
4806
|
dataType: "string";
|
|
@@ -4819,7 +4819,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4819
4819
|
}, {}, {
|
|
4820
4820
|
length: 256;
|
|
4821
4821
|
}>;
|
|
4822
|
-
tenantId:
|
|
4822
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4823
4823
|
name: "tenant_id";
|
|
4824
4824
|
tableName: "evaluation_job_config";
|
|
4825
4825
|
dataType: "string";
|
|
@@ -4838,7 +4838,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4838
4838
|
}, {}, {
|
|
4839
4839
|
length: 256;
|
|
4840
4840
|
}>;
|
|
4841
|
-
id:
|
|
4841
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4842
4842
|
name: "id";
|
|
4843
4843
|
tableName: "evaluation_job_config";
|
|
4844
4844
|
dataType: "string";
|
|
@@ -4867,11 +4867,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1202.PgTableWithColumns<{
|
|
|
4867
4867
|
*
|
|
4868
4868
|
* Includes: evaluationJobConfigId, evaluatorId, and timestamps
|
|
4869
4869
|
*/
|
|
4870
|
-
declare const evaluationJobConfigEvaluatorRelations:
|
|
4870
|
+
declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
4871
4871
|
name: "evaluation_job_config_evaluator_relations";
|
|
4872
4872
|
schema: undefined;
|
|
4873
4873
|
columns: {
|
|
4874
|
-
createdAt:
|
|
4874
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4875
4875
|
name: "created_at";
|
|
4876
4876
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4877
4877
|
dataType: "string";
|
|
@@ -4888,7 +4888,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4888
4888
|
identity: undefined;
|
|
4889
4889
|
generated: undefined;
|
|
4890
4890
|
}, {}, {}>;
|
|
4891
|
-
updatedAt:
|
|
4891
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
4892
4892
|
name: "updated_at";
|
|
4893
4893
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4894
4894
|
dataType: "string";
|
|
@@ -4905,7 +4905,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4905
4905
|
identity: undefined;
|
|
4906
4906
|
generated: undefined;
|
|
4907
4907
|
}, {}, {}>;
|
|
4908
|
-
evaluationJobConfigId:
|
|
4908
|
+
evaluationJobConfigId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4909
4909
|
name: "evaluation_job_config_id";
|
|
4910
4910
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4911
4911
|
dataType: "string";
|
|
@@ -4922,7 +4922,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4922
4922
|
identity: undefined;
|
|
4923
4923
|
generated: undefined;
|
|
4924
4924
|
}, {}, {}>;
|
|
4925
|
-
evaluatorId:
|
|
4925
|
+
evaluatorId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4926
4926
|
name: "evaluator_id";
|
|
4927
4927
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4928
4928
|
dataType: "string";
|
|
@@ -4939,7 +4939,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4939
4939
|
identity: undefined;
|
|
4940
4940
|
generated: undefined;
|
|
4941
4941
|
}, {}, {}>;
|
|
4942
|
-
projectId:
|
|
4942
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4943
4943
|
name: "project_id";
|
|
4944
4944
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4945
4945
|
dataType: "string";
|
|
@@ -4958,7 +4958,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4958
4958
|
}, {}, {
|
|
4959
4959
|
length: 256;
|
|
4960
4960
|
}>;
|
|
4961
|
-
tenantId:
|
|
4961
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
4962
4962
|
name: "tenant_id";
|
|
4963
4963
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4964
4964
|
dataType: "string";
|
|
@@ -4977,7 +4977,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4977
4977
|
}, {}, {
|
|
4978
4978
|
length: 256;
|
|
4979
4979
|
}>;
|
|
4980
|
-
id:
|
|
4980
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
4981
4981
|
name: "id";
|
|
4982
4982
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
4983
4983
|
dataType: "string";
|
|
@@ -4999,98 +4999,98 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1202.PgT
|
|
|
4999
4999
|
};
|
|
5000
5000
|
dialect: "pg";
|
|
5001
5001
|
}>;
|
|
5002
|
-
declare const projectsRelations:
|
|
5003
|
-
subAgents:
|
|
5004
|
-
agents:
|
|
5005
|
-
tools:
|
|
5006
|
-
functions:
|
|
5007
|
-
contextConfigs:
|
|
5008
|
-
externalAgents:
|
|
5009
|
-
dataComponents:
|
|
5010
|
-
artifactComponents:
|
|
5011
|
-
credentialReferences:
|
|
5002
|
+
declare const projectsRelations: drizzle_orm37.Relations<"projects", {
|
|
5003
|
+
subAgents: drizzle_orm37.Many<"sub_agents">;
|
|
5004
|
+
agents: drizzle_orm37.Many<"agent">;
|
|
5005
|
+
tools: drizzle_orm37.Many<"tools">;
|
|
5006
|
+
functions: drizzle_orm37.Many<"functions">;
|
|
5007
|
+
contextConfigs: drizzle_orm37.Many<"context_configs">;
|
|
5008
|
+
externalAgents: drizzle_orm37.Many<"external_agents">;
|
|
5009
|
+
dataComponents: drizzle_orm37.Many<"data_components">;
|
|
5010
|
+
artifactComponents: drizzle_orm37.Many<"artifact_components">;
|
|
5011
|
+
credentialReferences: drizzle_orm37.Many<"credential_references">;
|
|
5012
5012
|
}>;
|
|
5013
|
-
declare const contextConfigsRelations:
|
|
5014
|
-
project:
|
|
5015
|
-
agents:
|
|
5013
|
+
declare const contextConfigsRelations: drizzle_orm37.Relations<"context_configs", {
|
|
5014
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5015
|
+
agents: drizzle_orm37.Many<"agent">;
|
|
5016
5016
|
}>;
|
|
5017
|
-
declare const subAgentsRelations:
|
|
5018
|
-
project:
|
|
5019
|
-
defaultForAgents:
|
|
5020
|
-
sourceRelations:
|
|
5021
|
-
targetRelations:
|
|
5022
|
-
toolRelations:
|
|
5023
|
-
functionToolRelations:
|
|
5024
|
-
dataComponentRelations:
|
|
5025
|
-
artifactComponentRelations:
|
|
5017
|
+
declare const subAgentsRelations: drizzle_orm37.Relations<"sub_agents", {
|
|
5018
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5019
|
+
defaultForAgents: drizzle_orm37.Many<"agent">;
|
|
5020
|
+
sourceRelations: drizzle_orm37.Many<"sub_agent_relations">;
|
|
5021
|
+
targetRelations: drizzle_orm37.Many<"sub_agent_relations">;
|
|
5022
|
+
toolRelations: drizzle_orm37.Many<"sub_agent_tool_relations">;
|
|
5023
|
+
functionToolRelations: drizzle_orm37.Many<"sub_agent_function_tool_relations">;
|
|
5024
|
+
dataComponentRelations: drizzle_orm37.Many<"sub_agent_data_components">;
|
|
5025
|
+
artifactComponentRelations: drizzle_orm37.Many<"sub_agent_artifact_components">;
|
|
5026
5026
|
}>;
|
|
5027
|
-
declare const agentRelations:
|
|
5028
|
-
project:
|
|
5029
|
-
defaultSubAgent:
|
|
5030
|
-
contextConfig:
|
|
5031
|
-
functionTools:
|
|
5027
|
+
declare const agentRelations: drizzle_orm37.Relations<"agent", {
|
|
5028
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5029
|
+
defaultSubAgent: drizzle_orm37.One<"sub_agents", false>;
|
|
5030
|
+
contextConfig: drizzle_orm37.One<"context_configs", false>;
|
|
5031
|
+
functionTools: drizzle_orm37.Many<"function_tools">;
|
|
5032
5032
|
}>;
|
|
5033
|
-
declare const externalAgentsRelations:
|
|
5034
|
-
project:
|
|
5035
|
-
subAgentExternalAgentRelations:
|
|
5036
|
-
credentialReference:
|
|
5033
|
+
declare const externalAgentsRelations: drizzle_orm37.Relations<"external_agents", {
|
|
5034
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5035
|
+
subAgentExternalAgentRelations: drizzle_orm37.Many<"sub_agent_external_agent_relations">;
|
|
5036
|
+
credentialReference: drizzle_orm37.One<"credential_references", false>;
|
|
5037
5037
|
}>;
|
|
5038
|
-
declare const agentToolRelationsRelations:
|
|
5039
|
-
subAgent:
|
|
5040
|
-
tool:
|
|
5038
|
+
declare const agentToolRelationsRelations: drizzle_orm37.Relations<"sub_agent_tool_relations", {
|
|
5039
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5040
|
+
tool: drizzle_orm37.One<"tools", true>;
|
|
5041
5041
|
}>;
|
|
5042
|
-
declare const credentialReferencesRelations:
|
|
5043
|
-
project:
|
|
5044
|
-
tools:
|
|
5045
|
-
externalAgents:
|
|
5042
|
+
declare const credentialReferencesRelations: drizzle_orm37.Relations<"credential_references", {
|
|
5043
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5044
|
+
tools: drizzle_orm37.Many<"tools">;
|
|
5045
|
+
externalAgents: drizzle_orm37.Many<"external_agents">;
|
|
5046
5046
|
}>;
|
|
5047
|
-
declare const toolsRelations:
|
|
5048
|
-
project:
|
|
5049
|
-
subAgentRelations:
|
|
5050
|
-
credentialReference:
|
|
5047
|
+
declare const toolsRelations: drizzle_orm37.Relations<"tools", {
|
|
5048
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5049
|
+
subAgentRelations: drizzle_orm37.Many<"sub_agent_tool_relations">;
|
|
5050
|
+
credentialReference: drizzle_orm37.One<"credential_references", false>;
|
|
5051
5051
|
}>;
|
|
5052
|
-
declare const artifactComponentsRelations:
|
|
5053
|
-
project:
|
|
5054
|
-
subAgentRelations:
|
|
5052
|
+
declare const artifactComponentsRelations: drizzle_orm37.Relations<"artifact_components", {
|
|
5053
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5054
|
+
subAgentRelations: drizzle_orm37.Many<"sub_agent_artifact_components">;
|
|
5055
5055
|
}>;
|
|
5056
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5057
|
-
subAgent:
|
|
5058
|
-
artifactComponent:
|
|
5056
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm37.Relations<"sub_agent_artifact_components", {
|
|
5057
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5058
|
+
artifactComponent: drizzle_orm37.One<"artifact_components", true>;
|
|
5059
5059
|
}>;
|
|
5060
|
-
declare const dataComponentsRelations:
|
|
5061
|
-
project:
|
|
5062
|
-
subAgentRelations:
|
|
5060
|
+
declare const dataComponentsRelations: drizzle_orm37.Relations<"data_components", {
|
|
5061
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5062
|
+
subAgentRelations: drizzle_orm37.Many<"sub_agent_data_components">;
|
|
5063
5063
|
}>;
|
|
5064
|
-
declare const subAgentDataComponentsRelations:
|
|
5065
|
-
subAgent:
|
|
5066
|
-
dataComponent:
|
|
5064
|
+
declare const subAgentDataComponentsRelations: drizzle_orm37.Relations<"sub_agent_data_components", {
|
|
5065
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5066
|
+
dataComponent: drizzle_orm37.One<"data_components", true>;
|
|
5067
5067
|
}>;
|
|
5068
|
-
declare const functionsRelations:
|
|
5069
|
-
functionTools:
|
|
5070
|
-
project:
|
|
5068
|
+
declare const functionsRelations: drizzle_orm37.Relations<"functions", {
|
|
5069
|
+
functionTools: drizzle_orm37.Many<"function_tools">;
|
|
5070
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5071
5071
|
}>;
|
|
5072
|
-
declare const subAgentRelationsRelations:
|
|
5073
|
-
agent:
|
|
5074
|
-
sourceSubAgent:
|
|
5075
|
-
targetSubAgent:
|
|
5072
|
+
declare const subAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_relations", {
|
|
5073
|
+
agent: drizzle_orm37.One<"agent", true>;
|
|
5074
|
+
sourceSubAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5075
|
+
targetSubAgent: drizzle_orm37.One<"sub_agents", false>;
|
|
5076
5076
|
}>;
|
|
5077
|
-
declare const functionToolsRelations:
|
|
5078
|
-
project:
|
|
5079
|
-
agent:
|
|
5080
|
-
function:
|
|
5081
|
-
subAgentRelations:
|
|
5077
|
+
declare const functionToolsRelations: drizzle_orm37.Relations<"function_tools", {
|
|
5078
|
+
project: drizzle_orm37.One<"projects", true>;
|
|
5079
|
+
agent: drizzle_orm37.One<"agent", true>;
|
|
5080
|
+
function: drizzle_orm37.One<"functions", true>;
|
|
5081
|
+
subAgentRelations: drizzle_orm37.Many<"sub_agent_function_tool_relations">;
|
|
5082
5082
|
}>;
|
|
5083
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5084
|
-
subAgent:
|
|
5085
|
-
functionTool:
|
|
5083
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm37.Relations<"sub_agent_function_tool_relations", {
|
|
5084
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5085
|
+
functionTool: drizzle_orm37.One<"function_tools", true>;
|
|
5086
5086
|
}>;
|
|
5087
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5088
|
-
subAgent:
|
|
5089
|
-
externalAgent:
|
|
5087
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_external_agent_relations", {
|
|
5088
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5089
|
+
externalAgent: drizzle_orm37.One<"external_agents", true>;
|
|
5090
5090
|
}>;
|
|
5091
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5092
|
-
subAgent:
|
|
5093
|
-
targetAgent:
|
|
5091
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm37.Relations<"sub_agent_team_agent_relations", {
|
|
5092
|
+
subAgent: drizzle_orm37.One<"sub_agents", true>;
|
|
5093
|
+
targetAgent: drizzle_orm37.One<"agent", true>;
|
|
5094
5094
|
}>;
|
|
5095
5095
|
/**
|
|
5096
5096
|
* Links agents to dataset run configs. Many-to-many relationship that
|
|
@@ -5099,11 +5099,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_
|
|
|
5099
5099
|
*
|
|
5100
5100
|
* Includes: datasetRunConfigId, agentId, and timestamps
|
|
5101
5101
|
*/
|
|
5102
|
-
declare const datasetRunConfigAgentRelations:
|
|
5102
|
+
declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1346.PgTableWithColumns<{
|
|
5103
5103
|
name: "dataset_run_config_agent_relations";
|
|
5104
5104
|
schema: undefined;
|
|
5105
5105
|
columns: {
|
|
5106
|
-
createdAt:
|
|
5106
|
+
createdAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
5107
5107
|
name: "created_at";
|
|
5108
5108
|
tableName: "dataset_run_config_agent_relations";
|
|
5109
5109
|
dataType: "string";
|
|
@@ -5120,7 +5120,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5120
5120
|
identity: undefined;
|
|
5121
5121
|
generated: undefined;
|
|
5122
5122
|
}, {}, {}>;
|
|
5123
|
-
updatedAt:
|
|
5123
|
+
updatedAt: drizzle_orm_pg_core1346.PgColumn<{
|
|
5124
5124
|
name: "updated_at";
|
|
5125
5125
|
tableName: "dataset_run_config_agent_relations";
|
|
5126
5126
|
dataType: "string";
|
|
@@ -5137,7 +5137,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5137
5137
|
identity: undefined;
|
|
5138
5138
|
generated: undefined;
|
|
5139
5139
|
}, {}, {}>;
|
|
5140
|
-
datasetRunConfigId:
|
|
5140
|
+
datasetRunConfigId: drizzle_orm_pg_core1346.PgColumn<{
|
|
5141
5141
|
name: "dataset_run_config_id";
|
|
5142
5142
|
tableName: "dataset_run_config_agent_relations";
|
|
5143
5143
|
dataType: "string";
|
|
@@ -5154,7 +5154,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5154
5154
|
identity: undefined;
|
|
5155
5155
|
generated: undefined;
|
|
5156
5156
|
}, {}, {}>;
|
|
5157
|
-
agentId:
|
|
5157
|
+
agentId: drizzle_orm_pg_core1346.PgColumn<{
|
|
5158
5158
|
name: "agent_id";
|
|
5159
5159
|
tableName: "dataset_run_config_agent_relations";
|
|
5160
5160
|
dataType: "string";
|
|
@@ -5171,7 +5171,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5171
5171
|
identity: undefined;
|
|
5172
5172
|
generated: undefined;
|
|
5173
5173
|
}, {}, {}>;
|
|
5174
|
-
projectId:
|
|
5174
|
+
projectId: drizzle_orm_pg_core1346.PgColumn<{
|
|
5175
5175
|
name: "project_id";
|
|
5176
5176
|
tableName: "dataset_run_config_agent_relations";
|
|
5177
5177
|
dataType: "string";
|
|
@@ -5190,7 +5190,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5190
5190
|
}, {}, {
|
|
5191
5191
|
length: 256;
|
|
5192
5192
|
}>;
|
|
5193
|
-
tenantId:
|
|
5193
|
+
tenantId: drizzle_orm_pg_core1346.PgColumn<{
|
|
5194
5194
|
name: "tenant_id";
|
|
5195
5195
|
tableName: "dataset_run_config_agent_relations";
|
|
5196
5196
|
dataType: "string";
|
|
@@ -5209,7 +5209,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1202.PgTableWit
|
|
|
5209
5209
|
}, {}, {
|
|
5210
5210
|
length: 256;
|
|
5211
5211
|
}>;
|
|
5212
|
-
id:
|
|
5212
|
+
id: drizzle_orm_pg_core1346.PgColumn<{
|
|
5213
5213
|
name: "id";
|
|
5214
5214
|
tableName: "dataset_run_config_agent_relations";
|
|
5215
5215
|
dataType: "string";
|