@inkeep/agents-core 0.64.1 → 0.64.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/init.js +2 -2
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/constants/otel-attributes.d.ts +5 -0
- package/dist/constants/otel-attributes.js +7 -2
- package/dist/constants/signoz-queries.d.ts +1 -0
- package/dist/constants/signoz-queries.js +2 -1
- package/dist/data-access/index.d.ts +2 -1
- package/dist/data-access/index.js +2 -1
- package/dist/data-access/manage/agents.d.ts +21 -21
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
- 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 +21 -21
- package/dist/data-access/manage/tools.js +1 -1
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +10 -10
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- package/dist/data-access/runtime/streamChunks.d.ts +29 -0
- package/dist/data-access/runtime/streamChunks.js +65 -0
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/dolt-safe-jsonb.d.ts +12 -0
- package/dist/db/manage/dolt-safe-jsonb.js +61 -0
- package/dist/db/manage/manage-schema.d.ts +487 -487
- package/dist/db/manage/manage-schema.js +40 -39
- package/dist/db/runtime/runtime-schema.d.ts +510 -378
- package/dist/db/runtime/runtime-schema.js +20 -1
- package/dist/dolt/ref-helpers.js +15 -1
- package/dist/dolt/ref-scope.js +29 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -4
- package/dist/setup/setup.d.ts +3 -1
- package/dist/setup/setup.js +14 -10
- package/dist/types/utility.d.ts +1 -0
- package/dist/utils/index.d.ts +3 -3
- package/dist/utils/index.js +3 -3
- package/dist/utils/jwt-helpers.d.ts +2 -3
- package/dist/utils/jwt-helpers.js +2 -3
- package/dist/utils/retry-client.d.ts +8 -0
- package/dist/utils/retry-client.js +29 -0
- package/dist/utils/service-token-auth.d.ts +3 -0
- package/dist/utils/service-token-auth.js +5 -2
- package/dist/utils/temp-jwt.d.ts +1 -6
- package/dist/utils/temp-jwt.js +1 -12
- package/dist/utils/work-app-mcp.js +1 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +32 -32
- package/dist/validation/schemas.d.ts +2096 -2096
- package/drizzle/runtime/0031_fantastic_gorilla_man.sql +13 -0
- package/drizzle/runtime/meta/0031_snapshot.json +4872 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +6 -2
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
|
|
2
2
|
import { JsonSchemaProperty } from "../../validation/json-schemas.js";
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
3
|
+
import * as drizzle_orm49 from "drizzle-orm";
|
|
4
|
+
import * as drizzle_orm_pg_core1826 from "drizzle-orm/pg-core";
|
|
5
5
|
|
|
6
6
|
//#region src/db/manage/manage-schema.d.ts
|
|
7
7
|
declare namespace manage_schema_d_exports {
|
|
8
8
|
export { agentDatasetRelations, agentDatasetRelationsRelations, agentEvaluatorRelations, agentEvaluatorRelationsRelations, agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, projects, projectsRelations, skillFiles, skillFilesRelations, skills, skillsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentSkills, subAgentSkillsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
|
|
9
9
|
}
|
|
10
|
-
declare const projects:
|
|
10
|
+
declare const projects: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
11
11
|
name: "projects";
|
|
12
12
|
schema: undefined;
|
|
13
13
|
columns: {
|
|
14
|
-
createdAt:
|
|
14
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
15
15
|
name: "created_at";
|
|
16
16
|
tableName: "projects";
|
|
17
17
|
dataType: "string";
|
|
@@ -28,7 +28,7 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
28
28
|
identity: undefined;
|
|
29
29
|
generated: undefined;
|
|
30
30
|
}, {}, {}>;
|
|
31
|
-
updatedAt:
|
|
31
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
32
32
|
name: "updated_at";
|
|
33
33
|
tableName: "projects";
|
|
34
34
|
dataType: "string";
|
|
@@ -45,8 +45,8 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
45
45
|
identity: undefined;
|
|
46
46
|
generated: undefined;
|
|
47
47
|
}, {}, {}>;
|
|
48
|
-
models:
|
|
49
|
-
name:
|
|
48
|
+
models: drizzle_orm_pg_core1826.PgColumn<{
|
|
49
|
+
name: string;
|
|
50
50
|
tableName: "projects";
|
|
51
51
|
dataType: "json";
|
|
52
52
|
columnType: "PgJsonb";
|
|
@@ -102,8 +102,8 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
102
102
|
} | undefined;
|
|
103
103
|
};
|
|
104
104
|
}>;
|
|
105
|
-
stopWhen:
|
|
106
|
-
name:
|
|
105
|
+
stopWhen: drizzle_orm_pg_core1826.PgColumn<{
|
|
106
|
+
name: string;
|
|
107
107
|
tableName: "projects";
|
|
108
108
|
dataType: "json";
|
|
109
109
|
columnType: "PgJsonb";
|
|
@@ -127,7 +127,7 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
127
127
|
stepCountIs?: number | undefined;
|
|
128
128
|
};
|
|
129
129
|
}>;
|
|
130
|
-
name:
|
|
130
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
131
131
|
name: "name";
|
|
132
132
|
tableName: "projects";
|
|
133
133
|
dataType: "string";
|
|
@@ -146,7 +146,7 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
146
146
|
}, {}, {
|
|
147
147
|
length: 256;
|
|
148
148
|
}>;
|
|
149
|
-
description:
|
|
149
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
150
150
|
name: "description";
|
|
151
151
|
tableName: "projects";
|
|
152
152
|
dataType: "string";
|
|
@@ -163,7 +163,7 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
163
163
|
identity: undefined;
|
|
164
164
|
generated: undefined;
|
|
165
165
|
}, {}, {}>;
|
|
166
|
-
tenantId:
|
|
166
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
167
167
|
name: "tenant_id";
|
|
168
168
|
tableName: "projects";
|
|
169
169
|
dataType: "string";
|
|
@@ -182,7 +182,7 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
182
182
|
}, {}, {
|
|
183
183
|
length: 256;
|
|
184
184
|
}>;
|
|
185
|
-
id:
|
|
185
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
186
186
|
name: "id";
|
|
187
187
|
tableName: "projects";
|
|
188
188
|
dataType: "string";
|
|
@@ -204,11 +204,11 @@ declare const projects: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
204
204
|
};
|
|
205
205
|
dialect: "pg";
|
|
206
206
|
}>;
|
|
207
|
-
declare const agents:
|
|
207
|
+
declare const agents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
208
208
|
name: "agent";
|
|
209
209
|
schema: undefined;
|
|
210
210
|
columns: {
|
|
211
|
-
createdAt:
|
|
211
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
212
212
|
name: "created_at";
|
|
213
213
|
tableName: "agent";
|
|
214
214
|
dataType: "string";
|
|
@@ -225,7 +225,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
225
225
|
identity: undefined;
|
|
226
226
|
generated: undefined;
|
|
227
227
|
}, {}, {}>;
|
|
228
|
-
updatedAt:
|
|
228
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
229
229
|
name: "updated_at";
|
|
230
230
|
tableName: "agent";
|
|
231
231
|
dataType: "string";
|
|
@@ -242,7 +242,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
242
242
|
identity: undefined;
|
|
243
243
|
generated: undefined;
|
|
244
244
|
}, {}, {}>;
|
|
245
|
-
defaultSubAgentId:
|
|
245
|
+
defaultSubAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
246
246
|
name: "default_sub_agent_id";
|
|
247
247
|
tableName: "agent";
|
|
248
248
|
dataType: "string";
|
|
@@ -261,7 +261,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
261
261
|
}, {}, {
|
|
262
262
|
length: 256;
|
|
263
263
|
}>;
|
|
264
|
-
contextConfigId:
|
|
264
|
+
contextConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
265
265
|
name: "context_config_id";
|
|
266
266
|
tableName: "agent";
|
|
267
267
|
dataType: "string";
|
|
@@ -280,8 +280,8 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
280
280
|
}, {}, {
|
|
281
281
|
length: 256;
|
|
282
282
|
}>;
|
|
283
|
-
models:
|
|
284
|
-
name:
|
|
283
|
+
models: drizzle_orm_pg_core1826.PgColumn<{
|
|
284
|
+
name: string;
|
|
285
285
|
tableName: "agent";
|
|
286
286
|
dataType: "json";
|
|
287
287
|
columnType: "PgJsonb";
|
|
@@ -337,8 +337,8 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
337
337
|
} | undefined;
|
|
338
338
|
};
|
|
339
339
|
}>;
|
|
340
|
-
statusUpdates:
|
|
341
|
-
name:
|
|
340
|
+
statusUpdates: drizzle_orm_pg_core1826.PgColumn<{
|
|
341
|
+
name: string;
|
|
342
342
|
tableName: "agent";
|
|
343
343
|
dataType: "json";
|
|
344
344
|
columnType: "PgJsonb";
|
|
@@ -384,7 +384,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
384
384
|
}[] | undefined;
|
|
385
385
|
};
|
|
386
386
|
}>;
|
|
387
|
-
prompt:
|
|
387
|
+
prompt: drizzle_orm_pg_core1826.PgColumn<{
|
|
388
388
|
name: "prompt";
|
|
389
389
|
tableName: "agent";
|
|
390
390
|
dataType: "string";
|
|
@@ -401,8 +401,8 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
401
401
|
identity: undefined;
|
|
402
402
|
generated: undefined;
|
|
403
403
|
}, {}, {}>;
|
|
404
|
-
stopWhen:
|
|
405
|
-
name:
|
|
404
|
+
stopWhen: drizzle_orm_pg_core1826.PgColumn<{
|
|
405
|
+
name: string;
|
|
406
406
|
tableName: "agent";
|
|
407
407
|
dataType: "json";
|
|
408
408
|
columnType: "PgJsonb";
|
|
@@ -424,7 +424,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
424
424
|
transferCountIs?: number | undefined;
|
|
425
425
|
};
|
|
426
426
|
}>;
|
|
427
|
-
executionMode:
|
|
427
|
+
executionMode: drizzle_orm_pg_core1826.PgColumn<{
|
|
428
428
|
name: "execution_mode";
|
|
429
429
|
tableName: "agent";
|
|
430
430
|
dataType: "string";
|
|
@@ -444,7 +444,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
444
444
|
length: 50;
|
|
445
445
|
$type: "classic" | "durable";
|
|
446
446
|
}>;
|
|
447
|
-
name:
|
|
447
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
448
448
|
name: "name";
|
|
449
449
|
tableName: "agent";
|
|
450
450
|
dataType: "string";
|
|
@@ -463,7 +463,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
463
463
|
}, {}, {
|
|
464
464
|
length: 256;
|
|
465
465
|
}>;
|
|
466
|
-
description:
|
|
466
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
467
467
|
name: "description";
|
|
468
468
|
tableName: "agent";
|
|
469
469
|
dataType: "string";
|
|
@@ -480,7 +480,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
480
480
|
identity: undefined;
|
|
481
481
|
generated: undefined;
|
|
482
482
|
}, {}, {}>;
|
|
483
|
-
projectId:
|
|
483
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
484
484
|
name: "project_id";
|
|
485
485
|
tableName: "agent";
|
|
486
486
|
dataType: "string";
|
|
@@ -499,7 +499,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
499
499
|
}, {}, {
|
|
500
500
|
length: 256;
|
|
501
501
|
}>;
|
|
502
|
-
tenantId:
|
|
502
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
503
503
|
name: "tenant_id";
|
|
504
504
|
tableName: "agent";
|
|
505
505
|
dataType: "string";
|
|
@@ -518,7 +518,7 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
518
518
|
}, {}, {
|
|
519
519
|
length: 256;
|
|
520
520
|
}>;
|
|
521
|
-
id:
|
|
521
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
522
522
|
name: "id";
|
|
523
523
|
tableName: "agent";
|
|
524
524
|
dataType: "string";
|
|
@@ -540,11 +540,11 @@ declare const agents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
540
540
|
};
|
|
541
541
|
dialect: "pg";
|
|
542
542
|
}>;
|
|
543
|
-
declare const contextConfigs:
|
|
543
|
+
declare const contextConfigs: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
544
544
|
name: "context_configs";
|
|
545
545
|
schema: undefined;
|
|
546
546
|
columns: {
|
|
547
|
-
createdAt:
|
|
547
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
548
548
|
name: "created_at";
|
|
549
549
|
tableName: "context_configs";
|
|
550
550
|
dataType: "string";
|
|
@@ -561,7 +561,7 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
561
561
|
identity: undefined;
|
|
562
562
|
generated: undefined;
|
|
563
563
|
}, {}, {}>;
|
|
564
|
-
updatedAt:
|
|
564
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
565
565
|
name: "updated_at";
|
|
566
566
|
tableName: "context_configs";
|
|
567
567
|
dataType: "string";
|
|
@@ -578,8 +578,8 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
578
578
|
identity: undefined;
|
|
579
579
|
generated: undefined;
|
|
580
580
|
}, {}, {}>;
|
|
581
|
-
headersSchema:
|
|
582
|
-
name:
|
|
581
|
+
headersSchema: drizzle_orm_pg_core1826.PgColumn<{
|
|
582
|
+
name: string;
|
|
583
583
|
tableName: "context_configs";
|
|
584
584
|
dataType: "json";
|
|
585
585
|
columnType: "PgJsonb";
|
|
@@ -597,8 +597,8 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
597
597
|
}, {}, {
|
|
598
598
|
$type: unknown;
|
|
599
599
|
}>;
|
|
600
|
-
contextVariables:
|
|
601
|
-
name:
|
|
600
|
+
contextVariables: drizzle_orm_pg_core1826.PgColumn<{
|
|
601
|
+
name: string;
|
|
602
602
|
tableName: "context_configs";
|
|
603
603
|
dataType: "json";
|
|
604
604
|
columnType: "PgJsonb";
|
|
@@ -616,7 +616,7 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
616
616
|
}, {}, {
|
|
617
617
|
$type: Record<string, ContextFetchDefinition>;
|
|
618
618
|
}>;
|
|
619
|
-
agentId:
|
|
619
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
620
620
|
name: "agent_id";
|
|
621
621
|
tableName: "context_configs";
|
|
622
622
|
dataType: "string";
|
|
@@ -635,7 +635,7 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
635
635
|
}, {}, {
|
|
636
636
|
length: 256;
|
|
637
637
|
}>;
|
|
638
|
-
projectId:
|
|
638
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
639
639
|
name: "project_id";
|
|
640
640
|
tableName: "context_configs";
|
|
641
641
|
dataType: "string";
|
|
@@ -654,7 +654,7 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
654
654
|
}, {}, {
|
|
655
655
|
length: 256;
|
|
656
656
|
}>;
|
|
657
|
-
tenantId:
|
|
657
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
658
658
|
name: "tenant_id";
|
|
659
659
|
tableName: "context_configs";
|
|
660
660
|
dataType: "string";
|
|
@@ -673,7 +673,7 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
673
673
|
}, {}, {
|
|
674
674
|
length: 256;
|
|
675
675
|
}>;
|
|
676
|
-
id:
|
|
676
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
677
677
|
name: "id";
|
|
678
678
|
tableName: "context_configs";
|
|
679
679
|
dataType: "string";
|
|
@@ -695,11 +695,11 @@ declare const contextConfigs: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
695
695
|
};
|
|
696
696
|
dialect: "pg";
|
|
697
697
|
}>;
|
|
698
|
-
declare const triggers:
|
|
698
|
+
declare const triggers: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
699
699
|
name: "triggers";
|
|
700
700
|
schema: undefined;
|
|
701
701
|
columns: {
|
|
702
|
-
createdAt:
|
|
702
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
703
703
|
name: "created_at";
|
|
704
704
|
tableName: "triggers";
|
|
705
705
|
dataType: "string";
|
|
@@ -716,7 +716,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
716
716
|
identity: undefined;
|
|
717
717
|
generated: undefined;
|
|
718
718
|
}, {}, {}>;
|
|
719
|
-
updatedAt:
|
|
719
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
720
720
|
name: "updated_at";
|
|
721
721
|
tableName: "triggers";
|
|
722
722
|
dataType: "string";
|
|
@@ -733,7 +733,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
733
733
|
identity: undefined;
|
|
734
734
|
generated: undefined;
|
|
735
735
|
}, {}, {}>;
|
|
736
|
-
enabled:
|
|
736
|
+
enabled: drizzle_orm_pg_core1826.PgColumn<{
|
|
737
737
|
name: "enabled";
|
|
738
738
|
tableName: "triggers";
|
|
739
739
|
dataType: "boolean";
|
|
@@ -750,8 +750,8 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
750
750
|
identity: undefined;
|
|
751
751
|
generated: undefined;
|
|
752
752
|
}, {}, {}>;
|
|
753
|
-
inputSchema:
|
|
754
|
-
name:
|
|
753
|
+
inputSchema: drizzle_orm_pg_core1826.PgColumn<{
|
|
754
|
+
name: string;
|
|
755
755
|
tableName: "triggers";
|
|
756
756
|
dataType: "json";
|
|
757
757
|
columnType: "PgJsonb";
|
|
@@ -769,8 +769,8 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
769
769
|
}, {}, {
|
|
770
770
|
$type: Record<string, unknown> | null;
|
|
771
771
|
}>;
|
|
772
|
-
outputTransform:
|
|
773
|
-
name:
|
|
772
|
+
outputTransform: drizzle_orm_pg_core1826.PgColumn<{
|
|
773
|
+
name: string;
|
|
774
774
|
tableName: "triggers";
|
|
775
775
|
dataType: "json";
|
|
776
776
|
columnType: "PgJsonb";
|
|
@@ -794,7 +794,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
794
794
|
objectTransformation?: Record<string, string>;
|
|
795
795
|
} | null;
|
|
796
796
|
}>;
|
|
797
|
-
messageTemplate:
|
|
797
|
+
messageTemplate: drizzle_orm_pg_core1826.PgColumn<{
|
|
798
798
|
name: "message_template";
|
|
799
799
|
tableName: "triggers";
|
|
800
800
|
dataType: "string";
|
|
@@ -811,8 +811,8 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
811
811
|
identity: undefined;
|
|
812
812
|
generated: undefined;
|
|
813
813
|
}, {}, {}>;
|
|
814
|
-
authentication:
|
|
815
|
-
name:
|
|
814
|
+
authentication: drizzle_orm_pg_core1826.PgColumn<{
|
|
815
|
+
name: string;
|
|
816
816
|
tableName: "triggers";
|
|
817
817
|
dataType: "json";
|
|
818
818
|
columnType: "PgJsonb";
|
|
@@ -830,7 +830,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
830
830
|
}, {}, {
|
|
831
831
|
$type: unknown;
|
|
832
832
|
}>;
|
|
833
|
-
signingSecretCredentialReferenceId:
|
|
833
|
+
signingSecretCredentialReferenceId: drizzle_orm_pg_core1826.PgColumn<{
|
|
834
834
|
name: "signing_secret_credential_reference_id";
|
|
835
835
|
tableName: "triggers";
|
|
836
836
|
dataType: "string";
|
|
@@ -849,8 +849,8 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
849
849
|
}, {}, {
|
|
850
850
|
length: 256;
|
|
851
851
|
}>;
|
|
852
|
-
signatureVerification:
|
|
853
|
-
name:
|
|
852
|
+
signatureVerification: drizzle_orm_pg_core1826.PgColumn<{
|
|
853
|
+
name: string;
|
|
854
854
|
tableName: "triggers";
|
|
855
855
|
dataType: "json";
|
|
856
856
|
columnType: "PgJsonb";
|
|
@@ -858,13 +858,13 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
858
858
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
859
859
|
encoding: "hex" | "base64";
|
|
860
860
|
signature: {
|
|
861
|
-
source: "query" | "
|
|
861
|
+
source: "query" | "body" | "header";
|
|
862
862
|
key: string;
|
|
863
863
|
prefix?: string | undefined;
|
|
864
864
|
regex?: string | undefined;
|
|
865
865
|
};
|
|
866
866
|
signedComponents: {
|
|
867
|
-
source: "literal" | "
|
|
867
|
+
source: "literal" | "body" | "header";
|
|
868
868
|
required: boolean;
|
|
869
869
|
key?: string | undefined;
|
|
870
870
|
value?: string | undefined;
|
|
@@ -895,13 +895,13 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
895
895
|
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
896
896
|
encoding: "hex" | "base64";
|
|
897
897
|
signature: {
|
|
898
|
-
source: "query" | "
|
|
898
|
+
source: "query" | "body" | "header";
|
|
899
899
|
key: string;
|
|
900
900
|
prefix?: string | undefined;
|
|
901
901
|
regex?: string | undefined;
|
|
902
902
|
};
|
|
903
903
|
signedComponents: {
|
|
904
|
-
source: "literal" | "
|
|
904
|
+
source: "literal" | "body" | "header";
|
|
905
905
|
required: boolean;
|
|
906
906
|
key?: string | undefined;
|
|
907
907
|
value?: string | undefined;
|
|
@@ -918,7 +918,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
918
918
|
} | undefined;
|
|
919
919
|
} | null;
|
|
920
920
|
}>;
|
|
921
|
-
runAsUserId:
|
|
921
|
+
runAsUserId: drizzle_orm_pg_core1826.PgColumn<{
|
|
922
922
|
name: "run_as_user_id";
|
|
923
923
|
tableName: "triggers";
|
|
924
924
|
dataType: "string";
|
|
@@ -937,7 +937,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
937
937
|
}, {}, {
|
|
938
938
|
length: 256;
|
|
939
939
|
}>;
|
|
940
|
-
createdBy:
|
|
940
|
+
createdBy: drizzle_orm_pg_core1826.PgColumn<{
|
|
941
941
|
name: "created_by";
|
|
942
942
|
tableName: "triggers";
|
|
943
943
|
dataType: "string";
|
|
@@ -956,7 +956,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
956
956
|
}, {}, {
|
|
957
957
|
length: 256;
|
|
958
958
|
}>;
|
|
959
|
-
name:
|
|
959
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
960
960
|
name: "name";
|
|
961
961
|
tableName: "triggers";
|
|
962
962
|
dataType: "string";
|
|
@@ -975,7 +975,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
975
975
|
}, {}, {
|
|
976
976
|
length: 256;
|
|
977
977
|
}>;
|
|
978
|
-
description:
|
|
978
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
979
979
|
name: "description";
|
|
980
980
|
tableName: "triggers";
|
|
981
981
|
dataType: "string";
|
|
@@ -992,7 +992,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
992
992
|
identity: undefined;
|
|
993
993
|
generated: undefined;
|
|
994
994
|
}, {}, {}>;
|
|
995
|
-
agentId:
|
|
995
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
996
996
|
name: "agent_id";
|
|
997
997
|
tableName: "triggers";
|
|
998
998
|
dataType: "string";
|
|
@@ -1011,7 +1011,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1011
1011
|
}, {}, {
|
|
1012
1012
|
length: 256;
|
|
1013
1013
|
}>;
|
|
1014
|
-
projectId:
|
|
1014
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1015
1015
|
name: "project_id";
|
|
1016
1016
|
tableName: "triggers";
|
|
1017
1017
|
dataType: "string";
|
|
@@ -1030,7 +1030,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1030
1030
|
}, {}, {
|
|
1031
1031
|
length: 256;
|
|
1032
1032
|
}>;
|
|
1033
|
-
tenantId:
|
|
1033
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1034
1034
|
name: "tenant_id";
|
|
1035
1035
|
tableName: "triggers";
|
|
1036
1036
|
dataType: "string";
|
|
@@ -1049,7 +1049,7 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1049
1049
|
}, {}, {
|
|
1050
1050
|
length: 256;
|
|
1051
1051
|
}>;
|
|
1052
|
-
id:
|
|
1052
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
1053
1053
|
name: "id";
|
|
1054
1054
|
tableName: "triggers";
|
|
1055
1055
|
dataType: "string";
|
|
@@ -1071,11 +1071,11 @@ declare const triggers: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1071
1071
|
};
|
|
1072
1072
|
dialect: "pg";
|
|
1073
1073
|
}>;
|
|
1074
|
-
declare const subAgents:
|
|
1074
|
+
declare const subAgents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
1075
1075
|
name: "sub_agents";
|
|
1076
1076
|
schema: undefined;
|
|
1077
1077
|
columns: {
|
|
1078
|
-
createdAt:
|
|
1078
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1079
1079
|
name: "created_at";
|
|
1080
1080
|
tableName: "sub_agents";
|
|
1081
1081
|
dataType: "string";
|
|
@@ -1092,7 +1092,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1092
1092
|
identity: undefined;
|
|
1093
1093
|
generated: undefined;
|
|
1094
1094
|
}, {}, {}>;
|
|
1095
|
-
updatedAt:
|
|
1095
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1096
1096
|
name: "updated_at";
|
|
1097
1097
|
tableName: "sub_agents";
|
|
1098
1098
|
dataType: "string";
|
|
@@ -1109,7 +1109,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1109
1109
|
identity: undefined;
|
|
1110
1110
|
generated: undefined;
|
|
1111
1111
|
}, {}, {}>;
|
|
1112
|
-
prompt:
|
|
1112
|
+
prompt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1113
1113
|
name: "prompt";
|
|
1114
1114
|
tableName: "sub_agents";
|
|
1115
1115
|
dataType: "string";
|
|
@@ -1126,8 +1126,8 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1126
1126
|
identity: undefined;
|
|
1127
1127
|
generated: undefined;
|
|
1128
1128
|
}, {}, {}>;
|
|
1129
|
-
conversationHistoryConfig:
|
|
1130
|
-
name:
|
|
1129
|
+
conversationHistoryConfig: drizzle_orm_pg_core1826.PgColumn<{
|
|
1130
|
+
name: string;
|
|
1131
1131
|
tableName: "sub_agents";
|
|
1132
1132
|
dataType: "json";
|
|
1133
1133
|
columnType: "PgJsonb";
|
|
@@ -1145,8 +1145,8 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1145
1145
|
}, {}, {
|
|
1146
1146
|
$type: ConversationHistoryConfig;
|
|
1147
1147
|
}>;
|
|
1148
|
-
models:
|
|
1149
|
-
name:
|
|
1148
|
+
models: drizzle_orm_pg_core1826.PgColumn<{
|
|
1149
|
+
name: string;
|
|
1150
1150
|
tableName: "sub_agents";
|
|
1151
1151
|
dataType: "json";
|
|
1152
1152
|
columnType: "PgJsonb";
|
|
@@ -1202,8 +1202,8 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1202
1202
|
} | undefined;
|
|
1203
1203
|
};
|
|
1204
1204
|
}>;
|
|
1205
|
-
stopWhen:
|
|
1206
|
-
name:
|
|
1205
|
+
stopWhen: drizzle_orm_pg_core1826.PgColumn<{
|
|
1206
|
+
name: string;
|
|
1207
1207
|
tableName: "sub_agents";
|
|
1208
1208
|
dataType: "json";
|
|
1209
1209
|
columnType: "PgJsonb";
|
|
@@ -1225,7 +1225,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1225
1225
|
stepCountIs?: number | undefined;
|
|
1226
1226
|
};
|
|
1227
1227
|
}>;
|
|
1228
|
-
name:
|
|
1228
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
1229
1229
|
name: "name";
|
|
1230
1230
|
tableName: "sub_agents";
|
|
1231
1231
|
dataType: "string";
|
|
@@ -1244,7 +1244,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1244
1244
|
}, {}, {
|
|
1245
1245
|
length: 256;
|
|
1246
1246
|
}>;
|
|
1247
|
-
description:
|
|
1247
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
1248
1248
|
name: "description";
|
|
1249
1249
|
tableName: "sub_agents";
|
|
1250
1250
|
dataType: "string";
|
|
@@ -1261,7 +1261,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1261
1261
|
identity: undefined;
|
|
1262
1262
|
generated: undefined;
|
|
1263
1263
|
}, {}, {}>;
|
|
1264
|
-
agentId:
|
|
1264
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1265
1265
|
name: "agent_id";
|
|
1266
1266
|
tableName: "sub_agents";
|
|
1267
1267
|
dataType: "string";
|
|
@@ -1280,7 +1280,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1280
1280
|
}, {}, {
|
|
1281
1281
|
length: 256;
|
|
1282
1282
|
}>;
|
|
1283
|
-
projectId:
|
|
1283
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1284
1284
|
name: "project_id";
|
|
1285
1285
|
tableName: "sub_agents";
|
|
1286
1286
|
dataType: "string";
|
|
@@ -1299,7 +1299,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1299
1299
|
}, {}, {
|
|
1300
1300
|
length: 256;
|
|
1301
1301
|
}>;
|
|
1302
|
-
tenantId:
|
|
1302
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1303
1303
|
name: "tenant_id";
|
|
1304
1304
|
tableName: "sub_agents";
|
|
1305
1305
|
dataType: "string";
|
|
@@ -1318,7 +1318,7 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1318
1318
|
}, {}, {
|
|
1319
1319
|
length: 256;
|
|
1320
1320
|
}>;
|
|
1321
|
-
id:
|
|
1321
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
1322
1322
|
name: "id";
|
|
1323
1323
|
tableName: "sub_agents";
|
|
1324
1324
|
dataType: "string";
|
|
@@ -1340,11 +1340,11 @@ declare const subAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1340
1340
|
};
|
|
1341
1341
|
dialect: "pg";
|
|
1342
1342
|
}>;
|
|
1343
|
-
declare const skills:
|
|
1343
|
+
declare const skills: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
1344
1344
|
name: "skills";
|
|
1345
1345
|
schema: undefined;
|
|
1346
1346
|
columns: {
|
|
1347
|
-
createdAt:
|
|
1347
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1348
1348
|
name: "created_at";
|
|
1349
1349
|
tableName: "skills";
|
|
1350
1350
|
dataType: "string";
|
|
@@ -1361,7 +1361,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1361
1361
|
identity: undefined;
|
|
1362
1362
|
generated: undefined;
|
|
1363
1363
|
}, {}, {}>;
|
|
1364
|
-
updatedAt:
|
|
1364
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1365
1365
|
name: "updated_at";
|
|
1366
1366
|
tableName: "skills";
|
|
1367
1367
|
dataType: "string";
|
|
@@ -1378,7 +1378,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1378
1378
|
identity: undefined;
|
|
1379
1379
|
generated: undefined;
|
|
1380
1380
|
}, {}, {}>;
|
|
1381
|
-
id:
|
|
1381
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
1382
1382
|
name: "id";
|
|
1383
1383
|
tableName: "skills";
|
|
1384
1384
|
dataType: "string";
|
|
@@ -1397,7 +1397,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1397
1397
|
}, {}, {
|
|
1398
1398
|
length: 64;
|
|
1399
1399
|
}>;
|
|
1400
|
-
name:
|
|
1400
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
1401
1401
|
name: "name";
|
|
1402
1402
|
tableName: "skills";
|
|
1403
1403
|
dataType: "string";
|
|
@@ -1416,7 +1416,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1416
1416
|
}, {}, {
|
|
1417
1417
|
length: 64;
|
|
1418
1418
|
}>;
|
|
1419
|
-
description:
|
|
1419
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
1420
1420
|
name: "description";
|
|
1421
1421
|
tableName: "skills";
|
|
1422
1422
|
dataType: "string";
|
|
@@ -1433,7 +1433,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1433
1433
|
identity: undefined;
|
|
1434
1434
|
generated: undefined;
|
|
1435
1435
|
}, {}, {}>;
|
|
1436
|
-
content:
|
|
1436
|
+
content: drizzle_orm_pg_core1826.PgColumn<{
|
|
1437
1437
|
name: "content";
|
|
1438
1438
|
tableName: "skills";
|
|
1439
1439
|
dataType: "string";
|
|
@@ -1450,8 +1450,8 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1450
1450
|
identity: undefined;
|
|
1451
1451
|
generated: undefined;
|
|
1452
1452
|
}, {}, {}>;
|
|
1453
|
-
metadata:
|
|
1454
|
-
name:
|
|
1453
|
+
metadata: drizzle_orm_pg_core1826.PgColumn<{
|
|
1454
|
+
name: string;
|
|
1455
1455
|
tableName: "skills";
|
|
1456
1456
|
dataType: "json";
|
|
1457
1457
|
columnType: "PgJsonb";
|
|
@@ -1469,7 +1469,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1469
1469
|
}, {}, {
|
|
1470
1470
|
$type: Record<string, string> | null;
|
|
1471
1471
|
}>;
|
|
1472
|
-
projectId:
|
|
1472
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1473
1473
|
name: "project_id";
|
|
1474
1474
|
tableName: "skills";
|
|
1475
1475
|
dataType: "string";
|
|
@@ -1488,7 +1488,7 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1488
1488
|
}, {}, {
|
|
1489
1489
|
length: 256;
|
|
1490
1490
|
}>;
|
|
1491
|
-
tenantId:
|
|
1491
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1492
1492
|
name: "tenant_id";
|
|
1493
1493
|
tableName: "skills";
|
|
1494
1494
|
dataType: "string";
|
|
@@ -1510,11 +1510,11 @@ declare const skills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1510
1510
|
};
|
|
1511
1511
|
dialect: "pg";
|
|
1512
1512
|
}>;
|
|
1513
|
-
declare const skillFiles:
|
|
1513
|
+
declare const skillFiles: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
1514
1514
|
name: "skill_files";
|
|
1515
1515
|
schema: undefined;
|
|
1516
1516
|
columns: {
|
|
1517
|
-
createdAt:
|
|
1517
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1518
1518
|
name: "created_at";
|
|
1519
1519
|
tableName: "skill_files";
|
|
1520
1520
|
dataType: "string";
|
|
@@ -1531,7 +1531,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1531
1531
|
identity: undefined;
|
|
1532
1532
|
generated: undefined;
|
|
1533
1533
|
}, {}, {}>;
|
|
1534
|
-
updatedAt:
|
|
1534
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1535
1535
|
name: "updated_at";
|
|
1536
1536
|
tableName: "skill_files";
|
|
1537
1537
|
dataType: "string";
|
|
@@ -1548,7 +1548,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1548
1548
|
identity: undefined;
|
|
1549
1549
|
generated: undefined;
|
|
1550
1550
|
}, {}, {}>;
|
|
1551
|
-
skillId:
|
|
1551
|
+
skillId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1552
1552
|
name: "skill_id";
|
|
1553
1553
|
tableName: "skill_files";
|
|
1554
1554
|
dataType: "string";
|
|
@@ -1567,7 +1567,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1567
1567
|
}, {}, {
|
|
1568
1568
|
length: 64;
|
|
1569
1569
|
}>;
|
|
1570
|
-
filePath:
|
|
1570
|
+
filePath: drizzle_orm_pg_core1826.PgColumn<{
|
|
1571
1571
|
name: "file_path";
|
|
1572
1572
|
tableName: "skill_files";
|
|
1573
1573
|
dataType: "string";
|
|
@@ -1586,7 +1586,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1586
1586
|
}, {}, {
|
|
1587
1587
|
length: 1024;
|
|
1588
1588
|
}>;
|
|
1589
|
-
content:
|
|
1589
|
+
content: drizzle_orm_pg_core1826.PgColumn<{
|
|
1590
1590
|
name: "content";
|
|
1591
1591
|
tableName: "skill_files";
|
|
1592
1592
|
dataType: "string";
|
|
@@ -1603,7 +1603,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1603
1603
|
identity: undefined;
|
|
1604
1604
|
generated: undefined;
|
|
1605
1605
|
}, {}, {}>;
|
|
1606
|
-
projectId:
|
|
1606
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1607
1607
|
name: "project_id";
|
|
1608
1608
|
tableName: "skill_files";
|
|
1609
1609
|
dataType: "string";
|
|
@@ -1622,7 +1622,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1622
1622
|
}, {}, {
|
|
1623
1623
|
length: 256;
|
|
1624
1624
|
}>;
|
|
1625
|
-
tenantId:
|
|
1625
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1626
1626
|
name: "tenant_id";
|
|
1627
1627
|
tableName: "skill_files";
|
|
1628
1628
|
dataType: "string";
|
|
@@ -1641,7 +1641,7 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1641
1641
|
}, {}, {
|
|
1642
1642
|
length: 256;
|
|
1643
1643
|
}>;
|
|
1644
|
-
id:
|
|
1644
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
1645
1645
|
name: "id";
|
|
1646
1646
|
tableName: "skill_files";
|
|
1647
1647
|
dataType: "string";
|
|
@@ -1663,11 +1663,11 @@ declare const skillFiles: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1663
1663
|
};
|
|
1664
1664
|
dialect: "pg";
|
|
1665
1665
|
}>;
|
|
1666
|
-
declare const subAgentSkills:
|
|
1666
|
+
declare const subAgentSkills: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
1667
1667
|
name: "sub_agent_skills";
|
|
1668
1668
|
schema: undefined;
|
|
1669
1669
|
columns: {
|
|
1670
|
-
createdAt:
|
|
1670
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1671
1671
|
name: "created_at";
|
|
1672
1672
|
tableName: "sub_agent_skills";
|
|
1673
1673
|
dataType: "string";
|
|
@@ -1684,7 +1684,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1684
1684
|
identity: undefined;
|
|
1685
1685
|
generated: undefined;
|
|
1686
1686
|
}, {}, {}>;
|
|
1687
|
-
updatedAt:
|
|
1687
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1688
1688
|
name: "updated_at";
|
|
1689
1689
|
tableName: "sub_agent_skills";
|
|
1690
1690
|
dataType: "string";
|
|
@@ -1701,7 +1701,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1701
1701
|
identity: undefined;
|
|
1702
1702
|
generated: undefined;
|
|
1703
1703
|
}, {}, {}>;
|
|
1704
|
-
skillId:
|
|
1704
|
+
skillId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1705
1705
|
name: "skill_id";
|
|
1706
1706
|
tableName: "sub_agent_skills";
|
|
1707
1707
|
dataType: "string";
|
|
@@ -1720,7 +1720,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1720
1720
|
}, {}, {
|
|
1721
1721
|
length: 64;
|
|
1722
1722
|
}>;
|
|
1723
|
-
index:
|
|
1723
|
+
index: drizzle_orm_pg_core1826.PgColumn<{
|
|
1724
1724
|
name: "index";
|
|
1725
1725
|
tableName: "sub_agent_skills";
|
|
1726
1726
|
dataType: "number";
|
|
@@ -1737,7 +1737,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1737
1737
|
identity: undefined;
|
|
1738
1738
|
generated: undefined;
|
|
1739
1739
|
}, {}, {}>;
|
|
1740
|
-
alwaysLoaded:
|
|
1740
|
+
alwaysLoaded: drizzle_orm_pg_core1826.PgColumn<{
|
|
1741
1741
|
name: "always_loaded";
|
|
1742
1742
|
tableName: "sub_agent_skills";
|
|
1743
1743
|
dataType: "boolean";
|
|
@@ -1754,7 +1754,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1754
1754
|
identity: undefined;
|
|
1755
1755
|
generated: undefined;
|
|
1756
1756
|
}, {}, {}>;
|
|
1757
|
-
subAgentId:
|
|
1757
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1758
1758
|
name: "sub_agent_id";
|
|
1759
1759
|
tableName: "sub_agent_skills";
|
|
1760
1760
|
dataType: "string";
|
|
@@ -1773,7 +1773,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1773
1773
|
}, {}, {
|
|
1774
1774
|
length: 256;
|
|
1775
1775
|
}>;
|
|
1776
|
-
agentId:
|
|
1776
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1777
1777
|
name: "agent_id";
|
|
1778
1778
|
tableName: "sub_agent_skills";
|
|
1779
1779
|
dataType: "string";
|
|
@@ -1792,7 +1792,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1792
1792
|
}, {}, {
|
|
1793
1793
|
length: 256;
|
|
1794
1794
|
}>;
|
|
1795
|
-
projectId:
|
|
1795
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1796
1796
|
name: "project_id";
|
|
1797
1797
|
tableName: "sub_agent_skills";
|
|
1798
1798
|
dataType: "string";
|
|
@@ -1811,7 +1811,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1811
1811
|
}, {}, {
|
|
1812
1812
|
length: 256;
|
|
1813
1813
|
}>;
|
|
1814
|
-
tenantId:
|
|
1814
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1815
1815
|
name: "tenant_id";
|
|
1816
1816
|
tableName: "sub_agent_skills";
|
|
1817
1817
|
dataType: "string";
|
|
@@ -1830,7 +1830,7 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1830
1830
|
}, {}, {
|
|
1831
1831
|
length: 256;
|
|
1832
1832
|
}>;
|
|
1833
|
-
id:
|
|
1833
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
1834
1834
|
name: "id";
|
|
1835
1835
|
tableName: "sub_agent_skills";
|
|
1836
1836
|
dataType: "string";
|
|
@@ -1852,11 +1852,11 @@ declare const subAgentSkills: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1852
1852
|
};
|
|
1853
1853
|
dialect: "pg";
|
|
1854
1854
|
}>;
|
|
1855
|
-
declare const subAgentRelations:
|
|
1855
|
+
declare const subAgentRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
1856
1856
|
name: "sub_agent_relations";
|
|
1857
1857
|
schema: undefined;
|
|
1858
1858
|
columns: {
|
|
1859
|
-
createdAt:
|
|
1859
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1860
1860
|
name: "created_at";
|
|
1861
1861
|
tableName: "sub_agent_relations";
|
|
1862
1862
|
dataType: "string";
|
|
@@ -1873,7 +1873,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1873
1873
|
identity: undefined;
|
|
1874
1874
|
generated: undefined;
|
|
1875
1875
|
}, {}, {}>;
|
|
1876
|
-
updatedAt:
|
|
1876
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
1877
1877
|
name: "updated_at";
|
|
1878
1878
|
tableName: "sub_agent_relations";
|
|
1879
1879
|
dataType: "string";
|
|
@@ -1890,7 +1890,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1890
1890
|
identity: undefined;
|
|
1891
1891
|
generated: undefined;
|
|
1892
1892
|
}, {}, {}>;
|
|
1893
|
-
sourceSubAgentId:
|
|
1893
|
+
sourceSubAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1894
1894
|
name: "source_sub_agent_id";
|
|
1895
1895
|
tableName: "sub_agent_relations";
|
|
1896
1896
|
dataType: "string";
|
|
@@ -1909,7 +1909,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1909
1909
|
}, {}, {
|
|
1910
1910
|
length: 256;
|
|
1911
1911
|
}>;
|
|
1912
|
-
targetSubAgentId:
|
|
1912
|
+
targetSubAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1913
1913
|
name: "target_sub_agent_id";
|
|
1914
1914
|
tableName: "sub_agent_relations";
|
|
1915
1915
|
dataType: "string";
|
|
@@ -1928,7 +1928,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1928
1928
|
}, {}, {
|
|
1929
1929
|
length: 256;
|
|
1930
1930
|
}>;
|
|
1931
|
-
relationType:
|
|
1931
|
+
relationType: drizzle_orm_pg_core1826.PgColumn<{
|
|
1932
1932
|
name: "relation_type";
|
|
1933
1933
|
tableName: "sub_agent_relations";
|
|
1934
1934
|
dataType: "string";
|
|
@@ -1947,7 +1947,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1947
1947
|
}, {}, {
|
|
1948
1948
|
length: 256;
|
|
1949
1949
|
}>;
|
|
1950
|
-
agentId:
|
|
1950
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1951
1951
|
name: "agent_id";
|
|
1952
1952
|
tableName: "sub_agent_relations";
|
|
1953
1953
|
dataType: "string";
|
|
@@ -1966,7 +1966,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1966
1966
|
}, {}, {
|
|
1967
1967
|
length: 256;
|
|
1968
1968
|
}>;
|
|
1969
|
-
projectId:
|
|
1969
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1970
1970
|
name: "project_id";
|
|
1971
1971
|
tableName: "sub_agent_relations";
|
|
1972
1972
|
dataType: "string";
|
|
@@ -1985,7 +1985,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
1985
1985
|
}, {}, {
|
|
1986
1986
|
length: 256;
|
|
1987
1987
|
}>;
|
|
1988
|
-
tenantId:
|
|
1988
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
1989
1989
|
name: "tenant_id";
|
|
1990
1990
|
tableName: "sub_agent_relations";
|
|
1991
1991
|
dataType: "string";
|
|
@@ -2004,7 +2004,7 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2004
2004
|
}, {}, {
|
|
2005
2005
|
length: 256;
|
|
2006
2006
|
}>;
|
|
2007
|
-
id:
|
|
2007
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2008
2008
|
name: "id";
|
|
2009
2009
|
tableName: "sub_agent_relations";
|
|
2010
2010
|
dataType: "string";
|
|
@@ -2026,11 +2026,11 @@ declare const subAgentRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2026
2026
|
};
|
|
2027
2027
|
dialect: "pg";
|
|
2028
2028
|
}>;
|
|
2029
|
-
declare const externalAgents:
|
|
2029
|
+
declare const externalAgents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2030
2030
|
name: "external_agents";
|
|
2031
2031
|
schema: undefined;
|
|
2032
2032
|
columns: {
|
|
2033
|
-
createdAt:
|
|
2033
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2034
2034
|
name: "created_at";
|
|
2035
2035
|
tableName: "external_agents";
|
|
2036
2036
|
dataType: "string";
|
|
@@ -2047,7 +2047,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2047
2047
|
identity: undefined;
|
|
2048
2048
|
generated: undefined;
|
|
2049
2049
|
}, {}, {}>;
|
|
2050
|
-
updatedAt:
|
|
2050
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2051
2051
|
name: "updated_at";
|
|
2052
2052
|
tableName: "external_agents";
|
|
2053
2053
|
dataType: "string";
|
|
@@ -2064,7 +2064,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2064
2064
|
identity: undefined;
|
|
2065
2065
|
generated: undefined;
|
|
2066
2066
|
}, {}, {}>;
|
|
2067
|
-
baseUrl:
|
|
2067
|
+
baseUrl: drizzle_orm_pg_core1826.PgColumn<{
|
|
2068
2068
|
name: "base_url";
|
|
2069
2069
|
tableName: "external_agents";
|
|
2070
2070
|
dataType: "string";
|
|
@@ -2081,7 +2081,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2081
2081
|
identity: undefined;
|
|
2082
2082
|
generated: undefined;
|
|
2083
2083
|
}, {}, {}>;
|
|
2084
|
-
credentialReferenceId:
|
|
2084
|
+
credentialReferenceId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2085
2085
|
name: "credential_reference_id";
|
|
2086
2086
|
tableName: "external_agents";
|
|
2087
2087
|
dataType: "string";
|
|
@@ -2100,7 +2100,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2100
2100
|
}, {}, {
|
|
2101
2101
|
length: 256;
|
|
2102
2102
|
}>;
|
|
2103
|
-
name:
|
|
2103
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
2104
2104
|
name: "name";
|
|
2105
2105
|
tableName: "external_agents";
|
|
2106
2106
|
dataType: "string";
|
|
@@ -2119,7 +2119,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2119
2119
|
}, {}, {
|
|
2120
2120
|
length: 256;
|
|
2121
2121
|
}>;
|
|
2122
|
-
description:
|
|
2122
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
2123
2123
|
name: "description";
|
|
2124
2124
|
tableName: "external_agents";
|
|
2125
2125
|
dataType: "string";
|
|
@@ -2136,7 +2136,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2136
2136
|
identity: undefined;
|
|
2137
2137
|
generated: undefined;
|
|
2138
2138
|
}, {}, {}>;
|
|
2139
|
-
projectId:
|
|
2139
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2140
2140
|
name: "project_id";
|
|
2141
2141
|
tableName: "external_agents";
|
|
2142
2142
|
dataType: "string";
|
|
@@ -2155,7 +2155,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2155
2155
|
}, {}, {
|
|
2156
2156
|
length: 256;
|
|
2157
2157
|
}>;
|
|
2158
|
-
tenantId:
|
|
2158
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2159
2159
|
name: "tenant_id";
|
|
2160
2160
|
tableName: "external_agents";
|
|
2161
2161
|
dataType: "string";
|
|
@@ -2174,7 +2174,7 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2174
2174
|
}, {}, {
|
|
2175
2175
|
length: 256;
|
|
2176
2176
|
}>;
|
|
2177
|
-
id:
|
|
2177
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2178
2178
|
name: "id";
|
|
2179
2179
|
tableName: "external_agents";
|
|
2180
2180
|
dataType: "string";
|
|
@@ -2196,11 +2196,11 @@ declare const externalAgents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2196
2196
|
};
|
|
2197
2197
|
dialect: "pg";
|
|
2198
2198
|
}>;
|
|
2199
|
-
declare const dataComponents:
|
|
2199
|
+
declare const dataComponents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2200
2200
|
name: "data_components";
|
|
2201
2201
|
schema: undefined;
|
|
2202
2202
|
columns: {
|
|
2203
|
-
createdAt:
|
|
2203
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2204
2204
|
name: "created_at";
|
|
2205
2205
|
tableName: "data_components";
|
|
2206
2206
|
dataType: "string";
|
|
@@ -2217,7 +2217,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2217
2217
|
identity: undefined;
|
|
2218
2218
|
generated: undefined;
|
|
2219
2219
|
}, {}, {}>;
|
|
2220
|
-
updatedAt:
|
|
2220
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2221
2221
|
name: "updated_at";
|
|
2222
2222
|
tableName: "data_components";
|
|
2223
2223
|
dataType: "string";
|
|
@@ -2234,8 +2234,8 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2234
2234
|
identity: undefined;
|
|
2235
2235
|
generated: undefined;
|
|
2236
2236
|
}, {}, {}>;
|
|
2237
|
-
props:
|
|
2238
|
-
name:
|
|
2237
|
+
props: drizzle_orm_pg_core1826.PgColumn<{
|
|
2238
|
+
name: string;
|
|
2239
2239
|
tableName: "data_components";
|
|
2240
2240
|
dataType: "json";
|
|
2241
2241
|
columnType: "PgJsonb";
|
|
@@ -2267,8 +2267,8 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2267
2267
|
description?: string | undefined;
|
|
2268
2268
|
};
|
|
2269
2269
|
}>;
|
|
2270
|
-
render:
|
|
2271
|
-
name:
|
|
2270
|
+
render: drizzle_orm_pg_core1826.PgColumn<{
|
|
2271
|
+
name: string;
|
|
2272
2272
|
tableName: "data_components";
|
|
2273
2273
|
dataType: "json";
|
|
2274
2274
|
columnType: "PgJsonb";
|
|
@@ -2292,7 +2292,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2292
2292
|
mockData: Record<string, unknown>;
|
|
2293
2293
|
};
|
|
2294
2294
|
}>;
|
|
2295
|
-
name:
|
|
2295
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
2296
2296
|
name: "name";
|
|
2297
2297
|
tableName: "data_components";
|
|
2298
2298
|
dataType: "string";
|
|
@@ -2311,7 +2311,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2311
2311
|
}, {}, {
|
|
2312
2312
|
length: 256;
|
|
2313
2313
|
}>;
|
|
2314
|
-
description:
|
|
2314
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
2315
2315
|
name: "description";
|
|
2316
2316
|
tableName: "data_components";
|
|
2317
2317
|
dataType: "string";
|
|
@@ -2328,7 +2328,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2328
2328
|
identity: undefined;
|
|
2329
2329
|
generated: undefined;
|
|
2330
2330
|
}, {}, {}>;
|
|
2331
|
-
projectId:
|
|
2331
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2332
2332
|
name: "project_id";
|
|
2333
2333
|
tableName: "data_components";
|
|
2334
2334
|
dataType: "string";
|
|
@@ -2347,7 +2347,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2347
2347
|
}, {}, {
|
|
2348
2348
|
length: 256;
|
|
2349
2349
|
}>;
|
|
2350
|
-
tenantId:
|
|
2350
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2351
2351
|
name: "tenant_id";
|
|
2352
2352
|
tableName: "data_components";
|
|
2353
2353
|
dataType: "string";
|
|
@@ -2366,7 +2366,7 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2366
2366
|
}, {}, {
|
|
2367
2367
|
length: 256;
|
|
2368
2368
|
}>;
|
|
2369
|
-
id:
|
|
2369
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2370
2370
|
name: "id";
|
|
2371
2371
|
tableName: "data_components";
|
|
2372
2372
|
dataType: "string";
|
|
@@ -2388,11 +2388,11 @@ declare const dataComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2388
2388
|
};
|
|
2389
2389
|
dialect: "pg";
|
|
2390
2390
|
}>;
|
|
2391
|
-
declare const subAgentDataComponents:
|
|
2391
|
+
declare const subAgentDataComponents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2392
2392
|
name: "sub_agent_data_components";
|
|
2393
2393
|
schema: undefined;
|
|
2394
2394
|
columns: {
|
|
2395
|
-
dataComponentId:
|
|
2395
|
+
dataComponentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2396
2396
|
name: "data_component_id";
|
|
2397
2397
|
tableName: "sub_agent_data_components";
|
|
2398
2398
|
dataType: "string";
|
|
@@ -2411,7 +2411,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2411
2411
|
}, {}, {
|
|
2412
2412
|
length: 256;
|
|
2413
2413
|
}>;
|
|
2414
|
-
createdAt:
|
|
2414
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2415
2415
|
name: "created_at";
|
|
2416
2416
|
tableName: "sub_agent_data_components";
|
|
2417
2417
|
dataType: "string";
|
|
@@ -2428,7 +2428,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2428
2428
|
identity: undefined;
|
|
2429
2429
|
generated: undefined;
|
|
2430
2430
|
}, {}, {}>;
|
|
2431
|
-
subAgentId:
|
|
2431
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2432
2432
|
name: "sub_agent_id";
|
|
2433
2433
|
tableName: "sub_agent_data_components";
|
|
2434
2434
|
dataType: "string";
|
|
@@ -2447,7 +2447,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2447
2447
|
}, {}, {
|
|
2448
2448
|
length: 256;
|
|
2449
2449
|
}>;
|
|
2450
|
-
agentId:
|
|
2450
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2451
2451
|
name: "agent_id";
|
|
2452
2452
|
tableName: "sub_agent_data_components";
|
|
2453
2453
|
dataType: "string";
|
|
@@ -2466,7 +2466,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2466
2466
|
}, {}, {
|
|
2467
2467
|
length: 256;
|
|
2468
2468
|
}>;
|
|
2469
|
-
projectId:
|
|
2469
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2470
2470
|
name: "project_id";
|
|
2471
2471
|
tableName: "sub_agent_data_components";
|
|
2472
2472
|
dataType: "string";
|
|
@@ -2485,7 +2485,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2485
2485
|
}, {}, {
|
|
2486
2486
|
length: 256;
|
|
2487
2487
|
}>;
|
|
2488
|
-
tenantId:
|
|
2488
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2489
2489
|
name: "tenant_id";
|
|
2490
2490
|
tableName: "sub_agent_data_components";
|
|
2491
2491
|
dataType: "string";
|
|
@@ -2504,7 +2504,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2504
2504
|
}, {}, {
|
|
2505
2505
|
length: 256;
|
|
2506
2506
|
}>;
|
|
2507
|
-
id:
|
|
2507
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2508
2508
|
name: "id";
|
|
2509
2509
|
tableName: "sub_agent_data_components";
|
|
2510
2510
|
dataType: "string";
|
|
@@ -2526,11 +2526,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core220.PgTableWithColumns<
|
|
|
2526
2526
|
};
|
|
2527
2527
|
dialect: "pg";
|
|
2528
2528
|
}>;
|
|
2529
|
-
declare const artifactComponents:
|
|
2529
|
+
declare const artifactComponents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2530
2530
|
name: "artifact_components";
|
|
2531
2531
|
schema: undefined;
|
|
2532
2532
|
columns: {
|
|
2533
|
-
createdAt:
|
|
2533
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2534
2534
|
name: "created_at";
|
|
2535
2535
|
tableName: "artifact_components";
|
|
2536
2536
|
dataType: "string";
|
|
@@ -2547,7 +2547,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2547
2547
|
identity: undefined;
|
|
2548
2548
|
generated: undefined;
|
|
2549
2549
|
}, {}, {}>;
|
|
2550
|
-
updatedAt:
|
|
2550
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2551
2551
|
name: "updated_at";
|
|
2552
2552
|
tableName: "artifact_components";
|
|
2553
2553
|
dataType: "string";
|
|
@@ -2564,8 +2564,8 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2564
2564
|
identity: undefined;
|
|
2565
2565
|
generated: undefined;
|
|
2566
2566
|
}, {}, {}>;
|
|
2567
|
-
props:
|
|
2568
|
-
name:
|
|
2567
|
+
props: drizzle_orm_pg_core1826.PgColumn<{
|
|
2568
|
+
name: string;
|
|
2569
2569
|
tableName: "artifact_components";
|
|
2570
2570
|
dataType: "json";
|
|
2571
2571
|
columnType: "PgJsonb";
|
|
@@ -2597,8 +2597,8 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2597
2597
|
description?: string | undefined;
|
|
2598
2598
|
};
|
|
2599
2599
|
}>;
|
|
2600
|
-
render:
|
|
2601
|
-
name:
|
|
2600
|
+
render: drizzle_orm_pg_core1826.PgColumn<{
|
|
2601
|
+
name: string;
|
|
2602
2602
|
tableName: "artifact_components";
|
|
2603
2603
|
dataType: "json";
|
|
2604
2604
|
columnType: "PgJsonb";
|
|
@@ -2622,7 +2622,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2622
2622
|
mockData: Record<string, unknown>;
|
|
2623
2623
|
};
|
|
2624
2624
|
}>;
|
|
2625
|
-
name:
|
|
2625
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
2626
2626
|
name: "name";
|
|
2627
2627
|
tableName: "artifact_components";
|
|
2628
2628
|
dataType: "string";
|
|
@@ -2641,7 +2641,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2641
2641
|
}, {}, {
|
|
2642
2642
|
length: 256;
|
|
2643
2643
|
}>;
|
|
2644
|
-
description:
|
|
2644
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
2645
2645
|
name: "description";
|
|
2646
2646
|
tableName: "artifact_components";
|
|
2647
2647
|
dataType: "string";
|
|
@@ -2658,7 +2658,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2658
2658
|
identity: undefined;
|
|
2659
2659
|
generated: undefined;
|
|
2660
2660
|
}, {}, {}>;
|
|
2661
|
-
projectId:
|
|
2661
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2662
2662
|
name: "project_id";
|
|
2663
2663
|
tableName: "artifact_components";
|
|
2664
2664
|
dataType: "string";
|
|
@@ -2677,7 +2677,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2677
2677
|
}, {}, {
|
|
2678
2678
|
length: 256;
|
|
2679
2679
|
}>;
|
|
2680
|
-
tenantId:
|
|
2680
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2681
2681
|
name: "tenant_id";
|
|
2682
2682
|
tableName: "artifact_components";
|
|
2683
2683
|
dataType: "string";
|
|
@@ -2696,7 +2696,7 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2696
2696
|
}, {}, {
|
|
2697
2697
|
length: 256;
|
|
2698
2698
|
}>;
|
|
2699
|
-
id:
|
|
2699
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2700
2700
|
name: "id";
|
|
2701
2701
|
tableName: "artifact_components";
|
|
2702
2702
|
dataType: "string";
|
|
@@ -2718,11 +2718,11 @@ declare const artifactComponents: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2718
2718
|
};
|
|
2719
2719
|
dialect: "pg";
|
|
2720
2720
|
}>;
|
|
2721
|
-
declare const subAgentArtifactComponents:
|
|
2721
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2722
2722
|
name: "sub_agent_artifact_components";
|
|
2723
2723
|
schema: undefined;
|
|
2724
2724
|
columns: {
|
|
2725
|
-
artifactComponentId:
|
|
2725
|
+
artifactComponentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2726
2726
|
name: "artifact_component_id";
|
|
2727
2727
|
tableName: "sub_agent_artifact_components";
|
|
2728
2728
|
dataType: "string";
|
|
@@ -2741,7 +2741,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2741
2741
|
}, {}, {
|
|
2742
2742
|
length: 256;
|
|
2743
2743
|
}>;
|
|
2744
|
-
createdAt:
|
|
2744
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2745
2745
|
name: "created_at";
|
|
2746
2746
|
tableName: "sub_agent_artifact_components";
|
|
2747
2747
|
dataType: "string";
|
|
@@ -2758,7 +2758,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2758
2758
|
identity: undefined;
|
|
2759
2759
|
generated: undefined;
|
|
2760
2760
|
}, {}, {}>;
|
|
2761
|
-
subAgentId:
|
|
2761
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2762
2762
|
name: "sub_agent_id";
|
|
2763
2763
|
tableName: "sub_agent_artifact_components";
|
|
2764
2764
|
dataType: "string";
|
|
@@ -2777,7 +2777,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2777
2777
|
}, {}, {
|
|
2778
2778
|
length: 256;
|
|
2779
2779
|
}>;
|
|
2780
|
-
agentId:
|
|
2780
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2781
2781
|
name: "agent_id";
|
|
2782
2782
|
tableName: "sub_agent_artifact_components";
|
|
2783
2783
|
dataType: "string";
|
|
@@ -2796,7 +2796,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2796
2796
|
}, {}, {
|
|
2797
2797
|
length: 256;
|
|
2798
2798
|
}>;
|
|
2799
|
-
projectId:
|
|
2799
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2800
2800
|
name: "project_id";
|
|
2801
2801
|
tableName: "sub_agent_artifact_components";
|
|
2802
2802
|
dataType: "string";
|
|
@@ -2815,7 +2815,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2815
2815
|
}, {}, {
|
|
2816
2816
|
length: 256;
|
|
2817
2817
|
}>;
|
|
2818
|
-
tenantId:
|
|
2818
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2819
2819
|
name: "tenant_id";
|
|
2820
2820
|
tableName: "sub_agent_artifact_components";
|
|
2821
2821
|
dataType: "string";
|
|
@@ -2834,7 +2834,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2834
2834
|
}, {}, {
|
|
2835
2835
|
length: 256;
|
|
2836
2836
|
}>;
|
|
2837
|
-
id:
|
|
2837
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
2838
2838
|
name: "id";
|
|
2839
2839
|
tableName: "sub_agent_artifact_components";
|
|
2840
2840
|
dataType: "string";
|
|
@@ -2856,11 +2856,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
2856
2856
|
};
|
|
2857
2857
|
dialect: "pg";
|
|
2858
2858
|
}>;
|
|
2859
|
-
declare const tools:
|
|
2859
|
+
declare const tools: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
2860
2860
|
name: "tools";
|
|
2861
2861
|
schema: undefined;
|
|
2862
2862
|
columns: {
|
|
2863
|
-
createdAt:
|
|
2863
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2864
2864
|
name: "created_at";
|
|
2865
2865
|
tableName: "tools";
|
|
2866
2866
|
dataType: "string";
|
|
@@ -2877,7 +2877,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2877
2877
|
identity: undefined;
|
|
2878
2878
|
generated: undefined;
|
|
2879
2879
|
}, {}, {}>;
|
|
2880
|
-
updatedAt:
|
|
2880
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
2881
2881
|
name: "updated_at";
|
|
2882
2882
|
tableName: "tools";
|
|
2883
2883
|
dataType: "string";
|
|
@@ -2894,8 +2894,8 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2894
2894
|
identity: undefined;
|
|
2895
2895
|
generated: undefined;
|
|
2896
2896
|
}, {}, {}>;
|
|
2897
|
-
config:
|
|
2898
|
-
name:
|
|
2897
|
+
config: drizzle_orm_pg_core1826.PgColumn<{
|
|
2898
|
+
name: string;
|
|
2899
2899
|
tableName: "tools";
|
|
2900
2900
|
dataType: "json";
|
|
2901
2901
|
columnType: "PgJsonb";
|
|
@@ -2919,7 +2919,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2919
2919
|
mcp: ToolMcpConfig;
|
|
2920
2920
|
};
|
|
2921
2921
|
}>;
|
|
2922
|
-
credentialReferenceId:
|
|
2922
|
+
credentialReferenceId: drizzle_orm_pg_core1826.PgColumn<{
|
|
2923
2923
|
name: "credential_reference_id";
|
|
2924
2924
|
tableName: "tools";
|
|
2925
2925
|
dataType: "string";
|
|
@@ -2938,7 +2938,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2938
2938
|
}, {}, {
|
|
2939
2939
|
length: 256;
|
|
2940
2940
|
}>;
|
|
2941
|
-
credentialScope:
|
|
2941
|
+
credentialScope: drizzle_orm_pg_core1826.PgColumn<{
|
|
2942
2942
|
name: "credential_scope";
|
|
2943
2943
|
tableName: "tools";
|
|
2944
2944
|
dataType: "string";
|
|
@@ -2957,8 +2957,8 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2957
2957
|
}, {}, {
|
|
2958
2958
|
length: 50;
|
|
2959
2959
|
}>;
|
|
2960
|
-
headers:
|
|
2961
|
-
name:
|
|
2960
|
+
headers: drizzle_orm_pg_core1826.PgColumn<{
|
|
2961
|
+
name: string;
|
|
2962
2962
|
tableName: "tools";
|
|
2963
2963
|
dataType: "json";
|
|
2964
2964
|
columnType: "PgJsonb";
|
|
@@ -2976,7 +2976,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2976
2976
|
}, {}, {
|
|
2977
2977
|
$type: Record<string, string>;
|
|
2978
2978
|
}>;
|
|
2979
|
-
imageUrl:
|
|
2979
|
+
imageUrl: drizzle_orm_pg_core1826.PgColumn<{
|
|
2980
2980
|
name: "image_url";
|
|
2981
2981
|
tableName: "tools";
|
|
2982
2982
|
dataType: "string";
|
|
@@ -2993,8 +2993,8 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
2993
2993
|
identity: undefined;
|
|
2994
2994
|
generated: undefined;
|
|
2995
2995
|
}, {}, {}>;
|
|
2996
|
-
capabilities:
|
|
2997
|
-
name:
|
|
2996
|
+
capabilities: drizzle_orm_pg_core1826.PgColumn<{
|
|
2997
|
+
name: string;
|
|
2998
2998
|
tableName: "tools";
|
|
2999
2999
|
dataType: "json";
|
|
3000
3000
|
columnType: "PgJsonb";
|
|
@@ -3012,7 +3012,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3012
3012
|
}, {}, {
|
|
3013
3013
|
$type: ToolServerCapabilities;
|
|
3014
3014
|
}>;
|
|
3015
|
-
lastError:
|
|
3015
|
+
lastError: drizzle_orm_pg_core1826.PgColumn<{
|
|
3016
3016
|
name: "last_error";
|
|
3017
3017
|
tableName: "tools";
|
|
3018
3018
|
dataType: "string";
|
|
@@ -3029,7 +3029,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3029
3029
|
identity: undefined;
|
|
3030
3030
|
generated: undefined;
|
|
3031
3031
|
}, {}, {}>;
|
|
3032
|
-
isWorkApp:
|
|
3032
|
+
isWorkApp: drizzle_orm_pg_core1826.PgColumn<{
|
|
3033
3033
|
name: "is_work_app";
|
|
3034
3034
|
tableName: "tools";
|
|
3035
3035
|
dataType: "boolean";
|
|
@@ -3046,7 +3046,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3046
3046
|
identity: undefined;
|
|
3047
3047
|
generated: undefined;
|
|
3048
3048
|
}, {}, {}>;
|
|
3049
|
-
name:
|
|
3049
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
3050
3050
|
name: "name";
|
|
3051
3051
|
tableName: "tools";
|
|
3052
3052
|
dataType: "string";
|
|
@@ -3065,7 +3065,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3065
3065
|
}, {}, {
|
|
3066
3066
|
length: 256;
|
|
3067
3067
|
}>;
|
|
3068
|
-
description:
|
|
3068
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
3069
3069
|
name: "description";
|
|
3070
3070
|
tableName: "tools";
|
|
3071
3071
|
dataType: "string";
|
|
@@ -3082,7 +3082,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3082
3082
|
identity: undefined;
|
|
3083
3083
|
generated: undefined;
|
|
3084
3084
|
}, {}, {}>;
|
|
3085
|
-
projectId:
|
|
3085
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3086
3086
|
name: "project_id";
|
|
3087
3087
|
tableName: "tools";
|
|
3088
3088
|
dataType: "string";
|
|
@@ -3101,7 +3101,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3101
3101
|
}, {}, {
|
|
3102
3102
|
length: 256;
|
|
3103
3103
|
}>;
|
|
3104
|
-
tenantId:
|
|
3104
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3105
3105
|
name: "tenant_id";
|
|
3106
3106
|
tableName: "tools";
|
|
3107
3107
|
dataType: "string";
|
|
@@ -3120,7 +3120,7 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3120
3120
|
}, {}, {
|
|
3121
3121
|
length: 256;
|
|
3122
3122
|
}>;
|
|
3123
|
-
id:
|
|
3123
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
3124
3124
|
name: "id";
|
|
3125
3125
|
tableName: "tools";
|
|
3126
3126
|
dataType: "string";
|
|
@@ -3142,11 +3142,11 @@ declare const tools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3142
3142
|
};
|
|
3143
3143
|
dialect: "pg";
|
|
3144
3144
|
}>;
|
|
3145
|
-
declare const functionTools:
|
|
3145
|
+
declare const functionTools: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
3146
3146
|
name: "function_tools";
|
|
3147
3147
|
schema: undefined;
|
|
3148
3148
|
columns: {
|
|
3149
|
-
createdAt:
|
|
3149
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3150
3150
|
name: "created_at";
|
|
3151
3151
|
tableName: "function_tools";
|
|
3152
3152
|
dataType: "string";
|
|
@@ -3163,7 +3163,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3163
3163
|
identity: undefined;
|
|
3164
3164
|
generated: undefined;
|
|
3165
3165
|
}, {}, {}>;
|
|
3166
|
-
updatedAt:
|
|
3166
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3167
3167
|
name: "updated_at";
|
|
3168
3168
|
tableName: "function_tools";
|
|
3169
3169
|
dataType: "string";
|
|
@@ -3180,7 +3180,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3180
3180
|
identity: undefined;
|
|
3181
3181
|
generated: undefined;
|
|
3182
3182
|
}, {}, {}>;
|
|
3183
|
-
functionId:
|
|
3183
|
+
functionId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3184
3184
|
name: "function_id";
|
|
3185
3185
|
tableName: "function_tools";
|
|
3186
3186
|
dataType: "string";
|
|
@@ -3199,7 +3199,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3199
3199
|
}, {}, {
|
|
3200
3200
|
length: 256;
|
|
3201
3201
|
}>;
|
|
3202
|
-
name:
|
|
3202
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
3203
3203
|
name: "name";
|
|
3204
3204
|
tableName: "function_tools";
|
|
3205
3205
|
dataType: "string";
|
|
@@ -3218,7 +3218,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3218
3218
|
}, {}, {
|
|
3219
3219
|
length: 256;
|
|
3220
3220
|
}>;
|
|
3221
|
-
description:
|
|
3221
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
3222
3222
|
name: "description";
|
|
3223
3223
|
tableName: "function_tools";
|
|
3224
3224
|
dataType: "string";
|
|
@@ -3235,7 +3235,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3235
3235
|
identity: undefined;
|
|
3236
3236
|
generated: undefined;
|
|
3237
3237
|
}, {}, {}>;
|
|
3238
|
-
agentId:
|
|
3238
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3239
3239
|
name: "agent_id";
|
|
3240
3240
|
tableName: "function_tools";
|
|
3241
3241
|
dataType: "string";
|
|
@@ -3254,7 +3254,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3254
3254
|
}, {}, {
|
|
3255
3255
|
length: 256;
|
|
3256
3256
|
}>;
|
|
3257
|
-
projectId:
|
|
3257
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3258
3258
|
name: "project_id";
|
|
3259
3259
|
tableName: "function_tools";
|
|
3260
3260
|
dataType: "string";
|
|
@@ -3273,7 +3273,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3273
3273
|
}, {}, {
|
|
3274
3274
|
length: 256;
|
|
3275
3275
|
}>;
|
|
3276
|
-
tenantId:
|
|
3276
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3277
3277
|
name: "tenant_id";
|
|
3278
3278
|
tableName: "function_tools";
|
|
3279
3279
|
dataType: "string";
|
|
@@ -3292,7 +3292,7 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3292
3292
|
}, {}, {
|
|
3293
3293
|
length: 256;
|
|
3294
3294
|
}>;
|
|
3295
|
-
id:
|
|
3295
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
3296
3296
|
name: "id";
|
|
3297
3297
|
tableName: "function_tools";
|
|
3298
3298
|
dataType: "string";
|
|
@@ -3314,11 +3314,11 @@ declare const functionTools: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3314
3314
|
};
|
|
3315
3315
|
dialect: "pg";
|
|
3316
3316
|
}>;
|
|
3317
|
-
declare const functions:
|
|
3317
|
+
declare const functions: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
3318
3318
|
name: "functions";
|
|
3319
3319
|
schema: undefined;
|
|
3320
3320
|
columns: {
|
|
3321
|
-
createdAt:
|
|
3321
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3322
3322
|
name: "created_at";
|
|
3323
3323
|
tableName: "functions";
|
|
3324
3324
|
dataType: "string";
|
|
@@ -3335,7 +3335,7 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3335
3335
|
identity: undefined;
|
|
3336
3336
|
generated: undefined;
|
|
3337
3337
|
}, {}, {}>;
|
|
3338
|
-
updatedAt:
|
|
3338
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3339
3339
|
name: "updated_at";
|
|
3340
3340
|
tableName: "functions";
|
|
3341
3341
|
dataType: "string";
|
|
@@ -3352,8 +3352,8 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3352
3352
|
identity: undefined;
|
|
3353
3353
|
generated: undefined;
|
|
3354
3354
|
}, {}, {}>;
|
|
3355
|
-
inputSchema:
|
|
3356
|
-
name:
|
|
3355
|
+
inputSchema: drizzle_orm_pg_core1826.PgColumn<{
|
|
3356
|
+
name: string;
|
|
3357
3357
|
tableName: "functions";
|
|
3358
3358
|
dataType: "json";
|
|
3359
3359
|
columnType: "PgJsonb";
|
|
@@ -3371,7 +3371,7 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3371
3371
|
}, {}, {
|
|
3372
3372
|
$type: Record<string, unknown>;
|
|
3373
3373
|
}>;
|
|
3374
|
-
executeCode:
|
|
3374
|
+
executeCode: drizzle_orm_pg_core1826.PgColumn<{
|
|
3375
3375
|
name: "execute_code";
|
|
3376
3376
|
tableName: "functions";
|
|
3377
3377
|
dataType: "string";
|
|
@@ -3388,8 +3388,8 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3388
3388
|
identity: undefined;
|
|
3389
3389
|
generated: undefined;
|
|
3390
3390
|
}, {}, {}>;
|
|
3391
|
-
dependencies:
|
|
3392
|
-
name:
|
|
3391
|
+
dependencies: drizzle_orm_pg_core1826.PgColumn<{
|
|
3392
|
+
name: string;
|
|
3393
3393
|
tableName: "functions";
|
|
3394
3394
|
dataType: "json";
|
|
3395
3395
|
columnType: "PgJsonb";
|
|
@@ -3407,7 +3407,7 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3407
3407
|
}, {}, {
|
|
3408
3408
|
$type: Record<string, string>;
|
|
3409
3409
|
}>;
|
|
3410
|
-
projectId:
|
|
3410
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3411
3411
|
name: "project_id";
|
|
3412
3412
|
tableName: "functions";
|
|
3413
3413
|
dataType: "string";
|
|
@@ -3426,7 +3426,7 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3426
3426
|
}, {}, {
|
|
3427
3427
|
length: 256;
|
|
3428
3428
|
}>;
|
|
3429
|
-
tenantId:
|
|
3429
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3430
3430
|
name: "tenant_id";
|
|
3431
3431
|
tableName: "functions";
|
|
3432
3432
|
dataType: "string";
|
|
@@ -3445,7 +3445,7 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3445
3445
|
}, {}, {
|
|
3446
3446
|
length: 256;
|
|
3447
3447
|
}>;
|
|
3448
|
-
id:
|
|
3448
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
3449
3449
|
name: "id";
|
|
3450
3450
|
tableName: "functions";
|
|
3451
3451
|
dataType: "string";
|
|
@@ -3467,11 +3467,11 @@ declare const functions: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3467
3467
|
};
|
|
3468
3468
|
dialect: "pg";
|
|
3469
3469
|
}>;
|
|
3470
|
-
declare const subAgentToolRelations:
|
|
3470
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
3471
3471
|
name: "sub_agent_tool_relations";
|
|
3472
3472
|
schema: undefined;
|
|
3473
3473
|
columns: {
|
|
3474
|
-
createdAt:
|
|
3474
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3475
3475
|
name: "created_at";
|
|
3476
3476
|
tableName: "sub_agent_tool_relations";
|
|
3477
3477
|
dataType: "string";
|
|
@@ -3488,7 +3488,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3488
3488
|
identity: undefined;
|
|
3489
3489
|
generated: undefined;
|
|
3490
3490
|
}, {}, {}>;
|
|
3491
|
-
updatedAt:
|
|
3491
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3492
3492
|
name: "updated_at";
|
|
3493
3493
|
tableName: "sub_agent_tool_relations";
|
|
3494
3494
|
dataType: "string";
|
|
@@ -3505,7 +3505,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3505
3505
|
identity: undefined;
|
|
3506
3506
|
generated: undefined;
|
|
3507
3507
|
}, {}, {}>;
|
|
3508
|
-
toolId:
|
|
3508
|
+
toolId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3509
3509
|
name: "tool_id";
|
|
3510
3510
|
tableName: "sub_agent_tool_relations";
|
|
3511
3511
|
dataType: "string";
|
|
@@ -3524,8 +3524,8 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3524
3524
|
}, {}, {
|
|
3525
3525
|
length: 256;
|
|
3526
3526
|
}>;
|
|
3527
|
-
selectedTools:
|
|
3528
|
-
name:
|
|
3527
|
+
selectedTools: drizzle_orm_pg_core1826.PgColumn<{
|
|
3528
|
+
name: string;
|
|
3529
3529
|
tableName: "sub_agent_tool_relations";
|
|
3530
3530
|
dataType: "json";
|
|
3531
3531
|
columnType: "PgJsonb";
|
|
@@ -3543,8 +3543,8 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3543
3543
|
}, {}, {
|
|
3544
3544
|
$type: string[] | null;
|
|
3545
3545
|
}>;
|
|
3546
|
-
headers:
|
|
3547
|
-
name:
|
|
3546
|
+
headers: drizzle_orm_pg_core1826.PgColumn<{
|
|
3547
|
+
name: string;
|
|
3548
3548
|
tableName: "sub_agent_tool_relations";
|
|
3549
3549
|
dataType: "json";
|
|
3550
3550
|
columnType: "PgJsonb";
|
|
@@ -3562,8 +3562,8 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3562
3562
|
}, {}, {
|
|
3563
3563
|
$type: Record<string, string> | null;
|
|
3564
3564
|
}>;
|
|
3565
|
-
toolPolicies:
|
|
3566
|
-
name:
|
|
3565
|
+
toolPolicies: drizzle_orm_pg_core1826.PgColumn<{
|
|
3566
|
+
name: string;
|
|
3567
3567
|
tableName: "sub_agent_tool_relations";
|
|
3568
3568
|
dataType: "json";
|
|
3569
3569
|
columnType: "PgJsonb";
|
|
@@ -3585,7 +3585,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3585
3585
|
needsApproval?: boolean;
|
|
3586
3586
|
}> | null;
|
|
3587
3587
|
}>;
|
|
3588
|
-
subAgentId:
|
|
3588
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3589
3589
|
name: "sub_agent_id";
|
|
3590
3590
|
tableName: "sub_agent_tool_relations";
|
|
3591
3591
|
dataType: "string";
|
|
@@ -3604,7 +3604,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3604
3604
|
}, {}, {
|
|
3605
3605
|
length: 256;
|
|
3606
3606
|
}>;
|
|
3607
|
-
agentId:
|
|
3607
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3608
3608
|
name: "agent_id";
|
|
3609
3609
|
tableName: "sub_agent_tool_relations";
|
|
3610
3610
|
dataType: "string";
|
|
@@ -3623,7 +3623,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3623
3623
|
}, {}, {
|
|
3624
3624
|
length: 256;
|
|
3625
3625
|
}>;
|
|
3626
|
-
projectId:
|
|
3626
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3627
3627
|
name: "project_id";
|
|
3628
3628
|
tableName: "sub_agent_tool_relations";
|
|
3629
3629
|
dataType: "string";
|
|
@@ -3642,7 +3642,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3642
3642
|
}, {}, {
|
|
3643
3643
|
length: 256;
|
|
3644
3644
|
}>;
|
|
3645
|
-
tenantId:
|
|
3645
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3646
3646
|
name: "tenant_id";
|
|
3647
3647
|
tableName: "sub_agent_tool_relations";
|
|
3648
3648
|
dataType: "string";
|
|
@@ -3661,7 +3661,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3661
3661
|
}, {}, {
|
|
3662
3662
|
length: 256;
|
|
3663
3663
|
}>;
|
|
3664
|
-
id:
|
|
3664
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
3665
3665
|
name: "id";
|
|
3666
3666
|
tableName: "sub_agent_tool_relations";
|
|
3667
3667
|
dataType: "string";
|
|
@@ -3683,11 +3683,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
3683
3683
|
};
|
|
3684
3684
|
dialect: "pg";
|
|
3685
3685
|
}>;
|
|
3686
|
-
declare const subAgentExternalAgentRelations:
|
|
3686
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
3687
3687
|
name: "sub_agent_external_agent_relations";
|
|
3688
3688
|
schema: undefined;
|
|
3689
3689
|
columns: {
|
|
3690
|
-
createdAt:
|
|
3690
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3691
3691
|
name: "created_at";
|
|
3692
3692
|
tableName: "sub_agent_external_agent_relations";
|
|
3693
3693
|
dataType: "string";
|
|
@@ -3704,7 +3704,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3704
3704
|
identity: undefined;
|
|
3705
3705
|
generated: undefined;
|
|
3706
3706
|
}, {}, {}>;
|
|
3707
|
-
updatedAt:
|
|
3707
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3708
3708
|
name: "updated_at";
|
|
3709
3709
|
tableName: "sub_agent_external_agent_relations";
|
|
3710
3710
|
dataType: "string";
|
|
@@ -3721,7 +3721,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3721
3721
|
identity: undefined;
|
|
3722
3722
|
generated: undefined;
|
|
3723
3723
|
}, {}, {}>;
|
|
3724
|
-
externalAgentId:
|
|
3724
|
+
externalAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3725
3725
|
name: "external_agent_id";
|
|
3726
3726
|
tableName: "sub_agent_external_agent_relations";
|
|
3727
3727
|
dataType: "string";
|
|
@@ -3740,8 +3740,8 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3740
3740
|
}, {}, {
|
|
3741
3741
|
length: 256;
|
|
3742
3742
|
}>;
|
|
3743
|
-
headers:
|
|
3744
|
-
name:
|
|
3743
|
+
headers: drizzle_orm_pg_core1826.PgColumn<{
|
|
3744
|
+
name: string;
|
|
3745
3745
|
tableName: "sub_agent_external_agent_relations";
|
|
3746
3746
|
dataType: "json";
|
|
3747
3747
|
columnType: "PgJsonb";
|
|
@@ -3759,7 +3759,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3759
3759
|
}, {}, {
|
|
3760
3760
|
$type: Record<string, string> | null;
|
|
3761
3761
|
}>;
|
|
3762
|
-
subAgentId:
|
|
3762
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3763
3763
|
name: "sub_agent_id";
|
|
3764
3764
|
tableName: "sub_agent_external_agent_relations";
|
|
3765
3765
|
dataType: "string";
|
|
@@ -3778,7 +3778,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3778
3778
|
}, {}, {
|
|
3779
3779
|
length: 256;
|
|
3780
3780
|
}>;
|
|
3781
|
-
agentId:
|
|
3781
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3782
3782
|
name: "agent_id";
|
|
3783
3783
|
tableName: "sub_agent_external_agent_relations";
|
|
3784
3784
|
dataType: "string";
|
|
@@ -3797,7 +3797,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3797
3797
|
}, {}, {
|
|
3798
3798
|
length: 256;
|
|
3799
3799
|
}>;
|
|
3800
|
-
projectId:
|
|
3800
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3801
3801
|
name: "project_id";
|
|
3802
3802
|
tableName: "sub_agent_external_agent_relations";
|
|
3803
3803
|
dataType: "string";
|
|
@@ -3816,7 +3816,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3816
3816
|
}, {}, {
|
|
3817
3817
|
length: 256;
|
|
3818
3818
|
}>;
|
|
3819
|
-
tenantId:
|
|
3819
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3820
3820
|
name: "tenant_id";
|
|
3821
3821
|
tableName: "sub_agent_external_agent_relations";
|
|
3822
3822
|
dataType: "string";
|
|
@@ -3835,7 +3835,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3835
3835
|
}, {}, {
|
|
3836
3836
|
length: 256;
|
|
3837
3837
|
}>;
|
|
3838
|
-
id:
|
|
3838
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
3839
3839
|
name: "id";
|
|
3840
3840
|
tableName: "sub_agent_external_agent_relations";
|
|
3841
3841
|
dataType: "string";
|
|
@@ -3857,11 +3857,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
3857
3857
|
};
|
|
3858
3858
|
dialect: "pg";
|
|
3859
3859
|
}>;
|
|
3860
|
-
declare const subAgentTeamAgentRelations:
|
|
3860
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
3861
3861
|
name: "sub_agent_team_agent_relations";
|
|
3862
3862
|
schema: undefined;
|
|
3863
3863
|
columns: {
|
|
3864
|
-
createdAt:
|
|
3864
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3865
3865
|
name: "created_at";
|
|
3866
3866
|
tableName: "sub_agent_team_agent_relations";
|
|
3867
3867
|
dataType: "string";
|
|
@@ -3878,7 +3878,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3878
3878
|
identity: undefined;
|
|
3879
3879
|
generated: undefined;
|
|
3880
3880
|
}, {}, {}>;
|
|
3881
|
-
updatedAt:
|
|
3881
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
3882
3882
|
name: "updated_at";
|
|
3883
3883
|
tableName: "sub_agent_team_agent_relations";
|
|
3884
3884
|
dataType: "string";
|
|
@@ -3895,7 +3895,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3895
3895
|
identity: undefined;
|
|
3896
3896
|
generated: undefined;
|
|
3897
3897
|
}, {}, {}>;
|
|
3898
|
-
targetAgentId:
|
|
3898
|
+
targetAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3899
3899
|
name: "target_agent_id";
|
|
3900
3900
|
tableName: "sub_agent_team_agent_relations";
|
|
3901
3901
|
dataType: "string";
|
|
@@ -3914,8 +3914,8 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3914
3914
|
}, {}, {
|
|
3915
3915
|
length: 256;
|
|
3916
3916
|
}>;
|
|
3917
|
-
headers:
|
|
3918
|
-
name:
|
|
3917
|
+
headers: drizzle_orm_pg_core1826.PgColumn<{
|
|
3918
|
+
name: string;
|
|
3919
3919
|
tableName: "sub_agent_team_agent_relations";
|
|
3920
3920
|
dataType: "json";
|
|
3921
3921
|
columnType: "PgJsonb";
|
|
@@ -3933,7 +3933,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3933
3933
|
}, {}, {
|
|
3934
3934
|
$type: Record<string, string> | null;
|
|
3935
3935
|
}>;
|
|
3936
|
-
subAgentId:
|
|
3936
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3937
3937
|
name: "sub_agent_id";
|
|
3938
3938
|
tableName: "sub_agent_team_agent_relations";
|
|
3939
3939
|
dataType: "string";
|
|
@@ -3952,7 +3952,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3952
3952
|
}, {}, {
|
|
3953
3953
|
length: 256;
|
|
3954
3954
|
}>;
|
|
3955
|
-
agentId:
|
|
3955
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3956
3956
|
name: "agent_id";
|
|
3957
3957
|
tableName: "sub_agent_team_agent_relations";
|
|
3958
3958
|
dataType: "string";
|
|
@@ -3971,7 +3971,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3971
3971
|
}, {}, {
|
|
3972
3972
|
length: 256;
|
|
3973
3973
|
}>;
|
|
3974
|
-
projectId:
|
|
3974
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3975
3975
|
name: "project_id";
|
|
3976
3976
|
tableName: "sub_agent_team_agent_relations";
|
|
3977
3977
|
dataType: "string";
|
|
@@ -3990,7 +3990,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
3990
3990
|
}, {}, {
|
|
3991
3991
|
length: 256;
|
|
3992
3992
|
}>;
|
|
3993
|
-
tenantId:
|
|
3993
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
3994
3994
|
name: "tenant_id";
|
|
3995
3995
|
tableName: "sub_agent_team_agent_relations";
|
|
3996
3996
|
dataType: "string";
|
|
@@ -4009,7 +4009,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
4009
4009
|
}, {}, {
|
|
4010
4010
|
length: 256;
|
|
4011
4011
|
}>;
|
|
4012
|
-
id:
|
|
4012
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4013
4013
|
name: "id";
|
|
4014
4014
|
tableName: "sub_agent_team_agent_relations";
|
|
4015
4015
|
dataType: "string";
|
|
@@ -4031,11 +4031,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core220.PgTableWithColu
|
|
|
4031
4031
|
};
|
|
4032
4032
|
dialect: "pg";
|
|
4033
4033
|
}>;
|
|
4034
|
-
declare const subAgentFunctionToolRelations:
|
|
4034
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4035
4035
|
name: "sub_agent_function_tool_relations";
|
|
4036
4036
|
schema: undefined;
|
|
4037
4037
|
columns: {
|
|
4038
|
-
createdAt:
|
|
4038
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4039
4039
|
name: "created_at";
|
|
4040
4040
|
tableName: "sub_agent_function_tool_relations";
|
|
4041
4041
|
dataType: "string";
|
|
@@ -4052,7 +4052,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4052
4052
|
identity: undefined;
|
|
4053
4053
|
generated: undefined;
|
|
4054
4054
|
}, {}, {}>;
|
|
4055
|
-
updatedAt:
|
|
4055
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4056
4056
|
name: "updated_at";
|
|
4057
4057
|
tableName: "sub_agent_function_tool_relations";
|
|
4058
4058
|
dataType: "string";
|
|
@@ -4069,7 +4069,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4069
4069
|
identity: undefined;
|
|
4070
4070
|
generated: undefined;
|
|
4071
4071
|
}, {}, {}>;
|
|
4072
|
-
functionToolId:
|
|
4072
|
+
functionToolId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4073
4073
|
name: "function_tool_id";
|
|
4074
4074
|
tableName: "sub_agent_function_tool_relations";
|
|
4075
4075
|
dataType: "string";
|
|
@@ -4088,8 +4088,8 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4088
4088
|
}, {}, {
|
|
4089
4089
|
length: 256;
|
|
4090
4090
|
}>;
|
|
4091
|
-
toolPolicies:
|
|
4092
|
-
name:
|
|
4091
|
+
toolPolicies: drizzle_orm_pg_core1826.PgColumn<{
|
|
4092
|
+
name: string;
|
|
4093
4093
|
tableName: "sub_agent_function_tool_relations";
|
|
4094
4094
|
dataType: "json";
|
|
4095
4095
|
columnType: "PgJsonb";
|
|
@@ -4111,7 +4111,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4111
4111
|
needsApproval?: boolean;
|
|
4112
4112
|
}> | null;
|
|
4113
4113
|
}>;
|
|
4114
|
-
subAgentId:
|
|
4114
|
+
subAgentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4115
4115
|
name: "sub_agent_id";
|
|
4116
4116
|
tableName: "sub_agent_function_tool_relations";
|
|
4117
4117
|
dataType: "string";
|
|
@@ -4130,7 +4130,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4130
4130
|
}, {}, {
|
|
4131
4131
|
length: 256;
|
|
4132
4132
|
}>;
|
|
4133
|
-
agentId:
|
|
4133
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4134
4134
|
name: "agent_id";
|
|
4135
4135
|
tableName: "sub_agent_function_tool_relations";
|
|
4136
4136
|
dataType: "string";
|
|
@@ -4149,7 +4149,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4149
4149
|
}, {}, {
|
|
4150
4150
|
length: 256;
|
|
4151
4151
|
}>;
|
|
4152
|
-
projectId:
|
|
4152
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4153
4153
|
name: "project_id";
|
|
4154
4154
|
tableName: "sub_agent_function_tool_relations";
|
|
4155
4155
|
dataType: "string";
|
|
@@ -4168,7 +4168,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4168
4168
|
}, {}, {
|
|
4169
4169
|
length: 256;
|
|
4170
4170
|
}>;
|
|
4171
|
-
tenantId:
|
|
4171
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4172
4172
|
name: "tenant_id";
|
|
4173
4173
|
tableName: "sub_agent_function_tool_relations";
|
|
4174
4174
|
dataType: "string";
|
|
@@ -4187,7 +4187,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4187
4187
|
}, {}, {
|
|
4188
4188
|
length: 256;
|
|
4189
4189
|
}>;
|
|
4190
|
-
id:
|
|
4190
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4191
4191
|
name: "id";
|
|
4192
4192
|
tableName: "sub_agent_function_tool_relations";
|
|
4193
4193
|
dataType: "string";
|
|
@@ -4209,11 +4209,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core220.PgTableWithC
|
|
|
4209
4209
|
};
|
|
4210
4210
|
dialect: "pg";
|
|
4211
4211
|
}>;
|
|
4212
|
-
declare const credentialReferences:
|
|
4212
|
+
declare const credentialReferences: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4213
4213
|
name: "credential_references";
|
|
4214
4214
|
schema: undefined;
|
|
4215
4215
|
columns: {
|
|
4216
|
-
createdAt:
|
|
4216
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4217
4217
|
name: "created_at";
|
|
4218
4218
|
tableName: "credential_references";
|
|
4219
4219
|
dataType: "string";
|
|
@@ -4230,7 +4230,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4230
4230
|
identity: undefined;
|
|
4231
4231
|
generated: undefined;
|
|
4232
4232
|
}, {}, {}>;
|
|
4233
|
-
updatedAt:
|
|
4233
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4234
4234
|
name: "updated_at";
|
|
4235
4235
|
tableName: "credential_references";
|
|
4236
4236
|
dataType: "string";
|
|
@@ -4247,7 +4247,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4247
4247
|
identity: undefined;
|
|
4248
4248
|
generated: undefined;
|
|
4249
4249
|
}, {}, {}>;
|
|
4250
|
-
name:
|
|
4250
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
4251
4251
|
name: "name";
|
|
4252
4252
|
tableName: "credential_references";
|
|
4253
4253
|
dataType: "string";
|
|
@@ -4266,7 +4266,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4266
4266
|
}, {}, {
|
|
4267
4267
|
length: 256;
|
|
4268
4268
|
}>;
|
|
4269
|
-
type:
|
|
4269
|
+
type: drizzle_orm_pg_core1826.PgColumn<{
|
|
4270
4270
|
name: "type";
|
|
4271
4271
|
tableName: "credential_references";
|
|
4272
4272
|
dataType: "string";
|
|
@@ -4285,7 +4285,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4285
4285
|
}, {}, {
|
|
4286
4286
|
length: 256;
|
|
4287
4287
|
}>;
|
|
4288
|
-
credentialStoreId:
|
|
4288
|
+
credentialStoreId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4289
4289
|
name: "credential_store_id";
|
|
4290
4290
|
tableName: "credential_references";
|
|
4291
4291
|
dataType: "string";
|
|
@@ -4304,8 +4304,8 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4304
4304
|
}, {}, {
|
|
4305
4305
|
length: 256;
|
|
4306
4306
|
}>;
|
|
4307
|
-
retrievalParams:
|
|
4308
|
-
name:
|
|
4307
|
+
retrievalParams: drizzle_orm_pg_core1826.PgColumn<{
|
|
4308
|
+
name: string;
|
|
4309
4309
|
tableName: "credential_references";
|
|
4310
4310
|
dataType: "json";
|
|
4311
4311
|
columnType: "PgJsonb";
|
|
@@ -4323,7 +4323,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4323
4323
|
}, {}, {
|
|
4324
4324
|
$type: Record<string, unknown>;
|
|
4325
4325
|
}>;
|
|
4326
|
-
toolId:
|
|
4326
|
+
toolId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4327
4327
|
name: "tool_id";
|
|
4328
4328
|
tableName: "credential_references";
|
|
4329
4329
|
dataType: "string";
|
|
@@ -4342,7 +4342,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4342
4342
|
}, {}, {
|
|
4343
4343
|
length: 256;
|
|
4344
4344
|
}>;
|
|
4345
|
-
userId:
|
|
4345
|
+
userId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4346
4346
|
name: "user_id";
|
|
4347
4347
|
tableName: "credential_references";
|
|
4348
4348
|
dataType: "string";
|
|
@@ -4361,7 +4361,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4361
4361
|
}, {}, {
|
|
4362
4362
|
length: 256;
|
|
4363
4363
|
}>;
|
|
4364
|
-
createdBy:
|
|
4364
|
+
createdBy: drizzle_orm_pg_core1826.PgColumn<{
|
|
4365
4365
|
name: "created_by";
|
|
4366
4366
|
tableName: "credential_references";
|
|
4367
4367
|
dataType: "string";
|
|
@@ -4380,7 +4380,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4380
4380
|
}, {}, {
|
|
4381
4381
|
length: 256;
|
|
4382
4382
|
}>;
|
|
4383
|
-
projectId:
|
|
4383
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4384
4384
|
name: "project_id";
|
|
4385
4385
|
tableName: "credential_references";
|
|
4386
4386
|
dataType: "string";
|
|
@@ -4399,7 +4399,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4399
4399
|
}, {}, {
|
|
4400
4400
|
length: 256;
|
|
4401
4401
|
}>;
|
|
4402
|
-
tenantId:
|
|
4402
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4403
4403
|
name: "tenant_id";
|
|
4404
4404
|
tableName: "credential_references";
|
|
4405
4405
|
dataType: "string";
|
|
@@ -4418,7 +4418,7 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4418
4418
|
}, {}, {
|
|
4419
4419
|
length: 256;
|
|
4420
4420
|
}>;
|
|
4421
|
-
id:
|
|
4421
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4422
4422
|
name: "id";
|
|
4423
4423
|
tableName: "credential_references";
|
|
4424
4424
|
dataType: "string";
|
|
@@ -4450,11 +4450,11 @@ declare const credentialReferences: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4450
4450
|
*
|
|
4451
4451
|
* Includes: name and timestamps
|
|
4452
4452
|
*/
|
|
4453
|
-
declare const dataset:
|
|
4453
|
+
declare const dataset: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4454
4454
|
name: "dataset";
|
|
4455
4455
|
schema: undefined;
|
|
4456
4456
|
columns: {
|
|
4457
|
-
createdAt:
|
|
4457
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4458
4458
|
name: "created_at";
|
|
4459
4459
|
tableName: "dataset";
|
|
4460
4460
|
dataType: "string";
|
|
@@ -4471,7 +4471,7 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4471
4471
|
identity: undefined;
|
|
4472
4472
|
generated: undefined;
|
|
4473
4473
|
}, {}, {}>;
|
|
4474
|
-
updatedAt:
|
|
4474
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4475
4475
|
name: "updated_at";
|
|
4476
4476
|
tableName: "dataset";
|
|
4477
4477
|
dataType: "string";
|
|
@@ -4488,7 +4488,7 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4488
4488
|
identity: undefined;
|
|
4489
4489
|
generated: undefined;
|
|
4490
4490
|
}, {}, {}>;
|
|
4491
|
-
name:
|
|
4491
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
4492
4492
|
name: "name";
|
|
4493
4493
|
tableName: "dataset";
|
|
4494
4494
|
dataType: "string";
|
|
@@ -4507,7 +4507,7 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4507
4507
|
}, {}, {
|
|
4508
4508
|
length: 256;
|
|
4509
4509
|
}>;
|
|
4510
|
-
projectId:
|
|
4510
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4511
4511
|
name: "project_id";
|
|
4512
4512
|
tableName: "dataset";
|
|
4513
4513
|
dataType: "string";
|
|
@@ -4526,7 +4526,7 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4526
4526
|
}, {}, {
|
|
4527
4527
|
length: 256;
|
|
4528
4528
|
}>;
|
|
4529
|
-
tenantId:
|
|
4529
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4530
4530
|
name: "tenant_id";
|
|
4531
4531
|
tableName: "dataset";
|
|
4532
4532
|
dataType: "string";
|
|
@@ -4545,7 +4545,7 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4545
4545
|
}, {}, {
|
|
4546
4546
|
length: 256;
|
|
4547
4547
|
}>;
|
|
4548
|
-
id:
|
|
4548
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4549
4549
|
name: "id";
|
|
4550
4550
|
tableName: "dataset";
|
|
4551
4551
|
dataType: "string";
|
|
@@ -4575,11 +4575,11 @@ declare const dataset: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4575
4575
|
* Includes: input (messages array with optional headers), expected output (array of messages),
|
|
4576
4576
|
* and timestamps.
|
|
4577
4577
|
*/
|
|
4578
|
-
declare const datasetItem:
|
|
4578
|
+
declare const datasetItem: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4579
4579
|
name: "dataset_item";
|
|
4580
4580
|
schema: undefined;
|
|
4581
4581
|
columns: {
|
|
4582
|
-
createdAt:
|
|
4582
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4583
4583
|
name: "created_at";
|
|
4584
4584
|
tableName: "dataset_item";
|
|
4585
4585
|
dataType: "string";
|
|
@@ -4596,7 +4596,7 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4596
4596
|
identity: undefined;
|
|
4597
4597
|
generated: undefined;
|
|
4598
4598
|
}, {}, {}>;
|
|
4599
|
-
updatedAt:
|
|
4599
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4600
4600
|
name: "updated_at";
|
|
4601
4601
|
tableName: "dataset_item";
|
|
4602
4602
|
dataType: "string";
|
|
@@ -4613,7 +4613,7 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4613
4613
|
identity: undefined;
|
|
4614
4614
|
generated: undefined;
|
|
4615
4615
|
}, {}, {}>;
|
|
4616
|
-
datasetId:
|
|
4616
|
+
datasetId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4617
4617
|
name: "dataset_id";
|
|
4618
4618
|
tableName: "dataset_item";
|
|
4619
4619
|
dataType: "string";
|
|
@@ -4632,8 +4632,8 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4632
4632
|
}, {}, {
|
|
4633
4633
|
length: 256;
|
|
4634
4634
|
}>;
|
|
4635
|
-
input:
|
|
4636
|
-
name:
|
|
4635
|
+
input: drizzle_orm_pg_core1826.PgColumn<{
|
|
4636
|
+
name: string;
|
|
4637
4637
|
tableName: "dataset_item";
|
|
4638
4638
|
dataType: "json";
|
|
4639
4639
|
columnType: "PgJsonb";
|
|
@@ -4651,8 +4651,8 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4651
4651
|
}, {}, {
|
|
4652
4652
|
$type: DatasetItemInput;
|
|
4653
4653
|
}>;
|
|
4654
|
-
expectedOutput:
|
|
4655
|
-
name:
|
|
4654
|
+
expectedOutput: drizzle_orm_pg_core1826.PgColumn<{
|
|
4655
|
+
name: string;
|
|
4656
4656
|
tableName: "dataset_item";
|
|
4657
4657
|
dataType: "json";
|
|
4658
4658
|
columnType: "PgJsonb";
|
|
@@ -4670,7 +4670,7 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4670
4670
|
}, {}, {
|
|
4671
4671
|
$type: DatasetItemExpectedOutput;
|
|
4672
4672
|
}>;
|
|
4673
|
-
projectId:
|
|
4673
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4674
4674
|
name: "project_id";
|
|
4675
4675
|
tableName: "dataset_item";
|
|
4676
4676
|
dataType: "string";
|
|
@@ -4689,7 +4689,7 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4689
4689
|
}, {}, {
|
|
4690
4690
|
length: 256;
|
|
4691
4691
|
}>;
|
|
4692
|
-
tenantId:
|
|
4692
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4693
4693
|
name: "tenant_id";
|
|
4694
4694
|
tableName: "dataset_item";
|
|
4695
4695
|
dataType: "string";
|
|
@@ -4708,7 +4708,7 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4708
4708
|
}, {}, {
|
|
4709
4709
|
length: 256;
|
|
4710
4710
|
}>;
|
|
4711
|
-
id:
|
|
4711
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4712
4712
|
name: "id";
|
|
4713
4713
|
tableName: "dataset_item";
|
|
4714
4714
|
dataType: "string";
|
|
@@ -4730,11 +4730,11 @@ declare const datasetItem: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4730
4730
|
};
|
|
4731
4731
|
dialect: "pg";
|
|
4732
4732
|
}>;
|
|
4733
|
-
declare const evaluator:
|
|
4733
|
+
declare const evaluator: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4734
4734
|
name: "evaluator";
|
|
4735
4735
|
schema: undefined;
|
|
4736
4736
|
columns: {
|
|
4737
|
-
createdAt:
|
|
4737
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4738
4738
|
name: "created_at";
|
|
4739
4739
|
tableName: "evaluator";
|
|
4740
4740
|
dataType: "string";
|
|
@@ -4751,7 +4751,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4751
4751
|
identity: undefined;
|
|
4752
4752
|
generated: undefined;
|
|
4753
4753
|
}, {}, {}>;
|
|
4754
|
-
updatedAt:
|
|
4754
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4755
4755
|
name: "updated_at";
|
|
4756
4756
|
tableName: "evaluator";
|
|
4757
4757
|
dataType: "string";
|
|
@@ -4768,7 +4768,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4768
4768
|
identity: undefined;
|
|
4769
4769
|
generated: undefined;
|
|
4770
4770
|
}, {}, {}>;
|
|
4771
|
-
prompt:
|
|
4771
|
+
prompt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4772
4772
|
name: "prompt";
|
|
4773
4773
|
tableName: "evaluator";
|
|
4774
4774
|
dataType: "string";
|
|
@@ -4785,8 +4785,8 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4785
4785
|
identity: undefined;
|
|
4786
4786
|
generated: undefined;
|
|
4787
4787
|
}, {}, {}>;
|
|
4788
|
-
schema:
|
|
4789
|
-
name:
|
|
4788
|
+
schema: drizzle_orm_pg_core1826.PgColumn<{
|
|
4789
|
+
name: string;
|
|
4790
4790
|
tableName: "evaluator";
|
|
4791
4791
|
dataType: "json";
|
|
4792
4792
|
columnType: "PgJsonb";
|
|
@@ -4804,8 +4804,8 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4804
4804
|
}, {}, {
|
|
4805
4805
|
$type: Record<string, unknown>;
|
|
4806
4806
|
}>;
|
|
4807
|
-
model:
|
|
4808
|
-
name:
|
|
4807
|
+
model: drizzle_orm_pg_core1826.PgColumn<{
|
|
4808
|
+
name: string;
|
|
4809
4809
|
tableName: "evaluator";
|
|
4810
4810
|
dataType: "json";
|
|
4811
4811
|
columnType: "PgJsonb";
|
|
@@ -4833,8 +4833,8 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4833
4833
|
allowedProviders?: string[] | undefined;
|
|
4834
4834
|
};
|
|
4835
4835
|
}>;
|
|
4836
|
-
passCriteria:
|
|
4837
|
-
name:
|
|
4836
|
+
passCriteria: drizzle_orm_pg_core1826.PgColumn<{
|
|
4837
|
+
name: string;
|
|
4838
4838
|
tableName: "evaluator";
|
|
4839
4839
|
dataType: "json";
|
|
4840
4840
|
columnType: "PgJsonb";
|
|
@@ -4852,7 +4852,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4852
4852
|
}, {}, {
|
|
4853
4853
|
$type: PassCriteria;
|
|
4854
4854
|
}>;
|
|
4855
|
-
name:
|
|
4855
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
4856
4856
|
name: "name";
|
|
4857
4857
|
tableName: "evaluator";
|
|
4858
4858
|
dataType: "string";
|
|
@@ -4871,7 +4871,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4871
4871
|
}, {}, {
|
|
4872
4872
|
length: 256;
|
|
4873
4873
|
}>;
|
|
4874
|
-
description:
|
|
4874
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
4875
4875
|
name: "description";
|
|
4876
4876
|
tableName: "evaluator";
|
|
4877
4877
|
dataType: "string";
|
|
@@ -4888,7 +4888,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4888
4888
|
identity: undefined;
|
|
4889
4889
|
generated: undefined;
|
|
4890
4890
|
}, {}, {}>;
|
|
4891
|
-
projectId:
|
|
4891
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4892
4892
|
name: "project_id";
|
|
4893
4893
|
tableName: "evaluator";
|
|
4894
4894
|
dataType: "string";
|
|
@@ -4907,7 +4907,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4907
4907
|
}, {}, {
|
|
4908
4908
|
length: 256;
|
|
4909
4909
|
}>;
|
|
4910
|
-
tenantId:
|
|
4910
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4911
4911
|
name: "tenant_id";
|
|
4912
4912
|
tableName: "evaluator";
|
|
4913
4913
|
dataType: "string";
|
|
@@ -4926,7 +4926,7 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4926
4926
|
}, {}, {
|
|
4927
4927
|
length: 256;
|
|
4928
4928
|
}>;
|
|
4929
|
-
id:
|
|
4929
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
4930
4930
|
name: "id";
|
|
4931
4931
|
tableName: "evaluator";
|
|
4932
4932
|
dataType: "string";
|
|
@@ -4948,11 +4948,11 @@ declare const evaluator: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4948
4948
|
};
|
|
4949
4949
|
dialect: "pg";
|
|
4950
4950
|
}>;
|
|
4951
|
-
declare const datasetRunConfig:
|
|
4951
|
+
declare const datasetRunConfig: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
4952
4952
|
name: "dataset_run_config";
|
|
4953
4953
|
schema: undefined;
|
|
4954
4954
|
columns: {
|
|
4955
|
-
createdAt:
|
|
4955
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4956
4956
|
name: "created_at";
|
|
4957
4957
|
tableName: "dataset_run_config";
|
|
4958
4958
|
dataType: "string";
|
|
@@ -4969,7 +4969,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4969
4969
|
identity: undefined;
|
|
4970
4970
|
generated: undefined;
|
|
4971
4971
|
}, {}, {}>;
|
|
4972
|
-
updatedAt:
|
|
4972
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
4973
4973
|
name: "updated_at";
|
|
4974
4974
|
tableName: "dataset_run_config";
|
|
4975
4975
|
dataType: "string";
|
|
@@ -4986,7 +4986,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
4986
4986
|
identity: undefined;
|
|
4987
4987
|
generated: undefined;
|
|
4988
4988
|
}, {}, {}>;
|
|
4989
|
-
datasetId:
|
|
4989
|
+
datasetId: drizzle_orm_pg_core1826.PgColumn<{
|
|
4990
4990
|
name: "dataset_id";
|
|
4991
4991
|
tableName: "dataset_run_config";
|
|
4992
4992
|
dataType: "string";
|
|
@@ -5005,7 +5005,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5005
5005
|
}, {}, {
|
|
5006
5006
|
length: 256;
|
|
5007
5007
|
}>;
|
|
5008
|
-
name:
|
|
5008
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
5009
5009
|
name: "name";
|
|
5010
5010
|
tableName: "dataset_run_config";
|
|
5011
5011
|
dataType: "string";
|
|
@@ -5024,7 +5024,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5024
5024
|
}, {}, {
|
|
5025
5025
|
length: 256;
|
|
5026
5026
|
}>;
|
|
5027
|
-
description:
|
|
5027
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
5028
5028
|
name: "description";
|
|
5029
5029
|
tableName: "dataset_run_config";
|
|
5030
5030
|
dataType: "string";
|
|
@@ -5041,7 +5041,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5041
5041
|
identity: undefined;
|
|
5042
5042
|
generated: undefined;
|
|
5043
5043
|
}, {}, {}>;
|
|
5044
|
-
projectId:
|
|
5044
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5045
5045
|
name: "project_id";
|
|
5046
5046
|
tableName: "dataset_run_config";
|
|
5047
5047
|
dataType: "string";
|
|
@@ -5060,7 +5060,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5060
5060
|
}, {}, {
|
|
5061
5061
|
length: 256;
|
|
5062
5062
|
}>;
|
|
5063
|
-
tenantId:
|
|
5063
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5064
5064
|
name: "tenant_id";
|
|
5065
5065
|
tableName: "dataset_run_config";
|
|
5066
5066
|
dataType: "string";
|
|
@@ -5079,7 +5079,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5079
5079
|
}, {}, {
|
|
5080
5080
|
length: 256;
|
|
5081
5081
|
}>;
|
|
5082
|
-
id:
|
|
5082
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5083
5083
|
name: "id";
|
|
5084
5084
|
tableName: "dataset_run_config";
|
|
5085
5085
|
dataType: "string";
|
|
@@ -5116,11 +5116,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5116
5116
|
* Includes: name, description, filters (JSONB for evaluation criteria),
|
|
5117
5117
|
* sampleRate for sampling, and timestamps
|
|
5118
5118
|
*/
|
|
5119
|
-
declare const evaluationSuiteConfig:
|
|
5119
|
+
declare const evaluationSuiteConfig: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5120
5120
|
name: "evaluation_suite_config";
|
|
5121
5121
|
schema: undefined;
|
|
5122
5122
|
columns: {
|
|
5123
|
-
createdAt:
|
|
5123
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5124
5124
|
name: "created_at";
|
|
5125
5125
|
tableName: "evaluation_suite_config";
|
|
5126
5126
|
dataType: "string";
|
|
@@ -5137,7 +5137,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5137
5137
|
identity: undefined;
|
|
5138
5138
|
generated: undefined;
|
|
5139
5139
|
}, {}, {}>;
|
|
5140
|
-
updatedAt:
|
|
5140
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5141
5141
|
name: "updated_at";
|
|
5142
5142
|
tableName: "evaluation_suite_config";
|
|
5143
5143
|
dataType: "string";
|
|
@@ -5154,8 +5154,8 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5154
5154
|
identity: undefined;
|
|
5155
5155
|
generated: undefined;
|
|
5156
5156
|
}, {}, {}>;
|
|
5157
|
-
filters:
|
|
5158
|
-
name:
|
|
5157
|
+
filters: drizzle_orm_pg_core1826.PgColumn<{
|
|
5158
|
+
name: string;
|
|
5159
5159
|
tableName: "evaluation_suite_config";
|
|
5160
5160
|
dataType: "json";
|
|
5161
5161
|
columnType: "PgJsonb";
|
|
@@ -5173,7 +5173,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5173
5173
|
}, {}, {
|
|
5174
5174
|
$type: Filter<EvaluationSuiteFilterCriteria>;
|
|
5175
5175
|
}>;
|
|
5176
|
-
sampleRate:
|
|
5176
|
+
sampleRate: drizzle_orm_pg_core1826.PgColumn<{
|
|
5177
5177
|
name: "sample_rate";
|
|
5178
5178
|
tableName: "evaluation_suite_config";
|
|
5179
5179
|
dataType: "number";
|
|
@@ -5190,7 +5190,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5190
5190
|
identity: undefined;
|
|
5191
5191
|
generated: undefined;
|
|
5192
5192
|
}, {}, {}>;
|
|
5193
|
-
projectId:
|
|
5193
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5194
5194
|
name: "project_id";
|
|
5195
5195
|
tableName: "evaluation_suite_config";
|
|
5196
5196
|
dataType: "string";
|
|
@@ -5209,7 +5209,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5209
5209
|
}, {}, {
|
|
5210
5210
|
length: 256;
|
|
5211
5211
|
}>;
|
|
5212
|
-
tenantId:
|
|
5212
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5213
5213
|
name: "tenant_id";
|
|
5214
5214
|
tableName: "evaluation_suite_config";
|
|
5215
5215
|
dataType: "string";
|
|
@@ -5228,7 +5228,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5228
5228
|
}, {}, {
|
|
5229
5229
|
length: 256;
|
|
5230
5230
|
}>;
|
|
5231
|
-
id:
|
|
5231
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5232
5232
|
name: "id";
|
|
5233
5233
|
tableName: "evaluation_suite_config";
|
|
5234
5234
|
dataType: "string";
|
|
@@ -5257,11 +5257,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5257
5257
|
*
|
|
5258
5258
|
* Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
|
|
5259
5259
|
*/
|
|
5260
|
-
declare const evaluationSuiteConfigEvaluatorRelations:
|
|
5260
|
+
declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5261
5261
|
name: "evaluation_suite_config_evaluator_relations";
|
|
5262
5262
|
schema: undefined;
|
|
5263
5263
|
columns: {
|
|
5264
|
-
createdAt:
|
|
5264
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5265
5265
|
name: "created_at";
|
|
5266
5266
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5267
5267
|
dataType: "string";
|
|
@@ -5278,7 +5278,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5278
5278
|
identity: undefined;
|
|
5279
5279
|
generated: undefined;
|
|
5280
5280
|
}, {}, {}>;
|
|
5281
|
-
updatedAt:
|
|
5281
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5282
5282
|
name: "updated_at";
|
|
5283
5283
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5284
5284
|
dataType: "string";
|
|
@@ -5295,7 +5295,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5295
5295
|
identity: undefined;
|
|
5296
5296
|
generated: undefined;
|
|
5297
5297
|
}, {}, {}>;
|
|
5298
|
-
evaluationSuiteConfigId:
|
|
5298
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5299
5299
|
name: "evaluation_suite_config_id";
|
|
5300
5300
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5301
5301
|
dataType: "string";
|
|
@@ -5314,7 +5314,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5314
5314
|
}, {}, {
|
|
5315
5315
|
length: 256;
|
|
5316
5316
|
}>;
|
|
5317
|
-
evaluatorId:
|
|
5317
|
+
evaluatorId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5318
5318
|
name: "evaluator_id";
|
|
5319
5319
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5320
5320
|
dataType: "string";
|
|
@@ -5333,7 +5333,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5333
5333
|
}, {}, {
|
|
5334
5334
|
length: 256;
|
|
5335
5335
|
}>;
|
|
5336
|
-
projectId:
|
|
5336
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5337
5337
|
name: "project_id";
|
|
5338
5338
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5339
5339
|
dataType: "string";
|
|
@@ -5352,7 +5352,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5352
5352
|
}, {}, {
|
|
5353
5353
|
length: 256;
|
|
5354
5354
|
}>;
|
|
5355
|
-
tenantId:
|
|
5355
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5356
5356
|
name: "tenant_id";
|
|
5357
5357
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5358
5358
|
dataType: "string";
|
|
@@ -5371,7 +5371,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5371
5371
|
}, {}, {
|
|
5372
5372
|
length: 256;
|
|
5373
5373
|
}>;
|
|
5374
|
-
id:
|
|
5374
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5375
5375
|
name: "id";
|
|
5376
5376
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
5377
5377
|
dataType: "string";
|
|
@@ -5400,11 +5400,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core220.Pg
|
|
|
5400
5400
|
*
|
|
5401
5401
|
* Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
|
|
5402
5402
|
*/
|
|
5403
|
-
declare const evaluationRunConfigEvaluationSuiteConfigRelations:
|
|
5403
|
+
declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5404
5404
|
name: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5405
5405
|
schema: undefined;
|
|
5406
5406
|
columns: {
|
|
5407
|
-
createdAt:
|
|
5407
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5408
5408
|
name: "created_at";
|
|
5409
5409
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5410
5410
|
dataType: "string";
|
|
@@ -5421,7 +5421,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5421
5421
|
identity: undefined;
|
|
5422
5422
|
generated: undefined;
|
|
5423
5423
|
}, {}, {}>;
|
|
5424
|
-
updatedAt:
|
|
5424
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5425
5425
|
name: "updated_at";
|
|
5426
5426
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5427
5427
|
dataType: "string";
|
|
@@ -5438,7 +5438,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5438
5438
|
identity: undefined;
|
|
5439
5439
|
generated: undefined;
|
|
5440
5440
|
}, {}, {}>;
|
|
5441
|
-
evaluationRunConfigId:
|
|
5441
|
+
evaluationRunConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5442
5442
|
name: "evaluation_run_config_id";
|
|
5443
5443
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5444
5444
|
dataType: "string";
|
|
@@ -5457,7 +5457,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5457
5457
|
}, {}, {
|
|
5458
5458
|
length: 256;
|
|
5459
5459
|
}>;
|
|
5460
|
-
evaluationSuiteConfigId:
|
|
5460
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5461
5461
|
name: "evaluation_suite_config_id";
|
|
5462
5462
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5463
5463
|
dataType: "string";
|
|
@@ -5476,7 +5476,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5476
5476
|
}, {}, {
|
|
5477
5477
|
length: 256;
|
|
5478
5478
|
}>;
|
|
5479
|
-
projectId:
|
|
5479
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5480
5480
|
name: "project_id";
|
|
5481
5481
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5482
5482
|
dataType: "string";
|
|
@@ -5495,7 +5495,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5495
5495
|
}, {}, {
|
|
5496
5496
|
length: 256;
|
|
5497
5497
|
}>;
|
|
5498
|
-
tenantId:
|
|
5498
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5499
5499
|
name: "tenant_id";
|
|
5500
5500
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5501
5501
|
dataType: "string";
|
|
@@ -5514,7 +5514,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5514
5514
|
}, {}, {
|
|
5515
5515
|
length: 256;
|
|
5516
5516
|
}>;
|
|
5517
|
-
id:
|
|
5517
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5518
5518
|
name: "id";
|
|
5519
5519
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
5520
5520
|
dataType: "string";
|
|
@@ -5549,11 +5549,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
5549
5549
|
*
|
|
5550
5550
|
* one to many relationship with evaluationRun
|
|
5551
5551
|
*/
|
|
5552
|
-
declare const evaluationRunConfig:
|
|
5552
|
+
declare const evaluationRunConfig: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5553
5553
|
name: "evaluation_run_config";
|
|
5554
5554
|
schema: undefined;
|
|
5555
5555
|
columns: {
|
|
5556
|
-
createdAt:
|
|
5556
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5557
5557
|
name: "created_at";
|
|
5558
5558
|
tableName: "evaluation_run_config";
|
|
5559
5559
|
dataType: "string";
|
|
@@ -5570,7 +5570,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5570
5570
|
identity: undefined;
|
|
5571
5571
|
generated: undefined;
|
|
5572
5572
|
}, {}, {}>;
|
|
5573
|
-
updatedAt:
|
|
5573
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5574
5574
|
name: "updated_at";
|
|
5575
5575
|
tableName: "evaluation_run_config";
|
|
5576
5576
|
dataType: "string";
|
|
@@ -5587,7 +5587,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5587
5587
|
identity: undefined;
|
|
5588
5588
|
generated: undefined;
|
|
5589
5589
|
}, {}, {}>;
|
|
5590
|
-
isActive:
|
|
5590
|
+
isActive: drizzle_orm_pg_core1826.PgColumn<{
|
|
5591
5591
|
name: "is_active";
|
|
5592
5592
|
tableName: "evaluation_run_config";
|
|
5593
5593
|
dataType: "boolean";
|
|
@@ -5604,7 +5604,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5604
5604
|
identity: undefined;
|
|
5605
5605
|
generated: undefined;
|
|
5606
5606
|
}, {}, {}>;
|
|
5607
|
-
name:
|
|
5607
|
+
name: drizzle_orm_pg_core1826.PgColumn<{
|
|
5608
5608
|
name: "name";
|
|
5609
5609
|
tableName: "evaluation_run_config";
|
|
5610
5610
|
dataType: "string";
|
|
@@ -5623,7 +5623,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5623
5623
|
}, {}, {
|
|
5624
5624
|
length: 256;
|
|
5625
5625
|
}>;
|
|
5626
|
-
description:
|
|
5626
|
+
description: drizzle_orm_pg_core1826.PgColumn<{
|
|
5627
5627
|
name: "description";
|
|
5628
5628
|
tableName: "evaluation_run_config";
|
|
5629
5629
|
dataType: "string";
|
|
@@ -5640,7 +5640,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5640
5640
|
identity: undefined;
|
|
5641
5641
|
generated: undefined;
|
|
5642
5642
|
}, {}, {}>;
|
|
5643
|
-
projectId:
|
|
5643
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5644
5644
|
name: "project_id";
|
|
5645
5645
|
tableName: "evaluation_run_config";
|
|
5646
5646
|
dataType: "string";
|
|
@@ -5659,7 +5659,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5659
5659
|
}, {}, {
|
|
5660
5660
|
length: 256;
|
|
5661
5661
|
}>;
|
|
5662
|
-
tenantId:
|
|
5662
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5663
5663
|
name: "tenant_id";
|
|
5664
5664
|
tableName: "evaluation_run_config";
|
|
5665
5665
|
dataType: "string";
|
|
@@ -5678,7 +5678,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5678
5678
|
}, {}, {
|
|
5679
5679
|
length: 256;
|
|
5680
5680
|
}>;
|
|
5681
|
-
id:
|
|
5681
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5682
5682
|
name: "id";
|
|
5683
5683
|
tableName: "evaluation_run_config";
|
|
5684
5684
|
dataType: "string";
|
|
@@ -5714,11 +5714,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5714
5714
|
* Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
|
|
5715
5715
|
* dateRange with absolute dates), and timestamps
|
|
5716
5716
|
*/
|
|
5717
|
-
declare const evaluationJobConfig:
|
|
5717
|
+
declare const evaluationJobConfig: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5718
5718
|
name: "evaluation_job_config";
|
|
5719
5719
|
schema: undefined;
|
|
5720
5720
|
columns: {
|
|
5721
|
-
createdAt:
|
|
5721
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5722
5722
|
name: "created_at";
|
|
5723
5723
|
tableName: "evaluation_job_config";
|
|
5724
5724
|
dataType: "string";
|
|
@@ -5735,7 +5735,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5735
5735
|
identity: undefined;
|
|
5736
5736
|
generated: undefined;
|
|
5737
5737
|
}, {}, {}>;
|
|
5738
|
-
updatedAt:
|
|
5738
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5739
5739
|
name: "updated_at";
|
|
5740
5740
|
tableName: "evaluation_job_config";
|
|
5741
5741
|
dataType: "string";
|
|
@@ -5752,8 +5752,8 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5752
5752
|
identity: undefined;
|
|
5753
5753
|
generated: undefined;
|
|
5754
5754
|
}, {}, {}>;
|
|
5755
|
-
jobFilters:
|
|
5756
|
-
name:
|
|
5755
|
+
jobFilters: drizzle_orm_pg_core1826.PgColumn<{
|
|
5756
|
+
name: string;
|
|
5757
5757
|
tableName: "evaluation_job_config";
|
|
5758
5758
|
dataType: "json";
|
|
5759
5759
|
columnType: "PgJsonb";
|
|
@@ -5785,7 +5785,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5785
5785
|
} | undefined;
|
|
5786
5786
|
}>;
|
|
5787
5787
|
}>;
|
|
5788
|
-
projectId:
|
|
5788
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5789
5789
|
name: "project_id";
|
|
5790
5790
|
tableName: "evaluation_job_config";
|
|
5791
5791
|
dataType: "string";
|
|
@@ -5804,7 +5804,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5804
5804
|
}, {}, {
|
|
5805
5805
|
length: 256;
|
|
5806
5806
|
}>;
|
|
5807
|
-
tenantId:
|
|
5807
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5808
5808
|
name: "tenant_id";
|
|
5809
5809
|
tableName: "evaluation_job_config";
|
|
5810
5810
|
dataType: "string";
|
|
@@ -5823,7 +5823,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5823
5823
|
}, {}, {
|
|
5824
5824
|
length: 256;
|
|
5825
5825
|
}>;
|
|
5826
|
-
id:
|
|
5826
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5827
5827
|
name: "id";
|
|
5828
5828
|
tableName: "evaluation_job_config";
|
|
5829
5829
|
dataType: "string";
|
|
@@ -5852,11 +5852,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
5852
5852
|
*
|
|
5853
5853
|
* Includes: evaluationJobConfigId, evaluatorId, and timestamps
|
|
5854
5854
|
*/
|
|
5855
|
-
declare const evaluationJobConfigEvaluatorRelations:
|
|
5855
|
+
declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
5856
5856
|
name: "evaluation_job_config_evaluator_relations";
|
|
5857
5857
|
schema: undefined;
|
|
5858
5858
|
columns: {
|
|
5859
|
-
createdAt:
|
|
5859
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5860
5860
|
name: "created_at";
|
|
5861
5861
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5862
5862
|
dataType: "string";
|
|
@@ -5873,7 +5873,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5873
5873
|
identity: undefined;
|
|
5874
5874
|
generated: undefined;
|
|
5875
5875
|
}, {}, {}>;
|
|
5876
|
-
updatedAt:
|
|
5876
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
5877
5877
|
name: "updated_at";
|
|
5878
5878
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5879
5879
|
dataType: "string";
|
|
@@ -5890,7 +5890,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5890
5890
|
identity: undefined;
|
|
5891
5891
|
generated: undefined;
|
|
5892
5892
|
}, {}, {}>;
|
|
5893
|
-
evaluationJobConfigId:
|
|
5893
|
+
evaluationJobConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5894
5894
|
name: "evaluation_job_config_id";
|
|
5895
5895
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5896
5896
|
dataType: "string";
|
|
@@ -5909,7 +5909,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5909
5909
|
}, {}, {
|
|
5910
5910
|
length: 256;
|
|
5911
5911
|
}>;
|
|
5912
|
-
evaluatorId:
|
|
5912
|
+
evaluatorId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5913
5913
|
name: "evaluator_id";
|
|
5914
5914
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5915
5915
|
dataType: "string";
|
|
@@ -5928,7 +5928,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5928
5928
|
}, {}, {
|
|
5929
5929
|
length: 256;
|
|
5930
5930
|
}>;
|
|
5931
|
-
projectId:
|
|
5931
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5932
5932
|
name: "project_id";
|
|
5933
5933
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5934
5934
|
dataType: "string";
|
|
@@ -5947,7 +5947,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5947
5947
|
}, {}, {
|
|
5948
5948
|
length: 256;
|
|
5949
5949
|
}>;
|
|
5950
|
-
tenantId:
|
|
5950
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
5951
5951
|
name: "tenant_id";
|
|
5952
5952
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5953
5953
|
dataType: "string";
|
|
@@ -5966,7 +5966,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5966
5966
|
}, {}, {
|
|
5967
5967
|
length: 256;
|
|
5968
5968
|
}>;
|
|
5969
|
-
id:
|
|
5969
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
5970
5970
|
name: "id";
|
|
5971
5971
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5972
5972
|
dataType: "string";
|
|
@@ -5988,114 +5988,114 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core220.PgTa
|
|
|
5988
5988
|
};
|
|
5989
5989
|
dialect: "pg";
|
|
5990
5990
|
}>;
|
|
5991
|
-
declare const projectsRelations:
|
|
5992
|
-
subAgents:
|
|
5993
|
-
agents:
|
|
5994
|
-
tools:
|
|
5995
|
-
functions:
|
|
5996
|
-
contextConfigs:
|
|
5997
|
-
externalAgents:
|
|
5998
|
-
dataComponents:
|
|
5999
|
-
artifactComponents:
|
|
6000
|
-
credentialReferences:
|
|
6001
|
-
skills:
|
|
6002
|
-
skillFiles:
|
|
5991
|
+
declare const projectsRelations: drizzle_orm49.Relations<"projects", {
|
|
5992
|
+
subAgents: drizzle_orm49.Many<"sub_agents">;
|
|
5993
|
+
agents: drizzle_orm49.Many<"agent">;
|
|
5994
|
+
tools: drizzle_orm49.Many<"tools">;
|
|
5995
|
+
functions: drizzle_orm49.Many<"functions">;
|
|
5996
|
+
contextConfigs: drizzle_orm49.Many<"context_configs">;
|
|
5997
|
+
externalAgents: drizzle_orm49.Many<"external_agents">;
|
|
5998
|
+
dataComponents: drizzle_orm49.Many<"data_components">;
|
|
5999
|
+
artifactComponents: drizzle_orm49.Many<"artifact_components">;
|
|
6000
|
+
credentialReferences: drizzle_orm49.Many<"credential_references">;
|
|
6001
|
+
skills: drizzle_orm49.Many<"skills">;
|
|
6002
|
+
skillFiles: drizzle_orm49.Many<"skill_files">;
|
|
6003
6003
|
}>;
|
|
6004
|
-
declare const contextConfigsRelations:
|
|
6005
|
-
project:
|
|
6006
|
-
agents:
|
|
6004
|
+
declare const contextConfigsRelations: drizzle_orm49.Relations<"context_configs", {
|
|
6005
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6006
|
+
agents: drizzle_orm49.Many<"agent">;
|
|
6007
6007
|
}>;
|
|
6008
|
-
declare const subAgentsRelations:
|
|
6009
|
-
project:
|
|
6010
|
-
defaultForAgents:
|
|
6011
|
-
sourceRelations:
|
|
6012
|
-
targetRelations:
|
|
6013
|
-
toolRelations:
|
|
6014
|
-
functionToolRelations:
|
|
6015
|
-
dataComponentRelations:
|
|
6016
|
-
artifactComponentRelations:
|
|
6017
|
-
skillRelations:
|
|
6008
|
+
declare const subAgentsRelations: drizzle_orm49.Relations<"sub_agents", {
|
|
6009
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6010
|
+
defaultForAgents: drizzle_orm49.Many<"agent">;
|
|
6011
|
+
sourceRelations: drizzle_orm49.Many<"sub_agent_relations">;
|
|
6012
|
+
targetRelations: drizzle_orm49.Many<"sub_agent_relations">;
|
|
6013
|
+
toolRelations: drizzle_orm49.Many<"sub_agent_tool_relations">;
|
|
6014
|
+
functionToolRelations: drizzle_orm49.Many<"sub_agent_function_tool_relations">;
|
|
6015
|
+
dataComponentRelations: drizzle_orm49.Many<"sub_agent_data_components">;
|
|
6016
|
+
artifactComponentRelations: drizzle_orm49.Many<"sub_agent_artifact_components">;
|
|
6017
|
+
skillRelations: drizzle_orm49.Many<"sub_agent_skills">;
|
|
6018
6018
|
}>;
|
|
6019
|
-
declare const agentRelations:
|
|
6020
|
-
project:
|
|
6021
|
-
defaultSubAgent:
|
|
6022
|
-
contextConfig:
|
|
6023
|
-
functionTools:
|
|
6019
|
+
declare const agentRelations: drizzle_orm49.Relations<"agent", {
|
|
6020
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6021
|
+
defaultSubAgent: drizzle_orm49.One<"sub_agents", false>;
|
|
6022
|
+
contextConfig: drizzle_orm49.One<"context_configs", false>;
|
|
6023
|
+
functionTools: drizzle_orm49.Many<"function_tools">;
|
|
6024
6024
|
}>;
|
|
6025
|
-
declare const externalAgentsRelations:
|
|
6026
|
-
project:
|
|
6027
|
-
subAgentExternalAgentRelations:
|
|
6028
|
-
credentialReference:
|
|
6025
|
+
declare const externalAgentsRelations: drizzle_orm49.Relations<"external_agents", {
|
|
6026
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6027
|
+
subAgentExternalAgentRelations: drizzle_orm49.Many<"sub_agent_external_agent_relations">;
|
|
6028
|
+
credentialReference: drizzle_orm49.One<"credential_references", false>;
|
|
6029
6029
|
}>;
|
|
6030
|
-
declare const agentToolRelationsRelations:
|
|
6031
|
-
subAgent:
|
|
6032
|
-
tool:
|
|
6030
|
+
declare const agentToolRelationsRelations: drizzle_orm49.Relations<"sub_agent_tool_relations", {
|
|
6031
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6032
|
+
tool: drizzle_orm49.One<"tools", true>;
|
|
6033
6033
|
}>;
|
|
6034
|
-
declare const credentialReferencesRelations:
|
|
6035
|
-
project:
|
|
6036
|
-
tools:
|
|
6037
|
-
externalAgents:
|
|
6034
|
+
declare const credentialReferencesRelations: drizzle_orm49.Relations<"credential_references", {
|
|
6035
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6036
|
+
tools: drizzle_orm49.Many<"tools">;
|
|
6037
|
+
externalAgents: drizzle_orm49.Many<"external_agents">;
|
|
6038
6038
|
}>;
|
|
6039
|
-
declare const toolsRelations:
|
|
6040
|
-
project:
|
|
6041
|
-
subAgentRelations:
|
|
6042
|
-
credentialReference:
|
|
6039
|
+
declare const toolsRelations: drizzle_orm49.Relations<"tools", {
|
|
6040
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6041
|
+
subAgentRelations: drizzle_orm49.Many<"sub_agent_tool_relations">;
|
|
6042
|
+
credentialReference: drizzle_orm49.One<"credential_references", false>;
|
|
6043
6043
|
}>;
|
|
6044
|
-
declare const artifactComponentsRelations:
|
|
6045
|
-
project:
|
|
6046
|
-
subAgentRelations:
|
|
6044
|
+
declare const artifactComponentsRelations: drizzle_orm49.Relations<"artifact_components", {
|
|
6045
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6046
|
+
subAgentRelations: drizzle_orm49.Many<"sub_agent_artifact_components">;
|
|
6047
6047
|
}>;
|
|
6048
|
-
declare const subAgentArtifactComponentsRelations:
|
|
6049
|
-
subAgent:
|
|
6050
|
-
artifactComponent:
|
|
6048
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm49.Relations<"sub_agent_artifact_components", {
|
|
6049
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6050
|
+
artifactComponent: drizzle_orm49.One<"artifact_components", true>;
|
|
6051
6051
|
}>;
|
|
6052
|
-
declare const dataComponentsRelations:
|
|
6053
|
-
project:
|
|
6054
|
-
subAgentRelations:
|
|
6052
|
+
declare const dataComponentsRelations: drizzle_orm49.Relations<"data_components", {
|
|
6053
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6054
|
+
subAgentRelations: drizzle_orm49.Many<"sub_agent_data_components">;
|
|
6055
6055
|
}>;
|
|
6056
|
-
declare const subAgentDataComponentsRelations:
|
|
6057
|
-
subAgent:
|
|
6058
|
-
dataComponent:
|
|
6056
|
+
declare const subAgentDataComponentsRelations: drizzle_orm49.Relations<"sub_agent_data_components", {
|
|
6057
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6058
|
+
dataComponent: drizzle_orm49.One<"data_components", true>;
|
|
6059
6059
|
}>;
|
|
6060
|
-
declare const skillsRelations:
|
|
6061
|
-
project:
|
|
6062
|
-
files:
|
|
6063
|
-
subAgentRelations:
|
|
6060
|
+
declare const skillsRelations: drizzle_orm49.Relations<"skills", {
|
|
6061
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6062
|
+
files: drizzle_orm49.Many<"skill_files">;
|
|
6063
|
+
subAgentRelations: drizzle_orm49.Many<"sub_agent_skills">;
|
|
6064
6064
|
}>;
|
|
6065
|
-
declare const skillFilesRelations:
|
|
6066
|
-
project:
|
|
6067
|
-
skill:
|
|
6065
|
+
declare const skillFilesRelations: drizzle_orm49.Relations<"skill_files", {
|
|
6066
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6067
|
+
skill: drizzle_orm49.One<"skills", true>;
|
|
6068
6068
|
}>;
|
|
6069
|
-
declare const subAgentSkillsRelations:
|
|
6070
|
-
subAgent:
|
|
6071
|
-
skill:
|
|
6069
|
+
declare const subAgentSkillsRelations: drizzle_orm49.Relations<"sub_agent_skills", {
|
|
6070
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6071
|
+
skill: drizzle_orm49.One<"skills", true>;
|
|
6072
6072
|
}>;
|
|
6073
|
-
declare const functionsRelations:
|
|
6074
|
-
functionTools:
|
|
6075
|
-
project:
|
|
6073
|
+
declare const functionsRelations: drizzle_orm49.Relations<"functions", {
|
|
6074
|
+
functionTools: drizzle_orm49.Many<"function_tools">;
|
|
6075
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6076
6076
|
}>;
|
|
6077
|
-
declare const subAgentRelationsRelations:
|
|
6078
|
-
agent:
|
|
6079
|
-
sourceSubAgent:
|
|
6080
|
-
targetSubAgent:
|
|
6077
|
+
declare const subAgentRelationsRelations: drizzle_orm49.Relations<"sub_agent_relations", {
|
|
6078
|
+
agent: drizzle_orm49.One<"agent", true>;
|
|
6079
|
+
sourceSubAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6080
|
+
targetSubAgent: drizzle_orm49.One<"sub_agents", false>;
|
|
6081
6081
|
}>;
|
|
6082
|
-
declare const functionToolsRelations:
|
|
6083
|
-
project:
|
|
6084
|
-
agent:
|
|
6085
|
-
function:
|
|
6086
|
-
subAgentRelations:
|
|
6082
|
+
declare const functionToolsRelations: drizzle_orm49.Relations<"function_tools", {
|
|
6083
|
+
project: drizzle_orm49.One<"projects", true>;
|
|
6084
|
+
agent: drizzle_orm49.One<"agent", true>;
|
|
6085
|
+
function: drizzle_orm49.One<"functions", true>;
|
|
6086
|
+
subAgentRelations: drizzle_orm49.Many<"sub_agent_function_tool_relations">;
|
|
6087
6087
|
}>;
|
|
6088
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
6089
|
-
subAgent:
|
|
6090
|
-
functionTool:
|
|
6088
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm49.Relations<"sub_agent_function_tool_relations", {
|
|
6089
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6090
|
+
functionTool: drizzle_orm49.One<"function_tools", true>;
|
|
6091
6091
|
}>;
|
|
6092
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
6093
|
-
subAgent:
|
|
6094
|
-
externalAgent:
|
|
6092
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm49.Relations<"sub_agent_external_agent_relations", {
|
|
6093
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6094
|
+
externalAgent: drizzle_orm49.One<"external_agents", true>;
|
|
6095
6095
|
}>;
|
|
6096
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
6097
|
-
subAgent:
|
|
6098
|
-
targetAgent:
|
|
6096
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm49.Relations<"sub_agent_team_agent_relations", {
|
|
6097
|
+
subAgent: drizzle_orm49.One<"sub_agents", true>;
|
|
6098
|
+
targetAgent: drizzle_orm49.One<"agent", true>;
|
|
6099
6099
|
}>;
|
|
6100
6100
|
/**
|
|
6101
6101
|
* Links agents to datasets. Many-to-many relationship that scopes a dataset
|
|
@@ -6105,11 +6105,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_
|
|
|
6105
6105
|
*
|
|
6106
6106
|
* Includes: agentId, datasetId, and timestamps
|
|
6107
6107
|
*/
|
|
6108
|
-
declare const agentDatasetRelations:
|
|
6108
|
+
declare const agentDatasetRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
6109
6109
|
name: "agent_dataset_relations";
|
|
6110
6110
|
schema: undefined;
|
|
6111
6111
|
columns: {
|
|
6112
|
-
createdAt:
|
|
6112
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6113
6113
|
name: "created_at";
|
|
6114
6114
|
tableName: "agent_dataset_relations";
|
|
6115
6115
|
dataType: "string";
|
|
@@ -6126,7 +6126,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6126
6126
|
identity: undefined;
|
|
6127
6127
|
generated: undefined;
|
|
6128
6128
|
}, {}, {}>;
|
|
6129
|
-
updatedAt:
|
|
6129
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6130
6130
|
name: "updated_at";
|
|
6131
6131
|
tableName: "agent_dataset_relations";
|
|
6132
6132
|
dataType: "string";
|
|
@@ -6143,7 +6143,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6143
6143
|
identity: undefined;
|
|
6144
6144
|
generated: undefined;
|
|
6145
6145
|
}, {}, {}>;
|
|
6146
|
-
agentId:
|
|
6146
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6147
6147
|
name: "agent_id";
|
|
6148
6148
|
tableName: "agent_dataset_relations";
|
|
6149
6149
|
dataType: "string";
|
|
@@ -6162,7 +6162,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6162
6162
|
}, {}, {
|
|
6163
6163
|
length: 256;
|
|
6164
6164
|
}>;
|
|
6165
|
-
datasetId:
|
|
6165
|
+
datasetId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6166
6166
|
name: "dataset_id";
|
|
6167
6167
|
tableName: "agent_dataset_relations";
|
|
6168
6168
|
dataType: "string";
|
|
@@ -6181,7 +6181,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6181
6181
|
}, {}, {
|
|
6182
6182
|
length: 256;
|
|
6183
6183
|
}>;
|
|
6184
|
-
projectId:
|
|
6184
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6185
6185
|
name: "project_id";
|
|
6186
6186
|
tableName: "agent_dataset_relations";
|
|
6187
6187
|
dataType: "string";
|
|
@@ -6200,7 +6200,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6200
6200
|
}, {}, {
|
|
6201
6201
|
length: 256;
|
|
6202
6202
|
}>;
|
|
6203
|
-
tenantId:
|
|
6203
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6204
6204
|
name: "tenant_id";
|
|
6205
6205
|
tableName: "agent_dataset_relations";
|
|
6206
6206
|
dataType: "string";
|
|
@@ -6219,7 +6219,7 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6219
6219
|
}, {}, {
|
|
6220
6220
|
length: 256;
|
|
6221
6221
|
}>;
|
|
6222
|
-
id:
|
|
6222
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
6223
6223
|
name: "id";
|
|
6224
6224
|
tableName: "agent_dataset_relations";
|
|
6225
6225
|
dataType: "string";
|
|
@@ -6249,11 +6249,11 @@ declare const agentDatasetRelations: drizzle_orm_pg_core220.PgTableWithColumns<{
|
|
|
6249
6249
|
*
|
|
6250
6250
|
* Includes: agentId, evaluatorId, and timestamps
|
|
6251
6251
|
*/
|
|
6252
|
-
declare const agentEvaluatorRelations:
|
|
6252
|
+
declare const agentEvaluatorRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
6253
6253
|
name: "agent_evaluator_relations";
|
|
6254
6254
|
schema: undefined;
|
|
6255
6255
|
columns: {
|
|
6256
|
-
createdAt:
|
|
6256
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6257
6257
|
name: "created_at";
|
|
6258
6258
|
tableName: "agent_evaluator_relations";
|
|
6259
6259
|
dataType: "string";
|
|
@@ -6270,7 +6270,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6270
6270
|
identity: undefined;
|
|
6271
6271
|
generated: undefined;
|
|
6272
6272
|
}, {}, {}>;
|
|
6273
|
-
updatedAt:
|
|
6273
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6274
6274
|
name: "updated_at";
|
|
6275
6275
|
tableName: "agent_evaluator_relations";
|
|
6276
6276
|
dataType: "string";
|
|
@@ -6287,7 +6287,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6287
6287
|
identity: undefined;
|
|
6288
6288
|
generated: undefined;
|
|
6289
6289
|
}, {}, {}>;
|
|
6290
|
-
agentId:
|
|
6290
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6291
6291
|
name: "agent_id";
|
|
6292
6292
|
tableName: "agent_evaluator_relations";
|
|
6293
6293
|
dataType: "string";
|
|
@@ -6306,7 +6306,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6306
6306
|
}, {}, {
|
|
6307
6307
|
length: 256;
|
|
6308
6308
|
}>;
|
|
6309
|
-
evaluatorId:
|
|
6309
|
+
evaluatorId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6310
6310
|
name: "evaluator_id";
|
|
6311
6311
|
tableName: "agent_evaluator_relations";
|
|
6312
6312
|
dataType: "string";
|
|
@@ -6325,7 +6325,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6325
6325
|
}, {}, {
|
|
6326
6326
|
length: 256;
|
|
6327
6327
|
}>;
|
|
6328
|
-
projectId:
|
|
6328
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6329
6329
|
name: "project_id";
|
|
6330
6330
|
tableName: "agent_evaluator_relations";
|
|
6331
6331
|
dataType: "string";
|
|
@@ -6344,7 +6344,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6344
6344
|
}, {}, {
|
|
6345
6345
|
length: 256;
|
|
6346
6346
|
}>;
|
|
6347
|
-
tenantId:
|
|
6347
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6348
6348
|
name: "tenant_id";
|
|
6349
6349
|
tableName: "agent_evaluator_relations";
|
|
6350
6350
|
dataType: "string";
|
|
@@ -6363,7 +6363,7 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6363
6363
|
}, {}, {
|
|
6364
6364
|
length: 256;
|
|
6365
6365
|
}>;
|
|
6366
|
-
id:
|
|
6366
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
6367
6367
|
name: "id";
|
|
6368
6368
|
tableName: "agent_evaluator_relations";
|
|
6369
6369
|
dataType: "string";
|
|
@@ -6392,11 +6392,11 @@ declare const agentEvaluatorRelations: drizzle_orm_pg_core220.PgTableWithColumns
|
|
|
6392
6392
|
*
|
|
6393
6393
|
* Includes: datasetRunConfigId, agentId, and timestamps
|
|
6394
6394
|
*/
|
|
6395
|
-
declare const datasetRunConfigAgentRelations:
|
|
6395
|
+
declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1826.PgTableWithColumns<{
|
|
6396
6396
|
name: "dataset_run_config_agent_relations";
|
|
6397
6397
|
schema: undefined;
|
|
6398
6398
|
columns: {
|
|
6399
|
-
createdAt:
|
|
6399
|
+
createdAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6400
6400
|
name: "created_at";
|
|
6401
6401
|
tableName: "dataset_run_config_agent_relations";
|
|
6402
6402
|
dataType: "string";
|
|
@@ -6413,7 +6413,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6413
6413
|
identity: undefined;
|
|
6414
6414
|
generated: undefined;
|
|
6415
6415
|
}, {}, {}>;
|
|
6416
|
-
updatedAt:
|
|
6416
|
+
updatedAt: drizzle_orm_pg_core1826.PgColumn<{
|
|
6417
6417
|
name: "updated_at";
|
|
6418
6418
|
tableName: "dataset_run_config_agent_relations";
|
|
6419
6419
|
dataType: "string";
|
|
@@ -6430,7 +6430,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6430
6430
|
identity: undefined;
|
|
6431
6431
|
generated: undefined;
|
|
6432
6432
|
}, {}, {}>;
|
|
6433
|
-
datasetRunConfigId:
|
|
6433
|
+
datasetRunConfigId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6434
6434
|
name: "dataset_run_config_id";
|
|
6435
6435
|
tableName: "dataset_run_config_agent_relations";
|
|
6436
6436
|
dataType: "string";
|
|
@@ -6449,7 +6449,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6449
6449
|
}, {}, {
|
|
6450
6450
|
length: 256;
|
|
6451
6451
|
}>;
|
|
6452
|
-
agentId:
|
|
6452
|
+
agentId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6453
6453
|
name: "agent_id";
|
|
6454
6454
|
tableName: "dataset_run_config_agent_relations";
|
|
6455
6455
|
dataType: "string";
|
|
@@ -6468,7 +6468,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6468
6468
|
}, {}, {
|
|
6469
6469
|
length: 256;
|
|
6470
6470
|
}>;
|
|
6471
|
-
projectId:
|
|
6471
|
+
projectId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6472
6472
|
name: "project_id";
|
|
6473
6473
|
tableName: "dataset_run_config_agent_relations";
|
|
6474
6474
|
dataType: "string";
|
|
@@ -6487,7 +6487,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6487
6487
|
}, {}, {
|
|
6488
6488
|
length: 256;
|
|
6489
6489
|
}>;
|
|
6490
|
-
tenantId:
|
|
6490
|
+
tenantId: drizzle_orm_pg_core1826.PgColumn<{
|
|
6491
6491
|
name: "tenant_id";
|
|
6492
6492
|
tableName: "dataset_run_config_agent_relations";
|
|
6493
6493
|
dataType: "string";
|
|
@@ -6506,7 +6506,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6506
6506
|
}, {}, {
|
|
6507
6507
|
length: 256;
|
|
6508
6508
|
}>;
|
|
6509
|
-
id:
|
|
6509
|
+
id: drizzle_orm_pg_core1826.PgColumn<{
|
|
6510
6510
|
name: "id";
|
|
6511
6511
|
tableName: "dataset_run_config_agent_relations";
|
|
6512
6512
|
dataType: "string";
|
|
@@ -6528,13 +6528,13 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core220.PgTableWith
|
|
|
6528
6528
|
};
|
|
6529
6529
|
dialect: "pg";
|
|
6530
6530
|
}>;
|
|
6531
|
-
declare const agentDatasetRelationsRelations:
|
|
6532
|
-
agent:
|
|
6533
|
-
dataset:
|
|
6531
|
+
declare const agentDatasetRelationsRelations: drizzle_orm49.Relations<"agent_dataset_relations", {
|
|
6532
|
+
agent: drizzle_orm49.One<"agent", true>;
|
|
6533
|
+
dataset: drizzle_orm49.One<"dataset", true>;
|
|
6534
6534
|
}>;
|
|
6535
|
-
declare const agentEvaluatorRelationsRelations:
|
|
6536
|
-
agent:
|
|
6537
|
-
evaluator:
|
|
6535
|
+
declare const agentEvaluatorRelationsRelations: drizzle_orm49.Relations<"agent_evaluator_relations", {
|
|
6536
|
+
agent: drizzle_orm49.One<"agent", true>;
|
|
6537
|
+
evaluator: drizzle_orm49.One<"evaluator", true>;
|
|
6538
6538
|
}>;
|
|
6539
6539
|
//#endregion
|
|
6540
6540
|
export { agentDatasetRelations, agentDatasetRelationsRelations, agentEvaluatorRelations, agentEvaluatorRelationsRelations, 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, manage_schema_d_exports, projects, projectsRelations, skillFiles, skillFilesRelations, skills, skillsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentSkills, subAgentSkillsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
|