@inkeep/agents-core 0.42.0 → 0.44.0
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 +28 -26
- package/dist/auth/auth.js +21 -16
- package/dist/auth/authz/client.d.ts +8 -3
- package/dist/auth/authz/client.js +23 -17
- package/dist/auth/authz/config.d.ts +50 -29
- package/dist/auth/authz/config.js +42 -33
- package/dist/auth/authz/index.d.ts +3 -3
- package/dist/auth/authz/index.js +3 -3
- package/dist/auth/authz/permissions.d.ts +0 -4
- package/dist/auth/authz/permissions.js +9 -13
- package/dist/auth/authz/sync.d.ts +23 -2
- package/dist/auth/authz/sync.js +127 -53
- package/dist/auth/init.d.ts +1 -0
- package/dist/auth/init.js +115 -0
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +3 -6
- package/dist/client-exports.js +4 -7
- package/dist/constants/execution-limits-shared/defaults.d.ts +1 -1
- package/dist/constants/execution-limits-shared/defaults.js +1 -1
- package/dist/constants/execution-limits-shared/index.d.ts +1 -1
- package/dist/constants/otel-attributes.d.ts +5 -0
- package/dist/constants/otel-attributes.js +8 -3
- package/dist/constants/signoz-queries.d.ts +1 -0
- package/dist/constants/signoz-queries.js +2 -1
- package/dist/context/TemplateEngine.d.ts +0 -6
- package/dist/context/TemplateEngine.js +4 -18
- package/dist/credential-stores/keychain-store.d.ts +20 -8
- package/dist/credential-stores/keychain-store.js +107 -43
- package/dist/data-access/index.d.ts +5 -4
- package/dist/data-access/index.js +5 -4
- package/dist/data-access/manage/agentFull.js +70 -25
- package/dist/data-access/manage/agents.d.ts +41 -41
- package/dist/data-access/manage/agents.js +29 -21
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/artifactComponents.js +1 -1
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/dataComponents.js +1 -1
- package/dist/data-access/manage/functionTools.d.ts +44 -21
- package/dist/data-access/manage/functionTools.js +34 -22
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +26 -26
- 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 +39 -28
- package/dist/data-access/manage/tools.js +73 -31
- package/dist/data-access/manage/triggers.d.ts +27 -1
- package/dist/data-access/runtime/apiKeys.d.ts +20 -20
- package/dist/data-access/runtime/cascade-delete.d.ts +48 -1
- package/dist/data-access/runtime/cascade-delete.js +52 -2
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/github-work-app-installations.d.ts +261 -0
- package/dist/data-access/runtime/github-work-app-installations.js +457 -0
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/organizations.d.ts +2 -2
- package/dist/data-access/runtime/organizations.js +4 -4
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/db/manage/manage-schema.d.ts +533 -402
- package/dist/db/manage/manage-schema.js +38 -27
- package/dist/db/runtime/runtime-schema.d.ts +1021 -177
- package/dist/db/runtime/runtime-schema.js +173 -5
- package/dist/db/utils.d.ts +6 -0
- package/dist/db/utils.js +42 -0
- package/dist/dolt/branch.js +1 -1
- package/dist/dolt/branches-api.js +1 -1
- package/dist/dolt/index.d.ts +2 -2
- package/dist/dolt/index.js +4 -4
- package/dist/dolt/migrate-all-branches.js +6 -1
- package/dist/dolt/migrate-dolt.js +4 -1
- package/dist/dolt/ref-helpers.js +1 -1
- package/dist/dolt/ref-middleware.js +1 -1
- package/dist/dolt/ref-scope.js +1 -1
- package/dist/dolt/schema-sync.d.ts +2 -1
- package/dist/dolt/schema-sync.js +10 -1
- package/dist/env.d.ts +6 -4
- package/dist/env.js +11 -10
- package/dist/index.d.ts +15 -16
- package/dist/index.js +23 -24
- package/dist/types/@napi-rs__keyring/index.d.ts +14 -0
- package/dist/types/entities.d.ts +9 -2
- package/dist/types/index.d.ts +3 -3
- package/dist/types/utility.d.ts +17 -3
- package/dist/types/utility.js +2 -1
- package/dist/utils/JsonTransformer.d.ts +1 -3
- package/dist/utils/JsonTransformer.js +14 -23
- package/dist/utils/index.d.ts +3 -3
- package/dist/utils/index.js +3 -3
- package/dist/utils/jmespath-utils.d.ts +152 -0
- package/dist/utils/jmespath-utils.js +213 -0
- package/dist/utils/mcp-client.d.ts +1 -1
- package/dist/utils/mcp-client.js +1 -1
- package/dist/utils/signature-validation.d.ts +2 -0
- package/dist/utils/signature-validation.js +3 -0
- package/dist/utils/third-party-mcp-servers/composio-client.d.ts +13 -1
- package/dist/utils/third-party-mcp-servers/composio-client.js +24 -6
- package/dist/utils/third-party-mcp-servers/index.d.ts +2 -2
- package/dist/utils/third-party-mcp-servers/index.js +2 -2
- package/dist/utils/trigger-auth.d.ts +31 -8
- package/dist/utils/trigger-auth.js +121 -13
- package/dist/validation/agentFull.js +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +4 -23
- package/dist/validation/drizzle-schema-helpers.js +3 -30
- package/dist/validation/index.d.ts +3 -5
- package/dist/validation/index.js +5 -7
- package/dist/validation/render-validation.js +19 -0
- package/dist/validation/schemas.d.ts +3675 -1665
- package/dist/validation/schemas.js +409 -94
- package/dist/validation/stream-event-schemas.d.ts +96 -1
- package/dist/validation/stream-event-schemas.js +67 -2
- package/drizzle/manage/0003_tiny_captain_universe.sql +8 -0
- package/drizzle/manage/0004_curious_phil_sheldon.sql +2 -0
- package/drizzle/manage/0005_silent_shatterstar.sql +53 -0
- package/drizzle/manage/0006_fixed_umar.sql +1 -0
- package/drizzle/manage/meta/0003_snapshot.json +3134 -0
- package/drizzle/manage/meta/0004_snapshot.json +3141 -0
- package/drizzle/manage/meta/0005_snapshot.json +3141 -0
- package/drizzle/manage/meta/0006_snapshot.json +3148 -0
- package/drizzle/manage/meta/_journal.json +28 -0
- package/drizzle/runtime/0010_previous_black_knight.sql +84 -0
- package/drizzle/runtime/meta/0010_snapshot.json +3066 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +12 -5
- package/spicedb/schema.zed +114 -0
- package/dist/validation/id-validation.d.ts +0 -24
- package/dist/validation/id-validation.js +0 -52
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as drizzle_orm20 from "drizzle-orm";
|
|
3
|
+
import * as drizzle_orm_pg_core1370 from "drizzle-orm/pg-core";
|
|
4
4
|
|
|
5
5
|
//#region src/db/manage/manage-schema.d.ts
|
|
6
6
|
declare namespace manage_schema_d_exports {
|
|
7
7
|
export { agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
|
|
8
8
|
}
|
|
9
|
-
declare const projects:
|
|
9
|
+
declare const projects: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
10
10
|
name: "projects";
|
|
11
11
|
schema: undefined;
|
|
12
12
|
columns: {
|
|
13
|
-
createdAt:
|
|
13
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
14
14
|
name: "created_at";
|
|
15
15
|
tableName: "projects";
|
|
16
16
|
dataType: "string";
|
|
@@ -27,7 +27,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
27
27
|
identity: undefined;
|
|
28
28
|
generated: undefined;
|
|
29
29
|
}, {}, {}>;
|
|
30
|
-
updatedAt:
|
|
30
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
31
31
|
name: "updated_at";
|
|
32
32
|
tableName: "projects";
|
|
33
33
|
dataType: "string";
|
|
@@ -44,7 +44,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
44
44
|
identity: undefined;
|
|
45
45
|
generated: undefined;
|
|
46
46
|
}, {}, {}>;
|
|
47
|
-
models:
|
|
47
|
+
models: drizzle_orm_pg_core1370.PgColumn<{
|
|
48
48
|
name: "models";
|
|
49
49
|
tableName: "projects";
|
|
50
50
|
dataType: "json";
|
|
@@ -89,7 +89,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
89
89
|
} | undefined;
|
|
90
90
|
};
|
|
91
91
|
}>;
|
|
92
|
-
stopWhen:
|
|
92
|
+
stopWhen: drizzle_orm_pg_core1370.PgColumn<{
|
|
93
93
|
name: "stop_when";
|
|
94
94
|
tableName: "projects";
|
|
95
95
|
dataType: "json";
|
|
@@ -114,7 +114,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
114
114
|
stepCountIs?: number | undefined;
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
|
-
name:
|
|
117
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
118
118
|
name: "name";
|
|
119
119
|
tableName: "projects";
|
|
120
120
|
dataType: "string";
|
|
@@ -133,7 +133,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
133
133
|
}, {}, {
|
|
134
134
|
length: 256;
|
|
135
135
|
}>;
|
|
136
|
-
description:
|
|
136
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
137
137
|
name: "description";
|
|
138
138
|
tableName: "projects";
|
|
139
139
|
dataType: "string";
|
|
@@ -150,7 +150,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
150
150
|
identity: undefined;
|
|
151
151
|
generated: undefined;
|
|
152
152
|
}, {}, {}>;
|
|
153
|
-
tenantId:
|
|
153
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
154
154
|
name: "tenant_id";
|
|
155
155
|
tableName: "projects";
|
|
156
156
|
dataType: "string";
|
|
@@ -169,7 +169,7 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
169
169
|
}, {}, {
|
|
170
170
|
length: 256;
|
|
171
171
|
}>;
|
|
172
|
-
id:
|
|
172
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
173
173
|
name: "id";
|
|
174
174
|
tableName: "projects";
|
|
175
175
|
dataType: "string";
|
|
@@ -191,11 +191,11 @@ declare const projects: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
191
191
|
};
|
|
192
192
|
dialect: "pg";
|
|
193
193
|
}>;
|
|
194
|
-
declare const agents:
|
|
194
|
+
declare const agents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
195
195
|
name: "agent";
|
|
196
196
|
schema: undefined;
|
|
197
197
|
columns: {
|
|
198
|
-
createdAt:
|
|
198
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
199
199
|
name: "created_at";
|
|
200
200
|
tableName: "agent";
|
|
201
201
|
dataType: "string";
|
|
@@ -212,7 +212,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
212
212
|
identity: undefined;
|
|
213
213
|
generated: undefined;
|
|
214
214
|
}, {}, {}>;
|
|
215
|
-
updatedAt:
|
|
215
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
216
216
|
name: "updated_at";
|
|
217
217
|
tableName: "agent";
|
|
218
218
|
dataType: "string";
|
|
@@ -229,7 +229,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
229
229
|
identity: undefined;
|
|
230
230
|
generated: undefined;
|
|
231
231
|
}, {}, {}>;
|
|
232
|
-
name:
|
|
232
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
233
233
|
name: "name";
|
|
234
234
|
tableName: "agent";
|
|
235
235
|
dataType: "string";
|
|
@@ -248,7 +248,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
248
248
|
}, {}, {
|
|
249
249
|
length: 256;
|
|
250
250
|
}>;
|
|
251
|
-
description:
|
|
251
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
252
252
|
name: "description";
|
|
253
253
|
tableName: "agent";
|
|
254
254
|
dataType: "string";
|
|
@@ -265,7 +265,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
265
265
|
identity: undefined;
|
|
266
266
|
generated: undefined;
|
|
267
267
|
}, {}, {}>;
|
|
268
|
-
defaultSubAgentId:
|
|
268
|
+
defaultSubAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
269
269
|
name: "default_sub_agent_id";
|
|
270
270
|
tableName: "agent";
|
|
271
271
|
dataType: "string";
|
|
@@ -284,7 +284,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
284
284
|
}, {}, {
|
|
285
285
|
length: 256;
|
|
286
286
|
}>;
|
|
287
|
-
contextConfigId:
|
|
287
|
+
contextConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
288
288
|
name: "context_config_id";
|
|
289
289
|
tableName: "agent";
|
|
290
290
|
dataType: "string";
|
|
@@ -303,7 +303,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
303
303
|
}, {}, {
|
|
304
304
|
length: 256;
|
|
305
305
|
}>;
|
|
306
|
-
models:
|
|
306
|
+
models: drizzle_orm_pg_core1370.PgColumn<{
|
|
307
307
|
name: "models";
|
|
308
308
|
tableName: "agent";
|
|
309
309
|
dataType: "json";
|
|
@@ -348,7 +348,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
348
348
|
} | undefined;
|
|
349
349
|
};
|
|
350
350
|
}>;
|
|
351
|
-
statusUpdates:
|
|
351
|
+
statusUpdates: drizzle_orm_pg_core1370.PgColumn<{
|
|
352
352
|
name: "status_updates";
|
|
353
353
|
tableName: "agent";
|
|
354
354
|
dataType: "json";
|
|
@@ -395,7 +395,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
395
395
|
}[] | undefined;
|
|
396
396
|
};
|
|
397
397
|
}>;
|
|
398
|
-
prompt:
|
|
398
|
+
prompt: drizzle_orm_pg_core1370.PgColumn<{
|
|
399
399
|
name: "prompt";
|
|
400
400
|
tableName: "agent";
|
|
401
401
|
dataType: "string";
|
|
@@ -412,7 +412,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
412
412
|
identity: undefined;
|
|
413
413
|
generated: undefined;
|
|
414
414
|
}, {}, {}>;
|
|
415
|
-
stopWhen:
|
|
415
|
+
stopWhen: drizzle_orm_pg_core1370.PgColumn<{
|
|
416
416
|
name: "stop_when";
|
|
417
417
|
tableName: "agent";
|
|
418
418
|
dataType: "json";
|
|
@@ -435,7 +435,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
435
435
|
transferCountIs?: number | undefined;
|
|
436
436
|
};
|
|
437
437
|
}>;
|
|
438
|
-
projectId:
|
|
438
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
439
439
|
name: "project_id";
|
|
440
440
|
tableName: "agent";
|
|
441
441
|
dataType: "string";
|
|
@@ -454,7 +454,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
454
454
|
}, {}, {
|
|
455
455
|
length: 256;
|
|
456
456
|
}>;
|
|
457
|
-
tenantId:
|
|
457
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
458
458
|
name: "tenant_id";
|
|
459
459
|
tableName: "agent";
|
|
460
460
|
dataType: "string";
|
|
@@ -473,7 +473,7 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
473
473
|
}, {}, {
|
|
474
474
|
length: 256;
|
|
475
475
|
}>;
|
|
476
|
-
id:
|
|
476
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
477
477
|
name: "id";
|
|
478
478
|
tableName: "agent";
|
|
479
479
|
dataType: "string";
|
|
@@ -495,11 +495,11 @@ declare const agents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
495
495
|
};
|
|
496
496
|
dialect: "pg";
|
|
497
497
|
}>;
|
|
498
|
-
declare const contextConfigs:
|
|
498
|
+
declare const contextConfigs: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
499
499
|
name: "context_configs";
|
|
500
500
|
schema: undefined;
|
|
501
501
|
columns: {
|
|
502
|
-
createdAt:
|
|
502
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
503
503
|
name: "created_at";
|
|
504
504
|
tableName: "context_configs";
|
|
505
505
|
dataType: "string";
|
|
@@ -516,7 +516,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
516
516
|
identity: undefined;
|
|
517
517
|
generated: undefined;
|
|
518
518
|
}, {}, {}>;
|
|
519
|
-
updatedAt:
|
|
519
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
520
520
|
name: "updated_at";
|
|
521
521
|
tableName: "context_configs";
|
|
522
522
|
dataType: "string";
|
|
@@ -533,7 +533,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
533
533
|
identity: undefined;
|
|
534
534
|
generated: undefined;
|
|
535
535
|
}, {}, {}>;
|
|
536
|
-
headersSchema:
|
|
536
|
+
headersSchema: drizzle_orm_pg_core1370.PgColumn<{
|
|
537
537
|
name: "headers_schema";
|
|
538
538
|
tableName: "context_configs";
|
|
539
539
|
dataType: "json";
|
|
@@ -552,7 +552,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
552
552
|
}, {}, {
|
|
553
553
|
$type: unknown;
|
|
554
554
|
}>;
|
|
555
|
-
contextVariables:
|
|
555
|
+
contextVariables: drizzle_orm_pg_core1370.PgColumn<{
|
|
556
556
|
name: "context_variables";
|
|
557
557
|
tableName: "context_configs";
|
|
558
558
|
dataType: "json";
|
|
@@ -571,7 +571,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
571
571
|
}, {}, {
|
|
572
572
|
$type: Record<string, ContextFetchDefinition>;
|
|
573
573
|
}>;
|
|
574
|
-
agentId:
|
|
574
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
575
575
|
name: "agent_id";
|
|
576
576
|
tableName: "context_configs";
|
|
577
577
|
dataType: "string";
|
|
@@ -590,7 +590,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
590
590
|
}, {}, {
|
|
591
591
|
length: 256;
|
|
592
592
|
}>;
|
|
593
|
-
projectId:
|
|
593
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
594
594
|
name: "project_id";
|
|
595
595
|
tableName: "context_configs";
|
|
596
596
|
dataType: "string";
|
|
@@ -609,7 +609,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
609
609
|
}, {}, {
|
|
610
610
|
length: 256;
|
|
611
611
|
}>;
|
|
612
|
-
tenantId:
|
|
612
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
613
613
|
name: "tenant_id";
|
|
614
614
|
tableName: "context_configs";
|
|
615
615
|
dataType: "string";
|
|
@@ -628,7 +628,7 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
628
628
|
}, {}, {
|
|
629
629
|
length: 256;
|
|
630
630
|
}>;
|
|
631
|
-
id:
|
|
631
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
632
632
|
name: "id";
|
|
633
633
|
tableName: "context_configs";
|
|
634
634
|
dataType: "string";
|
|
@@ -650,11 +650,11 @@ declare const contextConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
650
650
|
};
|
|
651
651
|
dialect: "pg";
|
|
652
652
|
}>;
|
|
653
|
-
declare const triggers:
|
|
653
|
+
declare const triggers: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
654
654
|
name: "triggers";
|
|
655
655
|
schema: undefined;
|
|
656
656
|
columns: {
|
|
657
|
-
createdAt:
|
|
657
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
658
658
|
name: "created_at";
|
|
659
659
|
tableName: "triggers";
|
|
660
660
|
dataType: "string";
|
|
@@ -671,7 +671,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
671
671
|
identity: undefined;
|
|
672
672
|
generated: undefined;
|
|
673
673
|
}, {}, {}>;
|
|
674
|
-
updatedAt:
|
|
674
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
675
675
|
name: "updated_at";
|
|
676
676
|
tableName: "triggers";
|
|
677
677
|
dataType: "string";
|
|
@@ -688,7 +688,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
688
688
|
identity: undefined;
|
|
689
689
|
generated: undefined;
|
|
690
690
|
}, {}, {}>;
|
|
691
|
-
enabled:
|
|
691
|
+
enabled: drizzle_orm_pg_core1370.PgColumn<{
|
|
692
692
|
name: "enabled";
|
|
693
693
|
tableName: "triggers";
|
|
694
694
|
dataType: "boolean";
|
|
@@ -705,12 +705,12 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
705
705
|
identity: undefined;
|
|
706
706
|
generated: undefined;
|
|
707
707
|
}, {}, {}>;
|
|
708
|
-
inputSchema:
|
|
708
|
+
inputSchema: drizzle_orm_pg_core1370.PgColumn<{
|
|
709
709
|
name: "input_schema";
|
|
710
710
|
tableName: "triggers";
|
|
711
711
|
dataType: "json";
|
|
712
712
|
columnType: "PgJsonb";
|
|
713
|
-
data: Record<string, unknown
|
|
713
|
+
data: Record<string, unknown> | null;
|
|
714
714
|
driverParam: unknown;
|
|
715
715
|
notNull: false;
|
|
716
716
|
hasDefault: false;
|
|
@@ -722,9 +722,9 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
722
722
|
identity: undefined;
|
|
723
723
|
generated: undefined;
|
|
724
724
|
}, {}, {
|
|
725
|
-
$type: Record<string, unknown
|
|
725
|
+
$type: Record<string, unknown> | null;
|
|
726
726
|
}>;
|
|
727
|
-
outputTransform:
|
|
727
|
+
outputTransform: drizzle_orm_pg_core1370.PgColumn<{
|
|
728
728
|
name: "output_transform";
|
|
729
729
|
tableName: "triggers";
|
|
730
730
|
dataType: "json";
|
|
@@ -732,7 +732,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
732
732
|
data: {
|
|
733
733
|
jmespath?: string;
|
|
734
734
|
objectTransformation?: Record<string, string>;
|
|
735
|
-
};
|
|
735
|
+
} | null;
|
|
736
736
|
driverParam: unknown;
|
|
737
737
|
notNull: false;
|
|
738
738
|
hasDefault: false;
|
|
@@ -747,9 +747,9 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
747
747
|
$type: {
|
|
748
748
|
jmespath?: string;
|
|
749
749
|
objectTransformation?: Record<string, string>;
|
|
750
|
-
};
|
|
750
|
+
} | null;
|
|
751
751
|
}>;
|
|
752
|
-
messageTemplate:
|
|
752
|
+
messageTemplate: drizzle_orm_pg_core1370.PgColumn<{
|
|
753
753
|
name: "message_template";
|
|
754
754
|
tableName: "triggers";
|
|
755
755
|
dataType: "string";
|
|
@@ -766,7 +766,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
766
766
|
identity: undefined;
|
|
767
767
|
generated: undefined;
|
|
768
768
|
}, {}, {}>;
|
|
769
|
-
authentication:
|
|
769
|
+
authentication: drizzle_orm_pg_core1370.PgColumn<{
|
|
770
770
|
name: "authentication";
|
|
771
771
|
tableName: "triggers";
|
|
772
772
|
dataType: "json";
|
|
@@ -785,11 +785,11 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
785
785
|
}, {}, {
|
|
786
786
|
$type: unknown;
|
|
787
787
|
}>;
|
|
788
|
-
|
|
789
|
-
name: "
|
|
788
|
+
signingSecretCredentialReferenceId: drizzle_orm_pg_core1370.PgColumn<{
|
|
789
|
+
name: "signing_secret_credential_reference_id";
|
|
790
790
|
tableName: "triggers";
|
|
791
791
|
dataType: "string";
|
|
792
|
-
columnType: "
|
|
792
|
+
columnType: "PgVarchar";
|
|
793
793
|
data: string;
|
|
794
794
|
driverParam: string;
|
|
795
795
|
notNull: false;
|
|
@@ -801,8 +801,79 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
801
801
|
baseColumn: never;
|
|
802
802
|
identity: undefined;
|
|
803
803
|
generated: undefined;
|
|
804
|
-
}, {}, {
|
|
805
|
-
|
|
804
|
+
}, {}, {
|
|
805
|
+
length: 256;
|
|
806
|
+
}>;
|
|
807
|
+
signatureVerification: drizzle_orm_pg_core1370.PgColumn<{
|
|
808
|
+
name: "signature_verification";
|
|
809
|
+
tableName: "triggers";
|
|
810
|
+
dataType: "json";
|
|
811
|
+
columnType: "PgJsonb";
|
|
812
|
+
data: {
|
|
813
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
814
|
+
encoding: "hex" | "base64";
|
|
815
|
+
signature: {
|
|
816
|
+
source: "query" | "body" | "header";
|
|
817
|
+
key: string;
|
|
818
|
+
prefix?: string | undefined;
|
|
819
|
+
regex?: string | undefined;
|
|
820
|
+
};
|
|
821
|
+
signedComponents: {
|
|
822
|
+
source: "literal" | "body" | "header";
|
|
823
|
+
required: boolean;
|
|
824
|
+
key?: string | undefined;
|
|
825
|
+
value?: string | undefined;
|
|
826
|
+
regex?: string | undefined;
|
|
827
|
+
}[];
|
|
828
|
+
componentJoin: {
|
|
829
|
+
strategy: "concatenate";
|
|
830
|
+
separator: string;
|
|
831
|
+
};
|
|
832
|
+
validation?: {
|
|
833
|
+
headerCaseSensitive: boolean;
|
|
834
|
+
allowEmptyBody: boolean;
|
|
835
|
+
normalizeUnicode: boolean;
|
|
836
|
+
} | undefined;
|
|
837
|
+
} | null;
|
|
838
|
+
driverParam: unknown;
|
|
839
|
+
notNull: false;
|
|
840
|
+
hasDefault: true;
|
|
841
|
+
isPrimaryKey: false;
|
|
842
|
+
isAutoincrement: false;
|
|
843
|
+
hasRuntimeDefault: false;
|
|
844
|
+
enumValues: undefined;
|
|
845
|
+
baseColumn: never;
|
|
846
|
+
identity: undefined;
|
|
847
|
+
generated: undefined;
|
|
848
|
+
}, {}, {
|
|
849
|
+
$type: {
|
|
850
|
+
algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
|
|
851
|
+
encoding: "hex" | "base64";
|
|
852
|
+
signature: {
|
|
853
|
+
source: "query" | "body" | "header";
|
|
854
|
+
key: string;
|
|
855
|
+
prefix?: string | undefined;
|
|
856
|
+
regex?: string | undefined;
|
|
857
|
+
};
|
|
858
|
+
signedComponents: {
|
|
859
|
+
source: "literal" | "body" | "header";
|
|
860
|
+
required: boolean;
|
|
861
|
+
key?: string | undefined;
|
|
862
|
+
value?: string | undefined;
|
|
863
|
+
regex?: string | undefined;
|
|
864
|
+
}[];
|
|
865
|
+
componentJoin: {
|
|
866
|
+
strategy: "concatenate";
|
|
867
|
+
separator: string;
|
|
868
|
+
};
|
|
869
|
+
validation?: {
|
|
870
|
+
headerCaseSensitive: boolean;
|
|
871
|
+
allowEmptyBody: boolean;
|
|
872
|
+
normalizeUnicode: boolean;
|
|
873
|
+
} | undefined;
|
|
874
|
+
} | null;
|
|
875
|
+
}>;
|
|
876
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
806
877
|
name: "name";
|
|
807
878
|
tableName: "triggers";
|
|
808
879
|
dataType: "string";
|
|
@@ -821,7 +892,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
821
892
|
}, {}, {
|
|
822
893
|
length: 256;
|
|
823
894
|
}>;
|
|
824
|
-
description:
|
|
895
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
825
896
|
name: "description";
|
|
826
897
|
tableName: "triggers";
|
|
827
898
|
dataType: "string";
|
|
@@ -838,7 +909,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
838
909
|
identity: undefined;
|
|
839
910
|
generated: undefined;
|
|
840
911
|
}, {}, {}>;
|
|
841
|
-
agentId:
|
|
912
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
842
913
|
name: "agent_id";
|
|
843
914
|
tableName: "triggers";
|
|
844
915
|
dataType: "string";
|
|
@@ -857,7 +928,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
857
928
|
}, {}, {
|
|
858
929
|
length: 256;
|
|
859
930
|
}>;
|
|
860
|
-
projectId:
|
|
931
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
861
932
|
name: "project_id";
|
|
862
933
|
tableName: "triggers";
|
|
863
934
|
dataType: "string";
|
|
@@ -876,7 +947,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
876
947
|
}, {}, {
|
|
877
948
|
length: 256;
|
|
878
949
|
}>;
|
|
879
|
-
tenantId:
|
|
950
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
880
951
|
name: "tenant_id";
|
|
881
952
|
tableName: "triggers";
|
|
882
953
|
dataType: "string";
|
|
@@ -895,7 +966,7 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
895
966
|
}, {}, {
|
|
896
967
|
length: 256;
|
|
897
968
|
}>;
|
|
898
|
-
id:
|
|
969
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
899
970
|
name: "id";
|
|
900
971
|
tableName: "triggers";
|
|
901
972
|
dataType: "string";
|
|
@@ -917,11 +988,11 @@ declare const triggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
917
988
|
};
|
|
918
989
|
dialect: "pg";
|
|
919
990
|
}>;
|
|
920
|
-
declare const subAgents:
|
|
991
|
+
declare const subAgents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
921
992
|
name: "sub_agents";
|
|
922
993
|
schema: undefined;
|
|
923
994
|
columns: {
|
|
924
|
-
createdAt:
|
|
995
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
925
996
|
name: "created_at";
|
|
926
997
|
tableName: "sub_agents";
|
|
927
998
|
dataType: "string";
|
|
@@ -938,7 +1009,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
938
1009
|
identity: undefined;
|
|
939
1010
|
generated: undefined;
|
|
940
1011
|
}, {}, {}>;
|
|
941
|
-
updatedAt:
|
|
1012
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
942
1013
|
name: "updated_at";
|
|
943
1014
|
tableName: "sub_agents";
|
|
944
1015
|
dataType: "string";
|
|
@@ -955,7 +1026,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
955
1026
|
identity: undefined;
|
|
956
1027
|
generated: undefined;
|
|
957
1028
|
}, {}, {}>;
|
|
958
|
-
prompt:
|
|
1029
|
+
prompt: drizzle_orm_pg_core1370.PgColumn<{
|
|
959
1030
|
name: "prompt";
|
|
960
1031
|
tableName: "sub_agents";
|
|
961
1032
|
dataType: "string";
|
|
@@ -972,7 +1043,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
972
1043
|
identity: undefined;
|
|
973
1044
|
generated: undefined;
|
|
974
1045
|
}, {}, {}>;
|
|
975
|
-
conversationHistoryConfig:
|
|
1046
|
+
conversationHistoryConfig: drizzle_orm_pg_core1370.PgColumn<{
|
|
976
1047
|
name: "conversation_history_config";
|
|
977
1048
|
tableName: "sub_agents";
|
|
978
1049
|
dataType: "json";
|
|
@@ -991,7 +1062,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
991
1062
|
}, {}, {
|
|
992
1063
|
$type: ConversationHistoryConfig;
|
|
993
1064
|
}>;
|
|
994
|
-
models:
|
|
1065
|
+
models: drizzle_orm_pg_core1370.PgColumn<{
|
|
995
1066
|
name: "models";
|
|
996
1067
|
tableName: "sub_agents";
|
|
997
1068
|
dataType: "json";
|
|
@@ -1036,7 +1107,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1036
1107
|
} | undefined;
|
|
1037
1108
|
};
|
|
1038
1109
|
}>;
|
|
1039
|
-
stopWhen:
|
|
1110
|
+
stopWhen: drizzle_orm_pg_core1370.PgColumn<{
|
|
1040
1111
|
name: "stop_when";
|
|
1041
1112
|
tableName: "sub_agents";
|
|
1042
1113
|
dataType: "json";
|
|
@@ -1059,7 +1130,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1059
1130
|
stepCountIs?: number | undefined;
|
|
1060
1131
|
};
|
|
1061
1132
|
}>;
|
|
1062
|
-
name:
|
|
1133
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
1063
1134
|
name: "name";
|
|
1064
1135
|
tableName: "sub_agents";
|
|
1065
1136
|
dataType: "string";
|
|
@@ -1078,7 +1149,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1078
1149
|
}, {}, {
|
|
1079
1150
|
length: 256;
|
|
1080
1151
|
}>;
|
|
1081
|
-
description:
|
|
1152
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
1082
1153
|
name: "description";
|
|
1083
1154
|
tableName: "sub_agents";
|
|
1084
1155
|
dataType: "string";
|
|
@@ -1095,7 +1166,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1095
1166
|
identity: undefined;
|
|
1096
1167
|
generated: undefined;
|
|
1097
1168
|
}, {}, {}>;
|
|
1098
|
-
agentId:
|
|
1169
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1099
1170
|
name: "agent_id";
|
|
1100
1171
|
tableName: "sub_agents";
|
|
1101
1172
|
dataType: "string";
|
|
@@ -1114,7 +1185,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1114
1185
|
}, {}, {
|
|
1115
1186
|
length: 256;
|
|
1116
1187
|
}>;
|
|
1117
|
-
projectId:
|
|
1188
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1118
1189
|
name: "project_id";
|
|
1119
1190
|
tableName: "sub_agents";
|
|
1120
1191
|
dataType: "string";
|
|
@@ -1133,7 +1204,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1133
1204
|
}, {}, {
|
|
1134
1205
|
length: 256;
|
|
1135
1206
|
}>;
|
|
1136
|
-
tenantId:
|
|
1207
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1137
1208
|
name: "tenant_id";
|
|
1138
1209
|
tableName: "sub_agents";
|
|
1139
1210
|
dataType: "string";
|
|
@@ -1152,7 +1223,7 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1152
1223
|
}, {}, {
|
|
1153
1224
|
length: 256;
|
|
1154
1225
|
}>;
|
|
1155
|
-
id:
|
|
1226
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1156
1227
|
name: "id";
|
|
1157
1228
|
tableName: "sub_agents";
|
|
1158
1229
|
dataType: "string";
|
|
@@ -1174,11 +1245,11 @@ declare const subAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1174
1245
|
};
|
|
1175
1246
|
dialect: "pg";
|
|
1176
1247
|
}>;
|
|
1177
|
-
declare const subAgentRelations:
|
|
1248
|
+
declare const subAgentRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
1178
1249
|
name: "sub_agent_relations";
|
|
1179
1250
|
schema: undefined;
|
|
1180
1251
|
columns: {
|
|
1181
|
-
createdAt:
|
|
1252
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1182
1253
|
name: "created_at";
|
|
1183
1254
|
tableName: "sub_agent_relations";
|
|
1184
1255
|
dataType: "string";
|
|
@@ -1195,7 +1266,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1195
1266
|
identity: undefined;
|
|
1196
1267
|
generated: undefined;
|
|
1197
1268
|
}, {}, {}>;
|
|
1198
|
-
updatedAt:
|
|
1269
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1199
1270
|
name: "updated_at";
|
|
1200
1271
|
tableName: "sub_agent_relations";
|
|
1201
1272
|
dataType: "string";
|
|
@@ -1212,7 +1283,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1212
1283
|
identity: undefined;
|
|
1213
1284
|
generated: undefined;
|
|
1214
1285
|
}, {}, {}>;
|
|
1215
|
-
sourceSubAgentId:
|
|
1286
|
+
sourceSubAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1216
1287
|
name: "source_sub_agent_id";
|
|
1217
1288
|
tableName: "sub_agent_relations";
|
|
1218
1289
|
dataType: "string";
|
|
@@ -1231,7 +1302,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1231
1302
|
}, {}, {
|
|
1232
1303
|
length: 256;
|
|
1233
1304
|
}>;
|
|
1234
|
-
targetSubAgentId:
|
|
1305
|
+
targetSubAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1235
1306
|
name: "target_sub_agent_id";
|
|
1236
1307
|
tableName: "sub_agent_relations";
|
|
1237
1308
|
dataType: "string";
|
|
@@ -1250,7 +1321,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1250
1321
|
}, {}, {
|
|
1251
1322
|
length: 256;
|
|
1252
1323
|
}>;
|
|
1253
|
-
relationType:
|
|
1324
|
+
relationType: drizzle_orm_pg_core1370.PgColumn<{
|
|
1254
1325
|
name: "relation_type";
|
|
1255
1326
|
tableName: "sub_agent_relations";
|
|
1256
1327
|
dataType: "string";
|
|
@@ -1269,7 +1340,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1269
1340
|
}, {}, {
|
|
1270
1341
|
length: 256;
|
|
1271
1342
|
}>;
|
|
1272
|
-
agentId:
|
|
1343
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1273
1344
|
name: "agent_id";
|
|
1274
1345
|
tableName: "sub_agent_relations";
|
|
1275
1346
|
dataType: "string";
|
|
@@ -1288,7 +1359,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1288
1359
|
}, {}, {
|
|
1289
1360
|
length: 256;
|
|
1290
1361
|
}>;
|
|
1291
|
-
projectId:
|
|
1362
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1292
1363
|
name: "project_id";
|
|
1293
1364
|
tableName: "sub_agent_relations";
|
|
1294
1365
|
dataType: "string";
|
|
@@ -1307,7 +1378,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1307
1378
|
}, {}, {
|
|
1308
1379
|
length: 256;
|
|
1309
1380
|
}>;
|
|
1310
|
-
tenantId:
|
|
1381
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1311
1382
|
name: "tenant_id";
|
|
1312
1383
|
tableName: "sub_agent_relations";
|
|
1313
1384
|
dataType: "string";
|
|
@@ -1326,7 +1397,7 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1326
1397
|
}, {}, {
|
|
1327
1398
|
length: 256;
|
|
1328
1399
|
}>;
|
|
1329
|
-
id:
|
|
1400
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1330
1401
|
name: "id";
|
|
1331
1402
|
tableName: "sub_agent_relations";
|
|
1332
1403
|
dataType: "string";
|
|
@@ -1348,11 +1419,11 @@ declare const subAgentRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1348
1419
|
};
|
|
1349
1420
|
dialect: "pg";
|
|
1350
1421
|
}>;
|
|
1351
|
-
declare const externalAgents:
|
|
1422
|
+
declare const externalAgents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
1352
1423
|
name: "external_agents";
|
|
1353
1424
|
schema: undefined;
|
|
1354
1425
|
columns: {
|
|
1355
|
-
createdAt:
|
|
1426
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1356
1427
|
name: "created_at";
|
|
1357
1428
|
tableName: "external_agents";
|
|
1358
1429
|
dataType: "string";
|
|
@@ -1369,7 +1440,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1369
1440
|
identity: undefined;
|
|
1370
1441
|
generated: undefined;
|
|
1371
1442
|
}, {}, {}>;
|
|
1372
|
-
updatedAt:
|
|
1443
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1373
1444
|
name: "updated_at";
|
|
1374
1445
|
tableName: "external_agents";
|
|
1375
1446
|
dataType: "string";
|
|
@@ -1386,7 +1457,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1386
1457
|
identity: undefined;
|
|
1387
1458
|
generated: undefined;
|
|
1388
1459
|
}, {}, {}>;
|
|
1389
|
-
baseUrl:
|
|
1460
|
+
baseUrl: drizzle_orm_pg_core1370.PgColumn<{
|
|
1390
1461
|
name: "base_url";
|
|
1391
1462
|
tableName: "external_agents";
|
|
1392
1463
|
dataType: "string";
|
|
@@ -1403,7 +1474,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1403
1474
|
identity: undefined;
|
|
1404
1475
|
generated: undefined;
|
|
1405
1476
|
}, {}, {}>;
|
|
1406
|
-
credentialReferenceId:
|
|
1477
|
+
credentialReferenceId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1407
1478
|
name: "credential_reference_id";
|
|
1408
1479
|
tableName: "external_agents";
|
|
1409
1480
|
dataType: "string";
|
|
@@ -1422,7 +1493,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1422
1493
|
}, {}, {
|
|
1423
1494
|
length: 256;
|
|
1424
1495
|
}>;
|
|
1425
|
-
name:
|
|
1496
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
1426
1497
|
name: "name";
|
|
1427
1498
|
tableName: "external_agents";
|
|
1428
1499
|
dataType: "string";
|
|
@@ -1441,7 +1512,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1441
1512
|
}, {}, {
|
|
1442
1513
|
length: 256;
|
|
1443
1514
|
}>;
|
|
1444
|
-
description:
|
|
1515
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
1445
1516
|
name: "description";
|
|
1446
1517
|
tableName: "external_agents";
|
|
1447
1518
|
dataType: "string";
|
|
@@ -1458,7 +1529,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1458
1529
|
identity: undefined;
|
|
1459
1530
|
generated: undefined;
|
|
1460
1531
|
}, {}, {}>;
|
|
1461
|
-
projectId:
|
|
1532
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1462
1533
|
name: "project_id";
|
|
1463
1534
|
tableName: "external_agents";
|
|
1464
1535
|
dataType: "string";
|
|
@@ -1477,7 +1548,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1477
1548
|
}, {}, {
|
|
1478
1549
|
length: 256;
|
|
1479
1550
|
}>;
|
|
1480
|
-
tenantId:
|
|
1551
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1481
1552
|
name: "tenant_id";
|
|
1482
1553
|
tableName: "external_agents";
|
|
1483
1554
|
dataType: "string";
|
|
@@ -1496,7 +1567,7 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1496
1567
|
}, {}, {
|
|
1497
1568
|
length: 256;
|
|
1498
1569
|
}>;
|
|
1499
|
-
id:
|
|
1570
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1500
1571
|
name: "id";
|
|
1501
1572
|
tableName: "external_agents";
|
|
1502
1573
|
dataType: "string";
|
|
@@ -1518,11 +1589,11 @@ declare const externalAgents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1518
1589
|
};
|
|
1519
1590
|
dialect: "pg";
|
|
1520
1591
|
}>;
|
|
1521
|
-
declare const dataComponents:
|
|
1592
|
+
declare const dataComponents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
1522
1593
|
name: "data_components";
|
|
1523
1594
|
schema: undefined;
|
|
1524
1595
|
columns: {
|
|
1525
|
-
createdAt:
|
|
1596
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1526
1597
|
name: "created_at";
|
|
1527
1598
|
tableName: "data_components";
|
|
1528
1599
|
dataType: "string";
|
|
@@ -1539,7 +1610,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1539
1610
|
identity: undefined;
|
|
1540
1611
|
generated: undefined;
|
|
1541
1612
|
}, {}, {}>;
|
|
1542
|
-
updatedAt:
|
|
1613
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1543
1614
|
name: "updated_at";
|
|
1544
1615
|
tableName: "data_components";
|
|
1545
1616
|
dataType: "string";
|
|
@@ -1556,7 +1627,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1556
1627
|
identity: undefined;
|
|
1557
1628
|
generated: undefined;
|
|
1558
1629
|
}, {}, {}>;
|
|
1559
|
-
props:
|
|
1630
|
+
props: drizzle_orm_pg_core1370.PgColumn<{
|
|
1560
1631
|
name: "props";
|
|
1561
1632
|
tableName: "data_components";
|
|
1562
1633
|
dataType: "json";
|
|
@@ -1575,7 +1646,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1575
1646
|
}, {}, {
|
|
1576
1647
|
$type: Record<string, unknown>;
|
|
1577
1648
|
}>;
|
|
1578
|
-
render:
|
|
1649
|
+
render: drizzle_orm_pg_core1370.PgColumn<{
|
|
1579
1650
|
name: "render";
|
|
1580
1651
|
tableName: "data_components";
|
|
1581
1652
|
dataType: "json";
|
|
@@ -1600,7 +1671,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1600
1671
|
mockData: Record<string, unknown>;
|
|
1601
1672
|
};
|
|
1602
1673
|
}>;
|
|
1603
|
-
name:
|
|
1674
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
1604
1675
|
name: "name";
|
|
1605
1676
|
tableName: "data_components";
|
|
1606
1677
|
dataType: "string";
|
|
@@ -1619,7 +1690,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1619
1690
|
}, {}, {
|
|
1620
1691
|
length: 256;
|
|
1621
1692
|
}>;
|
|
1622
|
-
description:
|
|
1693
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
1623
1694
|
name: "description";
|
|
1624
1695
|
tableName: "data_components";
|
|
1625
1696
|
dataType: "string";
|
|
@@ -1636,7 +1707,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1636
1707
|
identity: undefined;
|
|
1637
1708
|
generated: undefined;
|
|
1638
1709
|
}, {}, {}>;
|
|
1639
|
-
projectId:
|
|
1710
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1640
1711
|
name: "project_id";
|
|
1641
1712
|
tableName: "data_components";
|
|
1642
1713
|
dataType: "string";
|
|
@@ -1655,7 +1726,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1655
1726
|
}, {}, {
|
|
1656
1727
|
length: 256;
|
|
1657
1728
|
}>;
|
|
1658
|
-
tenantId:
|
|
1729
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1659
1730
|
name: "tenant_id";
|
|
1660
1731
|
tableName: "data_components";
|
|
1661
1732
|
dataType: "string";
|
|
@@ -1674,7 +1745,7 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1674
1745
|
}, {}, {
|
|
1675
1746
|
length: 256;
|
|
1676
1747
|
}>;
|
|
1677
|
-
id:
|
|
1748
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1678
1749
|
name: "id";
|
|
1679
1750
|
tableName: "data_components";
|
|
1680
1751
|
dataType: "string";
|
|
@@ -1696,11 +1767,11 @@ declare const dataComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1696
1767
|
};
|
|
1697
1768
|
dialect: "pg";
|
|
1698
1769
|
}>;
|
|
1699
|
-
declare const subAgentDataComponents:
|
|
1770
|
+
declare const subAgentDataComponents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
1700
1771
|
name: "sub_agent_data_components";
|
|
1701
1772
|
schema: undefined;
|
|
1702
1773
|
columns: {
|
|
1703
|
-
dataComponentId:
|
|
1774
|
+
dataComponentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1704
1775
|
name: "data_component_id";
|
|
1705
1776
|
tableName: "sub_agent_data_components";
|
|
1706
1777
|
dataType: "string";
|
|
@@ -1719,7 +1790,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1719
1790
|
}, {}, {
|
|
1720
1791
|
length: 256;
|
|
1721
1792
|
}>;
|
|
1722
|
-
createdAt:
|
|
1793
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1723
1794
|
name: "created_at";
|
|
1724
1795
|
tableName: "sub_agent_data_components";
|
|
1725
1796
|
dataType: "string";
|
|
@@ -1736,7 +1807,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1736
1807
|
identity: undefined;
|
|
1737
1808
|
generated: undefined;
|
|
1738
1809
|
}, {}, {}>;
|
|
1739
|
-
subAgentId:
|
|
1810
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1740
1811
|
name: "sub_agent_id";
|
|
1741
1812
|
tableName: "sub_agent_data_components";
|
|
1742
1813
|
dataType: "string";
|
|
@@ -1755,7 +1826,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1755
1826
|
}, {}, {
|
|
1756
1827
|
length: 256;
|
|
1757
1828
|
}>;
|
|
1758
|
-
agentId:
|
|
1829
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1759
1830
|
name: "agent_id";
|
|
1760
1831
|
tableName: "sub_agent_data_components";
|
|
1761
1832
|
dataType: "string";
|
|
@@ -1774,7 +1845,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1774
1845
|
}, {}, {
|
|
1775
1846
|
length: 256;
|
|
1776
1847
|
}>;
|
|
1777
|
-
projectId:
|
|
1848
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1778
1849
|
name: "project_id";
|
|
1779
1850
|
tableName: "sub_agent_data_components";
|
|
1780
1851
|
dataType: "string";
|
|
@@ -1793,7 +1864,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1793
1864
|
}, {}, {
|
|
1794
1865
|
length: 256;
|
|
1795
1866
|
}>;
|
|
1796
|
-
tenantId:
|
|
1867
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1797
1868
|
name: "tenant_id";
|
|
1798
1869
|
tableName: "sub_agent_data_components";
|
|
1799
1870
|
dataType: "string";
|
|
@@ -1812,7 +1883,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1812
1883
|
}, {}, {
|
|
1813
1884
|
length: 256;
|
|
1814
1885
|
}>;
|
|
1815
|
-
id:
|
|
1886
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1816
1887
|
name: "id";
|
|
1817
1888
|
tableName: "sub_agent_data_components";
|
|
1818
1889
|
dataType: "string";
|
|
@@ -1834,11 +1905,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core1458.PgTableWithColumns
|
|
|
1834
1905
|
};
|
|
1835
1906
|
dialect: "pg";
|
|
1836
1907
|
}>;
|
|
1837
|
-
declare const artifactComponents:
|
|
1908
|
+
declare const artifactComponents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
1838
1909
|
name: "artifact_components";
|
|
1839
1910
|
schema: undefined;
|
|
1840
1911
|
columns: {
|
|
1841
|
-
createdAt:
|
|
1912
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1842
1913
|
name: "created_at";
|
|
1843
1914
|
tableName: "artifact_components";
|
|
1844
1915
|
dataType: "string";
|
|
@@ -1855,7 +1926,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1855
1926
|
identity: undefined;
|
|
1856
1927
|
generated: undefined;
|
|
1857
1928
|
}, {}, {}>;
|
|
1858
|
-
updatedAt:
|
|
1929
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
1859
1930
|
name: "updated_at";
|
|
1860
1931
|
tableName: "artifact_components";
|
|
1861
1932
|
dataType: "string";
|
|
@@ -1872,7 +1943,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1872
1943
|
identity: undefined;
|
|
1873
1944
|
generated: undefined;
|
|
1874
1945
|
}, {}, {}>;
|
|
1875
|
-
props:
|
|
1946
|
+
props: drizzle_orm_pg_core1370.PgColumn<{
|
|
1876
1947
|
name: "props";
|
|
1877
1948
|
tableName: "artifact_components";
|
|
1878
1949
|
dataType: "json";
|
|
@@ -1891,7 +1962,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1891
1962
|
}, {}, {
|
|
1892
1963
|
$type: Record<string, unknown>;
|
|
1893
1964
|
}>;
|
|
1894
|
-
render:
|
|
1965
|
+
render: drizzle_orm_pg_core1370.PgColumn<{
|
|
1895
1966
|
name: "render";
|
|
1896
1967
|
tableName: "artifact_components";
|
|
1897
1968
|
dataType: "json";
|
|
@@ -1916,7 +1987,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1916
1987
|
mockData: Record<string, unknown>;
|
|
1917
1988
|
};
|
|
1918
1989
|
}>;
|
|
1919
|
-
name:
|
|
1990
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
1920
1991
|
name: "name";
|
|
1921
1992
|
tableName: "artifact_components";
|
|
1922
1993
|
dataType: "string";
|
|
@@ -1935,7 +2006,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1935
2006
|
}, {}, {
|
|
1936
2007
|
length: 256;
|
|
1937
2008
|
}>;
|
|
1938
|
-
description:
|
|
2009
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
1939
2010
|
name: "description";
|
|
1940
2011
|
tableName: "artifact_components";
|
|
1941
2012
|
dataType: "string";
|
|
@@ -1952,7 +2023,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1952
2023
|
identity: undefined;
|
|
1953
2024
|
generated: undefined;
|
|
1954
2025
|
}, {}, {}>;
|
|
1955
|
-
projectId:
|
|
2026
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1956
2027
|
name: "project_id";
|
|
1957
2028
|
tableName: "artifact_components";
|
|
1958
2029
|
dataType: "string";
|
|
@@ -1971,7 +2042,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1971
2042
|
}, {}, {
|
|
1972
2043
|
length: 256;
|
|
1973
2044
|
}>;
|
|
1974
|
-
tenantId:
|
|
2045
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
1975
2046
|
name: "tenant_id";
|
|
1976
2047
|
tableName: "artifact_components";
|
|
1977
2048
|
dataType: "string";
|
|
@@ -1990,7 +2061,7 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
1990
2061
|
}, {}, {
|
|
1991
2062
|
length: 256;
|
|
1992
2063
|
}>;
|
|
1993
|
-
id:
|
|
2064
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
1994
2065
|
name: "id";
|
|
1995
2066
|
tableName: "artifact_components";
|
|
1996
2067
|
dataType: "string";
|
|
@@ -2012,11 +2083,11 @@ declare const artifactComponents: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2012
2083
|
};
|
|
2013
2084
|
dialect: "pg";
|
|
2014
2085
|
}>;
|
|
2015
|
-
declare const subAgentArtifactComponents:
|
|
2086
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2016
2087
|
name: "sub_agent_artifact_components";
|
|
2017
2088
|
schema: undefined;
|
|
2018
2089
|
columns: {
|
|
2019
|
-
artifactComponentId:
|
|
2090
|
+
artifactComponentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2020
2091
|
name: "artifact_component_id";
|
|
2021
2092
|
tableName: "sub_agent_artifact_components";
|
|
2022
2093
|
dataType: "string";
|
|
@@ -2035,7 +2106,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2035
2106
|
}, {}, {
|
|
2036
2107
|
length: 256;
|
|
2037
2108
|
}>;
|
|
2038
|
-
createdAt:
|
|
2109
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2039
2110
|
name: "created_at";
|
|
2040
2111
|
tableName: "sub_agent_artifact_components";
|
|
2041
2112
|
dataType: "string";
|
|
@@ -2052,7 +2123,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2052
2123
|
identity: undefined;
|
|
2053
2124
|
generated: undefined;
|
|
2054
2125
|
}, {}, {}>;
|
|
2055
|
-
subAgentId:
|
|
2126
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2056
2127
|
name: "sub_agent_id";
|
|
2057
2128
|
tableName: "sub_agent_artifact_components";
|
|
2058
2129
|
dataType: "string";
|
|
@@ -2071,7 +2142,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2071
2142
|
}, {}, {
|
|
2072
2143
|
length: 256;
|
|
2073
2144
|
}>;
|
|
2074
|
-
agentId:
|
|
2145
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2075
2146
|
name: "agent_id";
|
|
2076
2147
|
tableName: "sub_agent_artifact_components";
|
|
2077
2148
|
dataType: "string";
|
|
@@ -2090,7 +2161,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2090
2161
|
}, {}, {
|
|
2091
2162
|
length: 256;
|
|
2092
2163
|
}>;
|
|
2093
|
-
projectId:
|
|
2164
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2094
2165
|
name: "project_id";
|
|
2095
2166
|
tableName: "sub_agent_artifact_components";
|
|
2096
2167
|
dataType: "string";
|
|
@@ -2109,7 +2180,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2109
2180
|
}, {}, {
|
|
2110
2181
|
length: 256;
|
|
2111
2182
|
}>;
|
|
2112
|
-
tenantId:
|
|
2183
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2113
2184
|
name: "tenant_id";
|
|
2114
2185
|
tableName: "sub_agent_artifact_components";
|
|
2115
2186
|
dataType: "string";
|
|
@@ -2128,7 +2199,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2128
2199
|
}, {}, {
|
|
2129
2200
|
length: 256;
|
|
2130
2201
|
}>;
|
|
2131
|
-
id:
|
|
2202
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
2132
2203
|
name: "id";
|
|
2133
2204
|
tableName: "sub_agent_artifact_components";
|
|
2134
2205
|
dataType: "string";
|
|
@@ -2150,11 +2221,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
2150
2221
|
};
|
|
2151
2222
|
dialect: "pg";
|
|
2152
2223
|
}>;
|
|
2153
|
-
declare const tools:
|
|
2224
|
+
declare const tools: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2154
2225
|
name: "tools";
|
|
2155
2226
|
schema: undefined;
|
|
2156
2227
|
columns: {
|
|
2157
|
-
createdAt:
|
|
2228
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2158
2229
|
name: "created_at";
|
|
2159
2230
|
tableName: "tools";
|
|
2160
2231
|
dataType: "string";
|
|
@@ -2171,7 +2242,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2171
2242
|
identity: undefined;
|
|
2172
2243
|
generated: undefined;
|
|
2173
2244
|
}, {}, {}>;
|
|
2174
|
-
updatedAt:
|
|
2245
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2175
2246
|
name: "updated_at";
|
|
2176
2247
|
tableName: "tools";
|
|
2177
2248
|
dataType: "string";
|
|
@@ -2188,7 +2259,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2188
2259
|
identity: undefined;
|
|
2189
2260
|
generated: undefined;
|
|
2190
2261
|
}, {}, {}>;
|
|
2191
|
-
name:
|
|
2262
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
2192
2263
|
name: "name";
|
|
2193
2264
|
tableName: "tools";
|
|
2194
2265
|
dataType: "string";
|
|
@@ -2207,7 +2278,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2207
2278
|
}, {}, {
|
|
2208
2279
|
length: 256;
|
|
2209
2280
|
}>;
|
|
2210
|
-
description:
|
|
2281
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
2211
2282
|
name: "description";
|
|
2212
2283
|
tableName: "tools";
|
|
2213
2284
|
dataType: "string";
|
|
@@ -2224,7 +2295,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2224
2295
|
identity: undefined;
|
|
2225
2296
|
generated: undefined;
|
|
2226
2297
|
}, {}, {}>;
|
|
2227
|
-
config:
|
|
2298
|
+
config: drizzle_orm_pg_core1370.PgColumn<{
|
|
2228
2299
|
name: "config";
|
|
2229
2300
|
tableName: "tools";
|
|
2230
2301
|
dataType: "json";
|
|
@@ -2249,7 +2320,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2249
2320
|
mcp: ToolMcpConfig;
|
|
2250
2321
|
};
|
|
2251
2322
|
}>;
|
|
2252
|
-
credentialReferenceId:
|
|
2323
|
+
credentialReferenceId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2253
2324
|
name: "credential_reference_id";
|
|
2254
2325
|
tableName: "tools";
|
|
2255
2326
|
dataType: "string";
|
|
@@ -2268,7 +2339,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2268
2339
|
}, {}, {
|
|
2269
2340
|
length: 256;
|
|
2270
2341
|
}>;
|
|
2271
|
-
credentialScope:
|
|
2342
|
+
credentialScope: drizzle_orm_pg_core1370.PgColumn<{
|
|
2272
2343
|
name: "credential_scope";
|
|
2273
2344
|
tableName: "tools";
|
|
2274
2345
|
dataType: "string";
|
|
@@ -2287,7 +2358,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2287
2358
|
}, {}, {
|
|
2288
2359
|
length: 50;
|
|
2289
2360
|
}>;
|
|
2290
|
-
headers:
|
|
2361
|
+
headers: drizzle_orm_pg_core1370.PgColumn<{
|
|
2291
2362
|
name: "headers";
|
|
2292
2363
|
tableName: "tools";
|
|
2293
2364
|
dataType: "json";
|
|
@@ -2306,7 +2377,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2306
2377
|
}, {}, {
|
|
2307
2378
|
$type: Record<string, string>;
|
|
2308
2379
|
}>;
|
|
2309
|
-
imageUrl:
|
|
2380
|
+
imageUrl: drizzle_orm_pg_core1370.PgColumn<{
|
|
2310
2381
|
name: "image_url";
|
|
2311
2382
|
tableName: "tools";
|
|
2312
2383
|
dataType: "string";
|
|
@@ -2323,7 +2394,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2323
2394
|
identity: undefined;
|
|
2324
2395
|
generated: undefined;
|
|
2325
2396
|
}, {}, {}>;
|
|
2326
|
-
capabilities:
|
|
2397
|
+
capabilities: drizzle_orm_pg_core1370.PgColumn<{
|
|
2327
2398
|
name: "capabilities";
|
|
2328
2399
|
tableName: "tools";
|
|
2329
2400
|
dataType: "json";
|
|
@@ -2342,7 +2413,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2342
2413
|
}, {}, {
|
|
2343
2414
|
$type: ToolServerCapabilities;
|
|
2344
2415
|
}>;
|
|
2345
|
-
lastError:
|
|
2416
|
+
lastError: drizzle_orm_pg_core1370.PgColumn<{
|
|
2346
2417
|
name: "last_error";
|
|
2347
2418
|
tableName: "tools";
|
|
2348
2419
|
dataType: "string";
|
|
@@ -2359,7 +2430,24 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2359
2430
|
identity: undefined;
|
|
2360
2431
|
generated: undefined;
|
|
2361
2432
|
}, {}, {}>;
|
|
2362
|
-
|
|
2433
|
+
isWorkApp: drizzle_orm_pg_core1370.PgColumn<{
|
|
2434
|
+
name: "is_work_app";
|
|
2435
|
+
tableName: "tools";
|
|
2436
|
+
dataType: "boolean";
|
|
2437
|
+
columnType: "PgBoolean";
|
|
2438
|
+
data: boolean;
|
|
2439
|
+
driverParam: boolean;
|
|
2440
|
+
notNull: true;
|
|
2441
|
+
hasDefault: true;
|
|
2442
|
+
isPrimaryKey: false;
|
|
2443
|
+
isAutoincrement: false;
|
|
2444
|
+
hasRuntimeDefault: false;
|
|
2445
|
+
enumValues: undefined;
|
|
2446
|
+
baseColumn: never;
|
|
2447
|
+
identity: undefined;
|
|
2448
|
+
generated: undefined;
|
|
2449
|
+
}, {}, {}>;
|
|
2450
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2363
2451
|
name: "project_id";
|
|
2364
2452
|
tableName: "tools";
|
|
2365
2453
|
dataType: "string";
|
|
@@ -2378,7 +2466,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2378
2466
|
}, {}, {
|
|
2379
2467
|
length: 256;
|
|
2380
2468
|
}>;
|
|
2381
|
-
tenantId:
|
|
2469
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2382
2470
|
name: "tenant_id";
|
|
2383
2471
|
tableName: "tools";
|
|
2384
2472
|
dataType: "string";
|
|
@@ -2397,7 +2485,7 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2397
2485
|
}, {}, {
|
|
2398
2486
|
length: 256;
|
|
2399
2487
|
}>;
|
|
2400
|
-
id:
|
|
2488
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
2401
2489
|
name: "id";
|
|
2402
2490
|
tableName: "tools";
|
|
2403
2491
|
dataType: "string";
|
|
@@ -2419,11 +2507,11 @@ declare const tools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2419
2507
|
};
|
|
2420
2508
|
dialect: "pg";
|
|
2421
2509
|
}>;
|
|
2422
|
-
declare const functionTools:
|
|
2510
|
+
declare const functionTools: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2423
2511
|
name: "function_tools";
|
|
2424
2512
|
schema: undefined;
|
|
2425
2513
|
columns: {
|
|
2426
|
-
createdAt:
|
|
2514
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2427
2515
|
name: "created_at";
|
|
2428
2516
|
tableName: "function_tools";
|
|
2429
2517
|
dataType: "string";
|
|
@@ -2440,7 +2528,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2440
2528
|
identity: undefined;
|
|
2441
2529
|
generated: undefined;
|
|
2442
2530
|
}, {}, {}>;
|
|
2443
|
-
updatedAt:
|
|
2531
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2444
2532
|
name: "updated_at";
|
|
2445
2533
|
tableName: "function_tools";
|
|
2446
2534
|
dataType: "string";
|
|
@@ -2457,7 +2545,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2457
2545
|
identity: undefined;
|
|
2458
2546
|
generated: undefined;
|
|
2459
2547
|
}, {}, {}>;
|
|
2460
|
-
name:
|
|
2548
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
2461
2549
|
name: "name";
|
|
2462
2550
|
tableName: "function_tools";
|
|
2463
2551
|
dataType: "string";
|
|
@@ -2476,7 +2564,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2476
2564
|
}, {}, {
|
|
2477
2565
|
length: 256;
|
|
2478
2566
|
}>;
|
|
2479
|
-
description:
|
|
2567
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
2480
2568
|
name: "description";
|
|
2481
2569
|
tableName: "function_tools";
|
|
2482
2570
|
dataType: "string";
|
|
@@ -2493,7 +2581,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2493
2581
|
identity: undefined;
|
|
2494
2582
|
generated: undefined;
|
|
2495
2583
|
}, {}, {}>;
|
|
2496
|
-
functionId:
|
|
2584
|
+
functionId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2497
2585
|
name: "function_id";
|
|
2498
2586
|
tableName: "function_tools";
|
|
2499
2587
|
dataType: "string";
|
|
@@ -2512,7 +2600,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2512
2600
|
}, {}, {
|
|
2513
2601
|
length: 256;
|
|
2514
2602
|
}>;
|
|
2515
|
-
agentId:
|
|
2603
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2516
2604
|
name: "agent_id";
|
|
2517
2605
|
tableName: "function_tools";
|
|
2518
2606
|
dataType: "string";
|
|
@@ -2531,7 +2619,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2531
2619
|
}, {}, {
|
|
2532
2620
|
length: 256;
|
|
2533
2621
|
}>;
|
|
2534
|
-
projectId:
|
|
2622
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2535
2623
|
name: "project_id";
|
|
2536
2624
|
tableName: "function_tools";
|
|
2537
2625
|
dataType: "string";
|
|
@@ -2550,7 +2638,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2550
2638
|
}, {}, {
|
|
2551
2639
|
length: 256;
|
|
2552
2640
|
}>;
|
|
2553
|
-
tenantId:
|
|
2641
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2554
2642
|
name: "tenant_id";
|
|
2555
2643
|
tableName: "function_tools";
|
|
2556
2644
|
dataType: "string";
|
|
@@ -2569,7 +2657,7 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2569
2657
|
}, {}, {
|
|
2570
2658
|
length: 256;
|
|
2571
2659
|
}>;
|
|
2572
|
-
id:
|
|
2660
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
2573
2661
|
name: "id";
|
|
2574
2662
|
tableName: "function_tools";
|
|
2575
2663
|
dataType: "string";
|
|
@@ -2591,11 +2679,11 @@ declare const functionTools: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2591
2679
|
};
|
|
2592
2680
|
dialect: "pg";
|
|
2593
2681
|
}>;
|
|
2594
|
-
declare const functions:
|
|
2682
|
+
declare const functions: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2595
2683
|
name: "functions";
|
|
2596
2684
|
schema: undefined;
|
|
2597
2685
|
columns: {
|
|
2598
|
-
createdAt:
|
|
2686
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2599
2687
|
name: "created_at";
|
|
2600
2688
|
tableName: "functions";
|
|
2601
2689
|
dataType: "string";
|
|
@@ -2612,7 +2700,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2612
2700
|
identity: undefined;
|
|
2613
2701
|
generated: undefined;
|
|
2614
2702
|
}, {}, {}>;
|
|
2615
|
-
updatedAt:
|
|
2703
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2616
2704
|
name: "updated_at";
|
|
2617
2705
|
tableName: "functions";
|
|
2618
2706
|
dataType: "string";
|
|
@@ -2629,7 +2717,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2629
2717
|
identity: undefined;
|
|
2630
2718
|
generated: undefined;
|
|
2631
2719
|
}, {}, {}>;
|
|
2632
|
-
inputSchema:
|
|
2720
|
+
inputSchema: drizzle_orm_pg_core1370.PgColumn<{
|
|
2633
2721
|
name: "input_schema";
|
|
2634
2722
|
tableName: "functions";
|
|
2635
2723
|
dataType: "json";
|
|
@@ -2648,7 +2736,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2648
2736
|
}, {}, {
|
|
2649
2737
|
$type: Record<string, unknown>;
|
|
2650
2738
|
}>;
|
|
2651
|
-
executeCode:
|
|
2739
|
+
executeCode: drizzle_orm_pg_core1370.PgColumn<{
|
|
2652
2740
|
name: "execute_code";
|
|
2653
2741
|
tableName: "functions";
|
|
2654
2742
|
dataType: "string";
|
|
@@ -2665,7 +2753,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2665
2753
|
identity: undefined;
|
|
2666
2754
|
generated: undefined;
|
|
2667
2755
|
}, {}, {}>;
|
|
2668
|
-
dependencies:
|
|
2756
|
+
dependencies: drizzle_orm_pg_core1370.PgColumn<{
|
|
2669
2757
|
name: "dependencies";
|
|
2670
2758
|
tableName: "functions";
|
|
2671
2759
|
dataType: "json";
|
|
@@ -2684,7 +2772,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2684
2772
|
}, {}, {
|
|
2685
2773
|
$type: Record<string, string>;
|
|
2686
2774
|
}>;
|
|
2687
|
-
projectId:
|
|
2775
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2688
2776
|
name: "project_id";
|
|
2689
2777
|
tableName: "functions";
|
|
2690
2778
|
dataType: "string";
|
|
@@ -2703,7 +2791,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2703
2791
|
}, {}, {
|
|
2704
2792
|
length: 256;
|
|
2705
2793
|
}>;
|
|
2706
|
-
tenantId:
|
|
2794
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2707
2795
|
name: "tenant_id";
|
|
2708
2796
|
tableName: "functions";
|
|
2709
2797
|
dataType: "string";
|
|
@@ -2722,7 +2810,7 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2722
2810
|
}, {}, {
|
|
2723
2811
|
length: 256;
|
|
2724
2812
|
}>;
|
|
2725
|
-
id:
|
|
2813
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
2726
2814
|
name: "id";
|
|
2727
2815
|
tableName: "functions";
|
|
2728
2816
|
dataType: "string";
|
|
@@ -2744,11 +2832,11 @@ declare const functions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
2744
2832
|
};
|
|
2745
2833
|
dialect: "pg";
|
|
2746
2834
|
}>;
|
|
2747
|
-
declare const subAgentToolRelations:
|
|
2835
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2748
2836
|
name: "sub_agent_tool_relations";
|
|
2749
2837
|
schema: undefined;
|
|
2750
2838
|
columns: {
|
|
2751
|
-
createdAt:
|
|
2839
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2752
2840
|
name: "created_at";
|
|
2753
2841
|
tableName: "sub_agent_tool_relations";
|
|
2754
2842
|
dataType: "string";
|
|
@@ -2765,7 +2853,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2765
2853
|
identity: undefined;
|
|
2766
2854
|
generated: undefined;
|
|
2767
2855
|
}, {}, {}>;
|
|
2768
|
-
updatedAt:
|
|
2856
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2769
2857
|
name: "updated_at";
|
|
2770
2858
|
tableName: "sub_agent_tool_relations";
|
|
2771
2859
|
dataType: "string";
|
|
@@ -2782,7 +2870,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2782
2870
|
identity: undefined;
|
|
2783
2871
|
generated: undefined;
|
|
2784
2872
|
}, {}, {}>;
|
|
2785
|
-
toolId:
|
|
2873
|
+
toolId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2786
2874
|
name: "tool_id";
|
|
2787
2875
|
tableName: "sub_agent_tool_relations";
|
|
2788
2876
|
dataType: "string";
|
|
@@ -2801,7 +2889,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2801
2889
|
}, {}, {
|
|
2802
2890
|
length: 256;
|
|
2803
2891
|
}>;
|
|
2804
|
-
selectedTools:
|
|
2892
|
+
selectedTools: drizzle_orm_pg_core1370.PgColumn<{
|
|
2805
2893
|
name: "selected_tools";
|
|
2806
2894
|
tableName: "sub_agent_tool_relations";
|
|
2807
2895
|
dataType: "json";
|
|
@@ -2820,7 +2908,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2820
2908
|
}, {}, {
|
|
2821
2909
|
$type: string[] | null;
|
|
2822
2910
|
}>;
|
|
2823
|
-
headers:
|
|
2911
|
+
headers: drizzle_orm_pg_core1370.PgColumn<{
|
|
2824
2912
|
name: "headers";
|
|
2825
2913
|
tableName: "sub_agent_tool_relations";
|
|
2826
2914
|
dataType: "json";
|
|
@@ -2839,7 +2927,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2839
2927
|
}, {}, {
|
|
2840
2928
|
$type: Record<string, string> | null;
|
|
2841
2929
|
}>;
|
|
2842
|
-
toolPolicies:
|
|
2930
|
+
toolPolicies: drizzle_orm_pg_core1370.PgColumn<{
|
|
2843
2931
|
name: "tool_policies";
|
|
2844
2932
|
tableName: "sub_agent_tool_relations";
|
|
2845
2933
|
dataType: "json";
|
|
@@ -2862,7 +2950,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2862
2950
|
needsApproval?: boolean;
|
|
2863
2951
|
}> | null;
|
|
2864
2952
|
}>;
|
|
2865
|
-
subAgentId:
|
|
2953
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2866
2954
|
name: "sub_agent_id";
|
|
2867
2955
|
tableName: "sub_agent_tool_relations";
|
|
2868
2956
|
dataType: "string";
|
|
@@ -2881,7 +2969,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2881
2969
|
}, {}, {
|
|
2882
2970
|
length: 256;
|
|
2883
2971
|
}>;
|
|
2884
|
-
agentId:
|
|
2972
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2885
2973
|
name: "agent_id";
|
|
2886
2974
|
tableName: "sub_agent_tool_relations";
|
|
2887
2975
|
dataType: "string";
|
|
@@ -2900,7 +2988,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2900
2988
|
}, {}, {
|
|
2901
2989
|
length: 256;
|
|
2902
2990
|
}>;
|
|
2903
|
-
projectId:
|
|
2991
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2904
2992
|
name: "project_id";
|
|
2905
2993
|
tableName: "sub_agent_tool_relations";
|
|
2906
2994
|
dataType: "string";
|
|
@@ -2919,7 +3007,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2919
3007
|
}, {}, {
|
|
2920
3008
|
length: 256;
|
|
2921
3009
|
}>;
|
|
2922
|
-
tenantId:
|
|
3010
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
2923
3011
|
name: "tenant_id";
|
|
2924
3012
|
tableName: "sub_agent_tool_relations";
|
|
2925
3013
|
dataType: "string";
|
|
@@ -2938,7 +3026,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2938
3026
|
}, {}, {
|
|
2939
3027
|
length: 256;
|
|
2940
3028
|
}>;
|
|
2941
|
-
id:
|
|
3029
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
2942
3030
|
name: "id";
|
|
2943
3031
|
tableName: "sub_agent_tool_relations";
|
|
2944
3032
|
dataType: "string";
|
|
@@ -2960,11 +3048,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
2960
3048
|
};
|
|
2961
3049
|
dialect: "pg";
|
|
2962
3050
|
}>;
|
|
2963
|
-
declare const subAgentExternalAgentRelations:
|
|
3051
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
2964
3052
|
name: "sub_agent_external_agent_relations";
|
|
2965
3053
|
schema: undefined;
|
|
2966
3054
|
columns: {
|
|
2967
|
-
createdAt:
|
|
3055
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2968
3056
|
name: "created_at";
|
|
2969
3057
|
tableName: "sub_agent_external_agent_relations";
|
|
2970
3058
|
dataType: "string";
|
|
@@ -2981,7 +3069,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
2981
3069
|
identity: undefined;
|
|
2982
3070
|
generated: undefined;
|
|
2983
3071
|
}, {}, {}>;
|
|
2984
|
-
updatedAt:
|
|
3072
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
2985
3073
|
name: "updated_at";
|
|
2986
3074
|
tableName: "sub_agent_external_agent_relations";
|
|
2987
3075
|
dataType: "string";
|
|
@@ -2998,7 +3086,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
2998
3086
|
identity: undefined;
|
|
2999
3087
|
generated: undefined;
|
|
3000
3088
|
}, {}, {}>;
|
|
3001
|
-
externalAgentId:
|
|
3089
|
+
externalAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3002
3090
|
name: "external_agent_id";
|
|
3003
3091
|
tableName: "sub_agent_external_agent_relations";
|
|
3004
3092
|
dataType: "string";
|
|
@@ -3017,7 +3105,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3017
3105
|
}, {}, {
|
|
3018
3106
|
length: 256;
|
|
3019
3107
|
}>;
|
|
3020
|
-
headers:
|
|
3108
|
+
headers: drizzle_orm_pg_core1370.PgColumn<{
|
|
3021
3109
|
name: "headers";
|
|
3022
3110
|
tableName: "sub_agent_external_agent_relations";
|
|
3023
3111
|
dataType: "json";
|
|
@@ -3036,7 +3124,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3036
3124
|
}, {}, {
|
|
3037
3125
|
$type: Record<string, string> | null;
|
|
3038
3126
|
}>;
|
|
3039
|
-
subAgentId:
|
|
3127
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3040
3128
|
name: "sub_agent_id";
|
|
3041
3129
|
tableName: "sub_agent_external_agent_relations";
|
|
3042
3130
|
dataType: "string";
|
|
@@ -3055,7 +3143,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3055
3143
|
}, {}, {
|
|
3056
3144
|
length: 256;
|
|
3057
3145
|
}>;
|
|
3058
|
-
agentId:
|
|
3146
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3059
3147
|
name: "agent_id";
|
|
3060
3148
|
tableName: "sub_agent_external_agent_relations";
|
|
3061
3149
|
dataType: "string";
|
|
@@ -3074,7 +3162,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3074
3162
|
}, {}, {
|
|
3075
3163
|
length: 256;
|
|
3076
3164
|
}>;
|
|
3077
|
-
projectId:
|
|
3165
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3078
3166
|
name: "project_id";
|
|
3079
3167
|
tableName: "sub_agent_external_agent_relations";
|
|
3080
3168
|
dataType: "string";
|
|
@@ -3093,7 +3181,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3093
3181
|
}, {}, {
|
|
3094
3182
|
length: 256;
|
|
3095
3183
|
}>;
|
|
3096
|
-
tenantId:
|
|
3184
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3097
3185
|
name: "tenant_id";
|
|
3098
3186
|
tableName: "sub_agent_external_agent_relations";
|
|
3099
3187
|
dataType: "string";
|
|
@@ -3112,7 +3200,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3112
3200
|
}, {}, {
|
|
3113
3201
|
length: 256;
|
|
3114
3202
|
}>;
|
|
3115
|
-
id:
|
|
3203
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
3116
3204
|
name: "id";
|
|
3117
3205
|
tableName: "sub_agent_external_agent_relations";
|
|
3118
3206
|
dataType: "string";
|
|
@@ -3134,11 +3222,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
3134
3222
|
};
|
|
3135
3223
|
dialect: "pg";
|
|
3136
3224
|
}>;
|
|
3137
|
-
declare const subAgentTeamAgentRelations:
|
|
3225
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
3138
3226
|
name: "sub_agent_team_agent_relations";
|
|
3139
3227
|
schema: undefined;
|
|
3140
3228
|
columns: {
|
|
3141
|
-
createdAt:
|
|
3229
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3142
3230
|
name: "created_at";
|
|
3143
3231
|
tableName: "sub_agent_team_agent_relations";
|
|
3144
3232
|
dataType: "string";
|
|
@@ -3155,7 +3243,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3155
3243
|
identity: undefined;
|
|
3156
3244
|
generated: undefined;
|
|
3157
3245
|
}, {}, {}>;
|
|
3158
|
-
updatedAt:
|
|
3246
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3159
3247
|
name: "updated_at";
|
|
3160
3248
|
tableName: "sub_agent_team_agent_relations";
|
|
3161
3249
|
dataType: "string";
|
|
@@ -3172,7 +3260,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3172
3260
|
identity: undefined;
|
|
3173
3261
|
generated: undefined;
|
|
3174
3262
|
}, {}, {}>;
|
|
3175
|
-
targetAgentId:
|
|
3263
|
+
targetAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3176
3264
|
name: "target_agent_id";
|
|
3177
3265
|
tableName: "sub_agent_team_agent_relations";
|
|
3178
3266
|
dataType: "string";
|
|
@@ -3191,7 +3279,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3191
3279
|
}, {}, {
|
|
3192
3280
|
length: 256;
|
|
3193
3281
|
}>;
|
|
3194
|
-
headers:
|
|
3282
|
+
headers: drizzle_orm_pg_core1370.PgColumn<{
|
|
3195
3283
|
name: "headers";
|
|
3196
3284
|
tableName: "sub_agent_team_agent_relations";
|
|
3197
3285
|
dataType: "json";
|
|
@@ -3210,7 +3298,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3210
3298
|
}, {}, {
|
|
3211
3299
|
$type: Record<string, string> | null;
|
|
3212
3300
|
}>;
|
|
3213
|
-
subAgentId:
|
|
3301
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3214
3302
|
name: "sub_agent_id";
|
|
3215
3303
|
tableName: "sub_agent_team_agent_relations";
|
|
3216
3304
|
dataType: "string";
|
|
@@ -3229,7 +3317,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3229
3317
|
}, {}, {
|
|
3230
3318
|
length: 256;
|
|
3231
3319
|
}>;
|
|
3232
|
-
agentId:
|
|
3320
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3233
3321
|
name: "agent_id";
|
|
3234
3322
|
tableName: "sub_agent_team_agent_relations";
|
|
3235
3323
|
dataType: "string";
|
|
@@ -3248,7 +3336,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3248
3336
|
}, {}, {
|
|
3249
3337
|
length: 256;
|
|
3250
3338
|
}>;
|
|
3251
|
-
projectId:
|
|
3339
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3252
3340
|
name: "project_id";
|
|
3253
3341
|
tableName: "sub_agent_team_agent_relations";
|
|
3254
3342
|
dataType: "string";
|
|
@@ -3267,7 +3355,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3267
3355
|
}, {}, {
|
|
3268
3356
|
length: 256;
|
|
3269
3357
|
}>;
|
|
3270
|
-
tenantId:
|
|
3358
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3271
3359
|
name: "tenant_id";
|
|
3272
3360
|
tableName: "sub_agent_team_agent_relations";
|
|
3273
3361
|
dataType: "string";
|
|
@@ -3286,7 +3374,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3286
3374
|
}, {}, {
|
|
3287
3375
|
length: 256;
|
|
3288
3376
|
}>;
|
|
3289
|
-
id:
|
|
3377
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
3290
3378
|
name: "id";
|
|
3291
3379
|
tableName: "sub_agent_team_agent_relations";
|
|
3292
3380
|
dataType: "string";
|
|
@@ -3308,11 +3396,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core1458.PgTableWithCol
|
|
|
3308
3396
|
};
|
|
3309
3397
|
dialect: "pg";
|
|
3310
3398
|
}>;
|
|
3311
|
-
declare const subAgentFunctionToolRelations:
|
|
3399
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
3312
3400
|
name: "sub_agent_function_tool_relations";
|
|
3313
3401
|
schema: undefined;
|
|
3314
3402
|
columns: {
|
|
3315
|
-
createdAt:
|
|
3403
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3316
3404
|
name: "created_at";
|
|
3317
3405
|
tableName: "sub_agent_function_tool_relations";
|
|
3318
3406
|
dataType: "string";
|
|
@@ -3329,7 +3417,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3329
3417
|
identity: undefined;
|
|
3330
3418
|
generated: undefined;
|
|
3331
3419
|
}, {}, {}>;
|
|
3332
|
-
updatedAt:
|
|
3420
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3333
3421
|
name: "updated_at";
|
|
3334
3422
|
tableName: "sub_agent_function_tool_relations";
|
|
3335
3423
|
dataType: "string";
|
|
@@ -3346,7 +3434,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3346
3434
|
identity: undefined;
|
|
3347
3435
|
generated: undefined;
|
|
3348
3436
|
}, {}, {}>;
|
|
3349
|
-
functionToolId:
|
|
3437
|
+
functionToolId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3350
3438
|
name: "function_tool_id";
|
|
3351
3439
|
tableName: "sub_agent_function_tool_relations";
|
|
3352
3440
|
dataType: "string";
|
|
@@ -3365,7 +3453,30 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3365
3453
|
}, {}, {
|
|
3366
3454
|
length: 256;
|
|
3367
3455
|
}>;
|
|
3368
|
-
|
|
3456
|
+
toolPolicies: drizzle_orm_pg_core1370.PgColumn<{
|
|
3457
|
+
name: "tool_policies";
|
|
3458
|
+
tableName: "sub_agent_function_tool_relations";
|
|
3459
|
+
dataType: "json";
|
|
3460
|
+
columnType: "PgJsonb";
|
|
3461
|
+
data: Record<string, {
|
|
3462
|
+
needsApproval?: boolean;
|
|
3463
|
+
}> | null;
|
|
3464
|
+
driverParam: unknown;
|
|
3465
|
+
notNull: false;
|
|
3466
|
+
hasDefault: false;
|
|
3467
|
+
isPrimaryKey: false;
|
|
3468
|
+
isAutoincrement: false;
|
|
3469
|
+
hasRuntimeDefault: false;
|
|
3470
|
+
enumValues: undefined;
|
|
3471
|
+
baseColumn: never;
|
|
3472
|
+
identity: undefined;
|
|
3473
|
+
generated: undefined;
|
|
3474
|
+
}, {}, {
|
|
3475
|
+
$type: Record<string, {
|
|
3476
|
+
needsApproval?: boolean;
|
|
3477
|
+
}> | null;
|
|
3478
|
+
}>;
|
|
3479
|
+
subAgentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3369
3480
|
name: "sub_agent_id";
|
|
3370
3481
|
tableName: "sub_agent_function_tool_relations";
|
|
3371
3482
|
dataType: "string";
|
|
@@ -3384,7 +3495,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3384
3495
|
}, {}, {
|
|
3385
3496
|
length: 256;
|
|
3386
3497
|
}>;
|
|
3387
|
-
agentId:
|
|
3498
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3388
3499
|
name: "agent_id";
|
|
3389
3500
|
tableName: "sub_agent_function_tool_relations";
|
|
3390
3501
|
dataType: "string";
|
|
@@ -3403,7 +3514,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3403
3514
|
}, {}, {
|
|
3404
3515
|
length: 256;
|
|
3405
3516
|
}>;
|
|
3406
|
-
projectId:
|
|
3517
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3407
3518
|
name: "project_id";
|
|
3408
3519
|
tableName: "sub_agent_function_tool_relations";
|
|
3409
3520
|
dataType: "string";
|
|
@@ -3422,7 +3533,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3422
3533
|
}, {}, {
|
|
3423
3534
|
length: 256;
|
|
3424
3535
|
}>;
|
|
3425
|
-
tenantId:
|
|
3536
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3426
3537
|
name: "tenant_id";
|
|
3427
3538
|
tableName: "sub_agent_function_tool_relations";
|
|
3428
3539
|
dataType: "string";
|
|
@@ -3441,7 +3552,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3441
3552
|
}, {}, {
|
|
3442
3553
|
length: 256;
|
|
3443
3554
|
}>;
|
|
3444
|
-
id:
|
|
3555
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
3445
3556
|
name: "id";
|
|
3446
3557
|
tableName: "sub_agent_function_tool_relations";
|
|
3447
3558
|
dataType: "string";
|
|
@@ -3463,11 +3574,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core1458.PgTableWith
|
|
|
3463
3574
|
};
|
|
3464
3575
|
dialect: "pg";
|
|
3465
3576
|
}>;
|
|
3466
|
-
declare const credentialReferences:
|
|
3577
|
+
declare const credentialReferences: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
3467
3578
|
name: "credential_references";
|
|
3468
3579
|
schema: undefined;
|
|
3469
3580
|
columns: {
|
|
3470
|
-
createdAt:
|
|
3581
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3471
3582
|
name: "created_at";
|
|
3472
3583
|
tableName: "credential_references";
|
|
3473
3584
|
dataType: "string";
|
|
@@ -3484,7 +3595,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3484
3595
|
identity: undefined;
|
|
3485
3596
|
generated: undefined;
|
|
3486
3597
|
}, {}, {}>;
|
|
3487
|
-
updatedAt:
|
|
3598
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3488
3599
|
name: "updated_at";
|
|
3489
3600
|
tableName: "credential_references";
|
|
3490
3601
|
dataType: "string";
|
|
@@ -3501,7 +3612,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3501
3612
|
identity: undefined;
|
|
3502
3613
|
generated: undefined;
|
|
3503
3614
|
}, {}, {}>;
|
|
3504
|
-
name:
|
|
3615
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
3505
3616
|
name: "name";
|
|
3506
3617
|
tableName: "credential_references";
|
|
3507
3618
|
dataType: "string";
|
|
@@ -3520,7 +3631,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3520
3631
|
}, {}, {
|
|
3521
3632
|
length: 256;
|
|
3522
3633
|
}>;
|
|
3523
|
-
type:
|
|
3634
|
+
type: drizzle_orm_pg_core1370.PgColumn<{
|
|
3524
3635
|
name: "type";
|
|
3525
3636
|
tableName: "credential_references";
|
|
3526
3637
|
dataType: "string";
|
|
@@ -3539,7 +3650,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3539
3650
|
}, {}, {
|
|
3540
3651
|
length: 256;
|
|
3541
3652
|
}>;
|
|
3542
|
-
credentialStoreId:
|
|
3653
|
+
credentialStoreId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3543
3654
|
name: "credential_store_id";
|
|
3544
3655
|
tableName: "credential_references";
|
|
3545
3656
|
dataType: "string";
|
|
@@ -3558,7 +3669,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3558
3669
|
}, {}, {
|
|
3559
3670
|
length: 256;
|
|
3560
3671
|
}>;
|
|
3561
|
-
retrievalParams:
|
|
3672
|
+
retrievalParams: drizzle_orm_pg_core1370.PgColumn<{
|
|
3562
3673
|
name: "retrieval_params";
|
|
3563
3674
|
tableName: "credential_references";
|
|
3564
3675
|
dataType: "json";
|
|
@@ -3577,7 +3688,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3577
3688
|
}, {}, {
|
|
3578
3689
|
$type: Record<string, unknown>;
|
|
3579
3690
|
}>;
|
|
3580
|
-
toolId:
|
|
3691
|
+
toolId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3581
3692
|
name: "tool_id";
|
|
3582
3693
|
tableName: "credential_references";
|
|
3583
3694
|
dataType: "string";
|
|
@@ -3596,7 +3707,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3596
3707
|
}, {}, {
|
|
3597
3708
|
length: 256;
|
|
3598
3709
|
}>;
|
|
3599
|
-
userId:
|
|
3710
|
+
userId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3600
3711
|
name: "user_id";
|
|
3601
3712
|
tableName: "credential_references";
|
|
3602
3713
|
dataType: "string";
|
|
@@ -3615,7 +3726,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3615
3726
|
}, {}, {
|
|
3616
3727
|
length: 256;
|
|
3617
3728
|
}>;
|
|
3618
|
-
createdBy:
|
|
3729
|
+
createdBy: drizzle_orm_pg_core1370.PgColumn<{
|
|
3619
3730
|
name: "created_by";
|
|
3620
3731
|
tableName: "credential_references";
|
|
3621
3732
|
dataType: "string";
|
|
@@ -3634,7 +3745,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3634
3745
|
}, {}, {
|
|
3635
3746
|
length: 256;
|
|
3636
3747
|
}>;
|
|
3637
|
-
projectId:
|
|
3748
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3638
3749
|
name: "project_id";
|
|
3639
3750
|
tableName: "credential_references";
|
|
3640
3751
|
dataType: "string";
|
|
@@ -3653,7 +3764,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3653
3764
|
}, {}, {
|
|
3654
3765
|
length: 256;
|
|
3655
3766
|
}>;
|
|
3656
|
-
tenantId:
|
|
3767
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3657
3768
|
name: "tenant_id";
|
|
3658
3769
|
tableName: "credential_references";
|
|
3659
3770
|
dataType: "string";
|
|
@@ -3672,7 +3783,7 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3672
3783
|
}, {}, {
|
|
3673
3784
|
length: 256;
|
|
3674
3785
|
}>;
|
|
3675
|
-
id:
|
|
3786
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
3676
3787
|
name: "id";
|
|
3677
3788
|
tableName: "credential_references";
|
|
3678
3789
|
dataType: "string";
|
|
@@ -3704,11 +3815,11 @@ declare const credentialReferences: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3704
3815
|
*
|
|
3705
3816
|
* Includes: name and timestamps
|
|
3706
3817
|
*/
|
|
3707
|
-
declare const dataset:
|
|
3818
|
+
declare const dataset: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
3708
3819
|
name: "dataset";
|
|
3709
3820
|
schema: undefined;
|
|
3710
3821
|
columns: {
|
|
3711
|
-
createdAt:
|
|
3822
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3712
3823
|
name: "created_at";
|
|
3713
3824
|
tableName: "dataset";
|
|
3714
3825
|
dataType: "string";
|
|
@@ -3725,7 +3836,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3725
3836
|
identity: undefined;
|
|
3726
3837
|
generated: undefined;
|
|
3727
3838
|
}, {}, {}>;
|
|
3728
|
-
updatedAt:
|
|
3839
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3729
3840
|
name: "updated_at";
|
|
3730
3841
|
tableName: "dataset";
|
|
3731
3842
|
dataType: "string";
|
|
@@ -3742,7 +3853,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3742
3853
|
identity: undefined;
|
|
3743
3854
|
generated: undefined;
|
|
3744
3855
|
}, {}, {}>;
|
|
3745
|
-
name:
|
|
3856
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
3746
3857
|
name: "name";
|
|
3747
3858
|
tableName: "dataset";
|
|
3748
3859
|
dataType: "string";
|
|
@@ -3761,7 +3872,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3761
3872
|
}, {}, {
|
|
3762
3873
|
length: 256;
|
|
3763
3874
|
}>;
|
|
3764
|
-
projectId:
|
|
3875
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3765
3876
|
name: "project_id";
|
|
3766
3877
|
tableName: "dataset";
|
|
3767
3878
|
dataType: "string";
|
|
@@ -3780,7 +3891,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3780
3891
|
}, {}, {
|
|
3781
3892
|
length: 256;
|
|
3782
3893
|
}>;
|
|
3783
|
-
tenantId:
|
|
3894
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3784
3895
|
name: "tenant_id";
|
|
3785
3896
|
tableName: "dataset";
|
|
3786
3897
|
dataType: "string";
|
|
@@ -3799,7 +3910,7 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3799
3910
|
}, {}, {
|
|
3800
3911
|
length: 256;
|
|
3801
3912
|
}>;
|
|
3802
|
-
id:
|
|
3913
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
3803
3914
|
name: "id";
|
|
3804
3915
|
tableName: "dataset";
|
|
3805
3916
|
dataType: "string";
|
|
@@ -3832,11 +3943,11 @@ declare const dataset: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3832
3943
|
* simulation agent (stopWhen conditions, prompt/modelConfig), and timestamps
|
|
3833
3944
|
* simulationAgent is for when a user wants to create a multi-turn simulation aka a simulating agent is creating input messages based on a persona
|
|
3834
3945
|
*/
|
|
3835
|
-
declare const datasetItem:
|
|
3946
|
+
declare const datasetItem: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
3836
3947
|
name: "dataset_item";
|
|
3837
3948
|
schema: undefined;
|
|
3838
3949
|
columns: {
|
|
3839
|
-
createdAt:
|
|
3950
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3840
3951
|
name: "created_at";
|
|
3841
3952
|
tableName: "dataset_item";
|
|
3842
3953
|
dataType: "string";
|
|
@@ -3853,7 +3964,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3853
3964
|
identity: undefined;
|
|
3854
3965
|
generated: undefined;
|
|
3855
3966
|
}, {}, {}>;
|
|
3856
|
-
updatedAt:
|
|
3967
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
3857
3968
|
name: "updated_at";
|
|
3858
3969
|
tableName: "dataset_item";
|
|
3859
3970
|
dataType: "string";
|
|
@@ -3870,11 +3981,11 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3870
3981
|
identity: undefined;
|
|
3871
3982
|
generated: undefined;
|
|
3872
3983
|
}, {}, {}>;
|
|
3873
|
-
datasetId:
|
|
3984
|
+
datasetId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3874
3985
|
name: "dataset_id";
|
|
3875
3986
|
tableName: "dataset_item";
|
|
3876
3987
|
dataType: "string";
|
|
3877
|
-
columnType: "
|
|
3988
|
+
columnType: "PgVarchar";
|
|
3878
3989
|
data: string;
|
|
3879
3990
|
driverParam: string;
|
|
3880
3991
|
notNull: true;
|
|
@@ -3886,8 +3997,10 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3886
3997
|
baseColumn: never;
|
|
3887
3998
|
identity: undefined;
|
|
3888
3999
|
generated: undefined;
|
|
3889
|
-
}, {}, {
|
|
3890
|
-
|
|
4000
|
+
}, {}, {
|
|
4001
|
+
length: 256;
|
|
4002
|
+
}>;
|
|
4003
|
+
input: drizzle_orm_pg_core1370.PgColumn<{
|
|
3891
4004
|
name: "input";
|
|
3892
4005
|
tableName: "dataset_item";
|
|
3893
4006
|
dataType: "json";
|
|
@@ -3906,7 +4019,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3906
4019
|
}, {}, {
|
|
3907
4020
|
$type: DatasetItemInput;
|
|
3908
4021
|
}>;
|
|
3909
|
-
expectedOutput:
|
|
4022
|
+
expectedOutput: drizzle_orm_pg_core1370.PgColumn<{
|
|
3910
4023
|
name: "expected_output";
|
|
3911
4024
|
tableName: "dataset_item";
|
|
3912
4025
|
dataType: "json";
|
|
@@ -3925,7 +4038,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3925
4038
|
}, {}, {
|
|
3926
4039
|
$type: DatasetItemExpectedOutput;
|
|
3927
4040
|
}>;
|
|
3928
|
-
simulationAgent:
|
|
4041
|
+
simulationAgent: drizzle_orm_pg_core1370.PgColumn<{
|
|
3929
4042
|
name: "simulation_agent";
|
|
3930
4043
|
tableName: "dataset_item";
|
|
3931
4044
|
dataType: "json";
|
|
@@ -3964,7 +4077,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3964
4077
|
} | undefined;
|
|
3965
4078
|
};
|
|
3966
4079
|
}>;
|
|
3967
|
-
projectId:
|
|
4080
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3968
4081
|
name: "project_id";
|
|
3969
4082
|
tableName: "dataset_item";
|
|
3970
4083
|
dataType: "string";
|
|
@@ -3983,7 +4096,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
3983
4096
|
}, {}, {
|
|
3984
4097
|
length: 256;
|
|
3985
4098
|
}>;
|
|
3986
|
-
tenantId:
|
|
4099
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
3987
4100
|
name: "tenant_id";
|
|
3988
4101
|
tableName: "dataset_item";
|
|
3989
4102
|
dataType: "string";
|
|
@@ -4002,7 +4115,7 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4002
4115
|
}, {}, {
|
|
4003
4116
|
length: 256;
|
|
4004
4117
|
}>;
|
|
4005
|
-
id:
|
|
4118
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4006
4119
|
name: "id";
|
|
4007
4120
|
tableName: "dataset_item";
|
|
4008
4121
|
dataType: "string";
|
|
@@ -4024,11 +4137,11 @@ declare const datasetItem: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4024
4137
|
};
|
|
4025
4138
|
dialect: "pg";
|
|
4026
4139
|
}>;
|
|
4027
|
-
declare const evaluator:
|
|
4140
|
+
declare const evaluator: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4028
4141
|
name: "evaluator";
|
|
4029
4142
|
schema: undefined;
|
|
4030
4143
|
columns: {
|
|
4031
|
-
createdAt:
|
|
4144
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4032
4145
|
name: "created_at";
|
|
4033
4146
|
tableName: "evaluator";
|
|
4034
4147
|
dataType: "string";
|
|
@@ -4045,7 +4158,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4045
4158
|
identity: undefined;
|
|
4046
4159
|
generated: undefined;
|
|
4047
4160
|
}, {}, {}>;
|
|
4048
|
-
updatedAt:
|
|
4161
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4049
4162
|
name: "updated_at";
|
|
4050
4163
|
tableName: "evaluator";
|
|
4051
4164
|
dataType: "string";
|
|
@@ -4062,7 +4175,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4062
4175
|
identity: undefined;
|
|
4063
4176
|
generated: undefined;
|
|
4064
4177
|
}, {}, {}>;
|
|
4065
|
-
prompt:
|
|
4178
|
+
prompt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4066
4179
|
name: "prompt";
|
|
4067
4180
|
tableName: "evaluator";
|
|
4068
4181
|
dataType: "string";
|
|
@@ -4079,7 +4192,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4079
4192
|
identity: undefined;
|
|
4080
4193
|
generated: undefined;
|
|
4081
4194
|
}, {}, {}>;
|
|
4082
|
-
schema:
|
|
4195
|
+
schema: drizzle_orm_pg_core1370.PgColumn<{
|
|
4083
4196
|
name: "schema";
|
|
4084
4197
|
tableName: "evaluator";
|
|
4085
4198
|
dataType: "json";
|
|
@@ -4098,7 +4211,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4098
4211
|
}, {}, {
|
|
4099
4212
|
$type: Record<string, unknown>;
|
|
4100
4213
|
}>;
|
|
4101
|
-
model:
|
|
4214
|
+
model: drizzle_orm_pg_core1370.PgColumn<{
|
|
4102
4215
|
name: "model";
|
|
4103
4216
|
tableName: "evaluator";
|
|
4104
4217
|
dataType: "json";
|
|
@@ -4123,7 +4236,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4123
4236
|
providerOptions?: Record<string, any> | undefined;
|
|
4124
4237
|
};
|
|
4125
4238
|
}>;
|
|
4126
|
-
passCriteria:
|
|
4239
|
+
passCriteria: drizzle_orm_pg_core1370.PgColumn<{
|
|
4127
4240
|
name: "pass_criteria";
|
|
4128
4241
|
tableName: "evaluator";
|
|
4129
4242
|
dataType: "json";
|
|
@@ -4142,7 +4255,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4142
4255
|
}, {}, {
|
|
4143
4256
|
$type: PassCriteria;
|
|
4144
4257
|
}>;
|
|
4145
|
-
name:
|
|
4258
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
4146
4259
|
name: "name";
|
|
4147
4260
|
tableName: "evaluator";
|
|
4148
4261
|
dataType: "string";
|
|
@@ -4161,7 +4274,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4161
4274
|
}, {}, {
|
|
4162
4275
|
length: 256;
|
|
4163
4276
|
}>;
|
|
4164
|
-
description:
|
|
4277
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
4165
4278
|
name: "description";
|
|
4166
4279
|
tableName: "evaluator";
|
|
4167
4280
|
dataType: "string";
|
|
@@ -4178,7 +4291,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4178
4291
|
identity: undefined;
|
|
4179
4292
|
generated: undefined;
|
|
4180
4293
|
}, {}, {}>;
|
|
4181
|
-
projectId:
|
|
4294
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4182
4295
|
name: "project_id";
|
|
4183
4296
|
tableName: "evaluator";
|
|
4184
4297
|
dataType: "string";
|
|
@@ -4197,7 +4310,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4197
4310
|
}, {}, {
|
|
4198
4311
|
length: 256;
|
|
4199
4312
|
}>;
|
|
4200
|
-
tenantId:
|
|
4313
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4201
4314
|
name: "tenant_id";
|
|
4202
4315
|
tableName: "evaluator";
|
|
4203
4316
|
dataType: "string";
|
|
@@ -4216,7 +4329,7 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4216
4329
|
}, {}, {
|
|
4217
4330
|
length: 256;
|
|
4218
4331
|
}>;
|
|
4219
|
-
id:
|
|
4332
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4220
4333
|
name: "id";
|
|
4221
4334
|
tableName: "evaluator";
|
|
4222
4335
|
dataType: "string";
|
|
@@ -4238,11 +4351,11 @@ declare const evaluator: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4238
4351
|
};
|
|
4239
4352
|
dialect: "pg";
|
|
4240
4353
|
}>;
|
|
4241
|
-
declare const datasetRunConfig:
|
|
4354
|
+
declare const datasetRunConfig: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4242
4355
|
name: "dataset_run_config";
|
|
4243
4356
|
schema: undefined;
|
|
4244
4357
|
columns: {
|
|
4245
|
-
createdAt:
|
|
4358
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4246
4359
|
name: "created_at";
|
|
4247
4360
|
tableName: "dataset_run_config";
|
|
4248
4361
|
dataType: "string";
|
|
@@ -4259,7 +4372,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4259
4372
|
identity: undefined;
|
|
4260
4373
|
generated: undefined;
|
|
4261
4374
|
}, {}, {}>;
|
|
4262
|
-
updatedAt:
|
|
4375
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4263
4376
|
name: "updated_at";
|
|
4264
4377
|
tableName: "dataset_run_config";
|
|
4265
4378
|
dataType: "string";
|
|
@@ -4276,11 +4389,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4276
4389
|
identity: undefined;
|
|
4277
4390
|
generated: undefined;
|
|
4278
4391
|
}, {}, {}>;
|
|
4279
|
-
datasetId:
|
|
4392
|
+
datasetId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4280
4393
|
name: "dataset_id";
|
|
4281
4394
|
tableName: "dataset_run_config";
|
|
4282
4395
|
dataType: "string";
|
|
4283
|
-
columnType: "
|
|
4396
|
+
columnType: "PgVarchar";
|
|
4284
4397
|
data: string;
|
|
4285
4398
|
driverParam: string;
|
|
4286
4399
|
notNull: true;
|
|
@@ -4292,8 +4405,10 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4292
4405
|
baseColumn: never;
|
|
4293
4406
|
identity: undefined;
|
|
4294
4407
|
generated: undefined;
|
|
4295
|
-
}, {}, {
|
|
4296
|
-
|
|
4408
|
+
}, {}, {
|
|
4409
|
+
length: 256;
|
|
4410
|
+
}>;
|
|
4411
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
4297
4412
|
name: "name";
|
|
4298
4413
|
tableName: "dataset_run_config";
|
|
4299
4414
|
dataType: "string";
|
|
@@ -4312,7 +4427,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4312
4427
|
}, {}, {
|
|
4313
4428
|
length: 256;
|
|
4314
4429
|
}>;
|
|
4315
|
-
description:
|
|
4430
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
4316
4431
|
name: "description";
|
|
4317
4432
|
tableName: "dataset_run_config";
|
|
4318
4433
|
dataType: "string";
|
|
@@ -4329,7 +4444,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4329
4444
|
identity: undefined;
|
|
4330
4445
|
generated: undefined;
|
|
4331
4446
|
}, {}, {}>;
|
|
4332
|
-
projectId:
|
|
4447
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4333
4448
|
name: "project_id";
|
|
4334
4449
|
tableName: "dataset_run_config";
|
|
4335
4450
|
dataType: "string";
|
|
@@ -4348,7 +4463,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4348
4463
|
}, {}, {
|
|
4349
4464
|
length: 256;
|
|
4350
4465
|
}>;
|
|
4351
|
-
tenantId:
|
|
4466
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4352
4467
|
name: "tenant_id";
|
|
4353
4468
|
tableName: "dataset_run_config";
|
|
4354
4469
|
dataType: "string";
|
|
@@ -4367,7 +4482,7 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4367
4482
|
}, {}, {
|
|
4368
4483
|
length: 256;
|
|
4369
4484
|
}>;
|
|
4370
|
-
id:
|
|
4485
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4371
4486
|
name: "id";
|
|
4372
4487
|
tableName: "dataset_run_config";
|
|
4373
4488
|
dataType: "string";
|
|
@@ -4404,11 +4519,11 @@ declare const datasetRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4404
4519
|
* Includes: name, description, filters (JSONB for evaluation criteria),
|
|
4405
4520
|
* sampleRate for sampling, and timestamps
|
|
4406
4521
|
*/
|
|
4407
|
-
declare const evaluationSuiteConfig:
|
|
4522
|
+
declare const evaluationSuiteConfig: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4408
4523
|
name: "evaluation_suite_config";
|
|
4409
4524
|
schema: undefined;
|
|
4410
4525
|
columns: {
|
|
4411
|
-
createdAt:
|
|
4526
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4412
4527
|
name: "created_at";
|
|
4413
4528
|
tableName: "evaluation_suite_config";
|
|
4414
4529
|
dataType: "string";
|
|
@@ -4425,7 +4540,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4425
4540
|
identity: undefined;
|
|
4426
4541
|
generated: undefined;
|
|
4427
4542
|
}, {}, {}>;
|
|
4428
|
-
updatedAt:
|
|
4543
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4429
4544
|
name: "updated_at";
|
|
4430
4545
|
tableName: "evaluation_suite_config";
|
|
4431
4546
|
dataType: "string";
|
|
@@ -4442,7 +4557,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4442
4557
|
identity: undefined;
|
|
4443
4558
|
generated: undefined;
|
|
4444
4559
|
}, {}, {}>;
|
|
4445
|
-
filters:
|
|
4560
|
+
filters: drizzle_orm_pg_core1370.PgColumn<{
|
|
4446
4561
|
name: "filters";
|
|
4447
4562
|
tableName: "evaluation_suite_config";
|
|
4448
4563
|
dataType: "json";
|
|
@@ -4461,7 +4576,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4461
4576
|
}, {}, {
|
|
4462
4577
|
$type: Filter<EvaluationSuiteFilterCriteria>;
|
|
4463
4578
|
}>;
|
|
4464
|
-
sampleRate:
|
|
4579
|
+
sampleRate: drizzle_orm_pg_core1370.PgColumn<{
|
|
4465
4580
|
name: "sample_rate";
|
|
4466
4581
|
tableName: "evaluation_suite_config";
|
|
4467
4582
|
dataType: "number";
|
|
@@ -4478,7 +4593,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4478
4593
|
identity: undefined;
|
|
4479
4594
|
generated: undefined;
|
|
4480
4595
|
}, {}, {}>;
|
|
4481
|
-
projectId:
|
|
4596
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4482
4597
|
name: "project_id";
|
|
4483
4598
|
tableName: "evaluation_suite_config";
|
|
4484
4599
|
dataType: "string";
|
|
@@ -4497,7 +4612,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4497
4612
|
}, {}, {
|
|
4498
4613
|
length: 256;
|
|
4499
4614
|
}>;
|
|
4500
|
-
tenantId:
|
|
4615
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4501
4616
|
name: "tenant_id";
|
|
4502
4617
|
tableName: "evaluation_suite_config";
|
|
4503
4618
|
dataType: "string";
|
|
@@ -4516,7 +4631,7 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4516
4631
|
}, {}, {
|
|
4517
4632
|
length: 256;
|
|
4518
4633
|
}>;
|
|
4519
|
-
id:
|
|
4634
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4520
4635
|
name: "id";
|
|
4521
4636
|
tableName: "evaluation_suite_config";
|
|
4522
4637
|
dataType: "string";
|
|
@@ -4545,11 +4660,11 @@ declare const evaluationSuiteConfig: drizzle_orm_pg_core1458.PgTableWithColumns<
|
|
|
4545
4660
|
*
|
|
4546
4661
|
* Includes: evaluationSuiteConfigId, evaluatorId, and timestamps
|
|
4547
4662
|
*/
|
|
4548
|
-
declare const evaluationSuiteConfigEvaluatorRelations:
|
|
4663
|
+
declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4549
4664
|
name: "evaluation_suite_config_evaluator_relations";
|
|
4550
4665
|
schema: undefined;
|
|
4551
4666
|
columns: {
|
|
4552
|
-
createdAt:
|
|
4667
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4553
4668
|
name: "created_at";
|
|
4554
4669
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4555
4670
|
dataType: "string";
|
|
@@ -4566,7 +4681,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4566
4681
|
identity: undefined;
|
|
4567
4682
|
generated: undefined;
|
|
4568
4683
|
}, {}, {}>;
|
|
4569
|
-
updatedAt:
|
|
4684
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4570
4685
|
name: "updated_at";
|
|
4571
4686
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4572
4687
|
dataType: "string";
|
|
@@ -4583,11 +4698,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4583
4698
|
identity: undefined;
|
|
4584
4699
|
generated: undefined;
|
|
4585
4700
|
}, {}, {}>;
|
|
4586
|
-
evaluationSuiteConfigId:
|
|
4701
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4587
4702
|
name: "evaluation_suite_config_id";
|
|
4588
4703
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4589
4704
|
dataType: "string";
|
|
4590
|
-
columnType: "
|
|
4705
|
+
columnType: "PgVarchar";
|
|
4591
4706
|
data: string;
|
|
4592
4707
|
driverParam: string;
|
|
4593
4708
|
notNull: true;
|
|
@@ -4599,12 +4714,14 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4599
4714
|
baseColumn: never;
|
|
4600
4715
|
identity: undefined;
|
|
4601
4716
|
generated: undefined;
|
|
4602
|
-
}, {}, {
|
|
4603
|
-
|
|
4717
|
+
}, {}, {
|
|
4718
|
+
length: 256;
|
|
4719
|
+
}>;
|
|
4720
|
+
evaluatorId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4604
4721
|
name: "evaluator_id";
|
|
4605
4722
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4606
4723
|
dataType: "string";
|
|
4607
|
-
columnType: "
|
|
4724
|
+
columnType: "PgVarchar";
|
|
4608
4725
|
data: string;
|
|
4609
4726
|
driverParam: string;
|
|
4610
4727
|
notNull: true;
|
|
@@ -4616,8 +4733,10 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4616
4733
|
baseColumn: never;
|
|
4617
4734
|
identity: undefined;
|
|
4618
4735
|
generated: undefined;
|
|
4619
|
-
}, {}, {
|
|
4620
|
-
|
|
4736
|
+
}, {}, {
|
|
4737
|
+
length: 256;
|
|
4738
|
+
}>;
|
|
4739
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4621
4740
|
name: "project_id";
|
|
4622
4741
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4623
4742
|
dataType: "string";
|
|
@@ -4636,7 +4755,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4636
4755
|
}, {}, {
|
|
4637
4756
|
length: 256;
|
|
4638
4757
|
}>;
|
|
4639
|
-
tenantId:
|
|
4758
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4640
4759
|
name: "tenant_id";
|
|
4641
4760
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4642
4761
|
dataType: "string";
|
|
@@ -4655,7 +4774,7 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4655
4774
|
}, {}, {
|
|
4656
4775
|
length: 256;
|
|
4657
4776
|
}>;
|
|
4658
|
-
id:
|
|
4777
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4659
4778
|
name: "id";
|
|
4660
4779
|
tableName: "evaluation_suite_config_evaluator_relations";
|
|
4661
4780
|
dataType: "string";
|
|
@@ -4684,11 +4803,11 @@ declare const evaluationSuiteConfigEvaluatorRelations: drizzle_orm_pg_core1458.P
|
|
|
4684
4803
|
*
|
|
4685
4804
|
* Includes: evaluationRunConfigId, evaluationSuiteConfigId, and timestamps
|
|
4686
4805
|
*/
|
|
4687
|
-
declare const evaluationRunConfigEvaluationSuiteConfigRelations:
|
|
4806
|
+
declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4688
4807
|
name: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4689
4808
|
schema: undefined;
|
|
4690
4809
|
columns: {
|
|
4691
|
-
createdAt:
|
|
4810
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4692
4811
|
name: "created_at";
|
|
4693
4812
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4694
4813
|
dataType: "string";
|
|
@@ -4705,7 +4824,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4705
4824
|
identity: undefined;
|
|
4706
4825
|
generated: undefined;
|
|
4707
4826
|
}, {}, {}>;
|
|
4708
|
-
updatedAt:
|
|
4827
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4709
4828
|
name: "updated_at";
|
|
4710
4829
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4711
4830
|
dataType: "string";
|
|
@@ -4722,11 +4841,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4722
4841
|
identity: undefined;
|
|
4723
4842
|
generated: undefined;
|
|
4724
4843
|
}, {}, {}>;
|
|
4725
|
-
evaluationRunConfigId:
|
|
4844
|
+
evaluationRunConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4726
4845
|
name: "evaluation_run_config_id";
|
|
4727
4846
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4728
4847
|
dataType: "string";
|
|
4729
|
-
columnType: "
|
|
4848
|
+
columnType: "PgVarchar";
|
|
4730
4849
|
data: string;
|
|
4731
4850
|
driverParam: string;
|
|
4732
4851
|
notNull: true;
|
|
@@ -4738,12 +4857,14 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4738
4857
|
baseColumn: never;
|
|
4739
4858
|
identity: undefined;
|
|
4740
4859
|
generated: undefined;
|
|
4741
|
-
}, {}, {
|
|
4742
|
-
|
|
4860
|
+
}, {}, {
|
|
4861
|
+
length: 256;
|
|
4862
|
+
}>;
|
|
4863
|
+
evaluationSuiteConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4743
4864
|
name: "evaluation_suite_config_id";
|
|
4744
4865
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4745
4866
|
dataType: "string";
|
|
4746
|
-
columnType: "
|
|
4867
|
+
columnType: "PgVarchar";
|
|
4747
4868
|
data: string;
|
|
4748
4869
|
driverParam: string;
|
|
4749
4870
|
notNull: true;
|
|
@@ -4755,8 +4876,10 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4755
4876
|
baseColumn: never;
|
|
4756
4877
|
identity: undefined;
|
|
4757
4878
|
generated: undefined;
|
|
4758
|
-
}, {}, {
|
|
4759
|
-
|
|
4879
|
+
}, {}, {
|
|
4880
|
+
length: 256;
|
|
4881
|
+
}>;
|
|
4882
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4760
4883
|
name: "project_id";
|
|
4761
4884
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4762
4885
|
dataType: "string";
|
|
@@ -4775,7 +4898,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4775
4898
|
}, {}, {
|
|
4776
4899
|
length: 256;
|
|
4777
4900
|
}>;
|
|
4778
|
-
tenantId:
|
|
4901
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4779
4902
|
name: "tenant_id";
|
|
4780
4903
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4781
4904
|
dataType: "string";
|
|
@@ -4794,7 +4917,7 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4794
4917
|
}, {}, {
|
|
4795
4918
|
length: 256;
|
|
4796
4919
|
}>;
|
|
4797
|
-
id:
|
|
4920
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4798
4921
|
name: "id";
|
|
4799
4922
|
tableName: "evaluation_run_config_evaluation_suite_config_relations";
|
|
4800
4923
|
dataType: "string";
|
|
@@ -4829,11 +4952,11 @@ declare const evaluationRunConfigEvaluationSuiteConfigRelations: drizzle_orm_pg_
|
|
|
4829
4952
|
*
|
|
4830
4953
|
* one to many relationship with evaluationRun
|
|
4831
4954
|
*/
|
|
4832
|
-
declare const evaluationRunConfig:
|
|
4955
|
+
declare const evaluationRunConfig: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4833
4956
|
name: "evaluation_run_config";
|
|
4834
4957
|
schema: undefined;
|
|
4835
4958
|
columns: {
|
|
4836
|
-
createdAt:
|
|
4959
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4837
4960
|
name: "created_at";
|
|
4838
4961
|
tableName: "evaluation_run_config";
|
|
4839
4962
|
dataType: "string";
|
|
@@ -4850,7 +4973,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4850
4973
|
identity: undefined;
|
|
4851
4974
|
generated: undefined;
|
|
4852
4975
|
}, {}, {}>;
|
|
4853
|
-
updatedAt:
|
|
4976
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
4854
4977
|
name: "updated_at";
|
|
4855
4978
|
tableName: "evaluation_run_config";
|
|
4856
4979
|
dataType: "string";
|
|
@@ -4867,7 +4990,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4867
4990
|
identity: undefined;
|
|
4868
4991
|
generated: undefined;
|
|
4869
4992
|
}, {}, {}>;
|
|
4870
|
-
isActive:
|
|
4993
|
+
isActive: drizzle_orm_pg_core1370.PgColumn<{
|
|
4871
4994
|
name: "is_active";
|
|
4872
4995
|
tableName: "evaluation_run_config";
|
|
4873
4996
|
dataType: "boolean";
|
|
@@ -4884,7 +5007,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4884
5007
|
identity: undefined;
|
|
4885
5008
|
generated: undefined;
|
|
4886
5009
|
}, {}, {}>;
|
|
4887
|
-
name:
|
|
5010
|
+
name: drizzle_orm_pg_core1370.PgColumn<{
|
|
4888
5011
|
name: "name";
|
|
4889
5012
|
tableName: "evaluation_run_config";
|
|
4890
5013
|
dataType: "string";
|
|
@@ -4903,7 +5026,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4903
5026
|
}, {}, {
|
|
4904
5027
|
length: 256;
|
|
4905
5028
|
}>;
|
|
4906
|
-
description:
|
|
5029
|
+
description: drizzle_orm_pg_core1370.PgColumn<{
|
|
4907
5030
|
name: "description";
|
|
4908
5031
|
tableName: "evaluation_run_config";
|
|
4909
5032
|
dataType: "string";
|
|
@@ -4920,7 +5043,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4920
5043
|
identity: undefined;
|
|
4921
5044
|
generated: undefined;
|
|
4922
5045
|
}, {}, {}>;
|
|
4923
|
-
projectId:
|
|
5046
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4924
5047
|
name: "project_id";
|
|
4925
5048
|
tableName: "evaluation_run_config";
|
|
4926
5049
|
dataType: "string";
|
|
@@ -4939,7 +5062,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4939
5062
|
}, {}, {
|
|
4940
5063
|
length: 256;
|
|
4941
5064
|
}>;
|
|
4942
|
-
tenantId:
|
|
5065
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
4943
5066
|
name: "tenant_id";
|
|
4944
5067
|
tableName: "evaluation_run_config";
|
|
4945
5068
|
dataType: "string";
|
|
@@ -4958,7 +5081,7 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4958
5081
|
}, {}, {
|
|
4959
5082
|
length: 256;
|
|
4960
5083
|
}>;
|
|
4961
|
-
id:
|
|
5084
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
4962
5085
|
name: "id";
|
|
4963
5086
|
tableName: "evaluation_run_config";
|
|
4964
5087
|
dataType: "string";
|
|
@@ -4994,11 +5117,11 @@ declare const evaluationRunConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
4994
5117
|
* Includes: jobFilters (specific filters for this job execution: datasetRunIds, conversationIds,
|
|
4995
5118
|
* dateRange with absolute dates), and timestamps
|
|
4996
5119
|
*/
|
|
4997
|
-
declare const evaluationJobConfig:
|
|
5120
|
+
declare const evaluationJobConfig: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
4998
5121
|
name: "evaluation_job_config";
|
|
4999
5122
|
schema: undefined;
|
|
5000
5123
|
columns: {
|
|
5001
|
-
createdAt:
|
|
5124
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5002
5125
|
name: "created_at";
|
|
5003
5126
|
tableName: "evaluation_job_config";
|
|
5004
5127
|
dataType: "string";
|
|
@@ -5015,7 +5138,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5015
5138
|
identity: undefined;
|
|
5016
5139
|
generated: undefined;
|
|
5017
5140
|
}, {}, {}>;
|
|
5018
|
-
updatedAt:
|
|
5141
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5019
5142
|
name: "updated_at";
|
|
5020
5143
|
tableName: "evaluation_job_config";
|
|
5021
5144
|
dataType: "string";
|
|
@@ -5032,7 +5155,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5032
5155
|
identity: undefined;
|
|
5033
5156
|
generated: undefined;
|
|
5034
5157
|
}, {}, {}>;
|
|
5035
|
-
jobFilters:
|
|
5158
|
+
jobFilters: drizzle_orm_pg_core1370.PgColumn<{
|
|
5036
5159
|
name: "job_filters";
|
|
5037
5160
|
tableName: "evaluation_job_config";
|
|
5038
5161
|
dataType: "json";
|
|
@@ -5065,7 +5188,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5065
5188
|
} | undefined;
|
|
5066
5189
|
}>;
|
|
5067
5190
|
}>;
|
|
5068
|
-
projectId:
|
|
5191
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5069
5192
|
name: "project_id";
|
|
5070
5193
|
tableName: "evaluation_job_config";
|
|
5071
5194
|
dataType: "string";
|
|
@@ -5084,7 +5207,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5084
5207
|
}, {}, {
|
|
5085
5208
|
length: 256;
|
|
5086
5209
|
}>;
|
|
5087
|
-
tenantId:
|
|
5210
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5088
5211
|
name: "tenant_id";
|
|
5089
5212
|
tableName: "evaluation_job_config";
|
|
5090
5213
|
dataType: "string";
|
|
@@ -5103,7 +5226,7 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5103
5226
|
}, {}, {
|
|
5104
5227
|
length: 256;
|
|
5105
5228
|
}>;
|
|
5106
|
-
id:
|
|
5229
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
5107
5230
|
name: "id";
|
|
5108
5231
|
tableName: "evaluation_job_config";
|
|
5109
5232
|
dataType: "string";
|
|
@@ -5132,11 +5255,11 @@ declare const evaluationJobConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
|
5132
5255
|
*
|
|
5133
5256
|
* Includes: evaluationJobConfigId, evaluatorId, and timestamps
|
|
5134
5257
|
*/
|
|
5135
|
-
declare const evaluationJobConfigEvaluatorRelations:
|
|
5258
|
+
declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
5136
5259
|
name: "evaluation_job_config_evaluator_relations";
|
|
5137
5260
|
schema: undefined;
|
|
5138
5261
|
columns: {
|
|
5139
|
-
createdAt:
|
|
5262
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5140
5263
|
name: "created_at";
|
|
5141
5264
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5142
5265
|
dataType: "string";
|
|
@@ -5153,7 +5276,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5153
5276
|
identity: undefined;
|
|
5154
5277
|
generated: undefined;
|
|
5155
5278
|
}, {}, {}>;
|
|
5156
|
-
updatedAt:
|
|
5279
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5157
5280
|
name: "updated_at";
|
|
5158
5281
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5159
5282
|
dataType: "string";
|
|
@@ -5170,11 +5293,11 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5170
5293
|
identity: undefined;
|
|
5171
5294
|
generated: undefined;
|
|
5172
5295
|
}, {}, {}>;
|
|
5173
|
-
evaluationJobConfigId:
|
|
5296
|
+
evaluationJobConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5174
5297
|
name: "evaluation_job_config_id";
|
|
5175
5298
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5176
5299
|
dataType: "string";
|
|
5177
|
-
columnType: "
|
|
5300
|
+
columnType: "PgVarchar";
|
|
5178
5301
|
data: string;
|
|
5179
5302
|
driverParam: string;
|
|
5180
5303
|
notNull: true;
|
|
@@ -5186,12 +5309,14 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5186
5309
|
baseColumn: never;
|
|
5187
5310
|
identity: undefined;
|
|
5188
5311
|
generated: undefined;
|
|
5189
|
-
}, {}, {
|
|
5190
|
-
|
|
5312
|
+
}, {}, {
|
|
5313
|
+
length: 256;
|
|
5314
|
+
}>;
|
|
5315
|
+
evaluatorId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5191
5316
|
name: "evaluator_id";
|
|
5192
5317
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5193
5318
|
dataType: "string";
|
|
5194
|
-
columnType: "
|
|
5319
|
+
columnType: "PgVarchar";
|
|
5195
5320
|
data: string;
|
|
5196
5321
|
driverParam: string;
|
|
5197
5322
|
notNull: true;
|
|
@@ -5203,8 +5328,10 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5203
5328
|
baseColumn: never;
|
|
5204
5329
|
identity: undefined;
|
|
5205
5330
|
generated: undefined;
|
|
5206
|
-
}, {}, {
|
|
5207
|
-
|
|
5331
|
+
}, {}, {
|
|
5332
|
+
length: 256;
|
|
5333
|
+
}>;
|
|
5334
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5208
5335
|
name: "project_id";
|
|
5209
5336
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5210
5337
|
dataType: "string";
|
|
@@ -5223,7 +5350,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5223
5350
|
}, {}, {
|
|
5224
5351
|
length: 256;
|
|
5225
5352
|
}>;
|
|
5226
|
-
tenantId:
|
|
5353
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5227
5354
|
name: "tenant_id";
|
|
5228
5355
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5229
5356
|
dataType: "string";
|
|
@@ -5242,7 +5369,7 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5242
5369
|
}, {}, {
|
|
5243
5370
|
length: 256;
|
|
5244
5371
|
}>;
|
|
5245
|
-
id:
|
|
5372
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
5246
5373
|
name: "id";
|
|
5247
5374
|
tableName: "evaluation_job_config_evaluator_relations";
|
|
5248
5375
|
dataType: "string";
|
|
@@ -5264,98 +5391,98 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1458.PgT
|
|
|
5264
5391
|
};
|
|
5265
5392
|
dialect: "pg";
|
|
5266
5393
|
}>;
|
|
5267
|
-
declare const projectsRelations:
|
|
5268
|
-
subAgents:
|
|
5269
|
-
agents:
|
|
5270
|
-
tools:
|
|
5271
|
-
functions:
|
|
5272
|
-
contextConfigs:
|
|
5273
|
-
externalAgents:
|
|
5274
|
-
dataComponents:
|
|
5275
|
-
artifactComponents:
|
|
5276
|
-
credentialReferences:
|
|
5394
|
+
declare const projectsRelations: drizzle_orm20.Relations<"projects", {
|
|
5395
|
+
subAgents: drizzle_orm20.Many<"sub_agents">;
|
|
5396
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
5397
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
5398
|
+
functions: drizzle_orm20.Many<"functions">;
|
|
5399
|
+
contextConfigs: drizzle_orm20.Many<"context_configs">;
|
|
5400
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
5401
|
+
dataComponents: drizzle_orm20.Many<"data_components">;
|
|
5402
|
+
artifactComponents: drizzle_orm20.Many<"artifact_components">;
|
|
5403
|
+
credentialReferences: drizzle_orm20.Many<"credential_references">;
|
|
5277
5404
|
}>;
|
|
5278
|
-
declare const contextConfigsRelations:
|
|
5279
|
-
project:
|
|
5280
|
-
agents:
|
|
5405
|
+
declare const contextConfigsRelations: drizzle_orm20.Relations<"context_configs", {
|
|
5406
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5407
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
5281
5408
|
}>;
|
|
5282
|
-
declare const subAgentsRelations:
|
|
5283
|
-
project:
|
|
5284
|
-
defaultForAgents:
|
|
5285
|
-
sourceRelations:
|
|
5286
|
-
targetRelations:
|
|
5287
|
-
toolRelations:
|
|
5288
|
-
functionToolRelations:
|
|
5289
|
-
dataComponentRelations:
|
|
5290
|
-
artifactComponentRelations:
|
|
5409
|
+
declare const subAgentsRelations: drizzle_orm20.Relations<"sub_agents", {
|
|
5410
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5411
|
+
defaultForAgents: drizzle_orm20.Many<"agent">;
|
|
5412
|
+
sourceRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
5413
|
+
targetRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
5414
|
+
toolRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
5415
|
+
functionToolRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
5416
|
+
dataComponentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
5417
|
+
artifactComponentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
5291
5418
|
}>;
|
|
5292
|
-
declare const agentRelations:
|
|
5293
|
-
project:
|
|
5294
|
-
defaultSubAgent:
|
|
5295
|
-
contextConfig:
|
|
5296
|
-
functionTools:
|
|
5419
|
+
declare const agentRelations: drizzle_orm20.Relations<"agent", {
|
|
5420
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5421
|
+
defaultSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
5422
|
+
contextConfig: drizzle_orm20.One<"context_configs", false>;
|
|
5423
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
5297
5424
|
}>;
|
|
5298
|
-
declare const externalAgentsRelations:
|
|
5299
|
-
project:
|
|
5300
|
-
subAgentExternalAgentRelations:
|
|
5301
|
-
credentialReference:
|
|
5425
|
+
declare const externalAgentsRelations: drizzle_orm20.Relations<"external_agents", {
|
|
5426
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5427
|
+
subAgentExternalAgentRelations: drizzle_orm20.Many<"sub_agent_external_agent_relations">;
|
|
5428
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
5302
5429
|
}>;
|
|
5303
|
-
declare const agentToolRelationsRelations:
|
|
5304
|
-
subAgent:
|
|
5305
|
-
tool:
|
|
5430
|
+
declare const agentToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_tool_relations", {
|
|
5431
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5432
|
+
tool: drizzle_orm20.One<"tools", true>;
|
|
5306
5433
|
}>;
|
|
5307
|
-
declare const credentialReferencesRelations:
|
|
5308
|
-
project:
|
|
5309
|
-
tools:
|
|
5310
|
-
externalAgents:
|
|
5434
|
+
declare const credentialReferencesRelations: drizzle_orm20.Relations<"credential_references", {
|
|
5435
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5436
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
5437
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
5311
5438
|
}>;
|
|
5312
|
-
declare const toolsRelations:
|
|
5313
|
-
project:
|
|
5314
|
-
subAgentRelations:
|
|
5315
|
-
credentialReference:
|
|
5439
|
+
declare const toolsRelations: drizzle_orm20.Relations<"tools", {
|
|
5440
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5441
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
5442
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
5316
5443
|
}>;
|
|
5317
|
-
declare const artifactComponentsRelations:
|
|
5318
|
-
project:
|
|
5319
|
-
subAgentRelations:
|
|
5444
|
+
declare const artifactComponentsRelations: drizzle_orm20.Relations<"artifact_components", {
|
|
5445
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5446
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
5320
5447
|
}>;
|
|
5321
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5322
|
-
subAgent:
|
|
5323
|
-
artifactComponent:
|
|
5448
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm20.Relations<"sub_agent_artifact_components", {
|
|
5449
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5450
|
+
artifactComponent: drizzle_orm20.One<"artifact_components", true>;
|
|
5324
5451
|
}>;
|
|
5325
|
-
declare const dataComponentsRelations:
|
|
5326
|
-
project:
|
|
5327
|
-
subAgentRelations:
|
|
5452
|
+
declare const dataComponentsRelations: drizzle_orm20.Relations<"data_components", {
|
|
5453
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5454
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
5328
5455
|
}>;
|
|
5329
|
-
declare const subAgentDataComponentsRelations:
|
|
5330
|
-
subAgent:
|
|
5331
|
-
dataComponent:
|
|
5456
|
+
declare const subAgentDataComponentsRelations: drizzle_orm20.Relations<"sub_agent_data_components", {
|
|
5457
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5458
|
+
dataComponent: drizzle_orm20.One<"data_components", true>;
|
|
5332
5459
|
}>;
|
|
5333
|
-
declare const functionsRelations:
|
|
5334
|
-
functionTools:
|
|
5335
|
-
project:
|
|
5460
|
+
declare const functionsRelations: drizzle_orm20.Relations<"functions", {
|
|
5461
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
5462
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5336
5463
|
}>;
|
|
5337
|
-
declare const subAgentRelationsRelations:
|
|
5338
|
-
agent:
|
|
5339
|
-
sourceSubAgent:
|
|
5340
|
-
targetSubAgent:
|
|
5464
|
+
declare const subAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_relations", {
|
|
5465
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
5466
|
+
sourceSubAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5467
|
+
targetSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
5341
5468
|
}>;
|
|
5342
|
-
declare const functionToolsRelations:
|
|
5343
|
-
project:
|
|
5344
|
-
agent:
|
|
5345
|
-
function:
|
|
5346
|
-
subAgentRelations:
|
|
5469
|
+
declare const functionToolsRelations: drizzle_orm20.Relations<"function_tools", {
|
|
5470
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
5471
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
5472
|
+
function: drizzle_orm20.One<"functions", true>;
|
|
5473
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
5347
5474
|
}>;
|
|
5348
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5349
|
-
subAgent:
|
|
5350
|
-
functionTool:
|
|
5475
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_function_tool_relations", {
|
|
5476
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5477
|
+
functionTool: drizzle_orm20.One<"function_tools", true>;
|
|
5351
5478
|
}>;
|
|
5352
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5353
|
-
subAgent:
|
|
5354
|
-
externalAgent:
|
|
5479
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_external_agent_relations", {
|
|
5480
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5481
|
+
externalAgent: drizzle_orm20.One<"external_agents", true>;
|
|
5355
5482
|
}>;
|
|
5356
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5357
|
-
subAgent:
|
|
5358
|
-
targetAgent:
|
|
5483
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_team_agent_relations", {
|
|
5484
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
5485
|
+
targetAgent: drizzle_orm20.One<"agent", true>;
|
|
5359
5486
|
}>;
|
|
5360
5487
|
/**
|
|
5361
5488
|
* Links agents to dataset run configs. Many-to-many relationship that
|
|
@@ -5364,11 +5491,11 @@ declare const subAgentTeamAgentRelationsRelations: drizzle_orm37.Relations<"sub_
|
|
|
5364
5491
|
*
|
|
5365
5492
|
* Includes: datasetRunConfigId, agentId, and timestamps
|
|
5366
5493
|
*/
|
|
5367
|
-
declare const datasetRunConfigAgentRelations:
|
|
5494
|
+
declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1370.PgTableWithColumns<{
|
|
5368
5495
|
name: "dataset_run_config_agent_relations";
|
|
5369
5496
|
schema: undefined;
|
|
5370
5497
|
columns: {
|
|
5371
|
-
createdAt:
|
|
5498
|
+
createdAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5372
5499
|
name: "created_at";
|
|
5373
5500
|
tableName: "dataset_run_config_agent_relations";
|
|
5374
5501
|
dataType: "string";
|
|
@@ -5385,7 +5512,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5385
5512
|
identity: undefined;
|
|
5386
5513
|
generated: undefined;
|
|
5387
5514
|
}, {}, {}>;
|
|
5388
|
-
updatedAt:
|
|
5515
|
+
updatedAt: drizzle_orm_pg_core1370.PgColumn<{
|
|
5389
5516
|
name: "updated_at";
|
|
5390
5517
|
tableName: "dataset_run_config_agent_relations";
|
|
5391
5518
|
dataType: "string";
|
|
@@ -5402,11 +5529,11 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5402
5529
|
identity: undefined;
|
|
5403
5530
|
generated: undefined;
|
|
5404
5531
|
}, {}, {}>;
|
|
5405
|
-
datasetRunConfigId:
|
|
5532
|
+
datasetRunConfigId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5406
5533
|
name: "dataset_run_config_id";
|
|
5407
5534
|
tableName: "dataset_run_config_agent_relations";
|
|
5408
5535
|
dataType: "string";
|
|
5409
|
-
columnType: "
|
|
5536
|
+
columnType: "PgVarchar";
|
|
5410
5537
|
data: string;
|
|
5411
5538
|
driverParam: string;
|
|
5412
5539
|
notNull: true;
|
|
@@ -5418,12 +5545,14 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5418
5545
|
baseColumn: never;
|
|
5419
5546
|
identity: undefined;
|
|
5420
5547
|
generated: undefined;
|
|
5421
|
-
}, {}, {
|
|
5422
|
-
|
|
5548
|
+
}, {}, {
|
|
5549
|
+
length: 256;
|
|
5550
|
+
}>;
|
|
5551
|
+
agentId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5423
5552
|
name: "agent_id";
|
|
5424
5553
|
tableName: "dataset_run_config_agent_relations";
|
|
5425
5554
|
dataType: "string";
|
|
5426
|
-
columnType: "
|
|
5555
|
+
columnType: "PgVarchar";
|
|
5427
5556
|
data: string;
|
|
5428
5557
|
driverParam: string;
|
|
5429
5558
|
notNull: true;
|
|
@@ -5435,8 +5564,10 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5435
5564
|
baseColumn: never;
|
|
5436
5565
|
identity: undefined;
|
|
5437
5566
|
generated: undefined;
|
|
5438
|
-
}, {}, {
|
|
5439
|
-
|
|
5567
|
+
}, {}, {
|
|
5568
|
+
length: 256;
|
|
5569
|
+
}>;
|
|
5570
|
+
projectId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5440
5571
|
name: "project_id";
|
|
5441
5572
|
tableName: "dataset_run_config_agent_relations";
|
|
5442
5573
|
dataType: "string";
|
|
@@ -5455,7 +5586,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5455
5586
|
}, {}, {
|
|
5456
5587
|
length: 256;
|
|
5457
5588
|
}>;
|
|
5458
|
-
tenantId:
|
|
5589
|
+
tenantId: drizzle_orm_pg_core1370.PgColumn<{
|
|
5459
5590
|
name: "tenant_id";
|
|
5460
5591
|
tableName: "dataset_run_config_agent_relations";
|
|
5461
5592
|
dataType: "string";
|
|
@@ -5474,7 +5605,7 @@ declare const datasetRunConfigAgentRelations: drizzle_orm_pg_core1458.PgTableWit
|
|
|
5474
5605
|
}, {}, {
|
|
5475
5606
|
length: 256;
|
|
5476
5607
|
}>;
|
|
5477
|
-
id:
|
|
5608
|
+
id: drizzle_orm_pg_core1370.PgColumn<{
|
|
5478
5609
|
name: "id";
|
|
5479
5610
|
tableName: "dataset_run_config_agent_relations";
|
|
5480
5611
|
dataType: "string";
|