@inkeep/agents-core 0.40.0 → 0.41.1
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/_virtual/rolldown_runtime.js +2 -2
- package/dist/auth/auth-schema.d.ts +104 -104
- package/dist/auth/auth-validation-schemas.d.ts +146 -146
- package/dist/auth/auth.d.ts +67 -58
- package/dist/auth/permissions.d.ts +15 -14
- package/dist/auth/permissions.js +2 -1
- package/dist/client-exports.d.ts +14 -1
- package/dist/constants/otel-attributes.d.ts +1 -3
- package/dist/constants/otel-attributes.js +2 -4
- package/dist/constants/signoz-queries.d.ts +0 -1
- package/dist/constants/signoz-queries.js +0 -1
- package/dist/credential-stores/index.d.ts +2 -1
- package/dist/credential-stores/index.js +2 -1
- package/dist/data-access/agents.d.ts +21 -21
- package/dist/data-access/apiKeys.d.ts +16 -16
- package/dist/data-access/artifactComponents.d.ts +30 -10
- package/dist/data-access/artifactComponents.js +22 -1
- package/dist/data-access/contextConfigs.d.ts +12 -12
- package/dist/data-access/conversations.d.ts +16 -16
- package/dist/data-access/dataComponents.d.ts +4 -4
- package/dist/data-access/functionTools.d.ts +8 -8
- package/dist/data-access/messages.d.ts +12 -12
- package/dist/data-access/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/subAgentRelations.d.ts +28 -28
- package/dist/data-access/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/subAgents.d.ts +15 -15
- package/dist/data-access/tasks.d.ts +4 -4
- package/dist/data-access/tools.d.ts +33 -33
- package/dist/db/schema.d.ts +429 -404
- package/dist/db/schema.js +3 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/dist/utils/logger.js +19 -3
- package/dist/utils/mcp-client.js +19 -5
- package/dist/utils/model-factory.js +13 -1
- package/dist/utils/schema-conversion.d.ts +1 -1
- package/dist/utils/schema-conversion.js +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1738 -1338
- package/drizzle/0007_slim_karma.sql +1 -0
- package/drizzle/meta/0007_snapshot.json +3772 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +10 -9
package/dist/db/schema.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { account, deviceCode, invitation, member, organization, session, ssoProvider, user, verification } from "../auth/auth-schema.js";
|
|
2
2
|
import { Part } from "../types/a2a.js";
|
|
3
3
|
import { ContextFetchDefinition, ConversationHistoryConfig, ConversationMetadata, MessageContent, MessageMetadata, TaskMetadataConfig, ToolMcpConfig, ToolServerCapabilities } from "../types/utility.js";
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
4
|
+
import * as drizzle_orm0 from "drizzle-orm";
|
|
5
|
+
import * as drizzle_orm_pg_core0 from "drizzle-orm/pg-core";
|
|
6
6
|
|
|
7
7
|
//#region src/db/schema.d.ts
|
|
8
8
|
declare namespace schema_d_exports {
|
|
9
9
|
export { account, agentRelations, agentToolRelationsRelations, agents, apiKeys, apiKeysRelations, artifactComponents, artifactComponentsRelations, contextCache, contextCacheRelations, contextConfigs, contextConfigsRelations, conversations, conversationsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, deviceCode, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projects, projectsRelations, session, ssoProvider, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, taskRelations, taskRelationsRelations, tasks, tasksRelations, tools, toolsRelations, user, verification };
|
|
10
10
|
}
|
|
11
|
-
declare const projects:
|
|
11
|
+
declare const projects: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
12
12
|
name: "projects";
|
|
13
13
|
schema: undefined;
|
|
14
14
|
columns: {
|
|
15
|
-
createdAt:
|
|
15
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
16
16
|
name: "created_at";
|
|
17
17
|
tableName: "projects";
|
|
18
18
|
dataType: "string";
|
|
@@ -29,7 +29,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
29
29
|
identity: undefined;
|
|
30
30
|
generated: undefined;
|
|
31
31
|
}, {}, {}>;
|
|
32
|
-
updatedAt:
|
|
32
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
33
33
|
name: "updated_at";
|
|
34
34
|
tableName: "projects";
|
|
35
35
|
dataType: "string";
|
|
@@ -46,7 +46,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
46
46
|
identity: undefined;
|
|
47
47
|
generated: undefined;
|
|
48
48
|
}, {}, {}>;
|
|
49
|
-
models:
|
|
49
|
+
models: drizzle_orm_pg_core0.PgColumn<{
|
|
50
50
|
name: "models";
|
|
51
51
|
tableName: "projects";
|
|
52
52
|
dataType: "json";
|
|
@@ -91,7 +91,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
91
91
|
} | undefined;
|
|
92
92
|
};
|
|
93
93
|
}>;
|
|
94
|
-
stopWhen:
|
|
94
|
+
stopWhen: drizzle_orm_pg_core0.PgColumn<{
|
|
95
95
|
name: "stop_when";
|
|
96
96
|
tableName: "projects";
|
|
97
97
|
dataType: "json";
|
|
@@ -116,7 +116,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
116
116
|
stepCountIs?: number | undefined;
|
|
117
117
|
};
|
|
118
118
|
}>;
|
|
119
|
-
name:
|
|
119
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
120
120
|
name: "name";
|
|
121
121
|
tableName: "projects";
|
|
122
122
|
dataType: "string";
|
|
@@ -135,7 +135,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
135
135
|
}, {}, {
|
|
136
136
|
length: 256;
|
|
137
137
|
}>;
|
|
138
|
-
description:
|
|
138
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
139
139
|
name: "description";
|
|
140
140
|
tableName: "projects";
|
|
141
141
|
dataType: "string";
|
|
@@ -152,7 +152,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
152
152
|
identity: undefined;
|
|
153
153
|
generated: undefined;
|
|
154
154
|
}, {}, {}>;
|
|
155
|
-
tenantId:
|
|
155
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
156
156
|
name: "tenant_id";
|
|
157
157
|
tableName: "projects";
|
|
158
158
|
dataType: "string";
|
|
@@ -171,7 +171,7 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
171
171
|
}, {}, {
|
|
172
172
|
length: 256;
|
|
173
173
|
}>;
|
|
174
|
-
id:
|
|
174
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
175
175
|
name: "id";
|
|
176
176
|
tableName: "projects";
|
|
177
177
|
dataType: "string";
|
|
@@ -193,11 +193,11 @@ declare const projects: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
193
193
|
};
|
|
194
194
|
dialect: "pg";
|
|
195
195
|
}>;
|
|
196
|
-
declare const agents:
|
|
196
|
+
declare const agents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
197
197
|
name: "agent";
|
|
198
198
|
schema: undefined;
|
|
199
199
|
columns: {
|
|
200
|
-
createdAt:
|
|
200
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
201
201
|
name: "created_at";
|
|
202
202
|
tableName: "agent";
|
|
203
203
|
dataType: "string";
|
|
@@ -214,7 +214,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
214
214
|
identity: undefined;
|
|
215
215
|
generated: undefined;
|
|
216
216
|
}, {}, {}>;
|
|
217
|
-
updatedAt:
|
|
217
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
218
218
|
name: "updated_at";
|
|
219
219
|
tableName: "agent";
|
|
220
220
|
dataType: "string";
|
|
@@ -231,7 +231,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
231
231
|
identity: undefined;
|
|
232
232
|
generated: undefined;
|
|
233
233
|
}, {}, {}>;
|
|
234
|
-
name:
|
|
234
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
235
235
|
name: "name";
|
|
236
236
|
tableName: "agent";
|
|
237
237
|
dataType: "string";
|
|
@@ -250,7 +250,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
250
250
|
}, {}, {
|
|
251
251
|
length: 256;
|
|
252
252
|
}>;
|
|
253
|
-
description:
|
|
253
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
254
254
|
name: "description";
|
|
255
255
|
tableName: "agent";
|
|
256
256
|
dataType: "string";
|
|
@@ -267,7 +267,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
267
267
|
identity: undefined;
|
|
268
268
|
generated: undefined;
|
|
269
269
|
}, {}, {}>;
|
|
270
|
-
defaultSubAgentId:
|
|
270
|
+
defaultSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
271
271
|
name: "default_sub_agent_id";
|
|
272
272
|
tableName: "agent";
|
|
273
273
|
dataType: "string";
|
|
@@ -286,7 +286,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
286
286
|
}, {}, {
|
|
287
287
|
length: 256;
|
|
288
288
|
}>;
|
|
289
|
-
contextConfigId:
|
|
289
|
+
contextConfigId: drizzle_orm_pg_core0.PgColumn<{
|
|
290
290
|
name: "context_config_id";
|
|
291
291
|
tableName: "agent";
|
|
292
292
|
dataType: "string";
|
|
@@ -305,7 +305,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
305
305
|
}, {}, {
|
|
306
306
|
length: 256;
|
|
307
307
|
}>;
|
|
308
|
-
models:
|
|
308
|
+
models: drizzle_orm_pg_core0.PgColumn<{
|
|
309
309
|
name: "models";
|
|
310
310
|
tableName: "agent";
|
|
311
311
|
dataType: "json";
|
|
@@ -350,7 +350,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
350
350
|
} | undefined;
|
|
351
351
|
};
|
|
352
352
|
}>;
|
|
353
|
-
statusUpdates:
|
|
353
|
+
statusUpdates: drizzle_orm_pg_core0.PgColumn<{
|
|
354
354
|
name: "status_updates";
|
|
355
355
|
tableName: "agent";
|
|
356
356
|
dataType: "json";
|
|
@@ -397,7 +397,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
397
397
|
}[] | undefined;
|
|
398
398
|
};
|
|
399
399
|
}>;
|
|
400
|
-
prompt:
|
|
400
|
+
prompt: drizzle_orm_pg_core0.PgColumn<{
|
|
401
401
|
name: "prompt";
|
|
402
402
|
tableName: "agent";
|
|
403
403
|
dataType: "string";
|
|
@@ -414,7 +414,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
414
414
|
identity: undefined;
|
|
415
415
|
generated: undefined;
|
|
416
416
|
}, {}, {}>;
|
|
417
|
-
stopWhen:
|
|
417
|
+
stopWhen: drizzle_orm_pg_core0.PgColumn<{
|
|
418
418
|
name: "stop_when";
|
|
419
419
|
tableName: "agent";
|
|
420
420
|
dataType: "json";
|
|
@@ -437,7 +437,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
437
437
|
transferCountIs?: number | undefined;
|
|
438
438
|
};
|
|
439
439
|
}>;
|
|
440
|
-
projectId:
|
|
440
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
441
441
|
name: "project_id";
|
|
442
442
|
tableName: "agent";
|
|
443
443
|
dataType: "string";
|
|
@@ -456,7 +456,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
456
456
|
}, {}, {
|
|
457
457
|
length: 256;
|
|
458
458
|
}>;
|
|
459
|
-
tenantId:
|
|
459
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
460
460
|
name: "tenant_id";
|
|
461
461
|
tableName: "agent";
|
|
462
462
|
dataType: "string";
|
|
@@ -475,7 +475,7 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
475
475
|
}, {}, {
|
|
476
476
|
length: 256;
|
|
477
477
|
}>;
|
|
478
|
-
id:
|
|
478
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
479
479
|
name: "id";
|
|
480
480
|
tableName: "agent";
|
|
481
481
|
dataType: "string";
|
|
@@ -497,11 +497,11 @@ declare const agents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
497
497
|
};
|
|
498
498
|
dialect: "pg";
|
|
499
499
|
}>;
|
|
500
|
-
declare const contextConfigs:
|
|
500
|
+
declare const contextConfigs: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
501
501
|
name: "context_configs";
|
|
502
502
|
schema: undefined;
|
|
503
503
|
columns: {
|
|
504
|
-
createdAt:
|
|
504
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
505
505
|
name: "created_at";
|
|
506
506
|
tableName: "context_configs";
|
|
507
507
|
dataType: "string";
|
|
@@ -518,7 +518,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
518
518
|
identity: undefined;
|
|
519
519
|
generated: undefined;
|
|
520
520
|
}, {}, {}>;
|
|
521
|
-
updatedAt:
|
|
521
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
522
522
|
name: "updated_at";
|
|
523
523
|
tableName: "context_configs";
|
|
524
524
|
dataType: "string";
|
|
@@ -535,7 +535,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
535
535
|
identity: undefined;
|
|
536
536
|
generated: undefined;
|
|
537
537
|
}, {}, {}>;
|
|
538
|
-
headersSchema:
|
|
538
|
+
headersSchema: drizzle_orm_pg_core0.PgColumn<{
|
|
539
539
|
name: "headers_schema";
|
|
540
540
|
tableName: "context_configs";
|
|
541
541
|
dataType: "json";
|
|
@@ -554,7 +554,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
554
554
|
}, {}, {
|
|
555
555
|
$type: unknown;
|
|
556
556
|
}>;
|
|
557
|
-
contextVariables:
|
|
557
|
+
contextVariables: drizzle_orm_pg_core0.PgColumn<{
|
|
558
558
|
name: "context_variables";
|
|
559
559
|
tableName: "context_configs";
|
|
560
560
|
dataType: "json";
|
|
@@ -573,7 +573,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
573
573
|
}, {}, {
|
|
574
574
|
$type: Record<string, ContextFetchDefinition>;
|
|
575
575
|
}>;
|
|
576
|
-
agentId:
|
|
576
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
577
577
|
name: "agent_id";
|
|
578
578
|
tableName: "context_configs";
|
|
579
579
|
dataType: "string";
|
|
@@ -592,7 +592,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
592
592
|
}, {}, {
|
|
593
593
|
length: 256;
|
|
594
594
|
}>;
|
|
595
|
-
projectId:
|
|
595
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
596
596
|
name: "project_id";
|
|
597
597
|
tableName: "context_configs";
|
|
598
598
|
dataType: "string";
|
|
@@ -611,7 +611,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
611
611
|
}, {}, {
|
|
612
612
|
length: 256;
|
|
613
613
|
}>;
|
|
614
|
-
tenantId:
|
|
614
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
615
615
|
name: "tenant_id";
|
|
616
616
|
tableName: "context_configs";
|
|
617
617
|
dataType: "string";
|
|
@@ -630,7 +630,7 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
630
630
|
}, {}, {
|
|
631
631
|
length: 256;
|
|
632
632
|
}>;
|
|
633
|
-
id:
|
|
633
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
634
634
|
name: "id";
|
|
635
635
|
tableName: "context_configs";
|
|
636
636
|
dataType: "string";
|
|
@@ -652,11 +652,11 @@ declare const contextConfigs: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
652
652
|
};
|
|
653
653
|
dialect: "pg";
|
|
654
654
|
}>;
|
|
655
|
-
declare const contextCache:
|
|
655
|
+
declare const contextCache: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
656
656
|
name: "context_cache";
|
|
657
657
|
schema: undefined;
|
|
658
658
|
columns: {
|
|
659
|
-
createdAt:
|
|
659
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
660
660
|
name: "created_at";
|
|
661
661
|
tableName: "context_cache";
|
|
662
662
|
dataType: "string";
|
|
@@ -673,7 +673,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
673
673
|
identity: undefined;
|
|
674
674
|
generated: undefined;
|
|
675
675
|
}, {}, {}>;
|
|
676
|
-
updatedAt:
|
|
676
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
677
677
|
name: "updated_at";
|
|
678
678
|
tableName: "context_cache";
|
|
679
679
|
dataType: "string";
|
|
@@ -690,7 +690,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
690
690
|
identity: undefined;
|
|
691
691
|
generated: undefined;
|
|
692
692
|
}, {}, {}>;
|
|
693
|
-
conversationId:
|
|
693
|
+
conversationId: drizzle_orm_pg_core0.PgColumn<{
|
|
694
694
|
name: "conversation_id";
|
|
695
695
|
tableName: "context_cache";
|
|
696
696
|
dataType: "string";
|
|
@@ -709,7 +709,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
709
709
|
}, {}, {
|
|
710
710
|
length: 256;
|
|
711
711
|
}>;
|
|
712
|
-
contextConfigId:
|
|
712
|
+
contextConfigId: drizzle_orm_pg_core0.PgColumn<{
|
|
713
713
|
name: "context_config_id";
|
|
714
714
|
tableName: "context_cache";
|
|
715
715
|
dataType: "string";
|
|
@@ -728,7 +728,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
728
728
|
}, {}, {
|
|
729
729
|
length: 256;
|
|
730
730
|
}>;
|
|
731
|
-
contextVariableKey:
|
|
731
|
+
contextVariableKey: drizzle_orm_pg_core0.PgColumn<{
|
|
732
732
|
name: "context_variable_key";
|
|
733
733
|
tableName: "context_cache";
|
|
734
734
|
dataType: "string";
|
|
@@ -747,7 +747,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
747
747
|
}, {}, {
|
|
748
748
|
length: 256;
|
|
749
749
|
}>;
|
|
750
|
-
value:
|
|
750
|
+
value: drizzle_orm_pg_core0.PgColumn<{
|
|
751
751
|
name: "value";
|
|
752
752
|
tableName: "context_cache";
|
|
753
753
|
dataType: "json";
|
|
@@ -766,7 +766,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
766
766
|
}, {}, {
|
|
767
767
|
$type: unknown;
|
|
768
768
|
}>;
|
|
769
|
-
requestHash:
|
|
769
|
+
requestHash: drizzle_orm_pg_core0.PgColumn<{
|
|
770
770
|
name: "request_hash";
|
|
771
771
|
tableName: "context_cache";
|
|
772
772
|
dataType: "string";
|
|
@@ -785,7 +785,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
785
785
|
}, {}, {
|
|
786
786
|
length: 256;
|
|
787
787
|
}>;
|
|
788
|
-
fetchedAt:
|
|
788
|
+
fetchedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
789
789
|
name: "fetched_at";
|
|
790
790
|
tableName: "context_cache";
|
|
791
791
|
dataType: "string";
|
|
@@ -802,7 +802,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
802
802
|
identity: undefined;
|
|
803
803
|
generated: undefined;
|
|
804
804
|
}, {}, {}>;
|
|
805
|
-
fetchSource:
|
|
805
|
+
fetchSource: drizzle_orm_pg_core0.PgColumn<{
|
|
806
806
|
name: "fetch_source";
|
|
807
807
|
tableName: "context_cache";
|
|
808
808
|
dataType: "string";
|
|
@@ -821,7 +821,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
821
821
|
}, {}, {
|
|
822
822
|
length: 256;
|
|
823
823
|
}>;
|
|
824
|
-
fetchDurationMs:
|
|
824
|
+
fetchDurationMs: drizzle_orm_pg_core0.PgColumn<{
|
|
825
825
|
name: "fetch_duration_ms";
|
|
826
826
|
tableName: "context_cache";
|
|
827
827
|
dataType: "number";
|
|
@@ -838,7 +838,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
838
838
|
identity: undefined;
|
|
839
839
|
generated: undefined;
|
|
840
840
|
}, {}, {}>;
|
|
841
|
-
projectId:
|
|
841
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
842
842
|
name: "project_id";
|
|
843
843
|
tableName: "context_cache";
|
|
844
844
|
dataType: "string";
|
|
@@ -857,7 +857,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
857
857
|
}, {}, {
|
|
858
858
|
length: 256;
|
|
859
859
|
}>;
|
|
860
|
-
tenantId:
|
|
860
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
861
861
|
name: "tenant_id";
|
|
862
862
|
tableName: "context_cache";
|
|
863
863
|
dataType: "string";
|
|
@@ -876,7 +876,7 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
876
876
|
}, {}, {
|
|
877
877
|
length: 256;
|
|
878
878
|
}>;
|
|
879
|
-
id:
|
|
879
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
880
880
|
name: "id";
|
|
881
881
|
tableName: "context_cache";
|
|
882
882
|
dataType: "string";
|
|
@@ -898,11 +898,11 @@ declare const contextCache: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
898
898
|
};
|
|
899
899
|
dialect: "pg";
|
|
900
900
|
}>;
|
|
901
|
-
declare const subAgents:
|
|
901
|
+
declare const subAgents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
902
902
|
name: "sub_agents";
|
|
903
903
|
schema: undefined;
|
|
904
904
|
columns: {
|
|
905
|
-
createdAt:
|
|
905
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
906
906
|
name: "created_at";
|
|
907
907
|
tableName: "sub_agents";
|
|
908
908
|
dataType: "string";
|
|
@@ -919,7 +919,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
919
919
|
identity: undefined;
|
|
920
920
|
generated: undefined;
|
|
921
921
|
}, {}, {}>;
|
|
922
|
-
updatedAt:
|
|
922
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
923
923
|
name: "updated_at";
|
|
924
924
|
tableName: "sub_agents";
|
|
925
925
|
dataType: "string";
|
|
@@ -936,7 +936,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
936
936
|
identity: undefined;
|
|
937
937
|
generated: undefined;
|
|
938
938
|
}, {}, {}>;
|
|
939
|
-
prompt:
|
|
939
|
+
prompt: drizzle_orm_pg_core0.PgColumn<{
|
|
940
940
|
name: "prompt";
|
|
941
941
|
tableName: "sub_agents";
|
|
942
942
|
dataType: "string";
|
|
@@ -953,7 +953,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
953
953
|
identity: undefined;
|
|
954
954
|
generated: undefined;
|
|
955
955
|
}, {}, {}>;
|
|
956
|
-
conversationHistoryConfig:
|
|
956
|
+
conversationHistoryConfig: drizzle_orm_pg_core0.PgColumn<{
|
|
957
957
|
name: "conversation_history_config";
|
|
958
958
|
tableName: "sub_agents";
|
|
959
959
|
dataType: "json";
|
|
@@ -972,7 +972,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
972
972
|
}, {}, {
|
|
973
973
|
$type: ConversationHistoryConfig;
|
|
974
974
|
}>;
|
|
975
|
-
models:
|
|
975
|
+
models: drizzle_orm_pg_core0.PgColumn<{
|
|
976
976
|
name: "models";
|
|
977
977
|
tableName: "sub_agents";
|
|
978
978
|
dataType: "json";
|
|
@@ -1017,7 +1017,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1017
1017
|
} | undefined;
|
|
1018
1018
|
};
|
|
1019
1019
|
}>;
|
|
1020
|
-
stopWhen:
|
|
1020
|
+
stopWhen: drizzle_orm_pg_core0.PgColumn<{
|
|
1021
1021
|
name: "stop_when";
|
|
1022
1022
|
tableName: "sub_agents";
|
|
1023
1023
|
dataType: "json";
|
|
@@ -1040,7 +1040,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1040
1040
|
stepCountIs?: number | undefined;
|
|
1041
1041
|
};
|
|
1042
1042
|
}>;
|
|
1043
|
-
name:
|
|
1043
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
1044
1044
|
name: "name";
|
|
1045
1045
|
tableName: "sub_agents";
|
|
1046
1046
|
dataType: "string";
|
|
@@ -1059,7 +1059,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1059
1059
|
}, {}, {
|
|
1060
1060
|
length: 256;
|
|
1061
1061
|
}>;
|
|
1062
|
-
description:
|
|
1062
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
1063
1063
|
name: "description";
|
|
1064
1064
|
tableName: "sub_agents";
|
|
1065
1065
|
dataType: "string";
|
|
@@ -1076,7 +1076,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1076
1076
|
identity: undefined;
|
|
1077
1077
|
generated: undefined;
|
|
1078
1078
|
}, {}, {}>;
|
|
1079
|
-
agentId:
|
|
1079
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1080
1080
|
name: "agent_id";
|
|
1081
1081
|
tableName: "sub_agents";
|
|
1082
1082
|
dataType: "string";
|
|
@@ -1095,7 +1095,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1095
1095
|
}, {}, {
|
|
1096
1096
|
length: 256;
|
|
1097
1097
|
}>;
|
|
1098
|
-
projectId:
|
|
1098
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1099
1099
|
name: "project_id";
|
|
1100
1100
|
tableName: "sub_agents";
|
|
1101
1101
|
dataType: "string";
|
|
@@ -1114,7 +1114,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1114
1114
|
}, {}, {
|
|
1115
1115
|
length: 256;
|
|
1116
1116
|
}>;
|
|
1117
|
-
tenantId:
|
|
1117
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1118
1118
|
name: "tenant_id";
|
|
1119
1119
|
tableName: "sub_agents";
|
|
1120
1120
|
dataType: "string";
|
|
@@ -1133,7 +1133,7 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1133
1133
|
}, {}, {
|
|
1134
1134
|
length: 256;
|
|
1135
1135
|
}>;
|
|
1136
|
-
id:
|
|
1136
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
1137
1137
|
name: "id";
|
|
1138
1138
|
tableName: "sub_agents";
|
|
1139
1139
|
dataType: "string";
|
|
@@ -1155,11 +1155,11 @@ declare const subAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1155
1155
|
};
|
|
1156
1156
|
dialect: "pg";
|
|
1157
1157
|
}>;
|
|
1158
|
-
declare const subAgentRelations:
|
|
1158
|
+
declare const subAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
1159
1159
|
name: "sub_agent_relations";
|
|
1160
1160
|
schema: undefined;
|
|
1161
1161
|
columns: {
|
|
1162
|
-
createdAt:
|
|
1162
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1163
1163
|
name: "created_at";
|
|
1164
1164
|
tableName: "sub_agent_relations";
|
|
1165
1165
|
dataType: "string";
|
|
@@ -1176,7 +1176,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1176
1176
|
identity: undefined;
|
|
1177
1177
|
generated: undefined;
|
|
1178
1178
|
}, {}, {}>;
|
|
1179
|
-
updatedAt:
|
|
1179
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1180
1180
|
name: "updated_at";
|
|
1181
1181
|
tableName: "sub_agent_relations";
|
|
1182
1182
|
dataType: "string";
|
|
@@ -1193,7 +1193,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1193
1193
|
identity: undefined;
|
|
1194
1194
|
generated: undefined;
|
|
1195
1195
|
}, {}, {}>;
|
|
1196
|
-
sourceSubAgentId:
|
|
1196
|
+
sourceSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1197
1197
|
name: "source_sub_agent_id";
|
|
1198
1198
|
tableName: "sub_agent_relations";
|
|
1199
1199
|
dataType: "string";
|
|
@@ -1212,7 +1212,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1212
1212
|
}, {}, {
|
|
1213
1213
|
length: 256;
|
|
1214
1214
|
}>;
|
|
1215
|
-
targetSubAgentId:
|
|
1215
|
+
targetSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1216
1216
|
name: "target_sub_agent_id";
|
|
1217
1217
|
tableName: "sub_agent_relations";
|
|
1218
1218
|
dataType: "string";
|
|
@@ -1231,7 +1231,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1231
1231
|
}, {}, {
|
|
1232
1232
|
length: 256;
|
|
1233
1233
|
}>;
|
|
1234
|
-
relationType:
|
|
1234
|
+
relationType: drizzle_orm_pg_core0.PgColumn<{
|
|
1235
1235
|
name: "relation_type";
|
|
1236
1236
|
tableName: "sub_agent_relations";
|
|
1237
1237
|
dataType: "string";
|
|
@@ -1250,7 +1250,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1250
1250
|
}, {}, {
|
|
1251
1251
|
length: 256;
|
|
1252
1252
|
}>;
|
|
1253
|
-
agentId:
|
|
1253
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1254
1254
|
name: "agent_id";
|
|
1255
1255
|
tableName: "sub_agent_relations";
|
|
1256
1256
|
dataType: "string";
|
|
@@ -1269,7 +1269,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1269
1269
|
}, {}, {
|
|
1270
1270
|
length: 256;
|
|
1271
1271
|
}>;
|
|
1272
|
-
projectId:
|
|
1272
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1273
1273
|
name: "project_id";
|
|
1274
1274
|
tableName: "sub_agent_relations";
|
|
1275
1275
|
dataType: "string";
|
|
@@ -1288,7 +1288,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1288
1288
|
}, {}, {
|
|
1289
1289
|
length: 256;
|
|
1290
1290
|
}>;
|
|
1291
|
-
tenantId:
|
|
1291
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1292
1292
|
name: "tenant_id";
|
|
1293
1293
|
tableName: "sub_agent_relations";
|
|
1294
1294
|
dataType: "string";
|
|
@@ -1307,7 +1307,7 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1307
1307
|
}, {}, {
|
|
1308
1308
|
length: 256;
|
|
1309
1309
|
}>;
|
|
1310
|
-
id:
|
|
1310
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
1311
1311
|
name: "id";
|
|
1312
1312
|
tableName: "sub_agent_relations";
|
|
1313
1313
|
dataType: "string";
|
|
@@ -1329,11 +1329,11 @@ declare const subAgentRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1329
1329
|
};
|
|
1330
1330
|
dialect: "pg";
|
|
1331
1331
|
}>;
|
|
1332
|
-
declare const externalAgents:
|
|
1332
|
+
declare const externalAgents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
1333
1333
|
name: "external_agents";
|
|
1334
1334
|
schema: undefined;
|
|
1335
1335
|
columns: {
|
|
1336
|
-
createdAt:
|
|
1336
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1337
1337
|
name: "created_at";
|
|
1338
1338
|
tableName: "external_agents";
|
|
1339
1339
|
dataType: "string";
|
|
@@ -1350,7 +1350,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1350
1350
|
identity: undefined;
|
|
1351
1351
|
generated: undefined;
|
|
1352
1352
|
}, {}, {}>;
|
|
1353
|
-
updatedAt:
|
|
1353
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1354
1354
|
name: "updated_at";
|
|
1355
1355
|
tableName: "external_agents";
|
|
1356
1356
|
dataType: "string";
|
|
@@ -1367,7 +1367,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1367
1367
|
identity: undefined;
|
|
1368
1368
|
generated: undefined;
|
|
1369
1369
|
}, {}, {}>;
|
|
1370
|
-
baseUrl:
|
|
1370
|
+
baseUrl: drizzle_orm_pg_core0.PgColumn<{
|
|
1371
1371
|
name: "base_url";
|
|
1372
1372
|
tableName: "external_agents";
|
|
1373
1373
|
dataType: "string";
|
|
@@ -1384,7 +1384,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1384
1384
|
identity: undefined;
|
|
1385
1385
|
generated: undefined;
|
|
1386
1386
|
}, {}, {}>;
|
|
1387
|
-
credentialReferenceId:
|
|
1387
|
+
credentialReferenceId: drizzle_orm_pg_core0.PgColumn<{
|
|
1388
1388
|
name: "credential_reference_id";
|
|
1389
1389
|
tableName: "external_agents";
|
|
1390
1390
|
dataType: "string";
|
|
@@ -1403,7 +1403,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1403
1403
|
}, {}, {
|
|
1404
1404
|
length: 256;
|
|
1405
1405
|
}>;
|
|
1406
|
-
name:
|
|
1406
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
1407
1407
|
name: "name";
|
|
1408
1408
|
tableName: "external_agents";
|
|
1409
1409
|
dataType: "string";
|
|
@@ -1422,7 +1422,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1422
1422
|
}, {}, {
|
|
1423
1423
|
length: 256;
|
|
1424
1424
|
}>;
|
|
1425
|
-
description:
|
|
1425
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
1426
1426
|
name: "description";
|
|
1427
1427
|
tableName: "external_agents";
|
|
1428
1428
|
dataType: "string";
|
|
@@ -1439,7 +1439,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1439
1439
|
identity: undefined;
|
|
1440
1440
|
generated: undefined;
|
|
1441
1441
|
}, {}, {}>;
|
|
1442
|
-
projectId:
|
|
1442
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1443
1443
|
name: "project_id";
|
|
1444
1444
|
tableName: "external_agents";
|
|
1445
1445
|
dataType: "string";
|
|
@@ -1458,7 +1458,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1458
1458
|
}, {}, {
|
|
1459
1459
|
length: 256;
|
|
1460
1460
|
}>;
|
|
1461
|
-
tenantId:
|
|
1461
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1462
1462
|
name: "tenant_id";
|
|
1463
1463
|
tableName: "external_agents";
|
|
1464
1464
|
dataType: "string";
|
|
@@ -1477,7 +1477,7 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1477
1477
|
}, {}, {
|
|
1478
1478
|
length: 256;
|
|
1479
1479
|
}>;
|
|
1480
|
-
id:
|
|
1480
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
1481
1481
|
name: "id";
|
|
1482
1482
|
tableName: "external_agents";
|
|
1483
1483
|
dataType: "string";
|
|
@@ -1499,11 +1499,11 @@ declare const externalAgents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1499
1499
|
};
|
|
1500
1500
|
dialect: "pg";
|
|
1501
1501
|
}>;
|
|
1502
|
-
declare const tasks:
|
|
1502
|
+
declare const tasks: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
1503
1503
|
name: "tasks";
|
|
1504
1504
|
schema: undefined;
|
|
1505
1505
|
columns: {
|
|
1506
|
-
createdAt:
|
|
1506
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1507
1507
|
name: "created_at";
|
|
1508
1508
|
tableName: "tasks";
|
|
1509
1509
|
dataType: "string";
|
|
@@ -1520,7 +1520,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1520
1520
|
identity: undefined;
|
|
1521
1521
|
generated: undefined;
|
|
1522
1522
|
}, {}, {}>;
|
|
1523
|
-
updatedAt:
|
|
1523
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1524
1524
|
name: "updated_at";
|
|
1525
1525
|
tableName: "tasks";
|
|
1526
1526
|
dataType: "string";
|
|
@@ -1537,7 +1537,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1537
1537
|
identity: undefined;
|
|
1538
1538
|
generated: undefined;
|
|
1539
1539
|
}, {}, {}>;
|
|
1540
|
-
contextId:
|
|
1540
|
+
contextId: drizzle_orm_pg_core0.PgColumn<{
|
|
1541
1541
|
name: "context_id";
|
|
1542
1542
|
tableName: "tasks";
|
|
1543
1543
|
dataType: "string";
|
|
@@ -1556,7 +1556,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1556
1556
|
}, {}, {
|
|
1557
1557
|
length: 256;
|
|
1558
1558
|
}>;
|
|
1559
|
-
status:
|
|
1559
|
+
status: drizzle_orm_pg_core0.PgColumn<{
|
|
1560
1560
|
name: "status";
|
|
1561
1561
|
tableName: "tasks";
|
|
1562
1562
|
dataType: "string";
|
|
@@ -1575,7 +1575,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1575
1575
|
}, {}, {
|
|
1576
1576
|
length: 256;
|
|
1577
1577
|
}>;
|
|
1578
|
-
metadata:
|
|
1578
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
1579
1579
|
name: "metadata";
|
|
1580
1580
|
tableName: "tasks";
|
|
1581
1581
|
dataType: "json";
|
|
@@ -1594,7 +1594,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1594
1594
|
}, {}, {
|
|
1595
1595
|
$type: TaskMetadataConfig;
|
|
1596
1596
|
}>;
|
|
1597
|
-
subAgentId:
|
|
1597
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1598
1598
|
name: "sub_agent_id";
|
|
1599
1599
|
tableName: "tasks";
|
|
1600
1600
|
dataType: "string";
|
|
@@ -1613,7 +1613,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1613
1613
|
}, {}, {
|
|
1614
1614
|
length: 256;
|
|
1615
1615
|
}>;
|
|
1616
|
-
agentId:
|
|
1616
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
1617
1617
|
name: "agent_id";
|
|
1618
1618
|
tableName: "tasks";
|
|
1619
1619
|
dataType: "string";
|
|
@@ -1632,7 +1632,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1632
1632
|
}, {}, {
|
|
1633
1633
|
length: 256;
|
|
1634
1634
|
}>;
|
|
1635
|
-
projectId:
|
|
1635
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1636
1636
|
name: "project_id";
|
|
1637
1637
|
tableName: "tasks";
|
|
1638
1638
|
dataType: "string";
|
|
@@ -1651,7 +1651,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1651
1651
|
}, {}, {
|
|
1652
1652
|
length: 256;
|
|
1653
1653
|
}>;
|
|
1654
|
-
tenantId:
|
|
1654
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1655
1655
|
name: "tenant_id";
|
|
1656
1656
|
tableName: "tasks";
|
|
1657
1657
|
dataType: "string";
|
|
@@ -1670,7 +1670,7 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1670
1670
|
}, {}, {
|
|
1671
1671
|
length: 256;
|
|
1672
1672
|
}>;
|
|
1673
|
-
id:
|
|
1673
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
1674
1674
|
name: "id";
|
|
1675
1675
|
tableName: "tasks";
|
|
1676
1676
|
dataType: "string";
|
|
@@ -1692,11 +1692,11 @@ declare const tasks: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1692
1692
|
};
|
|
1693
1693
|
dialect: "pg";
|
|
1694
1694
|
}>;
|
|
1695
|
-
declare const taskRelations:
|
|
1695
|
+
declare const taskRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
1696
1696
|
name: "task_relations";
|
|
1697
1697
|
schema: undefined;
|
|
1698
1698
|
columns: {
|
|
1699
|
-
createdAt:
|
|
1699
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1700
1700
|
name: "created_at";
|
|
1701
1701
|
tableName: "task_relations";
|
|
1702
1702
|
dataType: "string";
|
|
@@ -1713,7 +1713,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1713
1713
|
identity: undefined;
|
|
1714
1714
|
generated: undefined;
|
|
1715
1715
|
}, {}, {}>;
|
|
1716
|
-
updatedAt:
|
|
1716
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1717
1717
|
name: "updated_at";
|
|
1718
1718
|
tableName: "task_relations";
|
|
1719
1719
|
dataType: "string";
|
|
@@ -1730,7 +1730,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1730
1730
|
identity: undefined;
|
|
1731
1731
|
generated: undefined;
|
|
1732
1732
|
}, {}, {}>;
|
|
1733
|
-
parentTaskId:
|
|
1733
|
+
parentTaskId: drizzle_orm_pg_core0.PgColumn<{
|
|
1734
1734
|
name: "parent_task_id";
|
|
1735
1735
|
tableName: "task_relations";
|
|
1736
1736
|
dataType: "string";
|
|
@@ -1749,7 +1749,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1749
1749
|
}, {}, {
|
|
1750
1750
|
length: 256;
|
|
1751
1751
|
}>;
|
|
1752
|
-
childTaskId:
|
|
1752
|
+
childTaskId: drizzle_orm_pg_core0.PgColumn<{
|
|
1753
1753
|
name: "child_task_id";
|
|
1754
1754
|
tableName: "task_relations";
|
|
1755
1755
|
dataType: "string";
|
|
@@ -1768,7 +1768,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1768
1768
|
}, {}, {
|
|
1769
1769
|
length: 256;
|
|
1770
1770
|
}>;
|
|
1771
|
-
relationType:
|
|
1771
|
+
relationType: drizzle_orm_pg_core0.PgColumn<{
|
|
1772
1772
|
name: "relation_type";
|
|
1773
1773
|
tableName: "task_relations";
|
|
1774
1774
|
dataType: "string";
|
|
@@ -1787,7 +1787,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1787
1787
|
}, {}, {
|
|
1788
1788
|
length: 256;
|
|
1789
1789
|
}>;
|
|
1790
|
-
projectId:
|
|
1790
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1791
1791
|
name: "project_id";
|
|
1792
1792
|
tableName: "task_relations";
|
|
1793
1793
|
dataType: "string";
|
|
@@ -1806,7 +1806,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1806
1806
|
}, {}, {
|
|
1807
1807
|
length: 256;
|
|
1808
1808
|
}>;
|
|
1809
|
-
tenantId:
|
|
1809
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1810
1810
|
name: "tenant_id";
|
|
1811
1811
|
tableName: "task_relations";
|
|
1812
1812
|
dataType: "string";
|
|
@@ -1825,7 +1825,7 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1825
1825
|
}, {}, {
|
|
1826
1826
|
length: 256;
|
|
1827
1827
|
}>;
|
|
1828
|
-
id:
|
|
1828
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
1829
1829
|
name: "id";
|
|
1830
1830
|
tableName: "task_relations";
|
|
1831
1831
|
dataType: "string";
|
|
@@ -1847,11 +1847,11 @@ declare const taskRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1847
1847
|
};
|
|
1848
1848
|
dialect: "pg";
|
|
1849
1849
|
}>;
|
|
1850
|
-
declare const dataComponents:
|
|
1850
|
+
declare const dataComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
1851
1851
|
name: "data_components";
|
|
1852
1852
|
schema: undefined;
|
|
1853
1853
|
columns: {
|
|
1854
|
-
createdAt:
|
|
1854
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1855
1855
|
name: "created_at";
|
|
1856
1856
|
tableName: "data_components";
|
|
1857
1857
|
dataType: "string";
|
|
@@ -1868,7 +1868,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1868
1868
|
identity: undefined;
|
|
1869
1869
|
generated: undefined;
|
|
1870
1870
|
}, {}, {}>;
|
|
1871
|
-
updatedAt:
|
|
1871
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
1872
1872
|
name: "updated_at";
|
|
1873
1873
|
tableName: "data_components";
|
|
1874
1874
|
dataType: "string";
|
|
@@ -1885,7 +1885,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1885
1885
|
identity: undefined;
|
|
1886
1886
|
generated: undefined;
|
|
1887
1887
|
}, {}, {}>;
|
|
1888
|
-
props:
|
|
1888
|
+
props: drizzle_orm_pg_core0.PgColumn<{
|
|
1889
1889
|
name: "props";
|
|
1890
1890
|
tableName: "data_components";
|
|
1891
1891
|
dataType: "json";
|
|
@@ -1904,7 +1904,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1904
1904
|
}, {}, {
|
|
1905
1905
|
$type: Record<string, unknown>;
|
|
1906
1906
|
}>;
|
|
1907
|
-
render:
|
|
1907
|
+
render: drizzle_orm_pg_core0.PgColumn<{
|
|
1908
1908
|
name: "render";
|
|
1909
1909
|
tableName: "data_components";
|
|
1910
1910
|
dataType: "json";
|
|
@@ -1929,7 +1929,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1929
1929
|
mockData: Record<string, unknown>;
|
|
1930
1930
|
};
|
|
1931
1931
|
}>;
|
|
1932
|
-
name:
|
|
1932
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
1933
1933
|
name: "name";
|
|
1934
1934
|
tableName: "data_components";
|
|
1935
1935
|
dataType: "string";
|
|
@@ -1948,7 +1948,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1948
1948
|
}, {}, {
|
|
1949
1949
|
length: 256;
|
|
1950
1950
|
}>;
|
|
1951
|
-
description:
|
|
1951
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
1952
1952
|
name: "description";
|
|
1953
1953
|
tableName: "data_components";
|
|
1954
1954
|
dataType: "string";
|
|
@@ -1965,7 +1965,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1965
1965
|
identity: undefined;
|
|
1966
1966
|
generated: undefined;
|
|
1967
1967
|
}, {}, {}>;
|
|
1968
|
-
projectId:
|
|
1968
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
1969
1969
|
name: "project_id";
|
|
1970
1970
|
tableName: "data_components";
|
|
1971
1971
|
dataType: "string";
|
|
@@ -1984,7 +1984,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
1984
1984
|
}, {}, {
|
|
1985
1985
|
length: 256;
|
|
1986
1986
|
}>;
|
|
1987
|
-
tenantId:
|
|
1987
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
1988
1988
|
name: "tenant_id";
|
|
1989
1989
|
tableName: "data_components";
|
|
1990
1990
|
dataType: "string";
|
|
@@ -2003,7 +2003,7 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2003
2003
|
}, {}, {
|
|
2004
2004
|
length: 256;
|
|
2005
2005
|
}>;
|
|
2006
|
-
id:
|
|
2006
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2007
2007
|
name: "id";
|
|
2008
2008
|
tableName: "data_components";
|
|
2009
2009
|
dataType: "string";
|
|
@@ -2025,11 +2025,11 @@ declare const dataComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2025
2025
|
};
|
|
2026
2026
|
dialect: "pg";
|
|
2027
2027
|
}>;
|
|
2028
|
-
declare const subAgentDataComponents:
|
|
2028
|
+
declare const subAgentDataComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2029
2029
|
name: "sub_agent_data_components";
|
|
2030
2030
|
schema: undefined;
|
|
2031
2031
|
columns: {
|
|
2032
|
-
dataComponentId:
|
|
2032
|
+
dataComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2033
2033
|
name: "data_component_id";
|
|
2034
2034
|
tableName: "sub_agent_data_components";
|
|
2035
2035
|
dataType: "string";
|
|
@@ -2048,7 +2048,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2048
2048
|
}, {}, {
|
|
2049
2049
|
length: 256;
|
|
2050
2050
|
}>;
|
|
2051
|
-
createdAt:
|
|
2051
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2052
2052
|
name: "created_at";
|
|
2053
2053
|
tableName: "sub_agent_data_components";
|
|
2054
2054
|
dataType: "string";
|
|
@@ -2065,7 +2065,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2065
2065
|
identity: undefined;
|
|
2066
2066
|
generated: undefined;
|
|
2067
2067
|
}, {}, {}>;
|
|
2068
|
-
subAgentId:
|
|
2068
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2069
2069
|
name: "sub_agent_id";
|
|
2070
2070
|
tableName: "sub_agent_data_components";
|
|
2071
2071
|
dataType: "string";
|
|
@@ -2084,7 +2084,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2084
2084
|
}, {}, {
|
|
2085
2085
|
length: 256;
|
|
2086
2086
|
}>;
|
|
2087
|
-
agentId:
|
|
2087
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2088
2088
|
name: "agent_id";
|
|
2089
2089
|
tableName: "sub_agent_data_components";
|
|
2090
2090
|
dataType: "string";
|
|
@@ -2103,7 +2103,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2103
2103
|
}, {}, {
|
|
2104
2104
|
length: 256;
|
|
2105
2105
|
}>;
|
|
2106
|
-
projectId:
|
|
2106
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2107
2107
|
name: "project_id";
|
|
2108
2108
|
tableName: "sub_agent_data_components";
|
|
2109
2109
|
dataType: "string";
|
|
@@ -2122,7 +2122,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2122
2122
|
}, {}, {
|
|
2123
2123
|
length: 256;
|
|
2124
2124
|
}>;
|
|
2125
|
-
tenantId:
|
|
2125
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2126
2126
|
name: "tenant_id";
|
|
2127
2127
|
tableName: "sub_agent_data_components";
|
|
2128
2128
|
dataType: "string";
|
|
@@ -2141,7 +2141,7 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2141
2141
|
}, {}, {
|
|
2142
2142
|
length: 256;
|
|
2143
2143
|
}>;
|
|
2144
|
-
id:
|
|
2144
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2145
2145
|
name: "id";
|
|
2146
2146
|
tableName: "sub_agent_data_components";
|
|
2147
2147
|
dataType: "string";
|
|
@@ -2163,11 +2163,11 @@ declare const subAgentDataComponents: drizzle_orm_pg_core208.PgTableWithColumns<
|
|
|
2163
2163
|
};
|
|
2164
2164
|
dialect: "pg";
|
|
2165
2165
|
}>;
|
|
2166
|
-
declare const artifactComponents:
|
|
2166
|
+
declare const artifactComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2167
2167
|
name: "artifact_components";
|
|
2168
2168
|
schema: undefined;
|
|
2169
2169
|
columns: {
|
|
2170
|
-
createdAt:
|
|
2170
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2171
2171
|
name: "created_at";
|
|
2172
2172
|
tableName: "artifact_components";
|
|
2173
2173
|
dataType: "string";
|
|
@@ -2184,7 +2184,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2184
2184
|
identity: undefined;
|
|
2185
2185
|
generated: undefined;
|
|
2186
2186
|
}, {}, {}>;
|
|
2187
|
-
updatedAt:
|
|
2187
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2188
2188
|
name: "updated_at";
|
|
2189
2189
|
tableName: "artifact_components";
|
|
2190
2190
|
dataType: "string";
|
|
@@ -2201,7 +2201,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2201
2201
|
identity: undefined;
|
|
2202
2202
|
generated: undefined;
|
|
2203
2203
|
}, {}, {}>;
|
|
2204
|
-
props:
|
|
2204
|
+
props: drizzle_orm_pg_core0.PgColumn<{
|
|
2205
2205
|
name: "props";
|
|
2206
2206
|
tableName: "artifact_components";
|
|
2207
2207
|
dataType: "json";
|
|
@@ -2220,7 +2220,32 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2220
2220
|
}, {}, {
|
|
2221
2221
|
$type: Record<string, unknown>;
|
|
2222
2222
|
}>;
|
|
2223
|
-
|
|
2223
|
+
render: drizzle_orm_pg_core0.PgColumn<{
|
|
2224
|
+
name: "render";
|
|
2225
|
+
tableName: "artifact_components";
|
|
2226
|
+
dataType: "json";
|
|
2227
|
+
columnType: "PgJsonb";
|
|
2228
|
+
data: {
|
|
2229
|
+
component: string;
|
|
2230
|
+
mockData: Record<string, unknown>;
|
|
2231
|
+
};
|
|
2232
|
+
driverParam: unknown;
|
|
2233
|
+
notNull: false;
|
|
2234
|
+
hasDefault: false;
|
|
2235
|
+
isPrimaryKey: false;
|
|
2236
|
+
isAutoincrement: false;
|
|
2237
|
+
hasRuntimeDefault: false;
|
|
2238
|
+
enumValues: undefined;
|
|
2239
|
+
baseColumn: never;
|
|
2240
|
+
identity: undefined;
|
|
2241
|
+
generated: undefined;
|
|
2242
|
+
}, {}, {
|
|
2243
|
+
$type: {
|
|
2244
|
+
component: string;
|
|
2245
|
+
mockData: Record<string, unknown>;
|
|
2246
|
+
};
|
|
2247
|
+
}>;
|
|
2248
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2224
2249
|
name: "name";
|
|
2225
2250
|
tableName: "artifact_components";
|
|
2226
2251
|
dataType: "string";
|
|
@@ -2239,7 +2264,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2239
2264
|
}, {}, {
|
|
2240
2265
|
length: 256;
|
|
2241
2266
|
}>;
|
|
2242
|
-
description:
|
|
2267
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2243
2268
|
name: "description";
|
|
2244
2269
|
tableName: "artifact_components";
|
|
2245
2270
|
dataType: "string";
|
|
@@ -2256,7 +2281,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2256
2281
|
identity: undefined;
|
|
2257
2282
|
generated: undefined;
|
|
2258
2283
|
}, {}, {}>;
|
|
2259
|
-
projectId:
|
|
2284
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2260
2285
|
name: "project_id";
|
|
2261
2286
|
tableName: "artifact_components";
|
|
2262
2287
|
dataType: "string";
|
|
@@ -2275,7 +2300,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2275
2300
|
}, {}, {
|
|
2276
2301
|
length: 256;
|
|
2277
2302
|
}>;
|
|
2278
|
-
tenantId:
|
|
2303
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2279
2304
|
name: "tenant_id";
|
|
2280
2305
|
tableName: "artifact_components";
|
|
2281
2306
|
dataType: "string";
|
|
@@ -2294,7 +2319,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2294
2319
|
}, {}, {
|
|
2295
2320
|
length: 256;
|
|
2296
2321
|
}>;
|
|
2297
|
-
id:
|
|
2322
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2298
2323
|
name: "id";
|
|
2299
2324
|
tableName: "artifact_components";
|
|
2300
2325
|
dataType: "string";
|
|
@@ -2316,11 +2341,11 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2316
2341
|
};
|
|
2317
2342
|
dialect: "pg";
|
|
2318
2343
|
}>;
|
|
2319
|
-
declare const subAgentArtifactComponents:
|
|
2344
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2320
2345
|
name: "sub_agent_artifact_components";
|
|
2321
2346
|
schema: undefined;
|
|
2322
2347
|
columns: {
|
|
2323
|
-
artifactComponentId:
|
|
2348
|
+
artifactComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2324
2349
|
name: "artifact_component_id";
|
|
2325
2350
|
tableName: "sub_agent_artifact_components";
|
|
2326
2351
|
dataType: "string";
|
|
@@ -2339,7 +2364,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2339
2364
|
}, {}, {
|
|
2340
2365
|
length: 256;
|
|
2341
2366
|
}>;
|
|
2342
|
-
createdAt:
|
|
2367
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2343
2368
|
name: "created_at";
|
|
2344
2369
|
tableName: "sub_agent_artifact_components";
|
|
2345
2370
|
dataType: "string";
|
|
@@ -2356,7 +2381,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2356
2381
|
identity: undefined;
|
|
2357
2382
|
generated: undefined;
|
|
2358
2383
|
}, {}, {}>;
|
|
2359
|
-
subAgentId:
|
|
2384
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2360
2385
|
name: "sub_agent_id";
|
|
2361
2386
|
tableName: "sub_agent_artifact_components";
|
|
2362
2387
|
dataType: "string";
|
|
@@ -2375,7 +2400,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2375
2400
|
}, {}, {
|
|
2376
2401
|
length: 256;
|
|
2377
2402
|
}>;
|
|
2378
|
-
agentId:
|
|
2403
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2379
2404
|
name: "agent_id";
|
|
2380
2405
|
tableName: "sub_agent_artifact_components";
|
|
2381
2406
|
dataType: "string";
|
|
@@ -2394,7 +2419,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2394
2419
|
}, {}, {
|
|
2395
2420
|
length: 256;
|
|
2396
2421
|
}>;
|
|
2397
|
-
projectId:
|
|
2422
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2398
2423
|
name: "project_id";
|
|
2399
2424
|
tableName: "sub_agent_artifact_components";
|
|
2400
2425
|
dataType: "string";
|
|
@@ -2413,7 +2438,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2413
2438
|
}, {}, {
|
|
2414
2439
|
length: 256;
|
|
2415
2440
|
}>;
|
|
2416
|
-
tenantId:
|
|
2441
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2417
2442
|
name: "tenant_id";
|
|
2418
2443
|
tableName: "sub_agent_artifact_components";
|
|
2419
2444
|
dataType: "string";
|
|
@@ -2432,7 +2457,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2432
2457
|
}, {}, {
|
|
2433
2458
|
length: 256;
|
|
2434
2459
|
}>;
|
|
2435
|
-
id:
|
|
2460
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2436
2461
|
name: "id";
|
|
2437
2462
|
tableName: "sub_agent_artifact_components";
|
|
2438
2463
|
dataType: "string";
|
|
@@ -2454,11 +2479,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2454
2479
|
};
|
|
2455
2480
|
dialect: "pg";
|
|
2456
2481
|
}>;
|
|
2457
|
-
declare const tools:
|
|
2482
|
+
declare const tools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2458
2483
|
name: "tools";
|
|
2459
2484
|
schema: undefined;
|
|
2460
2485
|
columns: {
|
|
2461
|
-
createdAt:
|
|
2486
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2462
2487
|
name: "created_at";
|
|
2463
2488
|
tableName: "tools";
|
|
2464
2489
|
dataType: "string";
|
|
@@ -2475,7 +2500,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2475
2500
|
identity: undefined;
|
|
2476
2501
|
generated: undefined;
|
|
2477
2502
|
}, {}, {}>;
|
|
2478
|
-
updatedAt:
|
|
2503
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2479
2504
|
name: "updated_at";
|
|
2480
2505
|
tableName: "tools";
|
|
2481
2506
|
dataType: "string";
|
|
@@ -2492,7 +2517,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2492
2517
|
identity: undefined;
|
|
2493
2518
|
generated: undefined;
|
|
2494
2519
|
}, {}, {}>;
|
|
2495
|
-
name:
|
|
2520
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2496
2521
|
name: "name";
|
|
2497
2522
|
tableName: "tools";
|
|
2498
2523
|
dataType: "string";
|
|
@@ -2511,7 +2536,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2511
2536
|
}, {}, {
|
|
2512
2537
|
length: 256;
|
|
2513
2538
|
}>;
|
|
2514
|
-
description:
|
|
2539
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2515
2540
|
name: "description";
|
|
2516
2541
|
tableName: "tools";
|
|
2517
2542
|
dataType: "string";
|
|
@@ -2528,7 +2553,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2528
2553
|
identity: undefined;
|
|
2529
2554
|
generated: undefined;
|
|
2530
2555
|
}, {}, {}>;
|
|
2531
|
-
config:
|
|
2556
|
+
config: drizzle_orm_pg_core0.PgColumn<{
|
|
2532
2557
|
name: "config";
|
|
2533
2558
|
tableName: "tools";
|
|
2534
2559
|
dataType: "json";
|
|
@@ -2553,7 +2578,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2553
2578
|
mcp: ToolMcpConfig;
|
|
2554
2579
|
};
|
|
2555
2580
|
}>;
|
|
2556
|
-
credentialReferenceId:
|
|
2581
|
+
credentialReferenceId: drizzle_orm_pg_core0.PgColumn<{
|
|
2557
2582
|
name: "credential_reference_id";
|
|
2558
2583
|
tableName: "tools";
|
|
2559
2584
|
dataType: "string";
|
|
@@ -2572,7 +2597,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2572
2597
|
}, {}, {
|
|
2573
2598
|
length: 256;
|
|
2574
2599
|
}>;
|
|
2575
|
-
credentialScope:
|
|
2600
|
+
credentialScope: drizzle_orm_pg_core0.PgColumn<{
|
|
2576
2601
|
name: "credential_scope";
|
|
2577
2602
|
tableName: "tools";
|
|
2578
2603
|
dataType: "string";
|
|
@@ -2591,7 +2616,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2591
2616
|
}, {}, {
|
|
2592
2617
|
length: 50;
|
|
2593
2618
|
}>;
|
|
2594
|
-
headers:
|
|
2619
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
2595
2620
|
name: "headers";
|
|
2596
2621
|
tableName: "tools";
|
|
2597
2622
|
dataType: "json";
|
|
@@ -2610,7 +2635,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2610
2635
|
}, {}, {
|
|
2611
2636
|
$type: Record<string, string>;
|
|
2612
2637
|
}>;
|
|
2613
|
-
imageUrl:
|
|
2638
|
+
imageUrl: drizzle_orm_pg_core0.PgColumn<{
|
|
2614
2639
|
name: "image_url";
|
|
2615
2640
|
tableName: "tools";
|
|
2616
2641
|
dataType: "string";
|
|
@@ -2627,7 +2652,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2627
2652
|
identity: undefined;
|
|
2628
2653
|
generated: undefined;
|
|
2629
2654
|
}, {}, {}>;
|
|
2630
|
-
capabilities:
|
|
2655
|
+
capabilities: drizzle_orm_pg_core0.PgColumn<{
|
|
2631
2656
|
name: "capabilities";
|
|
2632
2657
|
tableName: "tools";
|
|
2633
2658
|
dataType: "json";
|
|
@@ -2646,7 +2671,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2646
2671
|
}, {}, {
|
|
2647
2672
|
$type: ToolServerCapabilities;
|
|
2648
2673
|
}>;
|
|
2649
|
-
lastError:
|
|
2674
|
+
lastError: drizzle_orm_pg_core0.PgColumn<{
|
|
2650
2675
|
name: "last_error";
|
|
2651
2676
|
tableName: "tools";
|
|
2652
2677
|
dataType: "string";
|
|
@@ -2663,7 +2688,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2663
2688
|
identity: undefined;
|
|
2664
2689
|
generated: undefined;
|
|
2665
2690
|
}, {}, {}>;
|
|
2666
|
-
projectId:
|
|
2691
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2667
2692
|
name: "project_id";
|
|
2668
2693
|
tableName: "tools";
|
|
2669
2694
|
dataType: "string";
|
|
@@ -2682,7 +2707,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2682
2707
|
}, {}, {
|
|
2683
2708
|
length: 256;
|
|
2684
2709
|
}>;
|
|
2685
|
-
tenantId:
|
|
2710
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2686
2711
|
name: "tenant_id";
|
|
2687
2712
|
tableName: "tools";
|
|
2688
2713
|
dataType: "string";
|
|
@@ -2701,7 +2726,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2701
2726
|
}, {}, {
|
|
2702
2727
|
length: 256;
|
|
2703
2728
|
}>;
|
|
2704
|
-
id:
|
|
2729
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2705
2730
|
name: "id";
|
|
2706
2731
|
tableName: "tools";
|
|
2707
2732
|
dataType: "string";
|
|
@@ -2723,11 +2748,11 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2723
2748
|
};
|
|
2724
2749
|
dialect: "pg";
|
|
2725
2750
|
}>;
|
|
2726
|
-
declare const functionTools:
|
|
2751
|
+
declare const functionTools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2727
2752
|
name: "function_tools";
|
|
2728
2753
|
schema: undefined;
|
|
2729
2754
|
columns: {
|
|
2730
|
-
createdAt:
|
|
2755
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2731
2756
|
name: "created_at";
|
|
2732
2757
|
tableName: "function_tools";
|
|
2733
2758
|
dataType: "string";
|
|
@@ -2744,7 +2769,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2744
2769
|
identity: undefined;
|
|
2745
2770
|
generated: undefined;
|
|
2746
2771
|
}, {}, {}>;
|
|
2747
|
-
updatedAt:
|
|
2772
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2748
2773
|
name: "updated_at";
|
|
2749
2774
|
tableName: "function_tools";
|
|
2750
2775
|
dataType: "string";
|
|
@@ -2761,7 +2786,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2761
2786
|
identity: undefined;
|
|
2762
2787
|
generated: undefined;
|
|
2763
2788
|
}, {}, {}>;
|
|
2764
|
-
name:
|
|
2789
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2765
2790
|
name: "name";
|
|
2766
2791
|
tableName: "function_tools";
|
|
2767
2792
|
dataType: "string";
|
|
@@ -2780,7 +2805,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2780
2805
|
}, {}, {
|
|
2781
2806
|
length: 256;
|
|
2782
2807
|
}>;
|
|
2783
|
-
description:
|
|
2808
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2784
2809
|
name: "description";
|
|
2785
2810
|
tableName: "function_tools";
|
|
2786
2811
|
dataType: "string";
|
|
@@ -2797,7 +2822,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2797
2822
|
identity: undefined;
|
|
2798
2823
|
generated: undefined;
|
|
2799
2824
|
}, {}, {}>;
|
|
2800
|
-
functionId:
|
|
2825
|
+
functionId: drizzle_orm_pg_core0.PgColumn<{
|
|
2801
2826
|
name: "function_id";
|
|
2802
2827
|
tableName: "function_tools";
|
|
2803
2828
|
dataType: "string";
|
|
@@ -2816,7 +2841,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2816
2841
|
}, {}, {
|
|
2817
2842
|
length: 256;
|
|
2818
2843
|
}>;
|
|
2819
|
-
agentId:
|
|
2844
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2820
2845
|
name: "agent_id";
|
|
2821
2846
|
tableName: "function_tools";
|
|
2822
2847
|
dataType: "string";
|
|
@@ -2835,7 +2860,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2835
2860
|
}, {}, {
|
|
2836
2861
|
length: 256;
|
|
2837
2862
|
}>;
|
|
2838
|
-
projectId:
|
|
2863
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2839
2864
|
name: "project_id";
|
|
2840
2865
|
tableName: "function_tools";
|
|
2841
2866
|
dataType: "string";
|
|
@@ -2854,7 +2879,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2854
2879
|
}, {}, {
|
|
2855
2880
|
length: 256;
|
|
2856
2881
|
}>;
|
|
2857
|
-
tenantId:
|
|
2882
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2858
2883
|
name: "tenant_id";
|
|
2859
2884
|
tableName: "function_tools";
|
|
2860
2885
|
dataType: "string";
|
|
@@ -2873,7 +2898,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2873
2898
|
}, {}, {
|
|
2874
2899
|
length: 256;
|
|
2875
2900
|
}>;
|
|
2876
|
-
id:
|
|
2901
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2877
2902
|
name: "id";
|
|
2878
2903
|
tableName: "function_tools";
|
|
2879
2904
|
dataType: "string";
|
|
@@ -2895,11 +2920,11 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2895
2920
|
};
|
|
2896
2921
|
dialect: "pg";
|
|
2897
2922
|
}>;
|
|
2898
|
-
declare const functions:
|
|
2923
|
+
declare const functions: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2899
2924
|
name: "functions";
|
|
2900
2925
|
schema: undefined;
|
|
2901
2926
|
columns: {
|
|
2902
|
-
createdAt:
|
|
2927
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2903
2928
|
name: "created_at";
|
|
2904
2929
|
tableName: "functions";
|
|
2905
2930
|
dataType: "string";
|
|
@@ -2916,7 +2941,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2916
2941
|
identity: undefined;
|
|
2917
2942
|
generated: undefined;
|
|
2918
2943
|
}, {}, {}>;
|
|
2919
|
-
updatedAt:
|
|
2944
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2920
2945
|
name: "updated_at";
|
|
2921
2946
|
tableName: "functions";
|
|
2922
2947
|
dataType: "string";
|
|
@@ -2933,7 +2958,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2933
2958
|
identity: undefined;
|
|
2934
2959
|
generated: undefined;
|
|
2935
2960
|
}, {}, {}>;
|
|
2936
|
-
inputSchema:
|
|
2961
|
+
inputSchema: drizzle_orm_pg_core0.PgColumn<{
|
|
2937
2962
|
name: "input_schema";
|
|
2938
2963
|
tableName: "functions";
|
|
2939
2964
|
dataType: "json";
|
|
@@ -2952,7 +2977,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2952
2977
|
}, {}, {
|
|
2953
2978
|
$type: Record<string, unknown>;
|
|
2954
2979
|
}>;
|
|
2955
|
-
executeCode:
|
|
2980
|
+
executeCode: drizzle_orm_pg_core0.PgColumn<{
|
|
2956
2981
|
name: "execute_code";
|
|
2957
2982
|
tableName: "functions";
|
|
2958
2983
|
dataType: "string";
|
|
@@ -2969,7 +2994,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2969
2994
|
identity: undefined;
|
|
2970
2995
|
generated: undefined;
|
|
2971
2996
|
}, {}, {}>;
|
|
2972
|
-
dependencies:
|
|
2997
|
+
dependencies: drizzle_orm_pg_core0.PgColumn<{
|
|
2973
2998
|
name: "dependencies";
|
|
2974
2999
|
tableName: "functions";
|
|
2975
3000
|
dataType: "json";
|
|
@@ -2988,7 +3013,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2988
3013
|
}, {}, {
|
|
2989
3014
|
$type: Record<string, string>;
|
|
2990
3015
|
}>;
|
|
2991
|
-
projectId:
|
|
3016
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2992
3017
|
name: "project_id";
|
|
2993
3018
|
tableName: "functions";
|
|
2994
3019
|
dataType: "string";
|
|
@@ -3007,7 +3032,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3007
3032
|
}, {}, {
|
|
3008
3033
|
length: 256;
|
|
3009
3034
|
}>;
|
|
3010
|
-
tenantId:
|
|
3035
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3011
3036
|
name: "tenant_id";
|
|
3012
3037
|
tableName: "functions";
|
|
3013
3038
|
dataType: "string";
|
|
@@ -3026,7 +3051,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3026
3051
|
}, {}, {
|
|
3027
3052
|
length: 256;
|
|
3028
3053
|
}>;
|
|
3029
|
-
id:
|
|
3054
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3030
3055
|
name: "id";
|
|
3031
3056
|
tableName: "functions";
|
|
3032
3057
|
dataType: "string";
|
|
@@ -3048,11 +3073,11 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3048
3073
|
};
|
|
3049
3074
|
dialect: "pg";
|
|
3050
3075
|
}>;
|
|
3051
|
-
declare const subAgentToolRelations:
|
|
3076
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3052
3077
|
name: "sub_agent_tool_relations";
|
|
3053
3078
|
schema: undefined;
|
|
3054
3079
|
columns: {
|
|
3055
|
-
createdAt:
|
|
3080
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3056
3081
|
name: "created_at";
|
|
3057
3082
|
tableName: "sub_agent_tool_relations";
|
|
3058
3083
|
dataType: "string";
|
|
@@ -3069,7 +3094,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3069
3094
|
identity: undefined;
|
|
3070
3095
|
generated: undefined;
|
|
3071
3096
|
}, {}, {}>;
|
|
3072
|
-
updatedAt:
|
|
3097
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3073
3098
|
name: "updated_at";
|
|
3074
3099
|
tableName: "sub_agent_tool_relations";
|
|
3075
3100
|
dataType: "string";
|
|
@@ -3086,7 +3111,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3086
3111
|
identity: undefined;
|
|
3087
3112
|
generated: undefined;
|
|
3088
3113
|
}, {}, {}>;
|
|
3089
|
-
toolId:
|
|
3114
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3090
3115
|
name: "tool_id";
|
|
3091
3116
|
tableName: "sub_agent_tool_relations";
|
|
3092
3117
|
dataType: "string";
|
|
@@ -3105,7 +3130,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3105
3130
|
}, {}, {
|
|
3106
3131
|
length: 256;
|
|
3107
3132
|
}>;
|
|
3108
|
-
selectedTools:
|
|
3133
|
+
selectedTools: drizzle_orm_pg_core0.PgColumn<{
|
|
3109
3134
|
name: "selected_tools";
|
|
3110
3135
|
tableName: "sub_agent_tool_relations";
|
|
3111
3136
|
dataType: "json";
|
|
@@ -3124,7 +3149,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3124
3149
|
}, {}, {
|
|
3125
3150
|
$type: string[] | null;
|
|
3126
3151
|
}>;
|
|
3127
|
-
headers:
|
|
3152
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3128
3153
|
name: "headers";
|
|
3129
3154
|
tableName: "sub_agent_tool_relations";
|
|
3130
3155
|
dataType: "json";
|
|
@@ -3143,7 +3168,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3143
3168
|
}, {}, {
|
|
3144
3169
|
$type: Record<string, string> | null;
|
|
3145
3170
|
}>;
|
|
3146
|
-
toolPolicies:
|
|
3171
|
+
toolPolicies: drizzle_orm_pg_core0.PgColumn<{
|
|
3147
3172
|
name: "tool_policies";
|
|
3148
3173
|
tableName: "sub_agent_tool_relations";
|
|
3149
3174
|
dataType: "json";
|
|
@@ -3166,7 +3191,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3166
3191
|
needsApproval?: boolean;
|
|
3167
3192
|
}> | null;
|
|
3168
3193
|
}>;
|
|
3169
|
-
subAgentId:
|
|
3194
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3170
3195
|
name: "sub_agent_id";
|
|
3171
3196
|
tableName: "sub_agent_tool_relations";
|
|
3172
3197
|
dataType: "string";
|
|
@@ -3185,7 +3210,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3185
3210
|
}, {}, {
|
|
3186
3211
|
length: 256;
|
|
3187
3212
|
}>;
|
|
3188
|
-
agentId:
|
|
3213
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3189
3214
|
name: "agent_id";
|
|
3190
3215
|
tableName: "sub_agent_tool_relations";
|
|
3191
3216
|
dataType: "string";
|
|
@@ -3204,7 +3229,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3204
3229
|
}, {}, {
|
|
3205
3230
|
length: 256;
|
|
3206
3231
|
}>;
|
|
3207
|
-
projectId:
|
|
3232
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3208
3233
|
name: "project_id";
|
|
3209
3234
|
tableName: "sub_agent_tool_relations";
|
|
3210
3235
|
dataType: "string";
|
|
@@ -3223,7 +3248,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3223
3248
|
}, {}, {
|
|
3224
3249
|
length: 256;
|
|
3225
3250
|
}>;
|
|
3226
|
-
tenantId:
|
|
3251
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3227
3252
|
name: "tenant_id";
|
|
3228
3253
|
tableName: "sub_agent_tool_relations";
|
|
3229
3254
|
dataType: "string";
|
|
@@ -3242,7 +3267,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3242
3267
|
}, {}, {
|
|
3243
3268
|
length: 256;
|
|
3244
3269
|
}>;
|
|
3245
|
-
id:
|
|
3270
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3246
3271
|
name: "id";
|
|
3247
3272
|
tableName: "sub_agent_tool_relations";
|
|
3248
3273
|
dataType: "string";
|
|
@@ -3264,11 +3289,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3264
3289
|
};
|
|
3265
3290
|
dialect: "pg";
|
|
3266
3291
|
}>;
|
|
3267
|
-
declare const subAgentExternalAgentRelations:
|
|
3292
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3268
3293
|
name: "sub_agent_external_agent_relations";
|
|
3269
3294
|
schema: undefined;
|
|
3270
3295
|
columns: {
|
|
3271
|
-
createdAt:
|
|
3296
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3272
3297
|
name: "created_at";
|
|
3273
3298
|
tableName: "sub_agent_external_agent_relations";
|
|
3274
3299
|
dataType: "string";
|
|
@@ -3285,7 +3310,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3285
3310
|
identity: undefined;
|
|
3286
3311
|
generated: undefined;
|
|
3287
3312
|
}, {}, {}>;
|
|
3288
|
-
updatedAt:
|
|
3313
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3289
3314
|
name: "updated_at";
|
|
3290
3315
|
tableName: "sub_agent_external_agent_relations";
|
|
3291
3316
|
dataType: "string";
|
|
@@ -3302,7 +3327,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3302
3327
|
identity: undefined;
|
|
3303
3328
|
generated: undefined;
|
|
3304
3329
|
}, {}, {}>;
|
|
3305
|
-
externalAgentId:
|
|
3330
|
+
externalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3306
3331
|
name: "external_agent_id";
|
|
3307
3332
|
tableName: "sub_agent_external_agent_relations";
|
|
3308
3333
|
dataType: "string";
|
|
@@ -3321,7 +3346,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3321
3346
|
}, {}, {
|
|
3322
3347
|
length: 256;
|
|
3323
3348
|
}>;
|
|
3324
|
-
headers:
|
|
3349
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3325
3350
|
name: "headers";
|
|
3326
3351
|
tableName: "sub_agent_external_agent_relations";
|
|
3327
3352
|
dataType: "json";
|
|
@@ -3340,7 +3365,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3340
3365
|
}, {}, {
|
|
3341
3366
|
$type: Record<string, string> | null;
|
|
3342
3367
|
}>;
|
|
3343
|
-
subAgentId:
|
|
3368
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3344
3369
|
name: "sub_agent_id";
|
|
3345
3370
|
tableName: "sub_agent_external_agent_relations";
|
|
3346
3371
|
dataType: "string";
|
|
@@ -3359,7 +3384,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3359
3384
|
}, {}, {
|
|
3360
3385
|
length: 256;
|
|
3361
3386
|
}>;
|
|
3362
|
-
agentId:
|
|
3387
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3363
3388
|
name: "agent_id";
|
|
3364
3389
|
tableName: "sub_agent_external_agent_relations";
|
|
3365
3390
|
dataType: "string";
|
|
@@ -3378,7 +3403,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3378
3403
|
}, {}, {
|
|
3379
3404
|
length: 256;
|
|
3380
3405
|
}>;
|
|
3381
|
-
projectId:
|
|
3406
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3382
3407
|
name: "project_id";
|
|
3383
3408
|
tableName: "sub_agent_external_agent_relations";
|
|
3384
3409
|
dataType: "string";
|
|
@@ -3397,7 +3422,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3397
3422
|
}, {}, {
|
|
3398
3423
|
length: 256;
|
|
3399
3424
|
}>;
|
|
3400
|
-
tenantId:
|
|
3425
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3401
3426
|
name: "tenant_id";
|
|
3402
3427
|
tableName: "sub_agent_external_agent_relations";
|
|
3403
3428
|
dataType: "string";
|
|
@@ -3416,7 +3441,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3416
3441
|
}, {}, {
|
|
3417
3442
|
length: 256;
|
|
3418
3443
|
}>;
|
|
3419
|
-
id:
|
|
3444
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3420
3445
|
name: "id";
|
|
3421
3446
|
tableName: "sub_agent_external_agent_relations";
|
|
3422
3447
|
dataType: "string";
|
|
@@ -3438,11 +3463,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3438
3463
|
};
|
|
3439
3464
|
dialect: "pg";
|
|
3440
3465
|
}>;
|
|
3441
|
-
declare const subAgentTeamAgentRelations:
|
|
3466
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3442
3467
|
name: "sub_agent_team_agent_relations";
|
|
3443
3468
|
schema: undefined;
|
|
3444
3469
|
columns: {
|
|
3445
|
-
createdAt:
|
|
3470
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3446
3471
|
name: "created_at";
|
|
3447
3472
|
tableName: "sub_agent_team_agent_relations";
|
|
3448
3473
|
dataType: "string";
|
|
@@ -3459,7 +3484,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3459
3484
|
identity: undefined;
|
|
3460
3485
|
generated: undefined;
|
|
3461
3486
|
}, {}, {}>;
|
|
3462
|
-
updatedAt:
|
|
3487
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3463
3488
|
name: "updated_at";
|
|
3464
3489
|
tableName: "sub_agent_team_agent_relations";
|
|
3465
3490
|
dataType: "string";
|
|
@@ -3476,7 +3501,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3476
3501
|
identity: undefined;
|
|
3477
3502
|
generated: undefined;
|
|
3478
3503
|
}, {}, {}>;
|
|
3479
|
-
targetAgentId:
|
|
3504
|
+
targetAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3480
3505
|
name: "target_agent_id";
|
|
3481
3506
|
tableName: "sub_agent_team_agent_relations";
|
|
3482
3507
|
dataType: "string";
|
|
@@ -3495,7 +3520,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3495
3520
|
}, {}, {
|
|
3496
3521
|
length: 256;
|
|
3497
3522
|
}>;
|
|
3498
|
-
headers:
|
|
3523
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3499
3524
|
name: "headers";
|
|
3500
3525
|
tableName: "sub_agent_team_agent_relations";
|
|
3501
3526
|
dataType: "json";
|
|
@@ -3514,7 +3539,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3514
3539
|
}, {}, {
|
|
3515
3540
|
$type: Record<string, string> | null;
|
|
3516
3541
|
}>;
|
|
3517
|
-
subAgentId:
|
|
3542
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3518
3543
|
name: "sub_agent_id";
|
|
3519
3544
|
tableName: "sub_agent_team_agent_relations";
|
|
3520
3545
|
dataType: "string";
|
|
@@ -3533,7 +3558,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3533
3558
|
}, {}, {
|
|
3534
3559
|
length: 256;
|
|
3535
3560
|
}>;
|
|
3536
|
-
agentId:
|
|
3561
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3537
3562
|
name: "agent_id";
|
|
3538
3563
|
tableName: "sub_agent_team_agent_relations";
|
|
3539
3564
|
dataType: "string";
|
|
@@ -3552,7 +3577,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3552
3577
|
}, {}, {
|
|
3553
3578
|
length: 256;
|
|
3554
3579
|
}>;
|
|
3555
|
-
projectId:
|
|
3580
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3556
3581
|
name: "project_id";
|
|
3557
3582
|
tableName: "sub_agent_team_agent_relations";
|
|
3558
3583
|
dataType: "string";
|
|
@@ -3571,7 +3596,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3571
3596
|
}, {}, {
|
|
3572
3597
|
length: 256;
|
|
3573
3598
|
}>;
|
|
3574
|
-
tenantId:
|
|
3599
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3575
3600
|
name: "tenant_id";
|
|
3576
3601
|
tableName: "sub_agent_team_agent_relations";
|
|
3577
3602
|
dataType: "string";
|
|
@@ -3590,7 +3615,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3590
3615
|
}, {}, {
|
|
3591
3616
|
length: 256;
|
|
3592
3617
|
}>;
|
|
3593
|
-
id:
|
|
3618
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3594
3619
|
name: "id";
|
|
3595
3620
|
tableName: "sub_agent_team_agent_relations";
|
|
3596
3621
|
dataType: "string";
|
|
@@ -3612,11 +3637,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3612
3637
|
};
|
|
3613
3638
|
dialect: "pg";
|
|
3614
3639
|
}>;
|
|
3615
|
-
declare const subAgentFunctionToolRelations:
|
|
3640
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3616
3641
|
name: "sub_agent_function_tool_relations";
|
|
3617
3642
|
schema: undefined;
|
|
3618
3643
|
columns: {
|
|
3619
|
-
createdAt:
|
|
3644
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3620
3645
|
name: "created_at";
|
|
3621
3646
|
tableName: "sub_agent_function_tool_relations";
|
|
3622
3647
|
dataType: "string";
|
|
@@ -3633,7 +3658,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3633
3658
|
identity: undefined;
|
|
3634
3659
|
generated: undefined;
|
|
3635
3660
|
}, {}, {}>;
|
|
3636
|
-
updatedAt:
|
|
3661
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3637
3662
|
name: "updated_at";
|
|
3638
3663
|
tableName: "sub_agent_function_tool_relations";
|
|
3639
3664
|
dataType: "string";
|
|
@@ -3650,7 +3675,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3650
3675
|
identity: undefined;
|
|
3651
3676
|
generated: undefined;
|
|
3652
3677
|
}, {}, {}>;
|
|
3653
|
-
functionToolId:
|
|
3678
|
+
functionToolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3654
3679
|
name: "function_tool_id";
|
|
3655
3680
|
tableName: "sub_agent_function_tool_relations";
|
|
3656
3681
|
dataType: "string";
|
|
@@ -3669,7 +3694,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3669
3694
|
}, {}, {
|
|
3670
3695
|
length: 256;
|
|
3671
3696
|
}>;
|
|
3672
|
-
subAgentId:
|
|
3697
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3673
3698
|
name: "sub_agent_id";
|
|
3674
3699
|
tableName: "sub_agent_function_tool_relations";
|
|
3675
3700
|
dataType: "string";
|
|
@@ -3688,7 +3713,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3688
3713
|
}, {}, {
|
|
3689
3714
|
length: 256;
|
|
3690
3715
|
}>;
|
|
3691
|
-
agentId:
|
|
3716
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3692
3717
|
name: "agent_id";
|
|
3693
3718
|
tableName: "sub_agent_function_tool_relations";
|
|
3694
3719
|
dataType: "string";
|
|
@@ -3707,7 +3732,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3707
3732
|
}, {}, {
|
|
3708
3733
|
length: 256;
|
|
3709
3734
|
}>;
|
|
3710
|
-
projectId:
|
|
3735
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3711
3736
|
name: "project_id";
|
|
3712
3737
|
tableName: "sub_agent_function_tool_relations";
|
|
3713
3738
|
dataType: "string";
|
|
@@ -3726,7 +3751,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3726
3751
|
}, {}, {
|
|
3727
3752
|
length: 256;
|
|
3728
3753
|
}>;
|
|
3729
|
-
tenantId:
|
|
3754
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3730
3755
|
name: "tenant_id";
|
|
3731
3756
|
tableName: "sub_agent_function_tool_relations";
|
|
3732
3757
|
dataType: "string";
|
|
@@ -3745,7 +3770,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3745
3770
|
}, {}, {
|
|
3746
3771
|
length: 256;
|
|
3747
3772
|
}>;
|
|
3748
|
-
id:
|
|
3773
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3749
3774
|
name: "id";
|
|
3750
3775
|
tableName: "sub_agent_function_tool_relations";
|
|
3751
3776
|
dataType: "string";
|
|
@@ -3767,11 +3792,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3767
3792
|
};
|
|
3768
3793
|
dialect: "pg";
|
|
3769
3794
|
}>;
|
|
3770
|
-
declare const conversations:
|
|
3795
|
+
declare const conversations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3771
3796
|
name: "conversations";
|
|
3772
3797
|
schema: undefined;
|
|
3773
3798
|
columns: {
|
|
3774
|
-
createdAt:
|
|
3799
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3775
3800
|
name: "created_at";
|
|
3776
3801
|
tableName: "conversations";
|
|
3777
3802
|
dataType: "string";
|
|
@@ -3788,7 +3813,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3788
3813
|
identity: undefined;
|
|
3789
3814
|
generated: undefined;
|
|
3790
3815
|
}, {}, {}>;
|
|
3791
|
-
updatedAt:
|
|
3816
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3792
3817
|
name: "updated_at";
|
|
3793
3818
|
tableName: "conversations";
|
|
3794
3819
|
dataType: "string";
|
|
@@ -3805,7 +3830,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3805
3830
|
identity: undefined;
|
|
3806
3831
|
generated: undefined;
|
|
3807
3832
|
}, {}, {}>;
|
|
3808
|
-
userId:
|
|
3833
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
3809
3834
|
name: "user_id";
|
|
3810
3835
|
tableName: "conversations";
|
|
3811
3836
|
dataType: "string";
|
|
@@ -3824,7 +3849,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3824
3849
|
}, {}, {
|
|
3825
3850
|
length: 256;
|
|
3826
3851
|
}>;
|
|
3827
|
-
activeSubAgentId:
|
|
3852
|
+
activeSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3828
3853
|
name: "active_sub_agent_id";
|
|
3829
3854
|
tableName: "conversations";
|
|
3830
3855
|
dataType: "string";
|
|
@@ -3843,7 +3868,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3843
3868
|
}, {}, {
|
|
3844
3869
|
length: 256;
|
|
3845
3870
|
}>;
|
|
3846
|
-
title:
|
|
3871
|
+
title: drizzle_orm_pg_core0.PgColumn<{
|
|
3847
3872
|
name: "title";
|
|
3848
3873
|
tableName: "conversations";
|
|
3849
3874
|
dataType: "string";
|
|
@@ -3860,7 +3885,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3860
3885
|
identity: undefined;
|
|
3861
3886
|
generated: undefined;
|
|
3862
3887
|
}, {}, {}>;
|
|
3863
|
-
lastContextResolution:
|
|
3888
|
+
lastContextResolution: drizzle_orm_pg_core0.PgColumn<{
|
|
3864
3889
|
name: "last_context_resolution";
|
|
3865
3890
|
tableName: "conversations";
|
|
3866
3891
|
dataType: "string";
|
|
@@ -3877,7 +3902,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3877
3902
|
identity: undefined;
|
|
3878
3903
|
generated: undefined;
|
|
3879
3904
|
}, {}, {}>;
|
|
3880
|
-
metadata:
|
|
3905
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
3881
3906
|
name: "metadata";
|
|
3882
3907
|
tableName: "conversations";
|
|
3883
3908
|
dataType: "json";
|
|
@@ -3896,7 +3921,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3896
3921
|
}, {}, {
|
|
3897
3922
|
$type: ConversationMetadata;
|
|
3898
3923
|
}>;
|
|
3899
|
-
projectId:
|
|
3924
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3900
3925
|
name: "project_id";
|
|
3901
3926
|
tableName: "conversations";
|
|
3902
3927
|
dataType: "string";
|
|
@@ -3915,7 +3940,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3915
3940
|
}, {}, {
|
|
3916
3941
|
length: 256;
|
|
3917
3942
|
}>;
|
|
3918
|
-
tenantId:
|
|
3943
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3919
3944
|
name: "tenant_id";
|
|
3920
3945
|
tableName: "conversations";
|
|
3921
3946
|
dataType: "string";
|
|
@@ -3934,7 +3959,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3934
3959
|
}, {}, {
|
|
3935
3960
|
length: 256;
|
|
3936
3961
|
}>;
|
|
3937
|
-
id:
|
|
3962
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3938
3963
|
name: "id";
|
|
3939
3964
|
tableName: "conversations";
|
|
3940
3965
|
dataType: "string";
|
|
@@ -3956,11 +3981,11 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3956
3981
|
};
|
|
3957
3982
|
dialect: "pg";
|
|
3958
3983
|
}>;
|
|
3959
|
-
declare const messages:
|
|
3984
|
+
declare const messages: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3960
3985
|
name: "messages";
|
|
3961
3986
|
schema: undefined;
|
|
3962
3987
|
columns: {
|
|
3963
|
-
createdAt:
|
|
3988
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3964
3989
|
name: "created_at";
|
|
3965
3990
|
tableName: "messages";
|
|
3966
3991
|
dataType: "string";
|
|
@@ -3977,7 +4002,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3977
4002
|
identity: undefined;
|
|
3978
4003
|
generated: undefined;
|
|
3979
4004
|
}, {}, {}>;
|
|
3980
|
-
updatedAt:
|
|
4005
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3981
4006
|
name: "updated_at";
|
|
3982
4007
|
tableName: "messages";
|
|
3983
4008
|
dataType: "string";
|
|
@@ -3994,7 +4019,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3994
4019
|
identity: undefined;
|
|
3995
4020
|
generated: undefined;
|
|
3996
4021
|
}, {}, {}>;
|
|
3997
|
-
conversationId:
|
|
4022
|
+
conversationId: drizzle_orm_pg_core0.PgColumn<{
|
|
3998
4023
|
name: "conversation_id";
|
|
3999
4024
|
tableName: "messages";
|
|
4000
4025
|
dataType: "string";
|
|
@@ -4013,7 +4038,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4013
4038
|
}, {}, {
|
|
4014
4039
|
length: 256;
|
|
4015
4040
|
}>;
|
|
4016
|
-
role:
|
|
4041
|
+
role: drizzle_orm_pg_core0.PgColumn<{
|
|
4017
4042
|
name: "role";
|
|
4018
4043
|
tableName: "messages";
|
|
4019
4044
|
dataType: "string";
|
|
@@ -4032,7 +4057,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4032
4057
|
}, {}, {
|
|
4033
4058
|
length: 256;
|
|
4034
4059
|
}>;
|
|
4035
|
-
fromSubAgentId:
|
|
4060
|
+
fromSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4036
4061
|
name: "from_sub_agent_id";
|
|
4037
4062
|
tableName: "messages";
|
|
4038
4063
|
dataType: "string";
|
|
@@ -4051,7 +4076,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4051
4076
|
}, {}, {
|
|
4052
4077
|
length: 256;
|
|
4053
4078
|
}>;
|
|
4054
|
-
toSubAgentId:
|
|
4079
|
+
toSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4055
4080
|
name: "to_sub_agent_id";
|
|
4056
4081
|
tableName: "messages";
|
|
4057
4082
|
dataType: "string";
|
|
@@ -4070,7 +4095,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4070
4095
|
}, {}, {
|
|
4071
4096
|
length: 256;
|
|
4072
4097
|
}>;
|
|
4073
|
-
fromExternalAgentId:
|
|
4098
|
+
fromExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4074
4099
|
name: "from_external_sub_agent_id";
|
|
4075
4100
|
tableName: "messages";
|
|
4076
4101
|
dataType: "string";
|
|
@@ -4089,7 +4114,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4089
4114
|
}, {}, {
|
|
4090
4115
|
length: 256;
|
|
4091
4116
|
}>;
|
|
4092
|
-
toExternalAgentId:
|
|
4117
|
+
toExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4093
4118
|
name: "to_external_sub_agent_id";
|
|
4094
4119
|
tableName: "messages";
|
|
4095
4120
|
dataType: "string";
|
|
@@ -4108,7 +4133,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4108
4133
|
}, {}, {
|
|
4109
4134
|
length: 256;
|
|
4110
4135
|
}>;
|
|
4111
|
-
fromTeamAgentId:
|
|
4136
|
+
fromTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4112
4137
|
name: "from_team_agent_id";
|
|
4113
4138
|
tableName: "messages";
|
|
4114
4139
|
dataType: "string";
|
|
@@ -4127,7 +4152,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4127
4152
|
}, {}, {
|
|
4128
4153
|
length: 256;
|
|
4129
4154
|
}>;
|
|
4130
|
-
toTeamAgentId:
|
|
4155
|
+
toTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4131
4156
|
name: "to_team_agent_id";
|
|
4132
4157
|
tableName: "messages";
|
|
4133
4158
|
dataType: "string";
|
|
@@ -4146,7 +4171,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4146
4171
|
}, {}, {
|
|
4147
4172
|
length: 256;
|
|
4148
4173
|
}>;
|
|
4149
|
-
content:
|
|
4174
|
+
content: drizzle_orm_pg_core0.PgColumn<{
|
|
4150
4175
|
name: "content";
|
|
4151
4176
|
tableName: "messages";
|
|
4152
4177
|
dataType: "json";
|
|
@@ -4165,7 +4190,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4165
4190
|
}, {}, {
|
|
4166
4191
|
$type: MessageContent;
|
|
4167
4192
|
}>;
|
|
4168
|
-
visibility:
|
|
4193
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4169
4194
|
name: "visibility";
|
|
4170
4195
|
tableName: "messages";
|
|
4171
4196
|
dataType: "string";
|
|
@@ -4184,7 +4209,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4184
4209
|
}, {}, {
|
|
4185
4210
|
length: 256;
|
|
4186
4211
|
}>;
|
|
4187
|
-
messageType:
|
|
4212
|
+
messageType: drizzle_orm_pg_core0.PgColumn<{
|
|
4188
4213
|
name: "message_type";
|
|
4189
4214
|
tableName: "messages";
|
|
4190
4215
|
dataType: "string";
|
|
@@ -4203,7 +4228,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4203
4228
|
}, {}, {
|
|
4204
4229
|
length: 256;
|
|
4205
4230
|
}>;
|
|
4206
|
-
taskId:
|
|
4231
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4207
4232
|
name: "task_id";
|
|
4208
4233
|
tableName: "messages";
|
|
4209
4234
|
dataType: "string";
|
|
@@ -4222,7 +4247,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4222
4247
|
}, {}, {
|
|
4223
4248
|
length: 256;
|
|
4224
4249
|
}>;
|
|
4225
|
-
parentMessageId:
|
|
4250
|
+
parentMessageId: drizzle_orm_pg_core0.PgColumn<{
|
|
4226
4251
|
name: "parent_message_id";
|
|
4227
4252
|
tableName: "messages";
|
|
4228
4253
|
dataType: "string";
|
|
@@ -4241,7 +4266,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4241
4266
|
}, {}, {
|
|
4242
4267
|
length: 256;
|
|
4243
4268
|
}>;
|
|
4244
|
-
a2aTaskId:
|
|
4269
|
+
a2aTaskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4245
4270
|
name: "a2a_task_id";
|
|
4246
4271
|
tableName: "messages";
|
|
4247
4272
|
dataType: "string";
|
|
@@ -4260,7 +4285,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4260
4285
|
}, {}, {
|
|
4261
4286
|
length: 256;
|
|
4262
4287
|
}>;
|
|
4263
|
-
a2aSessionId:
|
|
4288
|
+
a2aSessionId: drizzle_orm_pg_core0.PgColumn<{
|
|
4264
4289
|
name: "a2a_session_id";
|
|
4265
4290
|
tableName: "messages";
|
|
4266
4291
|
dataType: "string";
|
|
@@ -4279,7 +4304,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4279
4304
|
}, {}, {
|
|
4280
4305
|
length: 256;
|
|
4281
4306
|
}>;
|
|
4282
|
-
metadata:
|
|
4307
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4283
4308
|
name: "metadata";
|
|
4284
4309
|
tableName: "messages";
|
|
4285
4310
|
dataType: "json";
|
|
@@ -4298,7 +4323,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4298
4323
|
}, {}, {
|
|
4299
4324
|
$type: MessageMetadata;
|
|
4300
4325
|
}>;
|
|
4301
|
-
projectId:
|
|
4326
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4302
4327
|
name: "project_id";
|
|
4303
4328
|
tableName: "messages";
|
|
4304
4329
|
dataType: "string";
|
|
@@ -4317,7 +4342,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4317
4342
|
}, {}, {
|
|
4318
4343
|
length: 256;
|
|
4319
4344
|
}>;
|
|
4320
|
-
tenantId:
|
|
4345
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4321
4346
|
name: "tenant_id";
|
|
4322
4347
|
tableName: "messages";
|
|
4323
4348
|
dataType: "string";
|
|
@@ -4336,7 +4361,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4336
4361
|
}, {}, {
|
|
4337
4362
|
length: 256;
|
|
4338
4363
|
}>;
|
|
4339
|
-
id:
|
|
4364
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4340
4365
|
name: "id";
|
|
4341
4366
|
tableName: "messages";
|
|
4342
4367
|
dataType: "string";
|
|
@@ -4358,11 +4383,11 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4358
4383
|
};
|
|
4359
4384
|
dialect: "pg";
|
|
4360
4385
|
}>;
|
|
4361
|
-
declare const ledgerArtifacts:
|
|
4386
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4362
4387
|
name: "ledger_artifacts";
|
|
4363
4388
|
schema: undefined;
|
|
4364
4389
|
columns: {
|
|
4365
|
-
createdAt:
|
|
4390
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4366
4391
|
name: "created_at";
|
|
4367
4392
|
tableName: "ledger_artifacts";
|
|
4368
4393
|
dataType: "string";
|
|
@@ -4379,7 +4404,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4379
4404
|
identity: undefined;
|
|
4380
4405
|
generated: undefined;
|
|
4381
4406
|
}, {}, {}>;
|
|
4382
|
-
updatedAt:
|
|
4407
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4383
4408
|
name: "updated_at";
|
|
4384
4409
|
tableName: "ledger_artifacts";
|
|
4385
4410
|
dataType: "string";
|
|
@@ -4396,7 +4421,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4396
4421
|
identity: undefined;
|
|
4397
4422
|
generated: undefined;
|
|
4398
4423
|
}, {}, {}>;
|
|
4399
|
-
taskId:
|
|
4424
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4400
4425
|
name: "task_id";
|
|
4401
4426
|
tableName: "ledger_artifacts";
|
|
4402
4427
|
dataType: "string";
|
|
@@ -4415,7 +4440,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4415
4440
|
}, {}, {
|
|
4416
4441
|
length: 256;
|
|
4417
4442
|
}>;
|
|
4418
|
-
toolCallId:
|
|
4443
|
+
toolCallId: drizzle_orm_pg_core0.PgColumn<{
|
|
4419
4444
|
name: "tool_call_id";
|
|
4420
4445
|
tableName: "ledger_artifacts";
|
|
4421
4446
|
dataType: "string";
|
|
@@ -4434,7 +4459,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4434
4459
|
}, {}, {
|
|
4435
4460
|
length: 256;
|
|
4436
4461
|
}>;
|
|
4437
|
-
contextId:
|
|
4462
|
+
contextId: drizzle_orm_pg_core0.PgColumn<{
|
|
4438
4463
|
name: "context_id";
|
|
4439
4464
|
tableName: "ledger_artifacts";
|
|
4440
4465
|
dataType: "string";
|
|
@@ -4453,7 +4478,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4453
4478
|
}, {}, {
|
|
4454
4479
|
length: 256;
|
|
4455
4480
|
}>;
|
|
4456
|
-
type:
|
|
4481
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
4457
4482
|
name: "type";
|
|
4458
4483
|
tableName: "ledger_artifacts";
|
|
4459
4484
|
dataType: "string";
|
|
@@ -4472,7 +4497,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4472
4497
|
}, {}, {
|
|
4473
4498
|
length: 256;
|
|
4474
4499
|
}>;
|
|
4475
|
-
name:
|
|
4500
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4476
4501
|
name: "name";
|
|
4477
4502
|
tableName: "ledger_artifacts";
|
|
4478
4503
|
dataType: "string";
|
|
@@ -4491,7 +4516,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4491
4516
|
}, {}, {
|
|
4492
4517
|
length: 256;
|
|
4493
4518
|
}>;
|
|
4494
|
-
description:
|
|
4519
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
4495
4520
|
name: "description";
|
|
4496
4521
|
tableName: "ledger_artifacts";
|
|
4497
4522
|
dataType: "string";
|
|
@@ -4508,7 +4533,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4508
4533
|
identity: undefined;
|
|
4509
4534
|
generated: undefined;
|
|
4510
4535
|
}, {}, {}>;
|
|
4511
|
-
parts:
|
|
4536
|
+
parts: drizzle_orm_pg_core0.PgColumn<{
|
|
4512
4537
|
name: "parts";
|
|
4513
4538
|
tableName: "ledger_artifacts";
|
|
4514
4539
|
dataType: "json";
|
|
@@ -4527,7 +4552,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4527
4552
|
}, {}, {
|
|
4528
4553
|
$type: Part[] | null;
|
|
4529
4554
|
}>;
|
|
4530
|
-
metadata:
|
|
4555
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4531
4556
|
name: "metadata";
|
|
4532
4557
|
tableName: "ledger_artifacts";
|
|
4533
4558
|
dataType: "json";
|
|
@@ -4546,7 +4571,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4546
4571
|
}, {}, {
|
|
4547
4572
|
$type: Record<string, unknown> | null;
|
|
4548
4573
|
}>;
|
|
4549
|
-
summary:
|
|
4574
|
+
summary: drizzle_orm_pg_core0.PgColumn<{
|
|
4550
4575
|
name: "summary";
|
|
4551
4576
|
tableName: "ledger_artifacts";
|
|
4552
4577
|
dataType: "string";
|
|
@@ -4563,7 +4588,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4563
4588
|
identity: undefined;
|
|
4564
4589
|
generated: undefined;
|
|
4565
4590
|
}, {}, {}>;
|
|
4566
|
-
mime:
|
|
4591
|
+
mime: drizzle_orm_pg_core0.PgColumn<{
|
|
4567
4592
|
name: "mime";
|
|
4568
4593
|
tableName: "ledger_artifacts";
|
|
4569
4594
|
dataType: "json";
|
|
@@ -4582,7 +4607,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4582
4607
|
}, {}, {
|
|
4583
4608
|
$type: string[] | null;
|
|
4584
4609
|
}>;
|
|
4585
|
-
visibility:
|
|
4610
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4586
4611
|
name: "visibility";
|
|
4587
4612
|
tableName: "ledger_artifacts";
|
|
4588
4613
|
dataType: "string";
|
|
@@ -4601,7 +4626,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4601
4626
|
}, {}, {
|
|
4602
4627
|
length: 256;
|
|
4603
4628
|
}>;
|
|
4604
|
-
allowedAgents:
|
|
4629
|
+
allowedAgents: drizzle_orm_pg_core0.PgColumn<{
|
|
4605
4630
|
name: "allowed_agents";
|
|
4606
4631
|
tableName: "ledger_artifacts";
|
|
4607
4632
|
dataType: "json";
|
|
@@ -4620,7 +4645,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4620
4645
|
}, {}, {
|
|
4621
4646
|
$type: string[] | null;
|
|
4622
4647
|
}>;
|
|
4623
|
-
derivedFrom:
|
|
4648
|
+
derivedFrom: drizzle_orm_pg_core0.PgColumn<{
|
|
4624
4649
|
name: "derived_from";
|
|
4625
4650
|
tableName: "ledger_artifacts";
|
|
4626
4651
|
dataType: "string";
|
|
@@ -4639,7 +4664,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4639
4664
|
}, {}, {
|
|
4640
4665
|
length: 256;
|
|
4641
4666
|
}>;
|
|
4642
|
-
projectId:
|
|
4667
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4643
4668
|
name: "project_id";
|
|
4644
4669
|
tableName: "ledger_artifacts";
|
|
4645
4670
|
dataType: "string";
|
|
@@ -4658,7 +4683,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4658
4683
|
}, {}, {
|
|
4659
4684
|
length: 256;
|
|
4660
4685
|
}>;
|
|
4661
|
-
tenantId:
|
|
4686
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4662
4687
|
name: "tenant_id";
|
|
4663
4688
|
tableName: "ledger_artifacts";
|
|
4664
4689
|
dataType: "string";
|
|
@@ -4677,7 +4702,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4677
4702
|
}, {}, {
|
|
4678
4703
|
length: 256;
|
|
4679
4704
|
}>;
|
|
4680
|
-
id:
|
|
4705
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4681
4706
|
name: "id";
|
|
4682
4707
|
tableName: "ledger_artifacts";
|
|
4683
4708
|
dataType: "string";
|
|
@@ -4699,11 +4724,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4699
4724
|
};
|
|
4700
4725
|
dialect: "pg";
|
|
4701
4726
|
}>;
|
|
4702
|
-
declare const apiKeys:
|
|
4727
|
+
declare const apiKeys: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4703
4728
|
name: "api_keys";
|
|
4704
4729
|
schema: undefined;
|
|
4705
4730
|
columns: {
|
|
4706
|
-
createdAt:
|
|
4731
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4707
4732
|
name: "created_at";
|
|
4708
4733
|
tableName: "api_keys";
|
|
4709
4734
|
dataType: "string";
|
|
@@ -4720,7 +4745,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4720
4745
|
identity: undefined;
|
|
4721
4746
|
generated: undefined;
|
|
4722
4747
|
}, {}, {}>;
|
|
4723
|
-
updatedAt:
|
|
4748
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4724
4749
|
name: "updated_at";
|
|
4725
4750
|
tableName: "api_keys";
|
|
4726
4751
|
dataType: "string";
|
|
@@ -4737,7 +4762,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4737
4762
|
identity: undefined;
|
|
4738
4763
|
generated: undefined;
|
|
4739
4764
|
}, {}, {}>;
|
|
4740
|
-
publicId:
|
|
4765
|
+
publicId: drizzle_orm_pg_core0.PgColumn<{
|
|
4741
4766
|
name: "public_id";
|
|
4742
4767
|
tableName: "api_keys";
|
|
4743
4768
|
dataType: "string";
|
|
@@ -4756,7 +4781,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4756
4781
|
}, {}, {
|
|
4757
4782
|
length: 256;
|
|
4758
4783
|
}>;
|
|
4759
|
-
keyHash:
|
|
4784
|
+
keyHash: drizzle_orm_pg_core0.PgColumn<{
|
|
4760
4785
|
name: "key_hash";
|
|
4761
4786
|
tableName: "api_keys";
|
|
4762
4787
|
dataType: "string";
|
|
@@ -4775,7 +4800,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4775
4800
|
}, {}, {
|
|
4776
4801
|
length: 256;
|
|
4777
4802
|
}>;
|
|
4778
|
-
keyPrefix:
|
|
4803
|
+
keyPrefix: drizzle_orm_pg_core0.PgColumn<{
|
|
4779
4804
|
name: "key_prefix";
|
|
4780
4805
|
tableName: "api_keys";
|
|
4781
4806
|
dataType: "string";
|
|
@@ -4794,7 +4819,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4794
4819
|
}, {}, {
|
|
4795
4820
|
length: 256;
|
|
4796
4821
|
}>;
|
|
4797
|
-
name:
|
|
4822
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4798
4823
|
name: "name";
|
|
4799
4824
|
tableName: "api_keys";
|
|
4800
4825
|
dataType: "string";
|
|
@@ -4813,7 +4838,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4813
4838
|
}, {}, {
|
|
4814
4839
|
length: 256;
|
|
4815
4840
|
}>;
|
|
4816
|
-
lastUsedAt:
|
|
4841
|
+
lastUsedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4817
4842
|
name: "last_used_at";
|
|
4818
4843
|
tableName: "api_keys";
|
|
4819
4844
|
dataType: "string";
|
|
@@ -4830,7 +4855,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4830
4855
|
identity: undefined;
|
|
4831
4856
|
generated: undefined;
|
|
4832
4857
|
}, {}, {}>;
|
|
4833
|
-
expiresAt:
|
|
4858
|
+
expiresAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4834
4859
|
name: "expires_at";
|
|
4835
4860
|
tableName: "api_keys";
|
|
4836
4861
|
dataType: "string";
|
|
@@ -4847,7 +4872,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4847
4872
|
identity: undefined;
|
|
4848
4873
|
generated: undefined;
|
|
4849
4874
|
}, {}, {}>;
|
|
4850
|
-
agentId:
|
|
4875
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4851
4876
|
name: "agent_id";
|
|
4852
4877
|
tableName: "api_keys";
|
|
4853
4878
|
dataType: "string";
|
|
@@ -4866,7 +4891,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4866
4891
|
}, {}, {
|
|
4867
4892
|
length: 256;
|
|
4868
4893
|
}>;
|
|
4869
|
-
projectId:
|
|
4894
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4870
4895
|
name: "project_id";
|
|
4871
4896
|
tableName: "api_keys";
|
|
4872
4897
|
dataType: "string";
|
|
@@ -4885,7 +4910,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4885
4910
|
}, {}, {
|
|
4886
4911
|
length: 256;
|
|
4887
4912
|
}>;
|
|
4888
|
-
tenantId:
|
|
4913
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4889
4914
|
name: "tenant_id";
|
|
4890
4915
|
tableName: "api_keys";
|
|
4891
4916
|
dataType: "string";
|
|
@@ -4904,7 +4929,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4904
4929
|
}, {}, {
|
|
4905
4930
|
length: 256;
|
|
4906
4931
|
}>;
|
|
4907
|
-
id:
|
|
4932
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4908
4933
|
name: "id";
|
|
4909
4934
|
tableName: "api_keys";
|
|
4910
4935
|
dataType: "string";
|
|
@@ -4926,11 +4951,11 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4926
4951
|
};
|
|
4927
4952
|
dialect: "pg";
|
|
4928
4953
|
}>;
|
|
4929
|
-
declare const credentialReferences:
|
|
4954
|
+
declare const credentialReferences: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4930
4955
|
name: "credential_references";
|
|
4931
4956
|
schema: undefined;
|
|
4932
4957
|
columns: {
|
|
4933
|
-
createdAt:
|
|
4958
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4934
4959
|
name: "created_at";
|
|
4935
4960
|
tableName: "credential_references";
|
|
4936
4961
|
dataType: "string";
|
|
@@ -4947,7 +4972,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4947
4972
|
identity: undefined;
|
|
4948
4973
|
generated: undefined;
|
|
4949
4974
|
}, {}, {}>;
|
|
4950
|
-
updatedAt:
|
|
4975
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4951
4976
|
name: "updated_at";
|
|
4952
4977
|
tableName: "credential_references";
|
|
4953
4978
|
dataType: "string";
|
|
@@ -4964,7 +4989,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4964
4989
|
identity: undefined;
|
|
4965
4990
|
generated: undefined;
|
|
4966
4991
|
}, {}, {}>;
|
|
4967
|
-
name:
|
|
4992
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4968
4993
|
name: "name";
|
|
4969
4994
|
tableName: "credential_references";
|
|
4970
4995
|
dataType: "string";
|
|
@@ -4983,7 +5008,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4983
5008
|
}, {}, {
|
|
4984
5009
|
length: 256;
|
|
4985
5010
|
}>;
|
|
4986
|
-
type:
|
|
5011
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
4987
5012
|
name: "type";
|
|
4988
5013
|
tableName: "credential_references";
|
|
4989
5014
|
dataType: "string";
|
|
@@ -5002,7 +5027,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5002
5027
|
}, {}, {
|
|
5003
5028
|
length: 256;
|
|
5004
5029
|
}>;
|
|
5005
|
-
credentialStoreId:
|
|
5030
|
+
credentialStoreId: drizzle_orm_pg_core0.PgColumn<{
|
|
5006
5031
|
name: "credential_store_id";
|
|
5007
5032
|
tableName: "credential_references";
|
|
5008
5033
|
dataType: "string";
|
|
@@ -5021,7 +5046,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5021
5046
|
}, {}, {
|
|
5022
5047
|
length: 256;
|
|
5023
5048
|
}>;
|
|
5024
|
-
retrievalParams:
|
|
5049
|
+
retrievalParams: drizzle_orm_pg_core0.PgColumn<{
|
|
5025
5050
|
name: "retrieval_params";
|
|
5026
5051
|
tableName: "credential_references";
|
|
5027
5052
|
dataType: "json";
|
|
@@ -5040,7 +5065,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5040
5065
|
}, {}, {
|
|
5041
5066
|
$type: Record<string, unknown>;
|
|
5042
5067
|
}>;
|
|
5043
|
-
toolId:
|
|
5068
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
5044
5069
|
name: "tool_id";
|
|
5045
5070
|
tableName: "credential_references";
|
|
5046
5071
|
dataType: "string";
|
|
@@ -5059,7 +5084,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5059
5084
|
}, {}, {
|
|
5060
5085
|
length: 256;
|
|
5061
5086
|
}>;
|
|
5062
|
-
userId:
|
|
5087
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
5063
5088
|
name: "user_id";
|
|
5064
5089
|
tableName: "credential_references";
|
|
5065
5090
|
dataType: "string";
|
|
@@ -5078,7 +5103,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5078
5103
|
}, {}, {
|
|
5079
5104
|
length: 256;
|
|
5080
5105
|
}>;
|
|
5081
|
-
createdBy:
|
|
5106
|
+
createdBy: drizzle_orm_pg_core0.PgColumn<{
|
|
5082
5107
|
name: "created_by";
|
|
5083
5108
|
tableName: "credential_references";
|
|
5084
5109
|
dataType: "string";
|
|
@@ -5097,7 +5122,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5097
5122
|
}, {}, {
|
|
5098
5123
|
length: 256;
|
|
5099
5124
|
}>;
|
|
5100
|
-
projectId:
|
|
5125
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
5101
5126
|
name: "project_id";
|
|
5102
5127
|
tableName: "credential_references";
|
|
5103
5128
|
dataType: "string";
|
|
@@ -5116,7 +5141,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5116
5141
|
}, {}, {
|
|
5117
5142
|
length: 256;
|
|
5118
5143
|
}>;
|
|
5119
|
-
tenantId:
|
|
5144
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
5120
5145
|
name: "tenant_id";
|
|
5121
5146
|
tableName: "credential_references";
|
|
5122
5147
|
dataType: "string";
|
|
@@ -5135,7 +5160,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5135
5160
|
}, {}, {
|
|
5136
5161
|
length: 256;
|
|
5137
5162
|
}>;
|
|
5138
|
-
id:
|
|
5163
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
5139
5164
|
name: "id";
|
|
5140
5165
|
tableName: "credential_references";
|
|
5141
5166
|
dataType: "string";
|
|
@@ -5157,145 +5182,145 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5157
5182
|
};
|
|
5158
5183
|
dialect: "pg";
|
|
5159
5184
|
}>;
|
|
5160
|
-
declare const tasksRelations:
|
|
5161
|
-
project:
|
|
5162
|
-
parentRelations:
|
|
5163
|
-
childRelations:
|
|
5164
|
-
subAgent:
|
|
5165
|
-
messages:
|
|
5166
|
-
ledgerArtifacts:
|
|
5185
|
+
declare const tasksRelations: drizzle_orm0.Relations<"tasks", {
|
|
5186
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5187
|
+
parentRelations: drizzle_orm0.Many<"task_relations">;
|
|
5188
|
+
childRelations: drizzle_orm0.Many<"task_relations">;
|
|
5189
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5190
|
+
messages: drizzle_orm0.Many<"messages">;
|
|
5191
|
+
ledgerArtifacts: drizzle_orm0.Many<"ledger_artifacts">;
|
|
5167
5192
|
}>;
|
|
5168
|
-
declare const projectsRelations:
|
|
5169
|
-
subAgents:
|
|
5170
|
-
agents:
|
|
5171
|
-
tools:
|
|
5172
|
-
functions:
|
|
5173
|
-
contextConfigs:
|
|
5174
|
-
externalAgents:
|
|
5175
|
-
conversations:
|
|
5176
|
-
tasks:
|
|
5177
|
-
dataComponents:
|
|
5178
|
-
artifactComponents:
|
|
5179
|
-
ledgerArtifacts:
|
|
5180
|
-
credentialReferences:
|
|
5193
|
+
declare const projectsRelations: drizzle_orm0.Relations<"projects", {
|
|
5194
|
+
subAgents: drizzle_orm0.Many<"sub_agents">;
|
|
5195
|
+
agents: drizzle_orm0.Many<"agent">;
|
|
5196
|
+
tools: drizzle_orm0.Many<"tools">;
|
|
5197
|
+
functions: drizzle_orm0.Many<"functions">;
|
|
5198
|
+
contextConfigs: drizzle_orm0.Many<"context_configs">;
|
|
5199
|
+
externalAgents: drizzle_orm0.Many<"external_agents">;
|
|
5200
|
+
conversations: drizzle_orm0.Many<"conversations">;
|
|
5201
|
+
tasks: drizzle_orm0.Many<"tasks">;
|
|
5202
|
+
dataComponents: drizzle_orm0.Many<"data_components">;
|
|
5203
|
+
artifactComponents: drizzle_orm0.Many<"artifact_components">;
|
|
5204
|
+
ledgerArtifacts: drizzle_orm0.Many<"ledger_artifacts">;
|
|
5205
|
+
credentialReferences: drizzle_orm0.Many<"credential_references">;
|
|
5181
5206
|
}>;
|
|
5182
|
-
declare const taskRelationsRelations:
|
|
5183
|
-
parentTask:
|
|
5184
|
-
childTask:
|
|
5207
|
+
declare const taskRelationsRelations: drizzle_orm0.Relations<"task_relations", {
|
|
5208
|
+
parentTask: drizzle_orm0.One<"tasks", true>;
|
|
5209
|
+
childTask: drizzle_orm0.One<"tasks", true>;
|
|
5185
5210
|
}>;
|
|
5186
|
-
declare const contextConfigsRelations:
|
|
5187
|
-
project:
|
|
5188
|
-
agents:
|
|
5189
|
-
cache:
|
|
5211
|
+
declare const contextConfigsRelations: drizzle_orm0.Relations<"context_configs", {
|
|
5212
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5213
|
+
agents: drizzle_orm0.Many<"agent">;
|
|
5214
|
+
cache: drizzle_orm0.Many<"context_cache">;
|
|
5190
5215
|
}>;
|
|
5191
|
-
declare const contextCacheRelations:
|
|
5192
|
-
contextConfig:
|
|
5216
|
+
declare const contextCacheRelations: drizzle_orm0.Relations<"context_cache", {
|
|
5217
|
+
contextConfig: drizzle_orm0.One<"context_configs", true>;
|
|
5193
5218
|
}>;
|
|
5194
|
-
declare const subAgentsRelations:
|
|
5195
|
-
project:
|
|
5196
|
-
tasks:
|
|
5197
|
-
defaultForAgents:
|
|
5198
|
-
sourceRelations:
|
|
5199
|
-
targetRelations:
|
|
5200
|
-
sentMessages:
|
|
5201
|
-
receivedMessages:
|
|
5202
|
-
toolRelations:
|
|
5203
|
-
functionToolRelations:
|
|
5204
|
-
dataComponentRelations:
|
|
5205
|
-
artifactComponentRelations:
|
|
5219
|
+
declare const subAgentsRelations: drizzle_orm0.Relations<"sub_agents", {
|
|
5220
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5221
|
+
tasks: drizzle_orm0.Many<"tasks">;
|
|
5222
|
+
defaultForAgents: drizzle_orm0.Many<"agent">;
|
|
5223
|
+
sourceRelations: drizzle_orm0.Many<"sub_agent_relations">;
|
|
5224
|
+
targetRelations: drizzle_orm0.Many<"sub_agent_relations">;
|
|
5225
|
+
sentMessages: drizzle_orm0.Many<"messages">;
|
|
5226
|
+
receivedMessages: drizzle_orm0.Many<"messages">;
|
|
5227
|
+
toolRelations: drizzle_orm0.Many<"sub_agent_tool_relations">;
|
|
5228
|
+
functionToolRelations: drizzle_orm0.Many<"sub_agent_function_tool_relations">;
|
|
5229
|
+
dataComponentRelations: drizzle_orm0.Many<"sub_agent_data_components">;
|
|
5230
|
+
artifactComponentRelations: drizzle_orm0.Many<"sub_agent_artifact_components">;
|
|
5206
5231
|
}>;
|
|
5207
|
-
declare const agentRelations:
|
|
5208
|
-
project:
|
|
5209
|
-
defaultSubAgent:
|
|
5210
|
-
contextConfig:
|
|
5211
|
-
functionTools:
|
|
5232
|
+
declare const agentRelations: drizzle_orm0.Relations<"agent", {
|
|
5233
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5234
|
+
defaultSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5235
|
+
contextConfig: drizzle_orm0.One<"context_configs", false>;
|
|
5236
|
+
functionTools: drizzle_orm0.Many<"function_tools">;
|
|
5212
5237
|
}>;
|
|
5213
|
-
declare const externalAgentsRelations:
|
|
5214
|
-
project:
|
|
5215
|
-
subAgentExternalAgentRelations:
|
|
5216
|
-
credentialReference:
|
|
5238
|
+
declare const externalAgentsRelations: drizzle_orm0.Relations<"external_agents", {
|
|
5239
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5240
|
+
subAgentExternalAgentRelations: drizzle_orm0.Many<"sub_agent_external_agent_relations">;
|
|
5241
|
+
credentialReference: drizzle_orm0.One<"credential_references", false>;
|
|
5217
5242
|
}>;
|
|
5218
|
-
declare const apiKeysRelations:
|
|
5219
|
-
project:
|
|
5220
|
-
agent:
|
|
5243
|
+
declare const apiKeysRelations: drizzle_orm0.Relations<"api_keys", {
|
|
5244
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5245
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5221
5246
|
}>;
|
|
5222
|
-
declare const agentToolRelationsRelations:
|
|
5223
|
-
subAgent:
|
|
5224
|
-
tool:
|
|
5247
|
+
declare const agentToolRelationsRelations: drizzle_orm0.Relations<"sub_agent_tool_relations", {
|
|
5248
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5249
|
+
tool: drizzle_orm0.One<"tools", true>;
|
|
5225
5250
|
}>;
|
|
5226
|
-
declare const credentialReferencesRelations:
|
|
5227
|
-
project:
|
|
5228
|
-
tools:
|
|
5229
|
-
externalAgents:
|
|
5251
|
+
declare const credentialReferencesRelations: drizzle_orm0.Relations<"credential_references", {
|
|
5252
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5253
|
+
tools: drizzle_orm0.Many<"tools">;
|
|
5254
|
+
externalAgents: drizzle_orm0.Many<"external_agents">;
|
|
5230
5255
|
}>;
|
|
5231
|
-
declare const toolsRelations:
|
|
5232
|
-
project:
|
|
5233
|
-
subAgentRelations:
|
|
5234
|
-
credentialReference:
|
|
5256
|
+
declare const toolsRelations: drizzle_orm0.Relations<"tools", {
|
|
5257
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5258
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_tool_relations">;
|
|
5259
|
+
credentialReference: drizzle_orm0.One<"credential_references", false>;
|
|
5235
5260
|
}>;
|
|
5236
|
-
declare const conversationsRelations:
|
|
5237
|
-
project:
|
|
5238
|
-
messages:
|
|
5239
|
-
activeSubAgent:
|
|
5261
|
+
declare const conversationsRelations: drizzle_orm0.Relations<"conversations", {
|
|
5262
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5263
|
+
messages: drizzle_orm0.Many<"messages">;
|
|
5264
|
+
activeSubAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5240
5265
|
}>;
|
|
5241
|
-
declare const messagesRelations:
|
|
5242
|
-
conversation:
|
|
5243
|
-
fromSubAgent:
|
|
5244
|
-
toSubAgent:
|
|
5245
|
-
fromTeamAgent:
|
|
5246
|
-
toTeamAgent:
|
|
5247
|
-
fromExternalAgent:
|
|
5248
|
-
toExternalAgent:
|
|
5249
|
-
task:
|
|
5250
|
-
parentMessage:
|
|
5251
|
-
childMessages:
|
|
5266
|
+
declare const messagesRelations: drizzle_orm0.Relations<"messages", {
|
|
5267
|
+
conversation: drizzle_orm0.One<"conversations", true>;
|
|
5268
|
+
fromSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5269
|
+
toSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5270
|
+
fromTeamAgent: drizzle_orm0.One<"agent", false>;
|
|
5271
|
+
toTeamAgent: drizzle_orm0.One<"agent", false>;
|
|
5272
|
+
fromExternalAgent: drizzle_orm0.One<"external_agents", false>;
|
|
5273
|
+
toExternalAgent: drizzle_orm0.One<"external_agents", false>;
|
|
5274
|
+
task: drizzle_orm0.One<"tasks", false>;
|
|
5275
|
+
parentMessage: drizzle_orm0.One<"messages", false>;
|
|
5276
|
+
childMessages: drizzle_orm0.Many<"messages">;
|
|
5252
5277
|
}>;
|
|
5253
|
-
declare const artifactComponentsRelations:
|
|
5254
|
-
project:
|
|
5255
|
-
subAgentRelations:
|
|
5278
|
+
declare const artifactComponentsRelations: drizzle_orm0.Relations<"artifact_components", {
|
|
5279
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5280
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_artifact_components">;
|
|
5256
5281
|
}>;
|
|
5257
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5258
|
-
subAgent:
|
|
5259
|
-
artifactComponent:
|
|
5282
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm0.Relations<"sub_agent_artifact_components", {
|
|
5283
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5284
|
+
artifactComponent: drizzle_orm0.One<"artifact_components", true>;
|
|
5260
5285
|
}>;
|
|
5261
|
-
declare const dataComponentsRelations:
|
|
5262
|
-
project:
|
|
5263
|
-
subAgentRelations:
|
|
5286
|
+
declare const dataComponentsRelations: drizzle_orm0.Relations<"data_components", {
|
|
5287
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5288
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_data_components">;
|
|
5264
5289
|
}>;
|
|
5265
|
-
declare const subAgentDataComponentsRelations:
|
|
5266
|
-
subAgent:
|
|
5267
|
-
dataComponent:
|
|
5290
|
+
declare const subAgentDataComponentsRelations: drizzle_orm0.Relations<"sub_agent_data_components", {
|
|
5291
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5292
|
+
dataComponent: drizzle_orm0.One<"data_components", true>;
|
|
5268
5293
|
}>;
|
|
5269
|
-
declare const ledgerArtifactsRelations:
|
|
5270
|
-
project:
|
|
5271
|
-
task:
|
|
5294
|
+
declare const ledgerArtifactsRelations: drizzle_orm0.Relations<"ledger_artifacts", {
|
|
5295
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5296
|
+
task: drizzle_orm0.One<"tasks", true>;
|
|
5272
5297
|
}>;
|
|
5273
|
-
declare const functionsRelations:
|
|
5274
|
-
functionTools:
|
|
5275
|
-
project:
|
|
5298
|
+
declare const functionsRelations: drizzle_orm0.Relations<"functions", {
|
|
5299
|
+
functionTools: drizzle_orm0.Many<"function_tools">;
|
|
5300
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5276
5301
|
}>;
|
|
5277
|
-
declare const subAgentRelationsRelations:
|
|
5278
|
-
agent:
|
|
5279
|
-
sourceSubAgent:
|
|
5280
|
-
targetSubAgent:
|
|
5302
|
+
declare const subAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_relations", {
|
|
5303
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5304
|
+
sourceSubAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5305
|
+
targetSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5281
5306
|
}>;
|
|
5282
|
-
declare const functionToolsRelations:
|
|
5283
|
-
project:
|
|
5284
|
-
agent:
|
|
5285
|
-
function:
|
|
5286
|
-
subAgentRelations:
|
|
5307
|
+
declare const functionToolsRelations: drizzle_orm0.Relations<"function_tools", {
|
|
5308
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5309
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5310
|
+
function: drizzle_orm0.One<"functions", true>;
|
|
5311
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_function_tool_relations">;
|
|
5287
5312
|
}>;
|
|
5288
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5289
|
-
subAgent:
|
|
5290
|
-
functionTool:
|
|
5313
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm0.Relations<"sub_agent_function_tool_relations", {
|
|
5314
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5315
|
+
functionTool: drizzle_orm0.One<"function_tools", true>;
|
|
5291
5316
|
}>;
|
|
5292
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5293
|
-
subAgent:
|
|
5294
|
-
externalAgent:
|
|
5317
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_external_agent_relations", {
|
|
5318
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5319
|
+
externalAgent: drizzle_orm0.One<"external_agents", true>;
|
|
5295
5320
|
}>;
|
|
5296
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5297
|
-
subAgent:
|
|
5298
|
-
targetAgent:
|
|
5321
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_team_agent_relations", {
|
|
5322
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5323
|
+
targetAgent: drizzle_orm0.One<"agent", true>;
|
|
5299
5324
|
}>;
|
|
5300
5325
|
//#endregion
|
|
5301
5326
|
export { account, agentRelations, agentToolRelationsRelations, agents, apiKeys, apiKeysRelations, artifactComponents, artifactComponentsRelations, contextCache, contextCacheRelations, contextConfigs, contextConfigsRelations, conversations, conversationsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, deviceCode, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projects, projectsRelations, schema_d_exports, session, ssoProvider, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, taskRelations, taskRelationsRelations, tasks, tasksRelations, tools, toolsRelations, user, verification };
|