@inkeep/agents-core 0.0.0-dev-20260122014548 → 0.0.0-dev-20260122022943
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.js +1 -1
- package/dist/client-exports.d.ts +2 -3
- package/dist/data-access/manage/agents.d.ts +41 -41
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +8 -8
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +36 -36
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +36 -36
- package/dist/data-access/runtime/apiKeys.d.ts +20 -20
- package/dist/data-access/runtime/conversations.d.ts +31 -31
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +7 -7
- package/dist/db/manage/manage-schema.d.ts +375 -375
- package/dist/db/runtime/runtime-schema.d.ts +181 -181
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/schemas.d.ts +251 -251
- package/dist/validation/schemas.js +1 -1
- 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_orm20 from "drizzle-orm";
|
|
3
|
+
import * as drizzle_orm_pg_core1302 from "drizzle-orm/pg-core";
|
|
4
4
|
|
|
5
5
|
//#region src/db/manage/manage-schema.d.ts
|
|
6
6
|
declare namespace manage_schema_d_exports {
|
|
7
7
|
export { agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
|
|
8
8
|
}
|
|
9
|
-
declare const projects:
|
|
9
|
+
declare const projects: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
10
10
|
name: "projects";
|
|
11
11
|
schema: undefined;
|
|
12
12
|
columns: {
|
|
13
|
-
createdAt:
|
|
13
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
14
14
|
name: "created_at";
|
|
15
15
|
tableName: "projects";
|
|
16
16
|
dataType: "string";
|
|
@@ -27,7 +27,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
27
27
|
identity: undefined;
|
|
28
28
|
generated: undefined;
|
|
29
29
|
}, {}, {}>;
|
|
30
|
-
updatedAt:
|
|
30
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
31
31
|
name: "updated_at";
|
|
32
32
|
tableName: "projects";
|
|
33
33
|
dataType: "string";
|
|
@@ -44,7 +44,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
44
44
|
identity: undefined;
|
|
45
45
|
generated: undefined;
|
|
46
46
|
}, {}, {}>;
|
|
47
|
-
models:
|
|
47
|
+
models: drizzle_orm_pg_core1302.PgColumn<{
|
|
48
48
|
name: "models";
|
|
49
49
|
tableName: "projects";
|
|
50
50
|
dataType: "json";
|
|
@@ -89,7 +89,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
89
89
|
} | undefined;
|
|
90
90
|
};
|
|
91
91
|
}>;
|
|
92
|
-
stopWhen:
|
|
92
|
+
stopWhen: drizzle_orm_pg_core1302.PgColumn<{
|
|
93
93
|
name: "stop_when";
|
|
94
94
|
tableName: "projects";
|
|
95
95
|
dataType: "json";
|
|
@@ -114,7 +114,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
114
114
|
stepCountIs?: number | undefined;
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
|
-
name:
|
|
117
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
118
118
|
name: "name";
|
|
119
119
|
tableName: "projects";
|
|
120
120
|
dataType: "string";
|
|
@@ -133,7 +133,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
133
133
|
}, {}, {
|
|
134
134
|
length: 256;
|
|
135
135
|
}>;
|
|
136
|
-
description:
|
|
136
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
137
137
|
name: "description";
|
|
138
138
|
tableName: "projects";
|
|
139
139
|
dataType: "string";
|
|
@@ -150,7 +150,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
150
150
|
identity: undefined;
|
|
151
151
|
generated: undefined;
|
|
152
152
|
}, {}, {}>;
|
|
153
|
-
tenantId:
|
|
153
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
154
154
|
name: "tenant_id";
|
|
155
155
|
tableName: "projects";
|
|
156
156
|
dataType: "string";
|
|
@@ -169,7 +169,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
169
169
|
}, {}, {
|
|
170
170
|
length: 256;
|
|
171
171
|
}>;
|
|
172
|
-
id:
|
|
172
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
173
173
|
name: "id";
|
|
174
174
|
tableName: "projects";
|
|
175
175
|
dataType: "string";
|
|
@@ -191,11 +191,11 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
191
191
|
};
|
|
192
192
|
dialect: "pg";
|
|
193
193
|
}>;
|
|
194
|
-
declare const agents:
|
|
194
|
+
declare const agents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
195
195
|
name: "agent";
|
|
196
196
|
schema: undefined;
|
|
197
197
|
columns: {
|
|
198
|
-
createdAt:
|
|
198
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
199
199
|
name: "created_at";
|
|
200
200
|
tableName: "agent";
|
|
201
201
|
dataType: "string";
|
|
@@ -212,7 +212,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
212
212
|
identity: undefined;
|
|
213
213
|
generated: undefined;
|
|
214
214
|
}, {}, {}>;
|
|
215
|
-
updatedAt:
|
|
215
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
216
216
|
name: "updated_at";
|
|
217
217
|
tableName: "agent";
|
|
218
218
|
dataType: "string";
|
|
@@ -229,7 +229,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
229
229
|
identity: undefined;
|
|
230
230
|
generated: undefined;
|
|
231
231
|
}, {}, {}>;
|
|
232
|
-
name:
|
|
232
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
233
233
|
name: "name";
|
|
234
234
|
tableName: "agent";
|
|
235
235
|
dataType: "string";
|
|
@@ -248,7 +248,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
248
248
|
}, {}, {
|
|
249
249
|
length: 256;
|
|
250
250
|
}>;
|
|
251
|
-
description:
|
|
251
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
252
252
|
name: "description";
|
|
253
253
|
tableName: "agent";
|
|
254
254
|
dataType: "string";
|
|
@@ -265,7 +265,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
265
265
|
identity: undefined;
|
|
266
266
|
generated: undefined;
|
|
267
267
|
}, {}, {}>;
|
|
268
|
-
defaultSubAgentId:
|
|
268
|
+
defaultSubAgentId: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
284
284
|
}, {}, {
|
|
285
285
|
length: 256;
|
|
286
286
|
}>;
|
|
287
|
-
contextConfigId:
|
|
287
|
+
contextConfigId: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
303
303
|
}, {}, {
|
|
304
304
|
length: 256;
|
|
305
305
|
}>;
|
|
306
|
-
models:
|
|
306
|
+
models: drizzle_orm_pg_core1302.PgColumn<{
|
|
307
307
|
name: "models";
|
|
308
308
|
tableName: "agent";
|
|
309
309
|
dataType: "json";
|
|
@@ -348,7 +348,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
348
348
|
} | undefined;
|
|
349
349
|
};
|
|
350
350
|
}>;
|
|
351
|
-
statusUpdates:
|
|
351
|
+
statusUpdates: drizzle_orm_pg_core1302.PgColumn<{
|
|
352
352
|
name: "status_updates";
|
|
353
353
|
tableName: "agent";
|
|
354
354
|
dataType: "json";
|
|
@@ -395,7 +395,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
395
395
|
}[] | undefined;
|
|
396
396
|
};
|
|
397
397
|
}>;
|
|
398
|
-
prompt:
|
|
398
|
+
prompt: drizzle_orm_pg_core1302.PgColumn<{
|
|
399
399
|
name: "prompt";
|
|
400
400
|
tableName: "agent";
|
|
401
401
|
dataType: "string";
|
|
@@ -412,7 +412,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
412
412
|
identity: undefined;
|
|
413
413
|
generated: undefined;
|
|
414
414
|
}, {}, {}>;
|
|
415
|
-
stopWhen:
|
|
415
|
+
stopWhen: drizzle_orm_pg_core1302.PgColumn<{
|
|
416
416
|
name: "stop_when";
|
|
417
417
|
tableName: "agent";
|
|
418
418
|
dataType: "json";
|
|
@@ -435,7 +435,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
435
435
|
transferCountIs?: number | undefined;
|
|
436
436
|
};
|
|
437
437
|
}>;
|
|
438
|
-
projectId:
|
|
438
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
439
439
|
name: "project_id";
|
|
440
440
|
tableName: "agent";
|
|
441
441
|
dataType: "string";
|
|
@@ -454,7 +454,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
454
454
|
}, {}, {
|
|
455
455
|
length: 256;
|
|
456
456
|
}>;
|
|
457
|
-
tenantId:
|
|
457
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
458
458
|
name: "tenant_id";
|
|
459
459
|
tableName: "agent";
|
|
460
460
|
dataType: "string";
|
|
@@ -473,7 +473,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
473
473
|
}, {}, {
|
|
474
474
|
length: 256;
|
|
475
475
|
}>;
|
|
476
|
-
id:
|
|
476
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
477
477
|
name: "id";
|
|
478
478
|
tableName: "agent";
|
|
479
479
|
dataType: "string";
|
|
@@ -495,11 +495,11 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
495
495
|
};
|
|
496
496
|
dialect: "pg";
|
|
497
497
|
}>;
|
|
498
|
-
declare const contextConfigs:
|
|
498
|
+
declare const contextConfigs: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
499
499
|
name: "context_configs";
|
|
500
500
|
schema: undefined;
|
|
501
501
|
columns: {
|
|
502
|
-
createdAt:
|
|
502
|
+
createdAt: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
516
516
|
identity: undefined;
|
|
517
517
|
generated: undefined;
|
|
518
518
|
}, {}, {}>;
|
|
519
|
-
updatedAt:
|
|
519
|
+
updatedAt: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
533
533
|
identity: undefined;
|
|
534
534
|
generated: undefined;
|
|
535
535
|
}, {}, {}>;
|
|
536
|
-
headersSchema:
|
|
536
|
+
headersSchema: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
552
552
|
}, {}, {
|
|
553
553
|
$type: unknown;
|
|
554
554
|
}>;
|
|
555
|
-
contextVariables:
|
|
555
|
+
contextVariables: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
571
571
|
}, {}, {
|
|
572
572
|
$type: Record<string, ContextFetchDefinition>;
|
|
573
573
|
}>;
|
|
574
|
-
agentId:
|
|
574
|
+
agentId: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
590
590
|
}, {}, {
|
|
591
591
|
length: 256;
|
|
592
592
|
}>;
|
|
593
|
-
projectId:
|
|
593
|
+
projectId: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
609
609
|
}, {}, {
|
|
610
610
|
length: 256;
|
|
611
611
|
}>;
|
|
612
|
-
tenantId:
|
|
612
|
+
tenantId: drizzle_orm_pg_core1302.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_core1458.PgTableWithColumns<{
|
|
|
628
628
|
}, {}, {
|
|
629
629
|
length: 256;
|
|
630
630
|
}>;
|
|
631
|
-
id:
|
|
631
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
632
632
|
name: "id";
|
|
633
633
|
tableName: "context_configs";
|
|
634
634
|
dataType: "string";
|
|
@@ -650,11 +650,11 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
650
650
|
};
|
|
651
651
|
dialect: "pg";
|
|
652
652
|
}>;
|
|
653
|
-
declare const triggers:
|
|
653
|
+
declare const triggers: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
654
654
|
name: "triggers";
|
|
655
655
|
schema: undefined;
|
|
656
656
|
columns: {
|
|
657
|
-
createdAt:
|
|
657
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
658
658
|
name: "created_at";
|
|
659
659
|
tableName: "triggers";
|
|
660
660
|
dataType: "string";
|
|
@@ -671,7 +671,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
671
671
|
identity: undefined;
|
|
672
672
|
generated: undefined;
|
|
673
673
|
}, {}, {}>;
|
|
674
|
-
updatedAt:
|
|
674
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
675
675
|
name: "updated_at";
|
|
676
676
|
tableName: "triggers";
|
|
677
677
|
dataType: "string";
|
|
@@ -688,7 +688,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
688
688
|
identity: undefined;
|
|
689
689
|
generated: undefined;
|
|
690
690
|
}, {}, {}>;
|
|
691
|
-
enabled:
|
|
691
|
+
enabled: drizzle_orm_pg_core1302.PgColumn<{
|
|
692
692
|
name: "enabled";
|
|
693
693
|
tableName: "triggers";
|
|
694
694
|
dataType: "boolean";
|
|
@@ -705,7 +705,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
705
705
|
identity: undefined;
|
|
706
706
|
generated: undefined;
|
|
707
707
|
}, {}, {}>;
|
|
708
|
-
inputSchema:
|
|
708
|
+
inputSchema: drizzle_orm_pg_core1302.PgColumn<{
|
|
709
709
|
name: "input_schema";
|
|
710
710
|
tableName: "triggers";
|
|
711
711
|
dataType: "json";
|
|
@@ -724,7 +724,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
724
724
|
}, {}, {
|
|
725
725
|
$type: Record<string, unknown>;
|
|
726
726
|
}>;
|
|
727
|
-
outputTransform:
|
|
727
|
+
outputTransform: drizzle_orm_pg_core1302.PgColumn<{
|
|
728
728
|
name: "output_transform";
|
|
729
729
|
tableName: "triggers";
|
|
730
730
|
dataType: "json";
|
|
@@ -749,7 +749,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
749
749
|
objectTransformation?: Record<string, string>;
|
|
750
750
|
};
|
|
751
751
|
}>;
|
|
752
|
-
messageTemplate:
|
|
752
|
+
messageTemplate: drizzle_orm_pg_core1302.PgColumn<{
|
|
753
753
|
name: "message_template";
|
|
754
754
|
tableName: "triggers";
|
|
755
755
|
dataType: "string";
|
|
@@ -766,7 +766,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
766
766
|
identity: undefined;
|
|
767
767
|
generated: undefined;
|
|
768
768
|
}, {}, {}>;
|
|
769
|
-
authentication:
|
|
769
|
+
authentication: drizzle_orm_pg_core1302.PgColumn<{
|
|
770
770
|
name: "authentication";
|
|
771
771
|
tableName: "triggers";
|
|
772
772
|
dataType: "json";
|
|
@@ -785,7 +785,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
785
785
|
}, {}, {
|
|
786
786
|
$type: unknown;
|
|
787
787
|
}>;
|
|
788
|
-
signingSecret:
|
|
788
|
+
signingSecret: drizzle_orm_pg_core1302.PgColumn<{
|
|
789
789
|
name: "signing_secret";
|
|
790
790
|
tableName: "triggers";
|
|
791
791
|
dataType: "string";
|
|
@@ -802,7 +802,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
802
802
|
identity: undefined;
|
|
803
803
|
generated: undefined;
|
|
804
804
|
}, {}, {}>;
|
|
805
|
-
name:
|
|
805
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
806
806
|
name: "name";
|
|
807
807
|
tableName: "triggers";
|
|
808
808
|
dataType: "string";
|
|
@@ -821,7 +821,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
821
821
|
}, {}, {
|
|
822
822
|
length: 256;
|
|
823
823
|
}>;
|
|
824
|
-
description:
|
|
824
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
825
825
|
name: "description";
|
|
826
826
|
tableName: "triggers";
|
|
827
827
|
dataType: "string";
|
|
@@ -838,7 +838,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
838
838
|
identity: undefined;
|
|
839
839
|
generated: undefined;
|
|
840
840
|
}, {}, {}>;
|
|
841
|
-
agentId:
|
|
841
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
842
842
|
name: "agent_id";
|
|
843
843
|
tableName: "triggers";
|
|
844
844
|
dataType: "string";
|
|
@@ -857,7 +857,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
857
857
|
}, {}, {
|
|
858
858
|
length: 256;
|
|
859
859
|
}>;
|
|
860
|
-
projectId:
|
|
860
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
861
861
|
name: "project_id";
|
|
862
862
|
tableName: "triggers";
|
|
863
863
|
dataType: "string";
|
|
@@ -876,7 +876,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
876
876
|
}, {}, {
|
|
877
877
|
length: 256;
|
|
878
878
|
}>;
|
|
879
|
-
tenantId:
|
|
879
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
880
880
|
name: "tenant_id";
|
|
881
881
|
tableName: "triggers";
|
|
882
882
|
dataType: "string";
|
|
@@ -895,7 +895,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
895
895
|
}, {}, {
|
|
896
896
|
length: 256;
|
|
897
897
|
}>;
|
|
898
|
-
id:
|
|
898
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
899
899
|
name: "id";
|
|
900
900
|
tableName: "triggers";
|
|
901
901
|
dataType: "string";
|
|
@@ -917,11 +917,11 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
917
917
|
};
|
|
918
918
|
dialect: "pg";
|
|
919
919
|
}>;
|
|
920
|
-
declare const subAgents:
|
|
920
|
+
declare const subAgents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
921
921
|
name: "sub_agents";
|
|
922
922
|
schema: undefined;
|
|
923
923
|
columns: {
|
|
924
|
-
createdAt:
|
|
924
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
925
925
|
name: "created_at";
|
|
926
926
|
tableName: "sub_agents";
|
|
927
927
|
dataType: "string";
|
|
@@ -938,7 +938,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
938
938
|
identity: undefined;
|
|
939
939
|
generated: undefined;
|
|
940
940
|
}, {}, {}>;
|
|
941
|
-
updatedAt:
|
|
941
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
942
942
|
name: "updated_at";
|
|
943
943
|
tableName: "sub_agents";
|
|
944
944
|
dataType: "string";
|
|
@@ -955,7 +955,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
955
955
|
identity: undefined;
|
|
956
956
|
generated: undefined;
|
|
957
957
|
}, {}, {}>;
|
|
958
|
-
prompt:
|
|
958
|
+
prompt: drizzle_orm_pg_core1302.PgColumn<{
|
|
959
959
|
name: "prompt";
|
|
960
960
|
tableName: "sub_agents";
|
|
961
961
|
dataType: "string";
|
|
@@ -972,7 +972,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
972
972
|
identity: undefined;
|
|
973
973
|
generated: undefined;
|
|
974
974
|
}, {}, {}>;
|
|
975
|
-
conversationHistoryConfig:
|
|
975
|
+
conversationHistoryConfig: drizzle_orm_pg_core1302.PgColumn<{
|
|
976
976
|
name: "conversation_history_config";
|
|
977
977
|
tableName: "sub_agents";
|
|
978
978
|
dataType: "json";
|
|
@@ -991,7 +991,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
991
991
|
}, {}, {
|
|
992
992
|
$type: ConversationHistoryConfig;
|
|
993
993
|
}>;
|
|
994
|
-
models:
|
|
994
|
+
models: drizzle_orm_pg_core1302.PgColumn<{
|
|
995
995
|
name: "models";
|
|
996
996
|
tableName: "sub_agents";
|
|
997
997
|
dataType: "json";
|
|
@@ -1036,7 +1036,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1036
1036
|
} | undefined;
|
|
1037
1037
|
};
|
|
1038
1038
|
}>;
|
|
1039
|
-
stopWhen:
|
|
1039
|
+
stopWhen: drizzle_orm_pg_core1302.PgColumn<{
|
|
1040
1040
|
name: "stop_when";
|
|
1041
1041
|
tableName: "sub_agents";
|
|
1042
1042
|
dataType: "json";
|
|
@@ -1059,7 +1059,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1059
1059
|
stepCountIs?: number | undefined;
|
|
1060
1060
|
};
|
|
1061
1061
|
}>;
|
|
1062
|
-
name:
|
|
1062
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
1063
1063
|
name: "name";
|
|
1064
1064
|
tableName: "sub_agents";
|
|
1065
1065
|
dataType: "string";
|
|
@@ -1078,7 +1078,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1078
1078
|
}, {}, {
|
|
1079
1079
|
length: 256;
|
|
1080
1080
|
}>;
|
|
1081
|
-
description:
|
|
1081
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
1082
1082
|
name: "description";
|
|
1083
1083
|
tableName: "sub_agents";
|
|
1084
1084
|
dataType: "string";
|
|
@@ -1095,7 +1095,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1095
1095
|
identity: undefined;
|
|
1096
1096
|
generated: undefined;
|
|
1097
1097
|
}, {}, {}>;
|
|
1098
|
-
agentId:
|
|
1098
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1099
1099
|
name: "agent_id";
|
|
1100
1100
|
tableName: "sub_agents";
|
|
1101
1101
|
dataType: "string";
|
|
@@ -1114,7 +1114,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1114
1114
|
}, {}, {
|
|
1115
1115
|
length: 256;
|
|
1116
1116
|
}>;
|
|
1117
|
-
projectId:
|
|
1117
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1118
1118
|
name: "project_id";
|
|
1119
1119
|
tableName: "sub_agents";
|
|
1120
1120
|
dataType: "string";
|
|
@@ -1133,7 +1133,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1133
1133
|
}, {}, {
|
|
1134
1134
|
length: 256;
|
|
1135
1135
|
}>;
|
|
1136
|
-
tenantId:
|
|
1136
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1137
1137
|
name: "tenant_id";
|
|
1138
1138
|
tableName: "sub_agents";
|
|
1139
1139
|
dataType: "string";
|
|
@@ -1152,7 +1152,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1152
1152
|
}, {}, {
|
|
1153
1153
|
length: 256;
|
|
1154
1154
|
}>;
|
|
1155
|
-
id:
|
|
1155
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1156
1156
|
name: "id";
|
|
1157
1157
|
tableName: "sub_agents";
|
|
1158
1158
|
dataType: "string";
|
|
@@ -1174,11 +1174,11 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1174
1174
|
};
|
|
1175
1175
|
dialect: "pg";
|
|
1176
1176
|
}>;
|
|
1177
|
-
declare const subAgentRelations:
|
|
1177
|
+
declare const subAgentRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
1178
1178
|
name: "sub_agent_relations";
|
|
1179
1179
|
schema: undefined;
|
|
1180
1180
|
columns: {
|
|
1181
|
-
createdAt:
|
|
1181
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1182
1182
|
name: "created_at";
|
|
1183
1183
|
tableName: "sub_agent_relations";
|
|
1184
1184
|
dataType: "string";
|
|
@@ -1195,7 +1195,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1195
1195
|
identity: undefined;
|
|
1196
1196
|
generated: undefined;
|
|
1197
1197
|
}, {}, {}>;
|
|
1198
|
-
updatedAt:
|
|
1198
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1199
1199
|
name: "updated_at";
|
|
1200
1200
|
tableName: "sub_agent_relations";
|
|
1201
1201
|
dataType: "string";
|
|
@@ -1212,7 +1212,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1212
1212
|
identity: undefined;
|
|
1213
1213
|
generated: undefined;
|
|
1214
1214
|
}, {}, {}>;
|
|
1215
|
-
sourceSubAgentId:
|
|
1215
|
+
sourceSubAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1216
1216
|
name: "source_sub_agent_id";
|
|
1217
1217
|
tableName: "sub_agent_relations";
|
|
1218
1218
|
dataType: "string";
|
|
@@ -1231,7 +1231,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1231
1231
|
}, {}, {
|
|
1232
1232
|
length: 256;
|
|
1233
1233
|
}>;
|
|
1234
|
-
targetSubAgentId:
|
|
1234
|
+
targetSubAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1235
1235
|
name: "target_sub_agent_id";
|
|
1236
1236
|
tableName: "sub_agent_relations";
|
|
1237
1237
|
dataType: "string";
|
|
@@ -1250,7 +1250,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1250
1250
|
}, {}, {
|
|
1251
1251
|
length: 256;
|
|
1252
1252
|
}>;
|
|
1253
|
-
relationType:
|
|
1253
|
+
relationType: drizzle_orm_pg_core1302.PgColumn<{
|
|
1254
1254
|
name: "relation_type";
|
|
1255
1255
|
tableName: "sub_agent_relations";
|
|
1256
1256
|
dataType: "string";
|
|
@@ -1269,7 +1269,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1269
1269
|
}, {}, {
|
|
1270
1270
|
length: 256;
|
|
1271
1271
|
}>;
|
|
1272
|
-
agentId:
|
|
1272
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1273
1273
|
name: "agent_id";
|
|
1274
1274
|
tableName: "sub_agent_relations";
|
|
1275
1275
|
dataType: "string";
|
|
@@ -1288,7 +1288,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1288
1288
|
}, {}, {
|
|
1289
1289
|
length: 256;
|
|
1290
1290
|
}>;
|
|
1291
|
-
projectId:
|
|
1291
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1292
1292
|
name: "project_id";
|
|
1293
1293
|
tableName: "sub_agent_relations";
|
|
1294
1294
|
dataType: "string";
|
|
@@ -1307,7 +1307,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1307
1307
|
}, {}, {
|
|
1308
1308
|
length: 256;
|
|
1309
1309
|
}>;
|
|
1310
|
-
tenantId:
|
|
1310
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1311
1311
|
name: "tenant_id";
|
|
1312
1312
|
tableName: "sub_agent_relations";
|
|
1313
1313
|
dataType: "string";
|
|
@@ -1326,7 +1326,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1326
1326
|
}, {}, {
|
|
1327
1327
|
length: 256;
|
|
1328
1328
|
}>;
|
|
1329
|
-
id:
|
|
1329
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1330
1330
|
name: "id";
|
|
1331
1331
|
tableName: "sub_agent_relations";
|
|
1332
1332
|
dataType: "string";
|
|
@@ -1348,11 +1348,11 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1348
1348
|
};
|
|
1349
1349
|
dialect: "pg";
|
|
1350
1350
|
}>;
|
|
1351
|
-
declare const externalAgents:
|
|
1351
|
+
declare const externalAgents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
1352
1352
|
name: "external_agents";
|
|
1353
1353
|
schema: undefined;
|
|
1354
1354
|
columns: {
|
|
1355
|
-
createdAt:
|
|
1355
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1356
1356
|
name: "created_at";
|
|
1357
1357
|
tableName: "external_agents";
|
|
1358
1358
|
dataType: "string";
|
|
@@ -1369,7 +1369,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1369
1369
|
identity: undefined;
|
|
1370
1370
|
generated: undefined;
|
|
1371
1371
|
}, {}, {}>;
|
|
1372
|
-
updatedAt:
|
|
1372
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1373
1373
|
name: "updated_at";
|
|
1374
1374
|
tableName: "external_agents";
|
|
1375
1375
|
dataType: "string";
|
|
@@ -1386,7 +1386,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1386
1386
|
identity: undefined;
|
|
1387
1387
|
generated: undefined;
|
|
1388
1388
|
}, {}, {}>;
|
|
1389
|
-
baseUrl:
|
|
1389
|
+
baseUrl: drizzle_orm_pg_core1302.PgColumn<{
|
|
1390
1390
|
name: "base_url";
|
|
1391
1391
|
tableName: "external_agents";
|
|
1392
1392
|
dataType: "string";
|
|
@@ -1403,7 +1403,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1403
1403
|
identity: undefined;
|
|
1404
1404
|
generated: undefined;
|
|
1405
1405
|
}, {}, {}>;
|
|
1406
|
-
credentialReferenceId:
|
|
1406
|
+
credentialReferenceId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1407
1407
|
name: "credential_reference_id";
|
|
1408
1408
|
tableName: "external_agents";
|
|
1409
1409
|
dataType: "string";
|
|
@@ -1422,7 +1422,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1422
1422
|
}, {}, {
|
|
1423
1423
|
length: 256;
|
|
1424
1424
|
}>;
|
|
1425
|
-
name:
|
|
1425
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
1426
1426
|
name: "name";
|
|
1427
1427
|
tableName: "external_agents";
|
|
1428
1428
|
dataType: "string";
|
|
@@ -1441,7 +1441,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1441
1441
|
}, {}, {
|
|
1442
1442
|
length: 256;
|
|
1443
1443
|
}>;
|
|
1444
|
-
description:
|
|
1444
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
1445
1445
|
name: "description";
|
|
1446
1446
|
tableName: "external_agents";
|
|
1447
1447
|
dataType: "string";
|
|
@@ -1458,7 +1458,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1458
1458
|
identity: undefined;
|
|
1459
1459
|
generated: undefined;
|
|
1460
1460
|
}, {}, {}>;
|
|
1461
|
-
projectId:
|
|
1461
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1462
1462
|
name: "project_id";
|
|
1463
1463
|
tableName: "external_agents";
|
|
1464
1464
|
dataType: "string";
|
|
@@ -1477,7 +1477,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1477
1477
|
}, {}, {
|
|
1478
1478
|
length: 256;
|
|
1479
1479
|
}>;
|
|
1480
|
-
tenantId:
|
|
1480
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1481
1481
|
name: "tenant_id";
|
|
1482
1482
|
tableName: "external_agents";
|
|
1483
1483
|
dataType: "string";
|
|
@@ -1496,7 +1496,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1496
1496
|
}, {}, {
|
|
1497
1497
|
length: 256;
|
|
1498
1498
|
}>;
|
|
1499
|
-
id:
|
|
1499
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1500
1500
|
name: "id";
|
|
1501
1501
|
tableName: "external_agents";
|
|
1502
1502
|
dataType: "string";
|
|
@@ -1518,11 +1518,11 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1518
1518
|
};
|
|
1519
1519
|
dialect: "pg";
|
|
1520
1520
|
}>;
|
|
1521
|
-
declare const dataComponents:
|
|
1521
|
+
declare const dataComponents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
1522
1522
|
name: "data_components";
|
|
1523
1523
|
schema: undefined;
|
|
1524
1524
|
columns: {
|
|
1525
|
-
createdAt:
|
|
1525
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1526
1526
|
name: "created_at";
|
|
1527
1527
|
tableName: "data_components";
|
|
1528
1528
|
dataType: "string";
|
|
@@ -1539,7 +1539,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1539
1539
|
identity: undefined;
|
|
1540
1540
|
generated: undefined;
|
|
1541
1541
|
}, {}, {}>;
|
|
1542
|
-
updatedAt:
|
|
1542
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1543
1543
|
name: "updated_at";
|
|
1544
1544
|
tableName: "data_components";
|
|
1545
1545
|
dataType: "string";
|
|
@@ -1556,7 +1556,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1556
1556
|
identity: undefined;
|
|
1557
1557
|
generated: undefined;
|
|
1558
1558
|
}, {}, {}>;
|
|
1559
|
-
props:
|
|
1559
|
+
props: drizzle_orm_pg_core1302.PgColumn<{
|
|
1560
1560
|
name: "props";
|
|
1561
1561
|
tableName: "data_components";
|
|
1562
1562
|
dataType: "json";
|
|
@@ -1575,7 +1575,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1575
1575
|
}, {}, {
|
|
1576
1576
|
$type: Record<string, unknown>;
|
|
1577
1577
|
}>;
|
|
1578
|
-
render:
|
|
1578
|
+
render: drizzle_orm_pg_core1302.PgColumn<{
|
|
1579
1579
|
name: "render";
|
|
1580
1580
|
tableName: "data_components";
|
|
1581
1581
|
dataType: "json";
|
|
@@ -1600,7 +1600,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1600
1600
|
mockData: Record<string, unknown>;
|
|
1601
1601
|
};
|
|
1602
1602
|
}>;
|
|
1603
|
-
name:
|
|
1603
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
1604
1604
|
name: "name";
|
|
1605
1605
|
tableName: "data_components";
|
|
1606
1606
|
dataType: "string";
|
|
@@ -1619,7 +1619,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1619
1619
|
}, {}, {
|
|
1620
1620
|
length: 256;
|
|
1621
1621
|
}>;
|
|
1622
|
-
description:
|
|
1622
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
1623
1623
|
name: "description";
|
|
1624
1624
|
tableName: "data_components";
|
|
1625
1625
|
dataType: "string";
|
|
@@ -1636,7 +1636,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1636
1636
|
identity: undefined;
|
|
1637
1637
|
generated: undefined;
|
|
1638
1638
|
}, {}, {}>;
|
|
1639
|
-
projectId:
|
|
1639
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1640
1640
|
name: "project_id";
|
|
1641
1641
|
tableName: "data_components";
|
|
1642
1642
|
dataType: "string";
|
|
@@ -1655,7 +1655,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1655
1655
|
}, {}, {
|
|
1656
1656
|
length: 256;
|
|
1657
1657
|
}>;
|
|
1658
|
-
tenantId:
|
|
1658
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1659
1659
|
name: "tenant_id";
|
|
1660
1660
|
tableName: "data_components";
|
|
1661
1661
|
dataType: "string";
|
|
@@ -1674,7 +1674,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1674
1674
|
}, {}, {
|
|
1675
1675
|
length: 256;
|
|
1676
1676
|
}>;
|
|
1677
|
-
id:
|
|
1677
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1678
1678
|
name: "id";
|
|
1679
1679
|
tableName: "data_components";
|
|
1680
1680
|
dataType: "string";
|
|
@@ -1696,11 +1696,11 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1696
1696
|
};
|
|
1697
1697
|
dialect: "pg";
|
|
1698
1698
|
}>;
|
|
1699
|
-
declare const subAgentDataComponents:
|
|
1699
|
+
declare const subAgentDataComponents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
1700
1700
|
name: "sub_agent_data_components";
|
|
1701
1701
|
schema: undefined;
|
|
1702
1702
|
columns: {
|
|
1703
|
-
dataComponentId:
|
|
1703
|
+
dataComponentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1704
1704
|
name: "data_component_id";
|
|
1705
1705
|
tableName: "sub_agent_data_components";
|
|
1706
1706
|
dataType: "string";
|
|
@@ -1719,7 +1719,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1719
1719
|
}, {}, {
|
|
1720
1720
|
length: 256;
|
|
1721
1721
|
}>;
|
|
1722
|
-
createdAt:
|
|
1722
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1723
1723
|
name: "created_at";
|
|
1724
1724
|
tableName: "sub_agent_data_components";
|
|
1725
1725
|
dataType: "string";
|
|
@@ -1736,7 +1736,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1736
1736
|
identity: undefined;
|
|
1737
1737
|
generated: undefined;
|
|
1738
1738
|
}, {}, {}>;
|
|
1739
|
-
subAgentId:
|
|
1739
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1740
1740
|
name: "sub_agent_id";
|
|
1741
1741
|
tableName: "sub_agent_data_components";
|
|
1742
1742
|
dataType: "string";
|
|
@@ -1755,7 +1755,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1755
1755
|
}, {}, {
|
|
1756
1756
|
length: 256;
|
|
1757
1757
|
}>;
|
|
1758
|
-
agentId:
|
|
1758
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1759
1759
|
name: "agent_id";
|
|
1760
1760
|
tableName: "sub_agent_data_components";
|
|
1761
1761
|
dataType: "string";
|
|
@@ -1774,7 +1774,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1774
1774
|
}, {}, {
|
|
1775
1775
|
length: 256;
|
|
1776
1776
|
}>;
|
|
1777
|
-
projectId:
|
|
1777
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1778
1778
|
name: "project_id";
|
|
1779
1779
|
tableName: "sub_agent_data_components";
|
|
1780
1780
|
dataType: "string";
|
|
@@ -1793,7 +1793,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1793
1793
|
}, {}, {
|
|
1794
1794
|
length: 256;
|
|
1795
1795
|
}>;
|
|
1796
|
-
tenantId:
|
|
1796
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1797
1797
|
name: "tenant_id";
|
|
1798
1798
|
tableName: "sub_agent_data_components";
|
|
1799
1799
|
dataType: "string";
|
|
@@ -1812,7 +1812,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1812
1812
|
}, {}, {
|
|
1813
1813
|
length: 256;
|
|
1814
1814
|
}>;
|
|
1815
|
-
id:
|
|
1815
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1816
1816
|
name: "id";
|
|
1817
1817
|
tableName: "sub_agent_data_components";
|
|
1818
1818
|
dataType: "string";
|
|
@@ -1834,11 +1834,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1834
1834
|
};
|
|
1835
1835
|
dialect: "pg";
|
|
1836
1836
|
}>;
|
|
1837
|
-
declare const artifactComponents:
|
|
1837
|
+
declare const artifactComponents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
1838
1838
|
name: "artifact_components";
|
|
1839
1839
|
schema: undefined;
|
|
1840
1840
|
columns: {
|
|
1841
|
-
createdAt:
|
|
1841
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1842
1842
|
name: "created_at";
|
|
1843
1843
|
tableName: "artifact_components";
|
|
1844
1844
|
dataType: "string";
|
|
@@ -1855,7 +1855,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1855
1855
|
identity: undefined;
|
|
1856
1856
|
generated: undefined;
|
|
1857
1857
|
}, {}, {}>;
|
|
1858
|
-
updatedAt:
|
|
1858
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
1859
1859
|
name: "updated_at";
|
|
1860
1860
|
tableName: "artifact_components";
|
|
1861
1861
|
dataType: "string";
|
|
@@ -1872,7 +1872,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1872
1872
|
identity: undefined;
|
|
1873
1873
|
generated: undefined;
|
|
1874
1874
|
}, {}, {}>;
|
|
1875
|
-
props:
|
|
1875
|
+
props: drizzle_orm_pg_core1302.PgColumn<{
|
|
1876
1876
|
name: "props";
|
|
1877
1877
|
tableName: "artifact_components";
|
|
1878
1878
|
dataType: "json";
|
|
@@ -1891,7 +1891,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1891
1891
|
}, {}, {
|
|
1892
1892
|
$type: Record<string, unknown>;
|
|
1893
1893
|
}>;
|
|
1894
|
-
render:
|
|
1894
|
+
render: drizzle_orm_pg_core1302.PgColumn<{
|
|
1895
1895
|
name: "render";
|
|
1896
1896
|
tableName: "artifact_components";
|
|
1897
1897
|
dataType: "json";
|
|
@@ -1916,7 +1916,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1916
1916
|
mockData: Record<string, unknown>;
|
|
1917
1917
|
};
|
|
1918
1918
|
}>;
|
|
1919
|
-
name:
|
|
1919
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
1920
1920
|
name: "name";
|
|
1921
1921
|
tableName: "artifact_components";
|
|
1922
1922
|
dataType: "string";
|
|
@@ -1935,7 +1935,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1935
1935
|
}, {}, {
|
|
1936
1936
|
length: 256;
|
|
1937
1937
|
}>;
|
|
1938
|
-
description:
|
|
1938
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
1939
1939
|
name: "description";
|
|
1940
1940
|
tableName: "artifact_components";
|
|
1941
1941
|
dataType: "string";
|
|
@@ -1952,7 +1952,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1952
1952
|
identity: undefined;
|
|
1953
1953
|
generated: undefined;
|
|
1954
1954
|
}, {}, {}>;
|
|
1955
|
-
projectId:
|
|
1955
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1956
1956
|
name: "project_id";
|
|
1957
1957
|
tableName: "artifact_components";
|
|
1958
1958
|
dataType: "string";
|
|
@@ -1971,7 +1971,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1971
1971
|
}, {}, {
|
|
1972
1972
|
length: 256;
|
|
1973
1973
|
}>;
|
|
1974
|
-
tenantId:
|
|
1974
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
1975
1975
|
name: "tenant_id";
|
|
1976
1976
|
tableName: "artifact_components";
|
|
1977
1977
|
dataType: "string";
|
|
@@ -1990,7 +1990,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1990
1990
|
}, {}, {
|
|
1991
1991
|
length: 256;
|
|
1992
1992
|
}>;
|
|
1993
|
-
id:
|
|
1993
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
1994
1994
|
name: "id";
|
|
1995
1995
|
tableName: "artifact_components";
|
|
1996
1996
|
dataType: "string";
|
|
@@ -2012,11 +2012,11 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2012
2012
|
};
|
|
2013
2013
|
dialect: "pg";
|
|
2014
2014
|
}>;
|
|
2015
|
-
declare const subAgentArtifactComponents:
|
|
2015
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2016
2016
|
name: "sub_agent_artifact_components";
|
|
2017
2017
|
schema: undefined;
|
|
2018
2018
|
columns: {
|
|
2019
|
-
artifactComponentId:
|
|
2019
|
+
artifactComponentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2020
2020
|
name: "artifact_component_id";
|
|
2021
2021
|
tableName: "sub_agent_artifact_components";
|
|
2022
2022
|
dataType: "string";
|
|
@@ -2035,7 +2035,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2035
2035
|
}, {}, {
|
|
2036
2036
|
length: 256;
|
|
2037
2037
|
}>;
|
|
2038
|
-
createdAt:
|
|
2038
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2039
2039
|
name: "created_at";
|
|
2040
2040
|
tableName: "sub_agent_artifact_components";
|
|
2041
2041
|
dataType: "string";
|
|
@@ -2052,7 +2052,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2052
2052
|
identity: undefined;
|
|
2053
2053
|
generated: undefined;
|
|
2054
2054
|
}, {}, {}>;
|
|
2055
|
-
subAgentId:
|
|
2055
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2056
2056
|
name: "sub_agent_id";
|
|
2057
2057
|
tableName: "sub_agent_artifact_components";
|
|
2058
2058
|
dataType: "string";
|
|
@@ -2071,7 +2071,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2071
2071
|
}, {}, {
|
|
2072
2072
|
length: 256;
|
|
2073
2073
|
}>;
|
|
2074
|
-
agentId:
|
|
2074
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2075
2075
|
name: "agent_id";
|
|
2076
2076
|
tableName: "sub_agent_artifact_components";
|
|
2077
2077
|
dataType: "string";
|
|
@@ -2090,7 +2090,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2090
2090
|
}, {}, {
|
|
2091
2091
|
length: 256;
|
|
2092
2092
|
}>;
|
|
2093
|
-
projectId:
|
|
2093
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2094
2094
|
name: "project_id";
|
|
2095
2095
|
tableName: "sub_agent_artifact_components";
|
|
2096
2096
|
dataType: "string";
|
|
@@ -2109,7 +2109,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2109
2109
|
}, {}, {
|
|
2110
2110
|
length: 256;
|
|
2111
2111
|
}>;
|
|
2112
|
-
tenantId:
|
|
2112
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2113
2113
|
name: "tenant_id";
|
|
2114
2114
|
tableName: "sub_agent_artifact_components";
|
|
2115
2115
|
dataType: "string";
|
|
@@ -2128,7 +2128,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2128
2128
|
}, {}, {
|
|
2129
2129
|
length: 256;
|
|
2130
2130
|
}>;
|
|
2131
|
-
id:
|
|
2131
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
2132
2132
|
name: "id";
|
|
2133
2133
|
tableName: "sub_agent_artifact_components";
|
|
2134
2134
|
dataType: "string";
|
|
@@ -2150,11 +2150,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2150
2150
|
};
|
|
2151
2151
|
dialect: "pg";
|
|
2152
2152
|
}>;
|
|
2153
|
-
declare const tools:
|
|
2153
|
+
declare const tools: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2154
2154
|
name: "tools";
|
|
2155
2155
|
schema: undefined;
|
|
2156
2156
|
columns: {
|
|
2157
|
-
createdAt:
|
|
2157
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2158
2158
|
name: "created_at";
|
|
2159
2159
|
tableName: "tools";
|
|
2160
2160
|
dataType: "string";
|
|
@@ -2171,7 +2171,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2171
2171
|
identity: undefined;
|
|
2172
2172
|
generated: undefined;
|
|
2173
2173
|
}, {}, {}>;
|
|
2174
|
-
updatedAt:
|
|
2174
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2175
2175
|
name: "updated_at";
|
|
2176
2176
|
tableName: "tools";
|
|
2177
2177
|
dataType: "string";
|
|
@@ -2188,7 +2188,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2188
2188
|
identity: undefined;
|
|
2189
2189
|
generated: undefined;
|
|
2190
2190
|
}, {}, {}>;
|
|
2191
|
-
name:
|
|
2191
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
2192
2192
|
name: "name";
|
|
2193
2193
|
tableName: "tools";
|
|
2194
2194
|
dataType: "string";
|
|
@@ -2207,7 +2207,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2207
2207
|
}, {}, {
|
|
2208
2208
|
length: 256;
|
|
2209
2209
|
}>;
|
|
2210
|
-
description:
|
|
2210
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
2211
2211
|
name: "description";
|
|
2212
2212
|
tableName: "tools";
|
|
2213
2213
|
dataType: "string";
|
|
@@ -2224,7 +2224,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2224
2224
|
identity: undefined;
|
|
2225
2225
|
generated: undefined;
|
|
2226
2226
|
}, {}, {}>;
|
|
2227
|
-
config:
|
|
2227
|
+
config: drizzle_orm_pg_core1302.PgColumn<{
|
|
2228
2228
|
name: "config";
|
|
2229
2229
|
tableName: "tools";
|
|
2230
2230
|
dataType: "json";
|
|
@@ -2249,7 +2249,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2249
2249
|
mcp: ToolMcpConfig;
|
|
2250
2250
|
};
|
|
2251
2251
|
}>;
|
|
2252
|
-
credentialReferenceId:
|
|
2252
|
+
credentialReferenceId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2253
2253
|
name: "credential_reference_id";
|
|
2254
2254
|
tableName: "tools";
|
|
2255
2255
|
dataType: "string";
|
|
@@ -2268,7 +2268,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2268
2268
|
}, {}, {
|
|
2269
2269
|
length: 256;
|
|
2270
2270
|
}>;
|
|
2271
|
-
credentialScope:
|
|
2271
|
+
credentialScope: drizzle_orm_pg_core1302.PgColumn<{
|
|
2272
2272
|
name: "credential_scope";
|
|
2273
2273
|
tableName: "tools";
|
|
2274
2274
|
dataType: "string";
|
|
@@ -2287,7 +2287,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2287
2287
|
}, {}, {
|
|
2288
2288
|
length: 50;
|
|
2289
2289
|
}>;
|
|
2290
|
-
headers:
|
|
2290
|
+
headers: drizzle_orm_pg_core1302.PgColumn<{
|
|
2291
2291
|
name: "headers";
|
|
2292
2292
|
tableName: "tools";
|
|
2293
2293
|
dataType: "json";
|
|
@@ -2306,7 +2306,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2306
2306
|
}, {}, {
|
|
2307
2307
|
$type: Record<string, string>;
|
|
2308
2308
|
}>;
|
|
2309
|
-
imageUrl:
|
|
2309
|
+
imageUrl: drizzle_orm_pg_core1302.PgColumn<{
|
|
2310
2310
|
name: "image_url";
|
|
2311
2311
|
tableName: "tools";
|
|
2312
2312
|
dataType: "string";
|
|
@@ -2323,7 +2323,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2323
2323
|
identity: undefined;
|
|
2324
2324
|
generated: undefined;
|
|
2325
2325
|
}, {}, {}>;
|
|
2326
|
-
capabilities:
|
|
2326
|
+
capabilities: drizzle_orm_pg_core1302.PgColumn<{
|
|
2327
2327
|
name: "capabilities";
|
|
2328
2328
|
tableName: "tools";
|
|
2329
2329
|
dataType: "json";
|
|
@@ -2342,7 +2342,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2342
2342
|
}, {}, {
|
|
2343
2343
|
$type: ToolServerCapabilities;
|
|
2344
2344
|
}>;
|
|
2345
|
-
lastError:
|
|
2345
|
+
lastError: drizzle_orm_pg_core1302.PgColumn<{
|
|
2346
2346
|
name: "last_error";
|
|
2347
2347
|
tableName: "tools";
|
|
2348
2348
|
dataType: "string";
|
|
@@ -2359,7 +2359,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2359
2359
|
identity: undefined;
|
|
2360
2360
|
generated: undefined;
|
|
2361
2361
|
}, {}, {}>;
|
|
2362
|
-
projectId:
|
|
2362
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2363
2363
|
name: "project_id";
|
|
2364
2364
|
tableName: "tools";
|
|
2365
2365
|
dataType: "string";
|
|
@@ -2378,7 +2378,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2378
2378
|
}, {}, {
|
|
2379
2379
|
length: 256;
|
|
2380
2380
|
}>;
|
|
2381
|
-
tenantId:
|
|
2381
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2382
2382
|
name: "tenant_id";
|
|
2383
2383
|
tableName: "tools";
|
|
2384
2384
|
dataType: "string";
|
|
@@ -2397,7 +2397,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2397
2397
|
}, {}, {
|
|
2398
2398
|
length: 256;
|
|
2399
2399
|
}>;
|
|
2400
|
-
id:
|
|
2400
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
2401
2401
|
name: "id";
|
|
2402
2402
|
tableName: "tools";
|
|
2403
2403
|
dataType: "string";
|
|
@@ -2419,11 +2419,11 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2419
2419
|
};
|
|
2420
2420
|
dialect: "pg";
|
|
2421
2421
|
}>;
|
|
2422
|
-
declare const functionTools:
|
|
2422
|
+
declare const functionTools: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2423
2423
|
name: "function_tools";
|
|
2424
2424
|
schema: undefined;
|
|
2425
2425
|
columns: {
|
|
2426
|
-
createdAt:
|
|
2426
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2427
2427
|
name: "created_at";
|
|
2428
2428
|
tableName: "function_tools";
|
|
2429
2429
|
dataType: "string";
|
|
@@ -2440,7 +2440,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2440
2440
|
identity: undefined;
|
|
2441
2441
|
generated: undefined;
|
|
2442
2442
|
}, {}, {}>;
|
|
2443
|
-
updatedAt:
|
|
2443
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2444
2444
|
name: "updated_at";
|
|
2445
2445
|
tableName: "function_tools";
|
|
2446
2446
|
dataType: "string";
|
|
@@ -2457,7 +2457,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2457
2457
|
identity: undefined;
|
|
2458
2458
|
generated: undefined;
|
|
2459
2459
|
}, {}, {}>;
|
|
2460
|
-
name:
|
|
2460
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
2461
2461
|
name: "name";
|
|
2462
2462
|
tableName: "function_tools";
|
|
2463
2463
|
dataType: "string";
|
|
@@ -2476,7 +2476,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2476
2476
|
}, {}, {
|
|
2477
2477
|
length: 256;
|
|
2478
2478
|
}>;
|
|
2479
|
-
description:
|
|
2479
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
2480
2480
|
name: "description";
|
|
2481
2481
|
tableName: "function_tools";
|
|
2482
2482
|
dataType: "string";
|
|
@@ -2493,7 +2493,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2493
2493
|
identity: undefined;
|
|
2494
2494
|
generated: undefined;
|
|
2495
2495
|
}, {}, {}>;
|
|
2496
|
-
functionId:
|
|
2496
|
+
functionId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2497
2497
|
name: "function_id";
|
|
2498
2498
|
tableName: "function_tools";
|
|
2499
2499
|
dataType: "string";
|
|
@@ -2512,7 +2512,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2512
2512
|
}, {}, {
|
|
2513
2513
|
length: 256;
|
|
2514
2514
|
}>;
|
|
2515
|
-
agentId:
|
|
2515
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2516
2516
|
name: "agent_id";
|
|
2517
2517
|
tableName: "function_tools";
|
|
2518
2518
|
dataType: "string";
|
|
@@ -2531,7 +2531,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2531
2531
|
}, {}, {
|
|
2532
2532
|
length: 256;
|
|
2533
2533
|
}>;
|
|
2534
|
-
projectId:
|
|
2534
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2535
2535
|
name: "project_id";
|
|
2536
2536
|
tableName: "function_tools";
|
|
2537
2537
|
dataType: "string";
|
|
@@ -2550,7 +2550,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2550
2550
|
}, {}, {
|
|
2551
2551
|
length: 256;
|
|
2552
2552
|
}>;
|
|
2553
|
-
tenantId:
|
|
2553
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2554
2554
|
name: "tenant_id";
|
|
2555
2555
|
tableName: "function_tools";
|
|
2556
2556
|
dataType: "string";
|
|
@@ -2569,7 +2569,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2569
2569
|
}, {}, {
|
|
2570
2570
|
length: 256;
|
|
2571
2571
|
}>;
|
|
2572
|
-
id:
|
|
2572
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
2573
2573
|
name: "id";
|
|
2574
2574
|
tableName: "function_tools";
|
|
2575
2575
|
dataType: "string";
|
|
@@ -2591,11 +2591,11 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2591
2591
|
};
|
|
2592
2592
|
dialect: "pg";
|
|
2593
2593
|
}>;
|
|
2594
|
-
declare const functions:
|
|
2594
|
+
declare const functions: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2595
2595
|
name: "functions";
|
|
2596
2596
|
schema: undefined;
|
|
2597
2597
|
columns: {
|
|
2598
|
-
createdAt:
|
|
2598
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2599
2599
|
name: "created_at";
|
|
2600
2600
|
tableName: "functions";
|
|
2601
2601
|
dataType: "string";
|
|
@@ -2612,7 +2612,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2612
2612
|
identity: undefined;
|
|
2613
2613
|
generated: undefined;
|
|
2614
2614
|
}, {}, {}>;
|
|
2615
|
-
updatedAt:
|
|
2615
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2616
2616
|
name: "updated_at";
|
|
2617
2617
|
tableName: "functions";
|
|
2618
2618
|
dataType: "string";
|
|
@@ -2629,7 +2629,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2629
2629
|
identity: undefined;
|
|
2630
2630
|
generated: undefined;
|
|
2631
2631
|
}, {}, {}>;
|
|
2632
|
-
inputSchema:
|
|
2632
|
+
inputSchema: drizzle_orm_pg_core1302.PgColumn<{
|
|
2633
2633
|
name: "input_schema";
|
|
2634
2634
|
tableName: "functions";
|
|
2635
2635
|
dataType: "json";
|
|
@@ -2648,7 +2648,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2648
2648
|
}, {}, {
|
|
2649
2649
|
$type: Record<string, unknown>;
|
|
2650
2650
|
}>;
|
|
2651
|
-
executeCode:
|
|
2651
|
+
executeCode: drizzle_orm_pg_core1302.PgColumn<{
|
|
2652
2652
|
name: "execute_code";
|
|
2653
2653
|
tableName: "functions";
|
|
2654
2654
|
dataType: "string";
|
|
@@ -2665,7 +2665,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2665
2665
|
identity: undefined;
|
|
2666
2666
|
generated: undefined;
|
|
2667
2667
|
}, {}, {}>;
|
|
2668
|
-
dependencies:
|
|
2668
|
+
dependencies: drizzle_orm_pg_core1302.PgColumn<{
|
|
2669
2669
|
name: "dependencies";
|
|
2670
2670
|
tableName: "functions";
|
|
2671
2671
|
dataType: "json";
|
|
@@ -2684,7 +2684,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2684
2684
|
}, {}, {
|
|
2685
2685
|
$type: Record<string, string>;
|
|
2686
2686
|
}>;
|
|
2687
|
-
projectId:
|
|
2687
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2688
2688
|
name: "project_id";
|
|
2689
2689
|
tableName: "functions";
|
|
2690
2690
|
dataType: "string";
|
|
@@ -2703,7 +2703,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2703
2703
|
}, {}, {
|
|
2704
2704
|
length: 256;
|
|
2705
2705
|
}>;
|
|
2706
|
-
tenantId:
|
|
2706
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2707
2707
|
name: "tenant_id";
|
|
2708
2708
|
tableName: "functions";
|
|
2709
2709
|
dataType: "string";
|
|
@@ -2722,7 +2722,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2722
2722
|
}, {}, {
|
|
2723
2723
|
length: 256;
|
|
2724
2724
|
}>;
|
|
2725
|
-
id:
|
|
2725
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
2726
2726
|
name: "id";
|
|
2727
2727
|
tableName: "functions";
|
|
2728
2728
|
dataType: "string";
|
|
@@ -2744,11 +2744,11 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2744
2744
|
};
|
|
2745
2745
|
dialect: "pg";
|
|
2746
2746
|
}>;
|
|
2747
|
-
declare const subAgentToolRelations:
|
|
2747
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2748
2748
|
name: "sub_agent_tool_relations";
|
|
2749
2749
|
schema: undefined;
|
|
2750
2750
|
columns: {
|
|
2751
|
-
createdAt:
|
|
2751
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2752
2752
|
name: "created_at";
|
|
2753
2753
|
tableName: "sub_agent_tool_relations";
|
|
2754
2754
|
dataType: "string";
|
|
@@ -2765,7 +2765,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2765
2765
|
identity: undefined;
|
|
2766
2766
|
generated: undefined;
|
|
2767
2767
|
}, {}, {}>;
|
|
2768
|
-
updatedAt:
|
|
2768
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2769
2769
|
name: "updated_at";
|
|
2770
2770
|
tableName: "sub_agent_tool_relations";
|
|
2771
2771
|
dataType: "string";
|
|
@@ -2782,7 +2782,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2782
2782
|
identity: undefined;
|
|
2783
2783
|
generated: undefined;
|
|
2784
2784
|
}, {}, {}>;
|
|
2785
|
-
toolId:
|
|
2785
|
+
toolId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2786
2786
|
name: "tool_id";
|
|
2787
2787
|
tableName: "sub_agent_tool_relations";
|
|
2788
2788
|
dataType: "string";
|
|
@@ -2801,7 +2801,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2801
2801
|
}, {}, {
|
|
2802
2802
|
length: 256;
|
|
2803
2803
|
}>;
|
|
2804
|
-
selectedTools:
|
|
2804
|
+
selectedTools: drizzle_orm_pg_core1302.PgColumn<{
|
|
2805
2805
|
name: "selected_tools";
|
|
2806
2806
|
tableName: "sub_agent_tool_relations";
|
|
2807
2807
|
dataType: "json";
|
|
@@ -2820,7 +2820,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2820
2820
|
}, {}, {
|
|
2821
2821
|
$type: string[] | null;
|
|
2822
2822
|
}>;
|
|
2823
|
-
headers:
|
|
2823
|
+
headers: drizzle_orm_pg_core1302.PgColumn<{
|
|
2824
2824
|
name: "headers";
|
|
2825
2825
|
tableName: "sub_agent_tool_relations";
|
|
2826
2826
|
dataType: "json";
|
|
@@ -2839,7 +2839,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2839
2839
|
}, {}, {
|
|
2840
2840
|
$type: Record<string, string> | null;
|
|
2841
2841
|
}>;
|
|
2842
|
-
toolPolicies:
|
|
2842
|
+
toolPolicies: drizzle_orm_pg_core1302.PgColumn<{
|
|
2843
2843
|
name: "tool_policies";
|
|
2844
2844
|
tableName: "sub_agent_tool_relations";
|
|
2845
2845
|
dataType: "json";
|
|
@@ -2862,7 +2862,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2862
2862
|
needsApproval?: boolean;
|
|
2863
2863
|
}> | null;
|
|
2864
2864
|
}>;
|
|
2865
|
-
subAgentId:
|
|
2865
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2866
2866
|
name: "sub_agent_id";
|
|
2867
2867
|
tableName: "sub_agent_tool_relations";
|
|
2868
2868
|
dataType: "string";
|
|
@@ -2881,7 +2881,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2881
2881
|
}, {}, {
|
|
2882
2882
|
length: 256;
|
|
2883
2883
|
}>;
|
|
2884
|
-
agentId:
|
|
2884
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2885
2885
|
name: "agent_id";
|
|
2886
2886
|
tableName: "sub_agent_tool_relations";
|
|
2887
2887
|
dataType: "string";
|
|
@@ -2900,7 +2900,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2900
2900
|
}, {}, {
|
|
2901
2901
|
length: 256;
|
|
2902
2902
|
}>;
|
|
2903
|
-
projectId:
|
|
2903
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2904
2904
|
name: "project_id";
|
|
2905
2905
|
tableName: "sub_agent_tool_relations";
|
|
2906
2906
|
dataType: "string";
|
|
@@ -2919,7 +2919,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2919
2919
|
}, {}, {
|
|
2920
2920
|
length: 256;
|
|
2921
2921
|
}>;
|
|
2922
|
-
tenantId:
|
|
2922
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
2923
2923
|
name: "tenant_id";
|
|
2924
2924
|
tableName: "sub_agent_tool_relations";
|
|
2925
2925
|
dataType: "string";
|
|
@@ -2938,7 +2938,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2938
2938
|
}, {}, {
|
|
2939
2939
|
length: 256;
|
|
2940
2940
|
}>;
|
|
2941
|
-
id:
|
|
2941
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
2942
2942
|
name: "id";
|
|
2943
2943
|
tableName: "sub_agent_tool_relations";
|
|
2944
2944
|
dataType: "string";
|
|
@@ -2960,11 +2960,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2960
2960
|
};
|
|
2961
2961
|
dialect: "pg";
|
|
2962
2962
|
}>;
|
|
2963
|
-
declare const subAgentExternalAgentRelations:
|
|
2963
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
2964
2964
|
name: "sub_agent_external_agent_relations";
|
|
2965
2965
|
schema: undefined;
|
|
2966
2966
|
columns: {
|
|
2967
|
-
createdAt:
|
|
2967
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2968
2968
|
name: "created_at";
|
|
2969
2969
|
tableName: "sub_agent_external_agent_relations";
|
|
2970
2970
|
dataType: "string";
|
|
@@ -2981,7 +2981,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
2981
2981
|
identity: undefined;
|
|
2982
2982
|
generated: undefined;
|
|
2983
2983
|
}, {}, {}>;
|
|
2984
|
-
updatedAt:
|
|
2984
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
2985
2985
|
name: "updated_at";
|
|
2986
2986
|
tableName: "sub_agent_external_agent_relations";
|
|
2987
2987
|
dataType: "string";
|
|
@@ -2998,7 +2998,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
2998
2998
|
identity: undefined;
|
|
2999
2999
|
generated: undefined;
|
|
3000
3000
|
}, {}, {}>;
|
|
3001
|
-
externalAgentId:
|
|
3001
|
+
externalAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3002
3002
|
name: "external_agent_id";
|
|
3003
3003
|
tableName: "sub_agent_external_agent_relations";
|
|
3004
3004
|
dataType: "string";
|
|
@@ -3017,7 +3017,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3017
3017
|
}, {}, {
|
|
3018
3018
|
length: 256;
|
|
3019
3019
|
}>;
|
|
3020
|
-
headers:
|
|
3020
|
+
headers: drizzle_orm_pg_core1302.PgColumn<{
|
|
3021
3021
|
name: "headers";
|
|
3022
3022
|
tableName: "sub_agent_external_agent_relations";
|
|
3023
3023
|
dataType: "json";
|
|
@@ -3036,7 +3036,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3036
3036
|
}, {}, {
|
|
3037
3037
|
$type: Record<string, string> | null;
|
|
3038
3038
|
}>;
|
|
3039
|
-
subAgentId:
|
|
3039
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3040
3040
|
name: "sub_agent_id";
|
|
3041
3041
|
tableName: "sub_agent_external_agent_relations";
|
|
3042
3042
|
dataType: "string";
|
|
@@ -3055,7 +3055,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3055
3055
|
}, {}, {
|
|
3056
3056
|
length: 256;
|
|
3057
3057
|
}>;
|
|
3058
|
-
agentId:
|
|
3058
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3059
3059
|
name: "agent_id";
|
|
3060
3060
|
tableName: "sub_agent_external_agent_relations";
|
|
3061
3061
|
dataType: "string";
|
|
@@ -3074,7 +3074,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3074
3074
|
}, {}, {
|
|
3075
3075
|
length: 256;
|
|
3076
3076
|
}>;
|
|
3077
|
-
projectId:
|
|
3077
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3078
3078
|
name: "project_id";
|
|
3079
3079
|
tableName: "sub_agent_external_agent_relations";
|
|
3080
3080
|
dataType: "string";
|
|
@@ -3093,7 +3093,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3093
3093
|
}, {}, {
|
|
3094
3094
|
length: 256;
|
|
3095
3095
|
}>;
|
|
3096
|
-
tenantId:
|
|
3096
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3097
3097
|
name: "tenant_id";
|
|
3098
3098
|
tableName: "sub_agent_external_agent_relations";
|
|
3099
3099
|
dataType: "string";
|
|
@@ -3112,7 +3112,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3112
3112
|
}, {}, {
|
|
3113
3113
|
length: 256;
|
|
3114
3114
|
}>;
|
|
3115
|
-
id:
|
|
3115
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
3116
3116
|
name: "id";
|
|
3117
3117
|
tableName: "sub_agent_external_agent_relations";
|
|
3118
3118
|
dataType: "string";
|
|
@@ -3134,11 +3134,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3134
3134
|
};
|
|
3135
3135
|
dialect: "pg";
|
|
3136
3136
|
}>;
|
|
3137
|
-
declare const subAgentTeamAgentRelations:
|
|
3137
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
3138
3138
|
name: "sub_agent_team_agent_relations";
|
|
3139
3139
|
schema: undefined;
|
|
3140
3140
|
columns: {
|
|
3141
|
-
createdAt:
|
|
3141
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3142
3142
|
name: "created_at";
|
|
3143
3143
|
tableName: "sub_agent_team_agent_relations";
|
|
3144
3144
|
dataType: "string";
|
|
@@ -3155,7 +3155,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3155
3155
|
identity: undefined;
|
|
3156
3156
|
generated: undefined;
|
|
3157
3157
|
}, {}, {}>;
|
|
3158
|
-
updatedAt:
|
|
3158
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3159
3159
|
name: "updated_at";
|
|
3160
3160
|
tableName: "sub_agent_team_agent_relations";
|
|
3161
3161
|
dataType: "string";
|
|
@@ -3172,7 +3172,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3172
3172
|
identity: undefined;
|
|
3173
3173
|
generated: undefined;
|
|
3174
3174
|
}, {}, {}>;
|
|
3175
|
-
targetAgentId:
|
|
3175
|
+
targetAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3176
3176
|
name: "target_agent_id";
|
|
3177
3177
|
tableName: "sub_agent_team_agent_relations";
|
|
3178
3178
|
dataType: "string";
|
|
@@ -3191,7 +3191,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3191
3191
|
}, {}, {
|
|
3192
3192
|
length: 256;
|
|
3193
3193
|
}>;
|
|
3194
|
-
headers:
|
|
3194
|
+
headers: drizzle_orm_pg_core1302.PgColumn<{
|
|
3195
3195
|
name: "headers";
|
|
3196
3196
|
tableName: "sub_agent_team_agent_relations";
|
|
3197
3197
|
dataType: "json";
|
|
@@ -3210,7 +3210,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3210
3210
|
}, {}, {
|
|
3211
3211
|
$type: Record<string, string> | null;
|
|
3212
3212
|
}>;
|
|
3213
|
-
subAgentId:
|
|
3213
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3214
3214
|
name: "sub_agent_id";
|
|
3215
3215
|
tableName: "sub_agent_team_agent_relations";
|
|
3216
3216
|
dataType: "string";
|
|
@@ -3229,7 +3229,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3229
3229
|
}, {}, {
|
|
3230
3230
|
length: 256;
|
|
3231
3231
|
}>;
|
|
3232
|
-
agentId:
|
|
3232
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3233
3233
|
name: "agent_id";
|
|
3234
3234
|
tableName: "sub_agent_team_agent_relations";
|
|
3235
3235
|
dataType: "string";
|
|
@@ -3248,7 +3248,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3248
3248
|
}, {}, {
|
|
3249
3249
|
length: 256;
|
|
3250
3250
|
}>;
|
|
3251
|
-
projectId:
|
|
3251
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3252
3252
|
name: "project_id";
|
|
3253
3253
|
tableName: "sub_agent_team_agent_relations";
|
|
3254
3254
|
dataType: "string";
|
|
@@ -3267,7 +3267,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3267
3267
|
}, {}, {
|
|
3268
3268
|
length: 256;
|
|
3269
3269
|
}>;
|
|
3270
|
-
tenantId:
|
|
3270
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3271
3271
|
name: "tenant_id";
|
|
3272
3272
|
tableName: "sub_agent_team_agent_relations";
|
|
3273
3273
|
dataType: "string";
|
|
@@ -3286,7 +3286,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3286
3286
|
}, {}, {
|
|
3287
3287
|
length: 256;
|
|
3288
3288
|
}>;
|
|
3289
|
-
id:
|
|
3289
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
3290
3290
|
name: "id";
|
|
3291
3291
|
tableName: "sub_agent_team_agent_relations";
|
|
3292
3292
|
dataType: "string";
|
|
@@ -3308,11 +3308,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3308
3308
|
};
|
|
3309
3309
|
dialect: "pg";
|
|
3310
3310
|
}>;
|
|
3311
|
-
declare const subAgentFunctionToolRelations:
|
|
3311
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
3312
3312
|
name: "sub_agent_function_tool_relations";
|
|
3313
3313
|
schema: undefined;
|
|
3314
3314
|
columns: {
|
|
3315
|
-
createdAt:
|
|
3315
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3316
3316
|
name: "created_at";
|
|
3317
3317
|
tableName: "sub_agent_function_tool_relations";
|
|
3318
3318
|
dataType: "string";
|
|
@@ -3329,7 +3329,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3329
3329
|
identity: undefined;
|
|
3330
3330
|
generated: undefined;
|
|
3331
3331
|
}, {}, {}>;
|
|
3332
|
-
updatedAt:
|
|
3332
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3333
3333
|
name: "updated_at";
|
|
3334
3334
|
tableName: "sub_agent_function_tool_relations";
|
|
3335
3335
|
dataType: "string";
|
|
@@ -3346,7 +3346,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3346
3346
|
identity: undefined;
|
|
3347
3347
|
generated: undefined;
|
|
3348
3348
|
}, {}, {}>;
|
|
3349
|
-
functionToolId:
|
|
3349
|
+
functionToolId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3350
3350
|
name: "function_tool_id";
|
|
3351
3351
|
tableName: "sub_agent_function_tool_relations";
|
|
3352
3352
|
dataType: "string";
|
|
@@ -3365,7 +3365,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3365
3365
|
}, {}, {
|
|
3366
3366
|
length: 256;
|
|
3367
3367
|
}>;
|
|
3368
|
-
subAgentId:
|
|
3368
|
+
subAgentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3369
3369
|
name: "sub_agent_id";
|
|
3370
3370
|
tableName: "sub_agent_function_tool_relations";
|
|
3371
3371
|
dataType: "string";
|
|
@@ -3384,7 +3384,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3384
3384
|
}, {}, {
|
|
3385
3385
|
length: 256;
|
|
3386
3386
|
}>;
|
|
3387
|
-
agentId:
|
|
3387
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3388
3388
|
name: "agent_id";
|
|
3389
3389
|
tableName: "sub_agent_function_tool_relations";
|
|
3390
3390
|
dataType: "string";
|
|
@@ -3403,7 +3403,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3403
3403
|
}, {}, {
|
|
3404
3404
|
length: 256;
|
|
3405
3405
|
}>;
|
|
3406
|
-
projectId:
|
|
3406
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3407
3407
|
name: "project_id";
|
|
3408
3408
|
tableName: "sub_agent_function_tool_relations";
|
|
3409
3409
|
dataType: "string";
|
|
@@ -3422,7 +3422,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3422
3422
|
}, {}, {
|
|
3423
3423
|
length: 256;
|
|
3424
3424
|
}>;
|
|
3425
|
-
tenantId:
|
|
3425
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3426
3426
|
name: "tenant_id";
|
|
3427
3427
|
tableName: "sub_agent_function_tool_relations";
|
|
3428
3428
|
dataType: "string";
|
|
@@ -3441,7 +3441,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3441
3441
|
}, {}, {
|
|
3442
3442
|
length: 256;
|
|
3443
3443
|
}>;
|
|
3444
|
-
id:
|
|
3444
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
3445
3445
|
name: "id";
|
|
3446
3446
|
tableName: "sub_agent_function_tool_relations";
|
|
3447
3447
|
dataType: "string";
|
|
@@ -3463,11 +3463,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3463
3463
|
};
|
|
3464
3464
|
dialect: "pg";
|
|
3465
3465
|
}>;
|
|
3466
|
-
declare const credentialReferences:
|
|
3466
|
+
declare const credentialReferences: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
3467
3467
|
name: "credential_references";
|
|
3468
3468
|
schema: undefined;
|
|
3469
3469
|
columns: {
|
|
3470
|
-
createdAt:
|
|
3470
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3471
3471
|
name: "created_at";
|
|
3472
3472
|
tableName: "credential_references";
|
|
3473
3473
|
dataType: "string";
|
|
@@ -3484,7 +3484,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3484
3484
|
identity: undefined;
|
|
3485
3485
|
generated: undefined;
|
|
3486
3486
|
}, {}, {}>;
|
|
3487
|
-
updatedAt:
|
|
3487
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3488
3488
|
name: "updated_at";
|
|
3489
3489
|
tableName: "credential_references";
|
|
3490
3490
|
dataType: "string";
|
|
@@ -3501,7 +3501,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3501
3501
|
identity: undefined;
|
|
3502
3502
|
generated: undefined;
|
|
3503
3503
|
}, {}, {}>;
|
|
3504
|
-
name:
|
|
3504
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
3505
3505
|
name: "name";
|
|
3506
3506
|
tableName: "credential_references";
|
|
3507
3507
|
dataType: "string";
|
|
@@ -3520,7 +3520,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3520
3520
|
}, {}, {
|
|
3521
3521
|
length: 256;
|
|
3522
3522
|
}>;
|
|
3523
|
-
type:
|
|
3523
|
+
type: drizzle_orm_pg_core1302.PgColumn<{
|
|
3524
3524
|
name: "type";
|
|
3525
3525
|
tableName: "credential_references";
|
|
3526
3526
|
dataType: "string";
|
|
@@ -3539,7 +3539,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3539
3539
|
}, {}, {
|
|
3540
3540
|
length: 256;
|
|
3541
3541
|
}>;
|
|
3542
|
-
credentialStoreId:
|
|
3542
|
+
credentialStoreId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3543
3543
|
name: "credential_store_id";
|
|
3544
3544
|
tableName: "credential_references";
|
|
3545
3545
|
dataType: "string";
|
|
@@ -3558,7 +3558,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3558
3558
|
}, {}, {
|
|
3559
3559
|
length: 256;
|
|
3560
3560
|
}>;
|
|
3561
|
-
retrievalParams:
|
|
3561
|
+
retrievalParams: drizzle_orm_pg_core1302.PgColumn<{
|
|
3562
3562
|
name: "retrieval_params";
|
|
3563
3563
|
tableName: "credential_references";
|
|
3564
3564
|
dataType: "json";
|
|
@@ -3577,7 +3577,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3577
3577
|
}, {}, {
|
|
3578
3578
|
$type: Record<string, unknown>;
|
|
3579
3579
|
}>;
|
|
3580
|
-
toolId:
|
|
3580
|
+
toolId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3581
3581
|
name: "tool_id";
|
|
3582
3582
|
tableName: "credential_references";
|
|
3583
3583
|
dataType: "string";
|
|
@@ -3596,7 +3596,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3596
3596
|
}, {}, {
|
|
3597
3597
|
length: 256;
|
|
3598
3598
|
}>;
|
|
3599
|
-
userId:
|
|
3599
|
+
userId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3600
3600
|
name: "user_id";
|
|
3601
3601
|
tableName: "credential_references";
|
|
3602
3602
|
dataType: "string";
|
|
@@ -3615,7 +3615,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3615
3615
|
}, {}, {
|
|
3616
3616
|
length: 256;
|
|
3617
3617
|
}>;
|
|
3618
|
-
createdBy:
|
|
3618
|
+
createdBy: drizzle_orm_pg_core1302.PgColumn<{
|
|
3619
3619
|
name: "created_by";
|
|
3620
3620
|
tableName: "credential_references";
|
|
3621
3621
|
dataType: "string";
|
|
@@ -3634,7 +3634,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3634
3634
|
}, {}, {
|
|
3635
3635
|
length: 256;
|
|
3636
3636
|
}>;
|
|
3637
|
-
projectId:
|
|
3637
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3638
3638
|
name: "project_id";
|
|
3639
3639
|
tableName: "credential_references";
|
|
3640
3640
|
dataType: "string";
|
|
@@ -3653,7 +3653,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3653
3653
|
}, {}, {
|
|
3654
3654
|
length: 256;
|
|
3655
3655
|
}>;
|
|
3656
|
-
tenantId:
|
|
3656
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3657
3657
|
name: "tenant_id";
|
|
3658
3658
|
tableName: "credential_references";
|
|
3659
3659
|
dataType: "string";
|
|
@@ -3672,7 +3672,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3672
3672
|
}, {}, {
|
|
3673
3673
|
length: 256;
|
|
3674
3674
|
}>;
|
|
3675
|
-
id:
|
|
3675
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
3676
3676
|
name: "id";
|
|
3677
3677
|
tableName: "credential_references";
|
|
3678
3678
|
dataType: "string";
|
|
@@ -3704,11 +3704,11 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3704
3704
|
*
|
|
3705
3705
|
* Includes: name and timestamps
|
|
3706
3706
|
*/
|
|
3707
|
-
declare const dataset:
|
|
3707
|
+
declare const dataset: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
3708
3708
|
name: "dataset";
|
|
3709
3709
|
schema: undefined;
|
|
3710
3710
|
columns: {
|
|
3711
|
-
createdAt:
|
|
3711
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3712
3712
|
name: "created_at";
|
|
3713
3713
|
tableName: "dataset";
|
|
3714
3714
|
dataType: "string";
|
|
@@ -3725,7 +3725,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3725
3725
|
identity: undefined;
|
|
3726
3726
|
generated: undefined;
|
|
3727
3727
|
}, {}, {}>;
|
|
3728
|
-
updatedAt:
|
|
3728
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3729
3729
|
name: "updated_at";
|
|
3730
3730
|
tableName: "dataset";
|
|
3731
3731
|
dataType: "string";
|
|
@@ -3742,7 +3742,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3742
3742
|
identity: undefined;
|
|
3743
3743
|
generated: undefined;
|
|
3744
3744
|
}, {}, {}>;
|
|
3745
|
-
name:
|
|
3745
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
3746
3746
|
name: "name";
|
|
3747
3747
|
tableName: "dataset";
|
|
3748
3748
|
dataType: "string";
|
|
@@ -3761,7 +3761,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3761
3761
|
}, {}, {
|
|
3762
3762
|
length: 256;
|
|
3763
3763
|
}>;
|
|
3764
|
-
projectId:
|
|
3764
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3765
3765
|
name: "project_id";
|
|
3766
3766
|
tableName: "dataset";
|
|
3767
3767
|
dataType: "string";
|
|
@@ -3780,7 +3780,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3780
3780
|
}, {}, {
|
|
3781
3781
|
length: 256;
|
|
3782
3782
|
}>;
|
|
3783
|
-
tenantId:
|
|
3783
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3784
3784
|
name: "tenant_id";
|
|
3785
3785
|
tableName: "dataset";
|
|
3786
3786
|
dataType: "string";
|
|
@@ -3799,7 +3799,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3799
3799
|
}, {}, {
|
|
3800
3800
|
length: 256;
|
|
3801
3801
|
}>;
|
|
3802
|
-
id:
|
|
3802
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
3803
3803
|
name: "id";
|
|
3804
3804
|
tableName: "dataset";
|
|
3805
3805
|
dataType: "string";
|
|
@@ -3832,11 +3832,11 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3832
3832
|
* simulation agent (stopWhen conditions, prompt/modelConfig), and timestamps
|
|
3833
3833
|
* 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
|
|
3834
3834
|
*/
|
|
3835
|
-
declare const datasetItem:
|
|
3835
|
+
declare const datasetItem: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
3836
3836
|
name: "dataset_item";
|
|
3837
3837
|
schema: undefined;
|
|
3838
3838
|
columns: {
|
|
3839
|
-
createdAt:
|
|
3839
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3840
3840
|
name: "created_at";
|
|
3841
3841
|
tableName: "dataset_item";
|
|
3842
3842
|
dataType: "string";
|
|
@@ -3853,7 +3853,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3853
3853
|
identity: undefined;
|
|
3854
3854
|
generated: undefined;
|
|
3855
3855
|
}, {}, {}>;
|
|
3856
|
-
updatedAt:
|
|
3856
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
3857
3857
|
name: "updated_at";
|
|
3858
3858
|
tableName: "dataset_item";
|
|
3859
3859
|
dataType: "string";
|
|
@@ -3870,7 +3870,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3870
3870
|
identity: undefined;
|
|
3871
3871
|
generated: undefined;
|
|
3872
3872
|
}, {}, {}>;
|
|
3873
|
-
datasetId:
|
|
3873
|
+
datasetId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3874
3874
|
name: "dataset_id";
|
|
3875
3875
|
tableName: "dataset_item";
|
|
3876
3876
|
dataType: "string";
|
|
@@ -3887,7 +3887,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3887
3887
|
identity: undefined;
|
|
3888
3888
|
generated: undefined;
|
|
3889
3889
|
}, {}, {}>;
|
|
3890
|
-
input:
|
|
3890
|
+
input: drizzle_orm_pg_core1302.PgColumn<{
|
|
3891
3891
|
name: "input";
|
|
3892
3892
|
tableName: "dataset_item";
|
|
3893
3893
|
dataType: "json";
|
|
@@ -3906,7 +3906,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3906
3906
|
}, {}, {
|
|
3907
3907
|
$type: DatasetItemInput;
|
|
3908
3908
|
}>;
|
|
3909
|
-
expectedOutput:
|
|
3909
|
+
expectedOutput: drizzle_orm_pg_core1302.PgColumn<{
|
|
3910
3910
|
name: "expected_output";
|
|
3911
3911
|
tableName: "dataset_item";
|
|
3912
3912
|
dataType: "json";
|
|
@@ -3925,7 +3925,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3925
3925
|
}, {}, {
|
|
3926
3926
|
$type: DatasetItemExpectedOutput;
|
|
3927
3927
|
}>;
|
|
3928
|
-
simulationAgent:
|
|
3928
|
+
simulationAgent: drizzle_orm_pg_core1302.PgColumn<{
|
|
3929
3929
|
name: "simulation_agent";
|
|
3930
3930
|
tableName: "dataset_item";
|
|
3931
3931
|
dataType: "json";
|
|
@@ -3964,7 +3964,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3964
3964
|
} | undefined;
|
|
3965
3965
|
};
|
|
3966
3966
|
}>;
|
|
3967
|
-
projectId:
|
|
3967
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3968
3968
|
name: "project_id";
|
|
3969
3969
|
tableName: "dataset_item";
|
|
3970
3970
|
dataType: "string";
|
|
@@ -3983,7 +3983,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3983
3983
|
}, {}, {
|
|
3984
3984
|
length: 256;
|
|
3985
3985
|
}>;
|
|
3986
|
-
tenantId:
|
|
3986
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
3987
3987
|
name: "tenant_id";
|
|
3988
3988
|
tableName: "dataset_item";
|
|
3989
3989
|
dataType: "string";
|
|
@@ -4002,7 +4002,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4002
4002
|
}, {}, {
|
|
4003
4003
|
length: 256;
|
|
4004
4004
|
}>;
|
|
4005
|
-
id:
|
|
4005
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4006
4006
|
name: "id";
|
|
4007
4007
|
tableName: "dataset_item";
|
|
4008
4008
|
dataType: "string";
|
|
@@ -4024,11 +4024,11 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4024
4024
|
};
|
|
4025
4025
|
dialect: "pg";
|
|
4026
4026
|
}>;
|
|
4027
|
-
declare const evaluator:
|
|
4027
|
+
declare const evaluator: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4028
4028
|
name: "evaluator";
|
|
4029
4029
|
schema: undefined;
|
|
4030
4030
|
columns: {
|
|
4031
|
-
createdAt:
|
|
4031
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4032
4032
|
name: "created_at";
|
|
4033
4033
|
tableName: "evaluator";
|
|
4034
4034
|
dataType: "string";
|
|
@@ -4045,7 +4045,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4045
4045
|
identity: undefined;
|
|
4046
4046
|
generated: undefined;
|
|
4047
4047
|
}, {}, {}>;
|
|
4048
|
-
updatedAt:
|
|
4048
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4049
4049
|
name: "updated_at";
|
|
4050
4050
|
tableName: "evaluator";
|
|
4051
4051
|
dataType: "string";
|
|
@@ -4062,7 +4062,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4062
4062
|
identity: undefined;
|
|
4063
4063
|
generated: undefined;
|
|
4064
4064
|
}, {}, {}>;
|
|
4065
|
-
prompt:
|
|
4065
|
+
prompt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4066
4066
|
name: "prompt";
|
|
4067
4067
|
tableName: "evaluator";
|
|
4068
4068
|
dataType: "string";
|
|
@@ -4079,7 +4079,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4079
4079
|
identity: undefined;
|
|
4080
4080
|
generated: undefined;
|
|
4081
4081
|
}, {}, {}>;
|
|
4082
|
-
schema:
|
|
4082
|
+
schema: drizzle_orm_pg_core1302.PgColumn<{
|
|
4083
4083
|
name: "schema";
|
|
4084
4084
|
tableName: "evaluator";
|
|
4085
4085
|
dataType: "json";
|
|
@@ -4098,7 +4098,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4098
4098
|
}, {}, {
|
|
4099
4099
|
$type: Record<string, unknown>;
|
|
4100
4100
|
}>;
|
|
4101
|
-
model:
|
|
4101
|
+
model: drizzle_orm_pg_core1302.PgColumn<{
|
|
4102
4102
|
name: "model";
|
|
4103
4103
|
tableName: "evaluator";
|
|
4104
4104
|
dataType: "json";
|
|
@@ -4123,7 +4123,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4123
4123
|
providerOptions?: Record<string, any> | undefined;
|
|
4124
4124
|
};
|
|
4125
4125
|
}>;
|
|
4126
|
-
passCriteria:
|
|
4126
|
+
passCriteria: drizzle_orm_pg_core1302.PgColumn<{
|
|
4127
4127
|
name: "pass_criteria";
|
|
4128
4128
|
tableName: "evaluator";
|
|
4129
4129
|
dataType: "json";
|
|
@@ -4142,7 +4142,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4142
4142
|
}, {}, {
|
|
4143
4143
|
$type: PassCriteria;
|
|
4144
4144
|
}>;
|
|
4145
|
-
name:
|
|
4145
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
4146
4146
|
name: "name";
|
|
4147
4147
|
tableName: "evaluator";
|
|
4148
4148
|
dataType: "string";
|
|
@@ -4161,7 +4161,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4161
4161
|
}, {}, {
|
|
4162
4162
|
length: 256;
|
|
4163
4163
|
}>;
|
|
4164
|
-
description:
|
|
4164
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
4165
4165
|
name: "description";
|
|
4166
4166
|
tableName: "evaluator";
|
|
4167
4167
|
dataType: "string";
|
|
@@ -4178,7 +4178,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4178
4178
|
identity: undefined;
|
|
4179
4179
|
generated: undefined;
|
|
4180
4180
|
}, {}, {}>;
|
|
4181
|
-
projectId:
|
|
4181
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4182
4182
|
name: "project_id";
|
|
4183
4183
|
tableName: "evaluator";
|
|
4184
4184
|
dataType: "string";
|
|
@@ -4197,7 +4197,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4197
4197
|
}, {}, {
|
|
4198
4198
|
length: 256;
|
|
4199
4199
|
}>;
|
|
4200
|
-
tenantId:
|
|
4200
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4201
4201
|
name: "tenant_id";
|
|
4202
4202
|
tableName: "evaluator";
|
|
4203
4203
|
dataType: "string";
|
|
@@ -4216,7 +4216,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4216
4216
|
}, {}, {
|
|
4217
4217
|
length: 256;
|
|
4218
4218
|
}>;
|
|
4219
|
-
id:
|
|
4219
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4220
4220
|
name: "id";
|
|
4221
4221
|
tableName: "evaluator";
|
|
4222
4222
|
dataType: "string";
|
|
@@ -4238,11 +4238,11 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4238
4238
|
};
|
|
4239
4239
|
dialect: "pg";
|
|
4240
4240
|
}>;
|
|
4241
|
-
declare const datasetRunConfig:
|
|
4241
|
+
declare const datasetRunConfig: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4242
4242
|
name: "dataset_run_config";
|
|
4243
4243
|
schema: undefined;
|
|
4244
4244
|
columns: {
|
|
4245
|
-
createdAt:
|
|
4245
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4246
4246
|
name: "created_at";
|
|
4247
4247
|
tableName: "dataset_run_config";
|
|
4248
4248
|
dataType: "string";
|
|
@@ -4259,7 +4259,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4259
4259
|
identity: undefined;
|
|
4260
4260
|
generated: undefined;
|
|
4261
4261
|
}, {}, {}>;
|
|
4262
|
-
updatedAt:
|
|
4262
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4263
4263
|
name: "updated_at";
|
|
4264
4264
|
tableName: "dataset_run_config";
|
|
4265
4265
|
dataType: "string";
|
|
@@ -4276,7 +4276,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4276
4276
|
identity: undefined;
|
|
4277
4277
|
generated: undefined;
|
|
4278
4278
|
}, {}, {}>;
|
|
4279
|
-
datasetId:
|
|
4279
|
+
datasetId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4280
4280
|
name: "dataset_id";
|
|
4281
4281
|
tableName: "dataset_run_config";
|
|
4282
4282
|
dataType: "string";
|
|
@@ -4293,7 +4293,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4293
4293
|
identity: undefined;
|
|
4294
4294
|
generated: undefined;
|
|
4295
4295
|
}, {}, {}>;
|
|
4296
|
-
name:
|
|
4296
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
4297
4297
|
name: "name";
|
|
4298
4298
|
tableName: "dataset_run_config";
|
|
4299
4299
|
dataType: "string";
|
|
@@ -4312,7 +4312,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4312
4312
|
}, {}, {
|
|
4313
4313
|
length: 256;
|
|
4314
4314
|
}>;
|
|
4315
|
-
description:
|
|
4315
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
4316
4316
|
name: "description";
|
|
4317
4317
|
tableName: "dataset_run_config";
|
|
4318
4318
|
dataType: "string";
|
|
@@ -4329,7 +4329,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4329
4329
|
identity: undefined;
|
|
4330
4330
|
generated: undefined;
|
|
4331
4331
|
}, {}, {}>;
|
|
4332
|
-
projectId:
|
|
4332
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4333
4333
|
name: "project_id";
|
|
4334
4334
|
tableName: "dataset_run_config";
|
|
4335
4335
|
dataType: "string";
|
|
@@ -4348,7 +4348,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4348
4348
|
}, {}, {
|
|
4349
4349
|
length: 256;
|
|
4350
4350
|
}>;
|
|
4351
|
-
tenantId:
|
|
4351
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4352
4352
|
name: "tenant_id";
|
|
4353
4353
|
tableName: "dataset_run_config";
|
|
4354
4354
|
dataType: "string";
|
|
@@ -4367,7 +4367,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4367
4367
|
}, {}, {
|
|
4368
4368
|
length: 256;
|
|
4369
4369
|
}>;
|
|
4370
|
-
id:
|
|
4370
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4371
4371
|
name: "id";
|
|
4372
4372
|
tableName: "dataset_run_config";
|
|
4373
4373
|
dataType: "string";
|
|
@@ -4404,11 +4404,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4404
4404
|
* Includes: name, description, filters (JSONB for evaluation criteria),
|
|
4405
4405
|
* sampleRate for sampling, and timestamps
|
|
4406
4406
|
*/
|
|
4407
|
-
declare const evaluationSuiteConfig:
|
|
4407
|
+
declare const evaluationSuiteConfig: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4408
4408
|
name: "evaluation_suite_config";
|
|
4409
4409
|
schema: undefined;
|
|
4410
4410
|
columns: {
|
|
4411
|
-
createdAt:
|
|
4411
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4412
4412
|
name: "created_at";
|
|
4413
4413
|
tableName: "evaluation_suite_config";
|
|
4414
4414
|
dataType: "string";
|
|
@@ -4425,7 +4425,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4425
4425
|
identity: undefined;
|
|
4426
4426
|
generated: undefined;
|
|
4427
4427
|
}, {}, {}>;
|
|
4428
|
-
updatedAt:
|
|
4428
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4429
4429
|
name: "updated_at";
|
|
4430
4430
|
tableName: "evaluation_suite_config";
|
|
4431
4431
|
dataType: "string";
|
|
@@ -4442,7 +4442,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4442
4442
|
identity: undefined;
|
|
4443
4443
|
generated: undefined;
|
|
4444
4444
|
}, {}, {}>;
|
|
4445
|
-
filters:
|
|
4445
|
+
filters: drizzle_orm_pg_core1302.PgColumn<{
|
|
4446
4446
|
name: "filters";
|
|
4447
4447
|
tableName: "evaluation_suite_config";
|
|
4448
4448
|
dataType: "json";
|
|
@@ -4461,7 +4461,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4461
4461
|
}, {}, {
|
|
4462
4462
|
$type: Filter<EvaluationSuiteFilterCriteria>;
|
|
4463
4463
|
}>;
|
|
4464
|
-
sampleRate:
|
|
4464
|
+
sampleRate: drizzle_orm_pg_core1302.PgColumn<{
|
|
4465
4465
|
name: "sample_rate";
|
|
4466
4466
|
tableName: "evaluation_suite_config";
|
|
4467
4467
|
dataType: "number";
|
|
@@ -4478,7 +4478,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4478
4478
|
identity: undefined;
|
|
4479
4479
|
generated: undefined;
|
|
4480
4480
|
}, {}, {}>;
|
|
4481
|
-
projectId:
|
|
4481
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4482
4482
|
name: "project_id";
|
|
4483
4483
|
tableName: "evaluation_suite_config";
|
|
4484
4484
|
dataType: "string";
|
|
@@ -4497,7 +4497,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4497
4497
|
}, {}, {
|
|
4498
4498
|
length: 256;
|
|
4499
4499
|
}>;
|
|
4500
|
-
tenantId:
|
|
4500
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4501
4501
|
name: "tenant_id";
|
|
4502
4502
|
tableName: "evaluation_suite_config";
|
|
4503
4503
|
dataType: "string";
|
|
@@ -4516,7 +4516,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4516
4516
|
}, {}, {
|
|
4517
4517
|
length: 256;
|
|
4518
4518
|
}>;
|
|
4519
|
-
id:
|
|
4519
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4520
4520
|
name: "id";
|
|
4521
4521
|
tableName: "evaluation_suite_config";
|
|
4522
4522
|
dataType: "string";
|
|
@@ -4545,11 +4545,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4545
4545
|
*
|
|
4546
4546
|
* Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
|
|
4547
4547
|
*/
|
|
4548
|
-
declare const evaluationSuiteConfigEvaluatorRelations:
|
|
4548
|
+
declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4549
4549
|
name: "evaluation_suite_config_evaluator_relations";
|
|
4550
4550
|
schema: undefined;
|
|
4551
4551
|
columns: {
|
|
4552
|
-
createdAt:
|
|
4552
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4553
4553
|
name: "created_at";
|
|
4554
4554
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4555
4555
|
dataType: "string";
|
|
@@ -4566,7 +4566,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4566
4566
|
identity: undefined;
|
|
4567
4567
|
generated: undefined;
|
|
4568
4568
|
}, {}, {}>;
|
|
4569
|
-
updatedAt:
|
|
4569
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4570
4570
|
name: "updated_at";
|
|
4571
4571
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4572
4572
|
dataType: "string";
|
|
@@ -4583,7 +4583,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4583
4583
|
identity: undefined;
|
|
4584
4584
|
generated: undefined;
|
|
4585
4585
|
}, {}, {}>;
|
|
4586
|
-
evaluationSuiteConfigId:
|
|
4586
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4587
4587
|
name: "evaluation_suite_config_id";
|
|
4588
4588
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4589
4589
|
dataType: "string";
|
|
@@ -4600,7 +4600,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4600
4600
|
identity: undefined;
|
|
4601
4601
|
generated: undefined;
|
|
4602
4602
|
}, {}, {}>;
|
|
4603
|
-
evaluatorId:
|
|
4603
|
+
evaluatorId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4604
4604
|
name: "evaluator_id";
|
|
4605
4605
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4606
4606
|
dataType: "string";
|
|
@@ -4617,7 +4617,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4617
4617
|
identity: undefined;
|
|
4618
4618
|
generated: undefined;
|
|
4619
4619
|
}, {}, {}>;
|
|
4620
|
-
projectId:
|
|
4620
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4621
4621
|
name: "project_id";
|
|
4622
4622
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4623
4623
|
dataType: "string";
|
|
@@ -4636,7 +4636,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4636
4636
|
}, {}, {
|
|
4637
4637
|
length: 256;
|
|
4638
4638
|
}>;
|
|
4639
|
-
tenantId:
|
|
4639
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4640
4640
|
name: "tenant_id";
|
|
4641
4641
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4642
4642
|
dataType: "string";
|
|
@@ -4655,7 +4655,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4655
4655
|
}, {}, {
|
|
4656
4656
|
length: 256;
|
|
4657
4657
|
}>;
|
|
4658
|
-
id:
|
|
4658
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4659
4659
|
name: "id";
|
|
4660
4660
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4661
4661
|
dataType: "string";
|
|
@@ -4684,11 +4684,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4684
4684
|
*
|
|
4685
4685
|
* Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
|
|
4686
4686
|
*/
|
|
4687
|
-
declare const evaluationRunConfigEvaluationSuiteConfigRelations:
|
|
4687
|
+
declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4688
4688
|
name: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4689
4689
|
schema: undefined;
|
|
4690
4690
|
columns: {
|
|
4691
|
-
createdAt:
|
|
4691
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4692
4692
|
name: "created_at";
|
|
4693
4693
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4694
4694
|
dataType: "string";
|
|
@@ -4705,7 +4705,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4705
4705
|
identity: undefined;
|
|
4706
4706
|
generated: undefined;
|
|
4707
4707
|
}, {}, {}>;
|
|
4708
|
-
updatedAt:
|
|
4708
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4709
4709
|
name: "updated_at";
|
|
4710
4710
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4711
4711
|
dataType: "string";
|
|
@@ -4722,7 +4722,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4722
4722
|
identity: undefined;
|
|
4723
4723
|
generated: undefined;
|
|
4724
4724
|
}, {}, {}>;
|
|
4725
|
-
evaluationRunConfigId:
|
|
4725
|
+
evaluationRunConfigId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4726
4726
|
name: "evaluation_run_config_id";
|
|
4727
4727
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4728
4728
|
dataType: "string";
|
|
@@ -4739,7 +4739,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4739
4739
|
identity: undefined;
|
|
4740
4740
|
generated: undefined;
|
|
4741
4741
|
}, {}, {}>;
|
|
4742
|
-
evaluationSuiteConfigId:
|
|
4742
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4743
4743
|
name: "evaluation_suite_config_id";
|
|
4744
4744
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4745
4745
|
dataType: "string";
|
|
@@ -4756,7 +4756,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4756
4756
|
identity: undefined;
|
|
4757
4757
|
generated: undefined;
|
|
4758
4758
|
}, {}, {}>;
|
|
4759
|
-
projectId:
|
|
4759
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4760
4760
|
name: "project_id";
|
|
4761
4761
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4762
4762
|
dataType: "string";
|
|
@@ -4775,7 +4775,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4775
4775
|
}, {}, {
|
|
4776
4776
|
length: 256;
|
|
4777
4777
|
}>;
|
|
4778
|
-
tenantId:
|
|
4778
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4779
4779
|
name: "tenant_id";
|
|
4780
4780
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4781
4781
|
dataType: "string";
|
|
@@ -4794,7 +4794,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4794
4794
|
}, {}, {
|
|
4795
4795
|
length: 256;
|
|
4796
4796
|
}>;
|
|
4797
|
-
id:
|
|
4797
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4798
4798
|
name: "id";
|
|
4799
4799
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4800
4800
|
dataType: "string";
|
|
@@ -4829,11 +4829,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4829
4829
|
*
|
|
4830
4830
|
* one to many relationship with evaluationRun
|
|
4831
4831
|
*/
|
|
4832
|
-
declare const evaluationRunConfig:
|
|
4832
|
+
declare const evaluationRunConfig: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4833
4833
|
name: "evaluation_run_config";
|
|
4834
4834
|
schema: undefined;
|
|
4835
4835
|
columns: {
|
|
4836
|
-
createdAt:
|
|
4836
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4837
4837
|
name: "created_at";
|
|
4838
4838
|
tableName: "evaluation_run_config";
|
|
4839
4839
|
dataType: "string";
|
|
@@ -4850,7 +4850,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4850
4850
|
identity: undefined;
|
|
4851
4851
|
generated: undefined;
|
|
4852
4852
|
}, {}, {}>;
|
|
4853
|
-
updatedAt:
|
|
4853
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
4854
4854
|
name: "updated_at";
|
|
4855
4855
|
tableName: "evaluation_run_config";
|
|
4856
4856
|
dataType: "string";
|
|
@@ -4867,7 +4867,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4867
4867
|
identity: undefined;
|
|
4868
4868
|
generated: undefined;
|
|
4869
4869
|
}, {}, {}>;
|
|
4870
|
-
isActive:
|
|
4870
|
+
isActive: drizzle_orm_pg_core1302.PgColumn<{
|
|
4871
4871
|
name: "is_active";
|
|
4872
4872
|
tableName: "evaluation_run_config";
|
|
4873
4873
|
dataType: "boolean";
|
|
@@ -4884,7 +4884,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4884
4884
|
identity: undefined;
|
|
4885
4885
|
generated: undefined;
|
|
4886
4886
|
}, {}, {}>;
|
|
4887
|
-
name:
|
|
4887
|
+
name: drizzle_orm_pg_core1302.PgColumn<{
|
|
4888
4888
|
name: "name";
|
|
4889
4889
|
tableName: "evaluation_run_config";
|
|
4890
4890
|
dataType: "string";
|
|
@@ -4903,7 +4903,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4903
4903
|
}, {}, {
|
|
4904
4904
|
length: 256;
|
|
4905
4905
|
}>;
|
|
4906
|
-
description:
|
|
4906
|
+
description: drizzle_orm_pg_core1302.PgColumn<{
|
|
4907
4907
|
name: "description";
|
|
4908
4908
|
tableName: "evaluation_run_config";
|
|
4909
4909
|
dataType: "string";
|
|
@@ -4920,7 +4920,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4920
4920
|
identity: undefined;
|
|
4921
4921
|
generated: undefined;
|
|
4922
4922
|
}, {}, {}>;
|
|
4923
|
-
projectId:
|
|
4923
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4924
4924
|
name: "project_id";
|
|
4925
4925
|
tableName: "evaluation_run_config";
|
|
4926
4926
|
dataType: "string";
|
|
@@ -4939,7 +4939,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4939
4939
|
}, {}, {
|
|
4940
4940
|
length: 256;
|
|
4941
4941
|
}>;
|
|
4942
|
-
tenantId:
|
|
4942
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
4943
4943
|
name: "tenant_id";
|
|
4944
4944
|
tableName: "evaluation_run_config";
|
|
4945
4945
|
dataType: "string";
|
|
@@ -4958,7 +4958,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4958
4958
|
}, {}, {
|
|
4959
4959
|
length: 256;
|
|
4960
4960
|
}>;
|
|
4961
|
-
id:
|
|
4961
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
4962
4962
|
name: "id";
|
|
4963
4963
|
tableName: "evaluation_run_config";
|
|
4964
4964
|
dataType: "string";
|
|
@@ -4994,11 +4994,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4994
4994
|
* Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
|
|
4995
4995
|
* dateRange with absolute dates), and timestamps
|
|
4996
4996
|
*/
|
|
4997
|
-
declare const evaluationJobConfig:
|
|
4997
|
+
declare const evaluationJobConfig: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
4998
4998
|
name: "evaluation_job_config";
|
|
4999
4999
|
schema: undefined;
|
|
5000
5000
|
columns: {
|
|
5001
|
-
createdAt:
|
|
5001
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5002
5002
|
name: "created_at";
|
|
5003
5003
|
tableName: "evaluation_job_config";
|
|
5004
5004
|
dataType: "string";
|
|
@@ -5015,7 +5015,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5015
5015
|
identity: undefined;
|
|
5016
5016
|
generated: undefined;
|
|
5017
5017
|
}, {}, {}>;
|
|
5018
|
-
updatedAt:
|
|
5018
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5019
5019
|
name: "updated_at";
|
|
5020
5020
|
tableName: "evaluation_job_config";
|
|
5021
5021
|
dataType: "string";
|
|
@@ -5032,7 +5032,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5032
5032
|
identity: undefined;
|
|
5033
5033
|
generated: undefined;
|
|
5034
5034
|
}, {}, {}>;
|
|
5035
|
-
jobFilters:
|
|
5035
|
+
jobFilters: drizzle_orm_pg_core1302.PgColumn<{
|
|
5036
5036
|
name: "job_filters";
|
|
5037
5037
|
tableName: "evaluation_job_config";
|
|
5038
5038
|
dataType: "json";
|
|
@@ -5065,7 +5065,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5065
5065
|
} | undefined;
|
|
5066
5066
|
}>;
|
|
5067
5067
|
}>;
|
|
5068
|
-
projectId:
|
|
5068
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5069
5069
|
name: "project_id";
|
|
5070
5070
|
tableName: "evaluation_job_config";
|
|
5071
5071
|
dataType: "string";
|
|
@@ -5084,7 +5084,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5084
5084
|
}, {}, {
|
|
5085
5085
|
length: 256;
|
|
5086
5086
|
}>;
|
|
5087
|
-
tenantId:
|
|
5087
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5088
5088
|
name: "tenant_id";
|
|
5089
5089
|
tableName: "evaluation_job_config";
|
|
5090
5090
|
dataType: "string";
|
|
@@ -5103,7 +5103,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5103
5103
|
}, {}, {
|
|
5104
5104
|
length: 256;
|
|
5105
5105
|
}>;
|
|
5106
|
-
id:
|
|
5106
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
5107
5107
|
name: "id";
|
|
5108
5108
|
tableName: "evaluation_job_config";
|
|
5109
5109
|
dataType: "string";
|
|
@@ -5132,11 +5132,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5132
5132
|
*
|
|
5133
5133
|
* Includes: evaluationJobConfigId, evaluatorId, and timestamps
|
|
5134
5134
|
*/
|
|
5135
|
-
declare const evaluationJobConfigEvaluatorRelations:
|
|
5135
|
+
declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
5136
5136
|
name: "evaluation_job_config_evaluator_relations";
|
|
5137
5137
|
schema: undefined;
|
|
5138
5138
|
columns: {
|
|
5139
|
-
createdAt:
|
|
5139
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5140
5140
|
name: "created_at";
|
|
5141
5141
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5142
5142
|
dataType: "string";
|
|
@@ -5153,7 +5153,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5153
5153
|
identity: undefined;
|
|
5154
5154
|
generated: undefined;
|
|
5155
5155
|
}, {}, {}>;
|
|
5156
|
-
updatedAt:
|
|
5156
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5157
5157
|
name: "updated_at";
|
|
5158
5158
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5159
5159
|
dataType: "string";
|
|
@@ -5170,7 +5170,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5170
5170
|
identity: undefined;
|
|
5171
5171
|
generated: undefined;
|
|
5172
5172
|
}, {}, {}>;
|
|
5173
|
-
evaluationJobConfigId:
|
|
5173
|
+
evaluationJobConfigId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5174
5174
|
name: "evaluation_job_config_id";
|
|
5175
5175
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5176
5176
|
dataType: "string";
|
|
@@ -5187,7 +5187,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5187
5187
|
identity: undefined;
|
|
5188
5188
|
generated: undefined;
|
|
5189
5189
|
}, {}, {}>;
|
|
5190
|
-
evaluatorId:
|
|
5190
|
+
evaluatorId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5191
5191
|
name: "evaluator_id";
|
|
5192
5192
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5193
5193
|
dataType: "string";
|
|
@@ -5204,7 +5204,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5204
5204
|
identity: undefined;
|
|
5205
5205
|
generated: undefined;
|
|
5206
5206
|
}, {}, {}>;
|
|
5207
|
-
projectId:
|
|
5207
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5208
5208
|
name: "project_id";
|
|
5209
5209
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5210
5210
|
dataType: "string";
|
|
@@ -5223,7 +5223,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5223
5223
|
}, {}, {
|
|
5224
5224
|
length: 256;
|
|
5225
5225
|
}>;
|
|
5226
|
-
tenantId:
|
|
5226
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5227
5227
|
name: "tenant_id";
|
|
5228
5228
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5229
5229
|
dataType: "string";
|
|
@@ -5242,7 +5242,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5242
5242
|
}, {}, {
|
|
5243
5243
|
length: 256;
|
|
5244
5244
|
}>;
|
|
5245
|
-
id:
|
|
5245
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
5246
5246
|
name: "id";
|
|
5247
5247
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5248
5248
|
dataType: "string";
|
|
@@ -5264,98 +5264,98 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5264
5264
|
};
|
|
5265
5265
|
dialect: "pg";
|
|
5266
5266
|
}>;
|
|
5267
|
-
declare const projectsRelations:
|
|
5268
|
-
subAgents:
|
|
5269
|
-
agents:
|
|
5270
|
-
tools:
|
|
5271
|
-
functions:
|
|
5272
|
-
contextConfigs:
|
|
5273
|
-
externalAgents:
|
|
5274
|
-
dataComponents:
|
|
5275
|
-
artifactComponents:
|
|
5276
|
-
credentialReferences:
|
|
5267
|
+
declare const projectsRelations: drizzle_orm20.Relations<"projects", {
|
|
5268
|
+
subAgents: drizzle_orm20.Many<"sub_agents">;
|
|
5269
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
5270
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
5271
|
+
functions: drizzle_orm20.Many<"functions">;
|
|
5272
|
+
contextConfigs: drizzle_orm20.Many<"context_configs">;
|
|
5273
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
5274
|
+
dataComponents: drizzle_orm20.Many<"data_components">;
|
|
5275
|
+
artifactComponents: drizzle_orm20.Many<"artifact_components">;
|
|
5276
|
+
credentialReferences: drizzle_orm20.Many<"credential_references">;
|
|
5277
5277
|
}>;
|
|
5278
|
-
declare const contextConfigsRelations:
|
|
5279
|
-
project:
|
|
5280
|
-
agents:
|
|
5278
|
+
declare const contextConfigsRelations: drizzle_orm20.Relations<"context_configs", {
|
|
5279
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5280
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
5281
5281
|
}>;
|
|
5282
|
-
declare const subAgentsRelations:
|
|
5283
|
-
project:
|
|
5284
|
-
defaultForAgents:
|
|
5285
|
-
sourceRelations:
|
|
5286
|
-
targetRelations:
|
|
5287
|
-
toolRelations:
|
|
5288
|
-
functionToolRelations:
|
|
5289
|
-
dataComponentRelations:
|
|
5290
|
-
artifactComponentRelations:
|
|
5282
|
+
declare const subAgentsRelations: drizzle_orm20.Relations<"sub_agents", {
|
|
5283
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5284
|
+
defaultForAgents: drizzle_orm20.Many<"agent">;
|
|
5285
|
+
sourceRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
5286
|
+
targetRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
5287
|
+
toolRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
5288
|
+
functionToolRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
5289
|
+
dataComponentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
5290
|
+
artifactComponentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
5291
5291
|
}>;
|
|
5292
|
-
declare const agentRelations:
|
|
5293
|
-
project:
|
|
5294
|
-
defaultSubAgent:
|
|
5295
|
-
contextConfig:
|
|
5296
|
-
functionTools:
|
|
5292
|
+
declare const agentRelations: drizzle_orm20.Relations<"agent", {
|
|
5293
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5294
|
+
defaultSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
5295
|
+
contextConfig: drizzle_orm20.One<"context_configs", false>;
|
|
5296
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
5297
5297
|
}>;
|
|
5298
|
-
declare const externalAgentsRelations:
|
|
5299
|
-
project:
|
|
5300
|
-
subAgentExternalAgentRelations:
|
|
5301
|
-
credentialReference:
|
|
5298
|
+
declare const externalAgentsRelations: drizzle_orm20.Relations<"external_agents", {
|
|
5299
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5300
|
+
subAgentExternalAgentRelations: drizzle_orm20.Many<"sub_agent_external_agent_relations">;
|
|
5301
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
5302
5302
|
}>;
|
|
5303
|
-
declare const agentToolRelationsRelations:
|
|
5304
|
-
subAgent:
|
|
5305
|
-
tool:
|
|
5303
|
+
declare const agentToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_tool_relations", {
|
|
5304
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5305
|
+
tool: drizzle_orm20.One<"tools", true>;
|
|
5306
5306
|
}>;
|
|
5307
|
-
declare const credentialReferencesRelations:
|
|
5308
|
-
project:
|
|
5309
|
-
tools:
|
|
5310
|
-
externalAgents:
|
|
5307
|
+
declare const credentialReferencesRelations: drizzle_orm20.Relations<"credential_references", {
|
|
5308
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5309
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
5310
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
5311
5311
|
}>;
|
|
5312
|
-
declare const toolsRelations:
|
|
5313
|
-
project:
|
|
5314
|
-
subAgentRelations:
|
|
5315
|
-
credentialReference:
|
|
5312
|
+
declare const toolsRelations: drizzle_orm20.Relations<"tools", {
|
|
5313
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5314
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
5315
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
5316
5316
|
}>;
|
|
5317
|
-
declare const artifactComponentsRelations:
|
|
5318
|
-
project:
|
|
5319
|
-
subAgentRelations:
|
|
5317
|
+
declare const artifactComponentsRelations: drizzle_orm20.Relations<"artifact_components", {
|
|
5318
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5319
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
5320
5320
|
}>;
|
|
5321
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5322
|
-
subAgent:
|
|
5323
|
-
artifactComponent:
|
|
5321
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm20.Relations<"sub_agent_artifact_components", {
|
|
5322
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5323
|
+
artifactComponent: drizzle_orm20.One<"artifact_components", true>;
|
|
5324
5324
|
}>;
|
|
5325
|
-
declare const dataComponentsRelations:
|
|
5326
|
-
project:
|
|
5327
|
-
subAgentRelations:
|
|
5325
|
+
declare const dataComponentsRelations: drizzle_orm20.Relations<"data_components", {
|
|
5326
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5327
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
5328
5328
|
}>;
|
|
5329
|
-
declare const subAgentDataComponentsRelations:
|
|
5330
|
-
subAgent:
|
|
5331
|
-
dataComponent:
|
|
5329
|
+
declare const subAgentDataComponentsRelations: drizzle_orm20.Relations<"sub_agent_data_components", {
|
|
5330
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5331
|
+
dataComponent: drizzle_orm20.One<"data_components", true>;
|
|
5332
5332
|
}>;
|
|
5333
|
-
declare const functionsRelations:
|
|
5334
|
-
functionTools:
|
|
5335
|
-
project:
|
|
5333
|
+
declare const functionsRelations: drizzle_orm20.Relations<"functions", {
|
|
5334
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
5335
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5336
5336
|
}>;
|
|
5337
|
-
declare const subAgentRelationsRelations:
|
|
5338
|
-
agent:
|
|
5339
|
-
sourceSubAgent:
|
|
5340
|
-
targetSubAgent:
|
|
5337
|
+
declare const subAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_relations", {
|
|
5338
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
5339
|
+
sourceSubAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5340
|
+
targetSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
5341
5341
|
}>;
|
|
5342
|
-
declare const functionToolsRelations:
|
|
5343
|
-
project:
|
|
5344
|
-
agent:
|
|
5345
|
-
function:
|
|
5346
|
-
subAgentRelations:
|
|
5342
|
+
declare const functionToolsRelations: drizzle_orm20.Relations<"function_tools", {
|
|
5343
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5344
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
5345
|
+
function: drizzle_orm20.One<"functions", true>;
|
|
5346
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
5347
5347
|
}>;
|
|
5348
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5349
|
-
subAgent:
|
|
5350
|
-
functionTool:
|
|
5348
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_function_tool_relations", {
|
|
5349
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5350
|
+
functionTool: drizzle_orm20.One<"function_tools", true>;
|
|
5351
5351
|
}>;
|
|
5352
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5353
|
-
subAgent:
|
|
5354
|
-
externalAgent:
|
|
5352
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_external_agent_relations", {
|
|
5353
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5354
|
+
externalAgent: drizzle_orm20.One<"external_agents", true>;
|
|
5355
5355
|
}>;
|
|
5356
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5357
|
-
subAgent:
|
|
5358
|
-
targetAgent:
|
|
5356
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_team_agent_relations", {
|
|
5357
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5358
|
+
targetAgent: drizzle_orm20.One<"agent", true>;
|
|
5359
5359
|
}>;
|
|
5360
5360
|
/**
|
|
5361
5361
|
* Links agents to dataset run configs. Many-to-many relationship that
|
|
@@ -5364,11 +5364,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm37.Relations<"sub_
|
|
|
5364
5364
|
*
|
|
5365
5365
|
* Includes: datasetRunConfigId, agentId, and timestamps
|
|
5366
5366
|
*/
|
|
5367
|
-
declare const datasetRunConfigAgentRelations:
|
|
5367
|
+
declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1302.PgTableWithColumns<{
|
|
5368
5368
|
name: "dataset_run_config_agent_relations";
|
|
5369
5369
|
schema: undefined;
|
|
5370
5370
|
columns: {
|
|
5371
|
-
createdAt:
|
|
5371
|
+
createdAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5372
5372
|
name: "created_at";
|
|
5373
5373
|
tableName: "dataset_run_config_agent_relations";
|
|
5374
5374
|
dataType: "string";
|
|
@@ -5385,7 +5385,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5385
5385
|
identity: undefined;
|
|
5386
5386
|
generated: undefined;
|
|
5387
5387
|
}, {}, {}>;
|
|
5388
|
-
updatedAt:
|
|
5388
|
+
updatedAt: drizzle_orm_pg_core1302.PgColumn<{
|
|
5389
5389
|
name: "updated_at";
|
|
5390
5390
|
tableName: "dataset_run_config_agent_relations";
|
|
5391
5391
|
dataType: "string";
|
|
@@ -5402,7 +5402,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5402
5402
|
identity: undefined;
|
|
5403
5403
|
generated: undefined;
|
|
5404
5404
|
}, {}, {}>;
|
|
5405
|
-
datasetRunConfigId:
|
|
5405
|
+
datasetRunConfigId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5406
5406
|
name: "dataset_run_config_id";
|
|
5407
5407
|
tableName: "dataset_run_config_agent_relations";
|
|
5408
5408
|
dataType: "string";
|
|
@@ -5419,7 +5419,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5419
5419
|
identity: undefined;
|
|
5420
5420
|
generated: undefined;
|
|
5421
5421
|
}, {}, {}>;
|
|
5422
|
-
agentId:
|
|
5422
|
+
agentId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5423
5423
|
name: "agent_id";
|
|
5424
5424
|
tableName: "dataset_run_config_agent_relations";
|
|
5425
5425
|
dataType: "string";
|
|
@@ -5436,7 +5436,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5436
5436
|
identity: undefined;
|
|
5437
5437
|
generated: undefined;
|
|
5438
5438
|
}, {}, {}>;
|
|
5439
|
-
projectId:
|
|
5439
|
+
projectId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5440
5440
|
name: "project_id";
|
|
5441
5441
|
tableName: "dataset_run_config_agent_relations";
|
|
5442
5442
|
dataType: "string";
|
|
@@ -5455,7 +5455,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5455
5455
|
}, {}, {
|
|
5456
5456
|
length: 256;
|
|
5457
5457
|
}>;
|
|
5458
|
-
tenantId:
|
|
5458
|
+
tenantId: drizzle_orm_pg_core1302.PgColumn<{
|
|
5459
5459
|
name: "tenant_id";
|
|
5460
5460
|
tableName: "dataset_run_config_agent_relations";
|
|
5461
5461
|
dataType: "string";
|
|
@@ -5474,7 +5474,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5474
5474
|
}, {}, {
|
|
5475
5475
|
length: 256;
|
|
5476
5476
|
}>;
|
|
5477
|
-
id:
|
|
5477
|
+
id: drizzle_orm_pg_core1302.PgColumn<{
|
|
5478
5478
|
name: "id";
|
|
5479
5479
|
tableName: "dataset_run_config_agent_relations";
|
|
5480
5480
|
dataType: "string";
|