@inkeep/agents-core 0.41.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/auth/auth-schema.d.ts +104 -104
- package/dist/auth/auth-validation-schemas.d.ts +146 -146
- package/dist/auth/auth.d.ts +18 -18
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/apiKeys.d.ts +4 -4
- package/dist/data-access/conversations.d.ts +8 -8
- package/dist/data-access/messages.d.ts +6 -6
- package/dist/data-access/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/subAgentRelations.d.ts +2 -2
- package/dist/data-access/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/tasks.d.ts +2 -2
- package/dist/data-access/tools.d.ts +6 -6
- package/dist/db/schema.d.ts +405 -405
- package/dist/utils/model-factory.js +13 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +771 -771
- package/package.json +2 -1
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,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2220
2220
|
}, {}, {
|
|
2221
2221
|
$type: Record<string, unknown>;
|
|
2222
2222
|
}>;
|
|
2223
|
-
render:
|
|
2223
|
+
render: drizzle_orm_pg_core0.PgColumn<{
|
|
2224
2224
|
name: "render";
|
|
2225
2225
|
tableName: "artifact_components";
|
|
2226
2226
|
dataType: "json";
|
|
@@ -2245,7 +2245,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2245
2245
|
mockData: Record<string, unknown>;
|
|
2246
2246
|
};
|
|
2247
2247
|
}>;
|
|
2248
|
-
name:
|
|
2248
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2249
2249
|
name: "name";
|
|
2250
2250
|
tableName: "artifact_components";
|
|
2251
2251
|
dataType: "string";
|
|
@@ -2264,7 +2264,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2264
2264
|
}, {}, {
|
|
2265
2265
|
length: 256;
|
|
2266
2266
|
}>;
|
|
2267
|
-
description:
|
|
2267
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2268
2268
|
name: "description";
|
|
2269
2269
|
tableName: "artifact_components";
|
|
2270
2270
|
dataType: "string";
|
|
@@ -2281,7 +2281,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2281
2281
|
identity: undefined;
|
|
2282
2282
|
generated: undefined;
|
|
2283
2283
|
}, {}, {}>;
|
|
2284
|
-
projectId:
|
|
2284
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2285
2285
|
name: "project_id";
|
|
2286
2286
|
tableName: "artifact_components";
|
|
2287
2287
|
dataType: "string";
|
|
@@ -2300,7 +2300,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2300
2300
|
}, {}, {
|
|
2301
2301
|
length: 256;
|
|
2302
2302
|
}>;
|
|
2303
|
-
tenantId:
|
|
2303
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2304
2304
|
name: "tenant_id";
|
|
2305
2305
|
tableName: "artifact_components";
|
|
2306
2306
|
dataType: "string";
|
|
@@ -2319,7 +2319,7 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2319
2319
|
}, {}, {
|
|
2320
2320
|
length: 256;
|
|
2321
2321
|
}>;
|
|
2322
|
-
id:
|
|
2322
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2323
2323
|
name: "id";
|
|
2324
2324
|
tableName: "artifact_components";
|
|
2325
2325
|
dataType: "string";
|
|
@@ -2341,11 +2341,11 @@ declare const artifactComponents: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2341
2341
|
};
|
|
2342
2342
|
dialect: "pg";
|
|
2343
2343
|
}>;
|
|
2344
|
-
declare const subAgentArtifactComponents:
|
|
2344
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2345
2345
|
name: "sub_agent_artifact_components";
|
|
2346
2346
|
schema: undefined;
|
|
2347
2347
|
columns: {
|
|
2348
|
-
artifactComponentId:
|
|
2348
|
+
artifactComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2349
2349
|
name: "artifact_component_id";
|
|
2350
2350
|
tableName: "sub_agent_artifact_components";
|
|
2351
2351
|
dataType: "string";
|
|
@@ -2364,7 +2364,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2364
2364
|
}, {}, {
|
|
2365
2365
|
length: 256;
|
|
2366
2366
|
}>;
|
|
2367
|
-
createdAt:
|
|
2367
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2368
2368
|
name: "created_at";
|
|
2369
2369
|
tableName: "sub_agent_artifact_components";
|
|
2370
2370
|
dataType: "string";
|
|
@@ -2381,7 +2381,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2381
2381
|
identity: undefined;
|
|
2382
2382
|
generated: undefined;
|
|
2383
2383
|
}, {}, {}>;
|
|
2384
|
-
subAgentId:
|
|
2384
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2385
2385
|
name: "sub_agent_id";
|
|
2386
2386
|
tableName: "sub_agent_artifact_components";
|
|
2387
2387
|
dataType: "string";
|
|
@@ -2400,7 +2400,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2400
2400
|
}, {}, {
|
|
2401
2401
|
length: 256;
|
|
2402
2402
|
}>;
|
|
2403
|
-
agentId:
|
|
2403
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2404
2404
|
name: "agent_id";
|
|
2405
2405
|
tableName: "sub_agent_artifact_components";
|
|
2406
2406
|
dataType: "string";
|
|
@@ -2419,7 +2419,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2419
2419
|
}, {}, {
|
|
2420
2420
|
length: 256;
|
|
2421
2421
|
}>;
|
|
2422
|
-
projectId:
|
|
2422
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2423
2423
|
name: "project_id";
|
|
2424
2424
|
tableName: "sub_agent_artifact_components";
|
|
2425
2425
|
dataType: "string";
|
|
@@ -2438,7 +2438,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2438
2438
|
}, {}, {
|
|
2439
2439
|
length: 256;
|
|
2440
2440
|
}>;
|
|
2441
|
-
tenantId:
|
|
2441
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2442
2442
|
name: "tenant_id";
|
|
2443
2443
|
tableName: "sub_agent_artifact_components";
|
|
2444
2444
|
dataType: "string";
|
|
@@ -2457,7 +2457,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2457
2457
|
}, {}, {
|
|
2458
2458
|
length: 256;
|
|
2459
2459
|
}>;
|
|
2460
|
-
id:
|
|
2460
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2461
2461
|
name: "id";
|
|
2462
2462
|
tableName: "sub_agent_artifact_components";
|
|
2463
2463
|
dataType: "string";
|
|
@@ -2479,11 +2479,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
2479
2479
|
};
|
|
2480
2480
|
dialect: "pg";
|
|
2481
2481
|
}>;
|
|
2482
|
-
declare const tools:
|
|
2482
|
+
declare const tools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2483
2483
|
name: "tools";
|
|
2484
2484
|
schema: undefined;
|
|
2485
2485
|
columns: {
|
|
2486
|
-
createdAt:
|
|
2486
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2487
2487
|
name: "created_at";
|
|
2488
2488
|
tableName: "tools";
|
|
2489
2489
|
dataType: "string";
|
|
@@ -2500,7 +2500,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2500
2500
|
identity: undefined;
|
|
2501
2501
|
generated: undefined;
|
|
2502
2502
|
}, {}, {}>;
|
|
2503
|
-
updatedAt:
|
|
2503
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2504
2504
|
name: "updated_at";
|
|
2505
2505
|
tableName: "tools";
|
|
2506
2506
|
dataType: "string";
|
|
@@ -2517,7 +2517,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2517
2517
|
identity: undefined;
|
|
2518
2518
|
generated: undefined;
|
|
2519
2519
|
}, {}, {}>;
|
|
2520
|
-
name:
|
|
2520
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2521
2521
|
name: "name";
|
|
2522
2522
|
tableName: "tools";
|
|
2523
2523
|
dataType: "string";
|
|
@@ -2536,7 +2536,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2536
2536
|
}, {}, {
|
|
2537
2537
|
length: 256;
|
|
2538
2538
|
}>;
|
|
2539
|
-
description:
|
|
2539
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2540
2540
|
name: "description";
|
|
2541
2541
|
tableName: "tools";
|
|
2542
2542
|
dataType: "string";
|
|
@@ -2553,7 +2553,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2553
2553
|
identity: undefined;
|
|
2554
2554
|
generated: undefined;
|
|
2555
2555
|
}, {}, {}>;
|
|
2556
|
-
config:
|
|
2556
|
+
config: drizzle_orm_pg_core0.PgColumn<{
|
|
2557
2557
|
name: "config";
|
|
2558
2558
|
tableName: "tools";
|
|
2559
2559
|
dataType: "json";
|
|
@@ -2578,7 +2578,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2578
2578
|
mcp: ToolMcpConfig;
|
|
2579
2579
|
};
|
|
2580
2580
|
}>;
|
|
2581
|
-
credentialReferenceId:
|
|
2581
|
+
credentialReferenceId: drizzle_orm_pg_core0.PgColumn<{
|
|
2582
2582
|
name: "credential_reference_id";
|
|
2583
2583
|
tableName: "tools";
|
|
2584
2584
|
dataType: "string";
|
|
@@ -2597,7 +2597,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2597
2597
|
}, {}, {
|
|
2598
2598
|
length: 256;
|
|
2599
2599
|
}>;
|
|
2600
|
-
credentialScope:
|
|
2600
|
+
credentialScope: drizzle_orm_pg_core0.PgColumn<{
|
|
2601
2601
|
name: "credential_scope";
|
|
2602
2602
|
tableName: "tools";
|
|
2603
2603
|
dataType: "string";
|
|
@@ -2616,7 +2616,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2616
2616
|
}, {}, {
|
|
2617
2617
|
length: 50;
|
|
2618
2618
|
}>;
|
|
2619
|
-
headers:
|
|
2619
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
2620
2620
|
name: "headers";
|
|
2621
2621
|
tableName: "tools";
|
|
2622
2622
|
dataType: "json";
|
|
@@ -2635,7 +2635,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2635
2635
|
}, {}, {
|
|
2636
2636
|
$type: Record<string, string>;
|
|
2637
2637
|
}>;
|
|
2638
|
-
imageUrl:
|
|
2638
|
+
imageUrl: drizzle_orm_pg_core0.PgColumn<{
|
|
2639
2639
|
name: "image_url";
|
|
2640
2640
|
tableName: "tools";
|
|
2641
2641
|
dataType: "string";
|
|
@@ -2652,7 +2652,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2652
2652
|
identity: undefined;
|
|
2653
2653
|
generated: undefined;
|
|
2654
2654
|
}, {}, {}>;
|
|
2655
|
-
capabilities:
|
|
2655
|
+
capabilities: drizzle_orm_pg_core0.PgColumn<{
|
|
2656
2656
|
name: "capabilities";
|
|
2657
2657
|
tableName: "tools";
|
|
2658
2658
|
dataType: "json";
|
|
@@ -2671,7 +2671,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2671
2671
|
}, {}, {
|
|
2672
2672
|
$type: ToolServerCapabilities;
|
|
2673
2673
|
}>;
|
|
2674
|
-
lastError:
|
|
2674
|
+
lastError: drizzle_orm_pg_core0.PgColumn<{
|
|
2675
2675
|
name: "last_error";
|
|
2676
2676
|
tableName: "tools";
|
|
2677
2677
|
dataType: "string";
|
|
@@ -2688,7 +2688,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2688
2688
|
identity: undefined;
|
|
2689
2689
|
generated: undefined;
|
|
2690
2690
|
}, {}, {}>;
|
|
2691
|
-
projectId:
|
|
2691
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2692
2692
|
name: "project_id";
|
|
2693
2693
|
tableName: "tools";
|
|
2694
2694
|
dataType: "string";
|
|
@@ -2707,7 +2707,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2707
2707
|
}, {}, {
|
|
2708
2708
|
length: 256;
|
|
2709
2709
|
}>;
|
|
2710
|
-
tenantId:
|
|
2710
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2711
2711
|
name: "tenant_id";
|
|
2712
2712
|
tableName: "tools";
|
|
2713
2713
|
dataType: "string";
|
|
@@ -2726,7 +2726,7 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2726
2726
|
}, {}, {
|
|
2727
2727
|
length: 256;
|
|
2728
2728
|
}>;
|
|
2729
|
-
id:
|
|
2729
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2730
2730
|
name: "id";
|
|
2731
2731
|
tableName: "tools";
|
|
2732
2732
|
dataType: "string";
|
|
@@ -2748,11 +2748,11 @@ declare const tools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2748
2748
|
};
|
|
2749
2749
|
dialect: "pg";
|
|
2750
2750
|
}>;
|
|
2751
|
-
declare const functionTools:
|
|
2751
|
+
declare const functionTools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2752
2752
|
name: "function_tools";
|
|
2753
2753
|
schema: undefined;
|
|
2754
2754
|
columns: {
|
|
2755
|
-
createdAt:
|
|
2755
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2756
2756
|
name: "created_at";
|
|
2757
2757
|
tableName: "function_tools";
|
|
2758
2758
|
dataType: "string";
|
|
@@ -2769,7 +2769,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2769
2769
|
identity: undefined;
|
|
2770
2770
|
generated: undefined;
|
|
2771
2771
|
}, {}, {}>;
|
|
2772
|
-
updatedAt:
|
|
2772
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2773
2773
|
name: "updated_at";
|
|
2774
2774
|
tableName: "function_tools";
|
|
2775
2775
|
dataType: "string";
|
|
@@ -2786,7 +2786,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2786
2786
|
identity: undefined;
|
|
2787
2787
|
generated: undefined;
|
|
2788
2788
|
}, {}, {}>;
|
|
2789
|
-
name:
|
|
2789
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2790
2790
|
name: "name";
|
|
2791
2791
|
tableName: "function_tools";
|
|
2792
2792
|
dataType: "string";
|
|
@@ -2805,7 +2805,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2805
2805
|
}, {}, {
|
|
2806
2806
|
length: 256;
|
|
2807
2807
|
}>;
|
|
2808
|
-
description:
|
|
2808
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2809
2809
|
name: "description";
|
|
2810
2810
|
tableName: "function_tools";
|
|
2811
2811
|
dataType: "string";
|
|
@@ -2822,7 +2822,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2822
2822
|
identity: undefined;
|
|
2823
2823
|
generated: undefined;
|
|
2824
2824
|
}, {}, {}>;
|
|
2825
|
-
functionId:
|
|
2825
|
+
functionId: drizzle_orm_pg_core0.PgColumn<{
|
|
2826
2826
|
name: "function_id";
|
|
2827
2827
|
tableName: "function_tools";
|
|
2828
2828
|
dataType: "string";
|
|
@@ -2841,7 +2841,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2841
2841
|
}, {}, {
|
|
2842
2842
|
length: 256;
|
|
2843
2843
|
}>;
|
|
2844
|
-
agentId:
|
|
2844
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2845
2845
|
name: "agent_id";
|
|
2846
2846
|
tableName: "function_tools";
|
|
2847
2847
|
dataType: "string";
|
|
@@ -2860,7 +2860,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2860
2860
|
}, {}, {
|
|
2861
2861
|
length: 256;
|
|
2862
2862
|
}>;
|
|
2863
|
-
projectId:
|
|
2863
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2864
2864
|
name: "project_id";
|
|
2865
2865
|
tableName: "function_tools";
|
|
2866
2866
|
dataType: "string";
|
|
@@ -2879,7 +2879,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2879
2879
|
}, {}, {
|
|
2880
2880
|
length: 256;
|
|
2881
2881
|
}>;
|
|
2882
|
-
tenantId:
|
|
2882
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2883
2883
|
name: "tenant_id";
|
|
2884
2884
|
tableName: "function_tools";
|
|
2885
2885
|
dataType: "string";
|
|
@@ -2898,7 +2898,7 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2898
2898
|
}, {}, {
|
|
2899
2899
|
length: 256;
|
|
2900
2900
|
}>;
|
|
2901
|
-
id:
|
|
2901
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2902
2902
|
name: "id";
|
|
2903
2903
|
tableName: "function_tools";
|
|
2904
2904
|
dataType: "string";
|
|
@@ -2920,11 +2920,11 @@ declare const functionTools: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2920
2920
|
};
|
|
2921
2921
|
dialect: "pg";
|
|
2922
2922
|
}>;
|
|
2923
|
-
declare const functions:
|
|
2923
|
+
declare const functions: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2924
2924
|
name: "functions";
|
|
2925
2925
|
schema: undefined;
|
|
2926
2926
|
columns: {
|
|
2927
|
-
createdAt:
|
|
2927
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2928
2928
|
name: "created_at";
|
|
2929
2929
|
tableName: "functions";
|
|
2930
2930
|
dataType: "string";
|
|
@@ -2941,7 +2941,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2941
2941
|
identity: undefined;
|
|
2942
2942
|
generated: undefined;
|
|
2943
2943
|
}, {}, {}>;
|
|
2944
|
-
updatedAt:
|
|
2944
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2945
2945
|
name: "updated_at";
|
|
2946
2946
|
tableName: "functions";
|
|
2947
2947
|
dataType: "string";
|
|
@@ -2958,7 +2958,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2958
2958
|
identity: undefined;
|
|
2959
2959
|
generated: undefined;
|
|
2960
2960
|
}, {}, {}>;
|
|
2961
|
-
inputSchema:
|
|
2961
|
+
inputSchema: drizzle_orm_pg_core0.PgColumn<{
|
|
2962
2962
|
name: "input_schema";
|
|
2963
2963
|
tableName: "functions";
|
|
2964
2964
|
dataType: "json";
|
|
@@ -2977,7 +2977,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2977
2977
|
}, {}, {
|
|
2978
2978
|
$type: Record<string, unknown>;
|
|
2979
2979
|
}>;
|
|
2980
|
-
executeCode:
|
|
2980
|
+
executeCode: drizzle_orm_pg_core0.PgColumn<{
|
|
2981
2981
|
name: "execute_code";
|
|
2982
2982
|
tableName: "functions";
|
|
2983
2983
|
dataType: "string";
|
|
@@ -2994,7 +2994,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
2994
2994
|
identity: undefined;
|
|
2995
2995
|
generated: undefined;
|
|
2996
2996
|
}, {}, {}>;
|
|
2997
|
-
dependencies:
|
|
2997
|
+
dependencies: drizzle_orm_pg_core0.PgColumn<{
|
|
2998
2998
|
name: "dependencies";
|
|
2999
2999
|
tableName: "functions";
|
|
3000
3000
|
dataType: "json";
|
|
@@ -3013,7 +3013,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3013
3013
|
}, {}, {
|
|
3014
3014
|
$type: Record<string, string>;
|
|
3015
3015
|
}>;
|
|
3016
|
-
projectId:
|
|
3016
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3017
3017
|
name: "project_id";
|
|
3018
3018
|
tableName: "functions";
|
|
3019
3019
|
dataType: "string";
|
|
@@ -3032,7 +3032,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3032
3032
|
}, {}, {
|
|
3033
3033
|
length: 256;
|
|
3034
3034
|
}>;
|
|
3035
|
-
tenantId:
|
|
3035
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3036
3036
|
name: "tenant_id";
|
|
3037
3037
|
tableName: "functions";
|
|
3038
3038
|
dataType: "string";
|
|
@@ -3051,7 +3051,7 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3051
3051
|
}, {}, {
|
|
3052
3052
|
length: 256;
|
|
3053
3053
|
}>;
|
|
3054
|
-
id:
|
|
3054
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3055
3055
|
name: "id";
|
|
3056
3056
|
tableName: "functions";
|
|
3057
3057
|
dataType: "string";
|
|
@@ -3073,11 +3073,11 @@ declare const functions: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3073
3073
|
};
|
|
3074
3074
|
dialect: "pg";
|
|
3075
3075
|
}>;
|
|
3076
|
-
declare const subAgentToolRelations:
|
|
3076
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3077
3077
|
name: "sub_agent_tool_relations";
|
|
3078
3078
|
schema: undefined;
|
|
3079
3079
|
columns: {
|
|
3080
|
-
createdAt:
|
|
3080
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3081
3081
|
name: "created_at";
|
|
3082
3082
|
tableName: "sub_agent_tool_relations";
|
|
3083
3083
|
dataType: "string";
|
|
@@ -3094,7 +3094,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3094
3094
|
identity: undefined;
|
|
3095
3095
|
generated: undefined;
|
|
3096
3096
|
}, {}, {}>;
|
|
3097
|
-
updatedAt:
|
|
3097
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3098
3098
|
name: "updated_at";
|
|
3099
3099
|
tableName: "sub_agent_tool_relations";
|
|
3100
3100
|
dataType: "string";
|
|
@@ -3111,7 +3111,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3111
3111
|
identity: undefined;
|
|
3112
3112
|
generated: undefined;
|
|
3113
3113
|
}, {}, {}>;
|
|
3114
|
-
toolId:
|
|
3114
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3115
3115
|
name: "tool_id";
|
|
3116
3116
|
tableName: "sub_agent_tool_relations";
|
|
3117
3117
|
dataType: "string";
|
|
@@ -3130,7 +3130,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3130
3130
|
}, {}, {
|
|
3131
3131
|
length: 256;
|
|
3132
3132
|
}>;
|
|
3133
|
-
selectedTools:
|
|
3133
|
+
selectedTools: drizzle_orm_pg_core0.PgColumn<{
|
|
3134
3134
|
name: "selected_tools";
|
|
3135
3135
|
tableName: "sub_agent_tool_relations";
|
|
3136
3136
|
dataType: "json";
|
|
@@ -3149,7 +3149,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3149
3149
|
}, {}, {
|
|
3150
3150
|
$type: string[] | null;
|
|
3151
3151
|
}>;
|
|
3152
|
-
headers:
|
|
3152
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3153
3153
|
name: "headers";
|
|
3154
3154
|
tableName: "sub_agent_tool_relations";
|
|
3155
3155
|
dataType: "json";
|
|
@@ -3168,7 +3168,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3168
3168
|
}, {}, {
|
|
3169
3169
|
$type: Record<string, string> | null;
|
|
3170
3170
|
}>;
|
|
3171
|
-
toolPolicies:
|
|
3171
|
+
toolPolicies: drizzle_orm_pg_core0.PgColumn<{
|
|
3172
3172
|
name: "tool_policies";
|
|
3173
3173
|
tableName: "sub_agent_tool_relations";
|
|
3174
3174
|
dataType: "json";
|
|
@@ -3191,7 +3191,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3191
3191
|
needsApproval?: boolean;
|
|
3192
3192
|
}> | null;
|
|
3193
3193
|
}>;
|
|
3194
|
-
subAgentId:
|
|
3194
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3195
3195
|
name: "sub_agent_id";
|
|
3196
3196
|
tableName: "sub_agent_tool_relations";
|
|
3197
3197
|
dataType: "string";
|
|
@@ -3210,7 +3210,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3210
3210
|
}, {}, {
|
|
3211
3211
|
length: 256;
|
|
3212
3212
|
}>;
|
|
3213
|
-
agentId:
|
|
3213
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3214
3214
|
name: "agent_id";
|
|
3215
3215
|
tableName: "sub_agent_tool_relations";
|
|
3216
3216
|
dataType: "string";
|
|
@@ -3229,7 +3229,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3229
3229
|
}, {}, {
|
|
3230
3230
|
length: 256;
|
|
3231
3231
|
}>;
|
|
3232
|
-
projectId:
|
|
3232
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3233
3233
|
name: "project_id";
|
|
3234
3234
|
tableName: "sub_agent_tool_relations";
|
|
3235
3235
|
dataType: "string";
|
|
@@ -3248,7 +3248,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3248
3248
|
}, {}, {
|
|
3249
3249
|
length: 256;
|
|
3250
3250
|
}>;
|
|
3251
|
-
tenantId:
|
|
3251
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3252
3252
|
name: "tenant_id";
|
|
3253
3253
|
tableName: "sub_agent_tool_relations";
|
|
3254
3254
|
dataType: "string";
|
|
@@ -3267,7 +3267,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3267
3267
|
}, {}, {
|
|
3268
3268
|
length: 256;
|
|
3269
3269
|
}>;
|
|
3270
|
-
id:
|
|
3270
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3271
3271
|
name: "id";
|
|
3272
3272
|
tableName: "sub_agent_tool_relations";
|
|
3273
3273
|
dataType: "string";
|
|
@@ -3289,11 +3289,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3289
3289
|
};
|
|
3290
3290
|
dialect: "pg";
|
|
3291
3291
|
}>;
|
|
3292
|
-
declare const subAgentExternalAgentRelations:
|
|
3292
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3293
3293
|
name: "sub_agent_external_agent_relations";
|
|
3294
3294
|
schema: undefined;
|
|
3295
3295
|
columns: {
|
|
3296
|
-
createdAt:
|
|
3296
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3297
3297
|
name: "created_at";
|
|
3298
3298
|
tableName: "sub_agent_external_agent_relations";
|
|
3299
3299
|
dataType: "string";
|
|
@@ -3310,7 +3310,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3310
3310
|
identity: undefined;
|
|
3311
3311
|
generated: undefined;
|
|
3312
3312
|
}, {}, {}>;
|
|
3313
|
-
updatedAt:
|
|
3313
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3314
3314
|
name: "updated_at";
|
|
3315
3315
|
tableName: "sub_agent_external_agent_relations";
|
|
3316
3316
|
dataType: "string";
|
|
@@ -3327,7 +3327,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3327
3327
|
identity: undefined;
|
|
3328
3328
|
generated: undefined;
|
|
3329
3329
|
}, {}, {}>;
|
|
3330
|
-
externalAgentId:
|
|
3330
|
+
externalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3331
3331
|
name: "external_agent_id";
|
|
3332
3332
|
tableName: "sub_agent_external_agent_relations";
|
|
3333
3333
|
dataType: "string";
|
|
@@ -3346,7 +3346,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3346
3346
|
}, {}, {
|
|
3347
3347
|
length: 256;
|
|
3348
3348
|
}>;
|
|
3349
|
-
headers:
|
|
3349
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3350
3350
|
name: "headers";
|
|
3351
3351
|
tableName: "sub_agent_external_agent_relations";
|
|
3352
3352
|
dataType: "json";
|
|
@@ -3365,7 +3365,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3365
3365
|
}, {}, {
|
|
3366
3366
|
$type: Record<string, string> | null;
|
|
3367
3367
|
}>;
|
|
3368
|
-
subAgentId:
|
|
3368
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3369
3369
|
name: "sub_agent_id";
|
|
3370
3370
|
tableName: "sub_agent_external_agent_relations";
|
|
3371
3371
|
dataType: "string";
|
|
@@ -3384,7 +3384,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3384
3384
|
}, {}, {
|
|
3385
3385
|
length: 256;
|
|
3386
3386
|
}>;
|
|
3387
|
-
agentId:
|
|
3387
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3388
3388
|
name: "agent_id";
|
|
3389
3389
|
tableName: "sub_agent_external_agent_relations";
|
|
3390
3390
|
dataType: "string";
|
|
@@ -3403,7 +3403,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3403
3403
|
}, {}, {
|
|
3404
3404
|
length: 256;
|
|
3405
3405
|
}>;
|
|
3406
|
-
projectId:
|
|
3406
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3407
3407
|
name: "project_id";
|
|
3408
3408
|
tableName: "sub_agent_external_agent_relations";
|
|
3409
3409
|
dataType: "string";
|
|
@@ -3422,7 +3422,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3422
3422
|
}, {}, {
|
|
3423
3423
|
length: 256;
|
|
3424
3424
|
}>;
|
|
3425
|
-
tenantId:
|
|
3425
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3426
3426
|
name: "tenant_id";
|
|
3427
3427
|
tableName: "sub_agent_external_agent_relations";
|
|
3428
3428
|
dataType: "string";
|
|
@@ -3441,7 +3441,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3441
3441
|
}, {}, {
|
|
3442
3442
|
length: 256;
|
|
3443
3443
|
}>;
|
|
3444
|
-
id:
|
|
3444
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3445
3445
|
name: "id";
|
|
3446
3446
|
tableName: "sub_agent_external_agent_relations";
|
|
3447
3447
|
dataType: "string";
|
|
@@ -3463,11 +3463,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core208.PgTableWith
|
|
|
3463
3463
|
};
|
|
3464
3464
|
dialect: "pg";
|
|
3465
3465
|
}>;
|
|
3466
|
-
declare const subAgentTeamAgentRelations:
|
|
3466
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3467
3467
|
name: "sub_agent_team_agent_relations";
|
|
3468
3468
|
schema: undefined;
|
|
3469
3469
|
columns: {
|
|
3470
|
-
createdAt:
|
|
3470
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3471
3471
|
name: "created_at";
|
|
3472
3472
|
tableName: "sub_agent_team_agent_relations";
|
|
3473
3473
|
dataType: "string";
|
|
@@ -3484,7 +3484,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3484
3484
|
identity: undefined;
|
|
3485
3485
|
generated: undefined;
|
|
3486
3486
|
}, {}, {}>;
|
|
3487
|
-
updatedAt:
|
|
3487
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3488
3488
|
name: "updated_at";
|
|
3489
3489
|
tableName: "sub_agent_team_agent_relations";
|
|
3490
3490
|
dataType: "string";
|
|
@@ -3501,7 +3501,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3501
3501
|
identity: undefined;
|
|
3502
3502
|
generated: undefined;
|
|
3503
3503
|
}, {}, {}>;
|
|
3504
|
-
targetAgentId:
|
|
3504
|
+
targetAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3505
3505
|
name: "target_agent_id";
|
|
3506
3506
|
tableName: "sub_agent_team_agent_relations";
|
|
3507
3507
|
dataType: "string";
|
|
@@ -3520,7 +3520,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3520
3520
|
}, {}, {
|
|
3521
3521
|
length: 256;
|
|
3522
3522
|
}>;
|
|
3523
|
-
headers:
|
|
3523
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3524
3524
|
name: "headers";
|
|
3525
3525
|
tableName: "sub_agent_team_agent_relations";
|
|
3526
3526
|
dataType: "json";
|
|
@@ -3539,7 +3539,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3539
3539
|
}, {}, {
|
|
3540
3540
|
$type: Record<string, string> | null;
|
|
3541
3541
|
}>;
|
|
3542
|
-
subAgentId:
|
|
3542
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3543
3543
|
name: "sub_agent_id";
|
|
3544
3544
|
tableName: "sub_agent_team_agent_relations";
|
|
3545
3545
|
dataType: "string";
|
|
@@ -3558,7 +3558,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3558
3558
|
}, {}, {
|
|
3559
3559
|
length: 256;
|
|
3560
3560
|
}>;
|
|
3561
|
-
agentId:
|
|
3561
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3562
3562
|
name: "agent_id";
|
|
3563
3563
|
tableName: "sub_agent_team_agent_relations";
|
|
3564
3564
|
dataType: "string";
|
|
@@ -3577,7 +3577,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3577
3577
|
}, {}, {
|
|
3578
3578
|
length: 256;
|
|
3579
3579
|
}>;
|
|
3580
|
-
projectId:
|
|
3580
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3581
3581
|
name: "project_id";
|
|
3582
3582
|
tableName: "sub_agent_team_agent_relations";
|
|
3583
3583
|
dataType: "string";
|
|
@@ -3596,7 +3596,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3596
3596
|
}, {}, {
|
|
3597
3597
|
length: 256;
|
|
3598
3598
|
}>;
|
|
3599
|
-
tenantId:
|
|
3599
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3600
3600
|
name: "tenant_id";
|
|
3601
3601
|
tableName: "sub_agent_team_agent_relations";
|
|
3602
3602
|
dataType: "string";
|
|
@@ -3615,7 +3615,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3615
3615
|
}, {}, {
|
|
3616
3616
|
length: 256;
|
|
3617
3617
|
}>;
|
|
3618
|
-
id:
|
|
3618
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3619
3619
|
name: "id";
|
|
3620
3620
|
tableName: "sub_agent_team_agent_relations";
|
|
3621
3621
|
dataType: "string";
|
|
@@ -3637,11 +3637,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core208.PgTableWithColu
|
|
|
3637
3637
|
};
|
|
3638
3638
|
dialect: "pg";
|
|
3639
3639
|
}>;
|
|
3640
|
-
declare const subAgentFunctionToolRelations:
|
|
3640
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3641
3641
|
name: "sub_agent_function_tool_relations";
|
|
3642
3642
|
schema: undefined;
|
|
3643
3643
|
columns: {
|
|
3644
|
-
createdAt:
|
|
3644
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3645
3645
|
name: "created_at";
|
|
3646
3646
|
tableName: "sub_agent_function_tool_relations";
|
|
3647
3647
|
dataType: "string";
|
|
@@ -3658,7 +3658,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3658
3658
|
identity: undefined;
|
|
3659
3659
|
generated: undefined;
|
|
3660
3660
|
}, {}, {}>;
|
|
3661
|
-
updatedAt:
|
|
3661
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3662
3662
|
name: "updated_at";
|
|
3663
3663
|
tableName: "sub_agent_function_tool_relations";
|
|
3664
3664
|
dataType: "string";
|
|
@@ -3675,7 +3675,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3675
3675
|
identity: undefined;
|
|
3676
3676
|
generated: undefined;
|
|
3677
3677
|
}, {}, {}>;
|
|
3678
|
-
functionToolId:
|
|
3678
|
+
functionToolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3679
3679
|
name: "function_tool_id";
|
|
3680
3680
|
tableName: "sub_agent_function_tool_relations";
|
|
3681
3681
|
dataType: "string";
|
|
@@ -3694,7 +3694,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3694
3694
|
}, {}, {
|
|
3695
3695
|
length: 256;
|
|
3696
3696
|
}>;
|
|
3697
|
-
subAgentId:
|
|
3697
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3698
3698
|
name: "sub_agent_id";
|
|
3699
3699
|
tableName: "sub_agent_function_tool_relations";
|
|
3700
3700
|
dataType: "string";
|
|
@@ -3713,7 +3713,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3713
3713
|
}, {}, {
|
|
3714
3714
|
length: 256;
|
|
3715
3715
|
}>;
|
|
3716
|
-
agentId:
|
|
3716
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3717
3717
|
name: "agent_id";
|
|
3718
3718
|
tableName: "sub_agent_function_tool_relations";
|
|
3719
3719
|
dataType: "string";
|
|
@@ -3732,7 +3732,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3732
3732
|
}, {}, {
|
|
3733
3733
|
length: 256;
|
|
3734
3734
|
}>;
|
|
3735
|
-
projectId:
|
|
3735
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3736
3736
|
name: "project_id";
|
|
3737
3737
|
tableName: "sub_agent_function_tool_relations";
|
|
3738
3738
|
dataType: "string";
|
|
@@ -3751,7 +3751,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3751
3751
|
}, {}, {
|
|
3752
3752
|
length: 256;
|
|
3753
3753
|
}>;
|
|
3754
|
-
tenantId:
|
|
3754
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3755
3755
|
name: "tenant_id";
|
|
3756
3756
|
tableName: "sub_agent_function_tool_relations";
|
|
3757
3757
|
dataType: "string";
|
|
@@ -3770,7 +3770,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3770
3770
|
}, {}, {
|
|
3771
3771
|
length: 256;
|
|
3772
3772
|
}>;
|
|
3773
|
-
id:
|
|
3773
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3774
3774
|
name: "id";
|
|
3775
3775
|
tableName: "sub_agent_function_tool_relations";
|
|
3776
3776
|
dataType: "string";
|
|
@@ -3792,11 +3792,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core208.PgTableWithC
|
|
|
3792
3792
|
};
|
|
3793
3793
|
dialect: "pg";
|
|
3794
3794
|
}>;
|
|
3795
|
-
declare const conversations:
|
|
3795
|
+
declare const conversations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3796
3796
|
name: "conversations";
|
|
3797
3797
|
schema: undefined;
|
|
3798
3798
|
columns: {
|
|
3799
|
-
createdAt:
|
|
3799
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3800
3800
|
name: "created_at";
|
|
3801
3801
|
tableName: "conversations";
|
|
3802
3802
|
dataType: "string";
|
|
@@ -3813,7 +3813,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3813
3813
|
identity: undefined;
|
|
3814
3814
|
generated: undefined;
|
|
3815
3815
|
}, {}, {}>;
|
|
3816
|
-
updatedAt:
|
|
3816
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3817
3817
|
name: "updated_at";
|
|
3818
3818
|
tableName: "conversations";
|
|
3819
3819
|
dataType: "string";
|
|
@@ -3830,7 +3830,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3830
3830
|
identity: undefined;
|
|
3831
3831
|
generated: undefined;
|
|
3832
3832
|
}, {}, {}>;
|
|
3833
|
-
userId:
|
|
3833
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
3834
3834
|
name: "user_id";
|
|
3835
3835
|
tableName: "conversations";
|
|
3836
3836
|
dataType: "string";
|
|
@@ -3849,7 +3849,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3849
3849
|
}, {}, {
|
|
3850
3850
|
length: 256;
|
|
3851
3851
|
}>;
|
|
3852
|
-
activeSubAgentId:
|
|
3852
|
+
activeSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3853
3853
|
name: "active_sub_agent_id";
|
|
3854
3854
|
tableName: "conversations";
|
|
3855
3855
|
dataType: "string";
|
|
@@ -3868,7 +3868,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3868
3868
|
}, {}, {
|
|
3869
3869
|
length: 256;
|
|
3870
3870
|
}>;
|
|
3871
|
-
title:
|
|
3871
|
+
title: drizzle_orm_pg_core0.PgColumn<{
|
|
3872
3872
|
name: "title";
|
|
3873
3873
|
tableName: "conversations";
|
|
3874
3874
|
dataType: "string";
|
|
@@ -3885,7 +3885,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3885
3885
|
identity: undefined;
|
|
3886
3886
|
generated: undefined;
|
|
3887
3887
|
}, {}, {}>;
|
|
3888
|
-
lastContextResolution:
|
|
3888
|
+
lastContextResolution: drizzle_orm_pg_core0.PgColumn<{
|
|
3889
3889
|
name: "last_context_resolution";
|
|
3890
3890
|
tableName: "conversations";
|
|
3891
3891
|
dataType: "string";
|
|
@@ -3902,7 +3902,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3902
3902
|
identity: undefined;
|
|
3903
3903
|
generated: undefined;
|
|
3904
3904
|
}, {}, {}>;
|
|
3905
|
-
metadata:
|
|
3905
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
3906
3906
|
name: "metadata";
|
|
3907
3907
|
tableName: "conversations";
|
|
3908
3908
|
dataType: "json";
|
|
@@ -3921,7 +3921,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3921
3921
|
}, {}, {
|
|
3922
3922
|
$type: ConversationMetadata;
|
|
3923
3923
|
}>;
|
|
3924
|
-
projectId:
|
|
3924
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3925
3925
|
name: "project_id";
|
|
3926
3926
|
tableName: "conversations";
|
|
3927
3927
|
dataType: "string";
|
|
@@ -3940,7 +3940,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3940
3940
|
}, {}, {
|
|
3941
3941
|
length: 256;
|
|
3942
3942
|
}>;
|
|
3943
|
-
tenantId:
|
|
3943
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3944
3944
|
name: "tenant_id";
|
|
3945
3945
|
tableName: "conversations";
|
|
3946
3946
|
dataType: "string";
|
|
@@ -3959,7 +3959,7 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3959
3959
|
}, {}, {
|
|
3960
3960
|
length: 256;
|
|
3961
3961
|
}>;
|
|
3962
|
-
id:
|
|
3962
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3963
3963
|
name: "id";
|
|
3964
3964
|
tableName: "conversations";
|
|
3965
3965
|
dataType: "string";
|
|
@@ -3981,11 +3981,11 @@ declare const conversations: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
3981
3981
|
};
|
|
3982
3982
|
dialect: "pg";
|
|
3983
3983
|
}>;
|
|
3984
|
-
declare const messages:
|
|
3984
|
+
declare const messages: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3985
3985
|
name: "messages";
|
|
3986
3986
|
schema: undefined;
|
|
3987
3987
|
columns: {
|
|
3988
|
-
createdAt:
|
|
3988
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3989
3989
|
name: "created_at";
|
|
3990
3990
|
tableName: "messages";
|
|
3991
3991
|
dataType: "string";
|
|
@@ -4002,7 +4002,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4002
4002
|
identity: undefined;
|
|
4003
4003
|
generated: undefined;
|
|
4004
4004
|
}, {}, {}>;
|
|
4005
|
-
updatedAt:
|
|
4005
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4006
4006
|
name: "updated_at";
|
|
4007
4007
|
tableName: "messages";
|
|
4008
4008
|
dataType: "string";
|
|
@@ -4019,7 +4019,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4019
4019
|
identity: undefined;
|
|
4020
4020
|
generated: undefined;
|
|
4021
4021
|
}, {}, {}>;
|
|
4022
|
-
conversationId:
|
|
4022
|
+
conversationId: drizzle_orm_pg_core0.PgColumn<{
|
|
4023
4023
|
name: "conversation_id";
|
|
4024
4024
|
tableName: "messages";
|
|
4025
4025
|
dataType: "string";
|
|
@@ -4038,7 +4038,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4038
4038
|
}, {}, {
|
|
4039
4039
|
length: 256;
|
|
4040
4040
|
}>;
|
|
4041
|
-
role:
|
|
4041
|
+
role: drizzle_orm_pg_core0.PgColumn<{
|
|
4042
4042
|
name: "role";
|
|
4043
4043
|
tableName: "messages";
|
|
4044
4044
|
dataType: "string";
|
|
@@ -4057,7 +4057,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4057
4057
|
}, {}, {
|
|
4058
4058
|
length: 256;
|
|
4059
4059
|
}>;
|
|
4060
|
-
fromSubAgentId:
|
|
4060
|
+
fromSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4061
4061
|
name: "from_sub_agent_id";
|
|
4062
4062
|
tableName: "messages";
|
|
4063
4063
|
dataType: "string";
|
|
@@ -4076,7 +4076,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4076
4076
|
}, {}, {
|
|
4077
4077
|
length: 256;
|
|
4078
4078
|
}>;
|
|
4079
|
-
toSubAgentId:
|
|
4079
|
+
toSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4080
4080
|
name: "to_sub_agent_id";
|
|
4081
4081
|
tableName: "messages";
|
|
4082
4082
|
dataType: "string";
|
|
@@ -4095,7 +4095,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4095
4095
|
}, {}, {
|
|
4096
4096
|
length: 256;
|
|
4097
4097
|
}>;
|
|
4098
|
-
fromExternalAgentId:
|
|
4098
|
+
fromExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4099
4099
|
name: "from_external_sub_agent_id";
|
|
4100
4100
|
tableName: "messages";
|
|
4101
4101
|
dataType: "string";
|
|
@@ -4114,7 +4114,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4114
4114
|
}, {}, {
|
|
4115
4115
|
length: 256;
|
|
4116
4116
|
}>;
|
|
4117
|
-
toExternalAgentId:
|
|
4117
|
+
toExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4118
4118
|
name: "to_external_sub_agent_id";
|
|
4119
4119
|
tableName: "messages";
|
|
4120
4120
|
dataType: "string";
|
|
@@ -4133,7 +4133,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4133
4133
|
}, {}, {
|
|
4134
4134
|
length: 256;
|
|
4135
4135
|
}>;
|
|
4136
|
-
fromTeamAgentId:
|
|
4136
|
+
fromTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4137
4137
|
name: "from_team_agent_id";
|
|
4138
4138
|
tableName: "messages";
|
|
4139
4139
|
dataType: "string";
|
|
@@ -4152,7 +4152,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4152
4152
|
}, {}, {
|
|
4153
4153
|
length: 256;
|
|
4154
4154
|
}>;
|
|
4155
|
-
toTeamAgentId:
|
|
4155
|
+
toTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4156
4156
|
name: "to_team_agent_id";
|
|
4157
4157
|
tableName: "messages";
|
|
4158
4158
|
dataType: "string";
|
|
@@ -4171,7 +4171,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4171
4171
|
}, {}, {
|
|
4172
4172
|
length: 256;
|
|
4173
4173
|
}>;
|
|
4174
|
-
content:
|
|
4174
|
+
content: drizzle_orm_pg_core0.PgColumn<{
|
|
4175
4175
|
name: "content";
|
|
4176
4176
|
tableName: "messages";
|
|
4177
4177
|
dataType: "json";
|
|
@@ -4190,7 +4190,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4190
4190
|
}, {}, {
|
|
4191
4191
|
$type: MessageContent;
|
|
4192
4192
|
}>;
|
|
4193
|
-
visibility:
|
|
4193
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4194
4194
|
name: "visibility";
|
|
4195
4195
|
tableName: "messages";
|
|
4196
4196
|
dataType: "string";
|
|
@@ -4209,7 +4209,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4209
4209
|
}, {}, {
|
|
4210
4210
|
length: 256;
|
|
4211
4211
|
}>;
|
|
4212
|
-
messageType:
|
|
4212
|
+
messageType: drizzle_orm_pg_core0.PgColumn<{
|
|
4213
4213
|
name: "message_type";
|
|
4214
4214
|
tableName: "messages";
|
|
4215
4215
|
dataType: "string";
|
|
@@ -4228,7 +4228,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4228
4228
|
}, {}, {
|
|
4229
4229
|
length: 256;
|
|
4230
4230
|
}>;
|
|
4231
|
-
taskId:
|
|
4231
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4232
4232
|
name: "task_id";
|
|
4233
4233
|
tableName: "messages";
|
|
4234
4234
|
dataType: "string";
|
|
@@ -4247,7 +4247,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4247
4247
|
}, {}, {
|
|
4248
4248
|
length: 256;
|
|
4249
4249
|
}>;
|
|
4250
|
-
parentMessageId:
|
|
4250
|
+
parentMessageId: drizzle_orm_pg_core0.PgColumn<{
|
|
4251
4251
|
name: "parent_message_id";
|
|
4252
4252
|
tableName: "messages";
|
|
4253
4253
|
dataType: "string";
|
|
@@ -4266,7 +4266,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4266
4266
|
}, {}, {
|
|
4267
4267
|
length: 256;
|
|
4268
4268
|
}>;
|
|
4269
|
-
a2aTaskId:
|
|
4269
|
+
a2aTaskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4270
4270
|
name: "a2a_task_id";
|
|
4271
4271
|
tableName: "messages";
|
|
4272
4272
|
dataType: "string";
|
|
@@ -4285,7 +4285,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4285
4285
|
}, {}, {
|
|
4286
4286
|
length: 256;
|
|
4287
4287
|
}>;
|
|
4288
|
-
a2aSessionId:
|
|
4288
|
+
a2aSessionId: drizzle_orm_pg_core0.PgColumn<{
|
|
4289
4289
|
name: "a2a_session_id";
|
|
4290
4290
|
tableName: "messages";
|
|
4291
4291
|
dataType: "string";
|
|
@@ -4304,7 +4304,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4304
4304
|
}, {}, {
|
|
4305
4305
|
length: 256;
|
|
4306
4306
|
}>;
|
|
4307
|
-
metadata:
|
|
4307
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4308
4308
|
name: "metadata";
|
|
4309
4309
|
tableName: "messages";
|
|
4310
4310
|
dataType: "json";
|
|
@@ -4323,7 +4323,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4323
4323
|
}, {}, {
|
|
4324
4324
|
$type: MessageMetadata;
|
|
4325
4325
|
}>;
|
|
4326
|
-
projectId:
|
|
4326
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4327
4327
|
name: "project_id";
|
|
4328
4328
|
tableName: "messages";
|
|
4329
4329
|
dataType: "string";
|
|
@@ -4342,7 +4342,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4342
4342
|
}, {}, {
|
|
4343
4343
|
length: 256;
|
|
4344
4344
|
}>;
|
|
4345
|
-
tenantId:
|
|
4345
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4346
4346
|
name: "tenant_id";
|
|
4347
4347
|
tableName: "messages";
|
|
4348
4348
|
dataType: "string";
|
|
@@ -4361,7 +4361,7 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4361
4361
|
}, {}, {
|
|
4362
4362
|
length: 256;
|
|
4363
4363
|
}>;
|
|
4364
|
-
id:
|
|
4364
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4365
4365
|
name: "id";
|
|
4366
4366
|
tableName: "messages";
|
|
4367
4367
|
dataType: "string";
|
|
@@ -4383,11 +4383,11 @@ declare const messages: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4383
4383
|
};
|
|
4384
4384
|
dialect: "pg";
|
|
4385
4385
|
}>;
|
|
4386
|
-
declare const ledgerArtifacts:
|
|
4386
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4387
4387
|
name: "ledger_artifacts";
|
|
4388
4388
|
schema: undefined;
|
|
4389
4389
|
columns: {
|
|
4390
|
-
createdAt:
|
|
4390
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4391
4391
|
name: "created_at";
|
|
4392
4392
|
tableName: "ledger_artifacts";
|
|
4393
4393
|
dataType: "string";
|
|
@@ -4404,7 +4404,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4404
4404
|
identity: undefined;
|
|
4405
4405
|
generated: undefined;
|
|
4406
4406
|
}, {}, {}>;
|
|
4407
|
-
updatedAt:
|
|
4407
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4408
4408
|
name: "updated_at";
|
|
4409
4409
|
tableName: "ledger_artifacts";
|
|
4410
4410
|
dataType: "string";
|
|
@@ -4421,7 +4421,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4421
4421
|
identity: undefined;
|
|
4422
4422
|
generated: undefined;
|
|
4423
4423
|
}, {}, {}>;
|
|
4424
|
-
taskId:
|
|
4424
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4425
4425
|
name: "task_id";
|
|
4426
4426
|
tableName: "ledger_artifacts";
|
|
4427
4427
|
dataType: "string";
|
|
@@ -4440,7 +4440,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4440
4440
|
}, {}, {
|
|
4441
4441
|
length: 256;
|
|
4442
4442
|
}>;
|
|
4443
|
-
toolCallId:
|
|
4443
|
+
toolCallId: drizzle_orm_pg_core0.PgColumn<{
|
|
4444
4444
|
name: "tool_call_id";
|
|
4445
4445
|
tableName: "ledger_artifacts";
|
|
4446
4446
|
dataType: "string";
|
|
@@ -4459,7 +4459,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4459
4459
|
}, {}, {
|
|
4460
4460
|
length: 256;
|
|
4461
4461
|
}>;
|
|
4462
|
-
contextId:
|
|
4462
|
+
contextId: drizzle_orm_pg_core0.PgColumn<{
|
|
4463
4463
|
name: "context_id";
|
|
4464
4464
|
tableName: "ledger_artifacts";
|
|
4465
4465
|
dataType: "string";
|
|
@@ -4478,7 +4478,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4478
4478
|
}, {}, {
|
|
4479
4479
|
length: 256;
|
|
4480
4480
|
}>;
|
|
4481
|
-
type:
|
|
4481
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
4482
4482
|
name: "type";
|
|
4483
4483
|
tableName: "ledger_artifacts";
|
|
4484
4484
|
dataType: "string";
|
|
@@ -4497,7 +4497,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4497
4497
|
}, {}, {
|
|
4498
4498
|
length: 256;
|
|
4499
4499
|
}>;
|
|
4500
|
-
name:
|
|
4500
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4501
4501
|
name: "name";
|
|
4502
4502
|
tableName: "ledger_artifacts";
|
|
4503
4503
|
dataType: "string";
|
|
@@ -4516,7 +4516,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4516
4516
|
}, {}, {
|
|
4517
4517
|
length: 256;
|
|
4518
4518
|
}>;
|
|
4519
|
-
description:
|
|
4519
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
4520
4520
|
name: "description";
|
|
4521
4521
|
tableName: "ledger_artifacts";
|
|
4522
4522
|
dataType: "string";
|
|
@@ -4533,7 +4533,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4533
4533
|
identity: undefined;
|
|
4534
4534
|
generated: undefined;
|
|
4535
4535
|
}, {}, {}>;
|
|
4536
|
-
parts:
|
|
4536
|
+
parts: drizzle_orm_pg_core0.PgColumn<{
|
|
4537
4537
|
name: "parts";
|
|
4538
4538
|
tableName: "ledger_artifacts";
|
|
4539
4539
|
dataType: "json";
|
|
@@ -4552,7 +4552,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4552
4552
|
}, {}, {
|
|
4553
4553
|
$type: Part[] | null;
|
|
4554
4554
|
}>;
|
|
4555
|
-
metadata:
|
|
4555
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4556
4556
|
name: "metadata";
|
|
4557
4557
|
tableName: "ledger_artifacts";
|
|
4558
4558
|
dataType: "json";
|
|
@@ -4571,7 +4571,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4571
4571
|
}, {}, {
|
|
4572
4572
|
$type: Record<string, unknown> | null;
|
|
4573
4573
|
}>;
|
|
4574
|
-
summary:
|
|
4574
|
+
summary: drizzle_orm_pg_core0.PgColumn<{
|
|
4575
4575
|
name: "summary";
|
|
4576
4576
|
tableName: "ledger_artifacts";
|
|
4577
4577
|
dataType: "string";
|
|
@@ -4588,7 +4588,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4588
4588
|
identity: undefined;
|
|
4589
4589
|
generated: undefined;
|
|
4590
4590
|
}, {}, {}>;
|
|
4591
|
-
mime:
|
|
4591
|
+
mime: drizzle_orm_pg_core0.PgColumn<{
|
|
4592
4592
|
name: "mime";
|
|
4593
4593
|
tableName: "ledger_artifacts";
|
|
4594
4594
|
dataType: "json";
|
|
@@ -4607,7 +4607,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4607
4607
|
}, {}, {
|
|
4608
4608
|
$type: string[] | null;
|
|
4609
4609
|
}>;
|
|
4610
|
-
visibility:
|
|
4610
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4611
4611
|
name: "visibility";
|
|
4612
4612
|
tableName: "ledger_artifacts";
|
|
4613
4613
|
dataType: "string";
|
|
@@ -4626,7 +4626,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4626
4626
|
}, {}, {
|
|
4627
4627
|
length: 256;
|
|
4628
4628
|
}>;
|
|
4629
|
-
allowedAgents:
|
|
4629
|
+
allowedAgents: drizzle_orm_pg_core0.PgColumn<{
|
|
4630
4630
|
name: "allowed_agents";
|
|
4631
4631
|
tableName: "ledger_artifacts";
|
|
4632
4632
|
dataType: "json";
|
|
@@ -4645,7 +4645,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4645
4645
|
}, {}, {
|
|
4646
4646
|
$type: string[] | null;
|
|
4647
4647
|
}>;
|
|
4648
|
-
derivedFrom:
|
|
4648
|
+
derivedFrom: drizzle_orm_pg_core0.PgColumn<{
|
|
4649
4649
|
name: "derived_from";
|
|
4650
4650
|
tableName: "ledger_artifacts";
|
|
4651
4651
|
dataType: "string";
|
|
@@ -4664,7 +4664,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4664
4664
|
}, {}, {
|
|
4665
4665
|
length: 256;
|
|
4666
4666
|
}>;
|
|
4667
|
-
projectId:
|
|
4667
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4668
4668
|
name: "project_id";
|
|
4669
4669
|
tableName: "ledger_artifacts";
|
|
4670
4670
|
dataType: "string";
|
|
@@ -4683,7 +4683,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4683
4683
|
}, {}, {
|
|
4684
4684
|
length: 256;
|
|
4685
4685
|
}>;
|
|
4686
|
-
tenantId:
|
|
4686
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4687
4687
|
name: "tenant_id";
|
|
4688
4688
|
tableName: "ledger_artifacts";
|
|
4689
4689
|
dataType: "string";
|
|
@@ -4702,7 +4702,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4702
4702
|
}, {}, {
|
|
4703
4703
|
length: 256;
|
|
4704
4704
|
}>;
|
|
4705
|
-
id:
|
|
4705
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4706
4706
|
name: "id";
|
|
4707
4707
|
tableName: "ledger_artifacts";
|
|
4708
4708
|
dataType: "string";
|
|
@@ -4724,11 +4724,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4724
4724
|
};
|
|
4725
4725
|
dialect: "pg";
|
|
4726
4726
|
}>;
|
|
4727
|
-
declare const apiKeys:
|
|
4727
|
+
declare const apiKeys: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4728
4728
|
name: "api_keys";
|
|
4729
4729
|
schema: undefined;
|
|
4730
4730
|
columns: {
|
|
4731
|
-
createdAt:
|
|
4731
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4732
4732
|
name: "created_at";
|
|
4733
4733
|
tableName: "api_keys";
|
|
4734
4734
|
dataType: "string";
|
|
@@ -4745,7 +4745,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4745
4745
|
identity: undefined;
|
|
4746
4746
|
generated: undefined;
|
|
4747
4747
|
}, {}, {}>;
|
|
4748
|
-
updatedAt:
|
|
4748
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4749
4749
|
name: "updated_at";
|
|
4750
4750
|
tableName: "api_keys";
|
|
4751
4751
|
dataType: "string";
|
|
@@ -4762,7 +4762,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4762
4762
|
identity: undefined;
|
|
4763
4763
|
generated: undefined;
|
|
4764
4764
|
}, {}, {}>;
|
|
4765
|
-
publicId:
|
|
4765
|
+
publicId: drizzle_orm_pg_core0.PgColumn<{
|
|
4766
4766
|
name: "public_id";
|
|
4767
4767
|
tableName: "api_keys";
|
|
4768
4768
|
dataType: "string";
|
|
@@ -4781,7 +4781,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4781
4781
|
}, {}, {
|
|
4782
4782
|
length: 256;
|
|
4783
4783
|
}>;
|
|
4784
|
-
keyHash:
|
|
4784
|
+
keyHash: drizzle_orm_pg_core0.PgColumn<{
|
|
4785
4785
|
name: "key_hash";
|
|
4786
4786
|
tableName: "api_keys";
|
|
4787
4787
|
dataType: "string";
|
|
@@ -4800,7 +4800,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4800
4800
|
}, {}, {
|
|
4801
4801
|
length: 256;
|
|
4802
4802
|
}>;
|
|
4803
|
-
keyPrefix:
|
|
4803
|
+
keyPrefix: drizzle_orm_pg_core0.PgColumn<{
|
|
4804
4804
|
name: "key_prefix";
|
|
4805
4805
|
tableName: "api_keys";
|
|
4806
4806
|
dataType: "string";
|
|
@@ -4819,7 +4819,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4819
4819
|
}, {}, {
|
|
4820
4820
|
length: 256;
|
|
4821
4821
|
}>;
|
|
4822
|
-
name:
|
|
4822
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4823
4823
|
name: "name";
|
|
4824
4824
|
tableName: "api_keys";
|
|
4825
4825
|
dataType: "string";
|
|
@@ -4838,7 +4838,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4838
4838
|
}, {}, {
|
|
4839
4839
|
length: 256;
|
|
4840
4840
|
}>;
|
|
4841
|
-
lastUsedAt:
|
|
4841
|
+
lastUsedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4842
4842
|
name: "last_used_at";
|
|
4843
4843
|
tableName: "api_keys";
|
|
4844
4844
|
dataType: "string";
|
|
@@ -4855,7 +4855,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4855
4855
|
identity: undefined;
|
|
4856
4856
|
generated: undefined;
|
|
4857
4857
|
}, {}, {}>;
|
|
4858
|
-
expiresAt:
|
|
4858
|
+
expiresAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4859
4859
|
name: "expires_at";
|
|
4860
4860
|
tableName: "api_keys";
|
|
4861
4861
|
dataType: "string";
|
|
@@ -4872,7 +4872,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4872
4872
|
identity: undefined;
|
|
4873
4873
|
generated: undefined;
|
|
4874
4874
|
}, {}, {}>;
|
|
4875
|
-
agentId:
|
|
4875
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4876
4876
|
name: "agent_id";
|
|
4877
4877
|
tableName: "api_keys";
|
|
4878
4878
|
dataType: "string";
|
|
@@ -4891,7 +4891,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4891
4891
|
}, {}, {
|
|
4892
4892
|
length: 256;
|
|
4893
4893
|
}>;
|
|
4894
|
-
projectId:
|
|
4894
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4895
4895
|
name: "project_id";
|
|
4896
4896
|
tableName: "api_keys";
|
|
4897
4897
|
dataType: "string";
|
|
@@ -4910,7 +4910,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4910
4910
|
}, {}, {
|
|
4911
4911
|
length: 256;
|
|
4912
4912
|
}>;
|
|
4913
|
-
tenantId:
|
|
4913
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4914
4914
|
name: "tenant_id";
|
|
4915
4915
|
tableName: "api_keys";
|
|
4916
4916
|
dataType: "string";
|
|
@@ -4929,7 +4929,7 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4929
4929
|
}, {}, {
|
|
4930
4930
|
length: 256;
|
|
4931
4931
|
}>;
|
|
4932
|
-
id:
|
|
4932
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4933
4933
|
name: "id";
|
|
4934
4934
|
tableName: "api_keys";
|
|
4935
4935
|
dataType: "string";
|
|
@@ -4951,11 +4951,11 @@ declare const apiKeys: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4951
4951
|
};
|
|
4952
4952
|
dialect: "pg";
|
|
4953
4953
|
}>;
|
|
4954
|
-
declare const credentialReferences:
|
|
4954
|
+
declare const credentialReferences: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4955
4955
|
name: "credential_references";
|
|
4956
4956
|
schema: undefined;
|
|
4957
4957
|
columns: {
|
|
4958
|
-
createdAt:
|
|
4958
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4959
4959
|
name: "created_at";
|
|
4960
4960
|
tableName: "credential_references";
|
|
4961
4961
|
dataType: "string";
|
|
@@ -4972,7 +4972,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4972
4972
|
identity: undefined;
|
|
4973
4973
|
generated: undefined;
|
|
4974
4974
|
}, {}, {}>;
|
|
4975
|
-
updatedAt:
|
|
4975
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4976
4976
|
name: "updated_at";
|
|
4977
4977
|
tableName: "credential_references";
|
|
4978
4978
|
dataType: "string";
|
|
@@ -4989,7 +4989,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
4989
4989
|
identity: undefined;
|
|
4990
4990
|
generated: undefined;
|
|
4991
4991
|
}, {}, {}>;
|
|
4992
|
-
name:
|
|
4992
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4993
4993
|
name: "name";
|
|
4994
4994
|
tableName: "credential_references";
|
|
4995
4995
|
dataType: "string";
|
|
@@ -5008,7 +5008,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5008
5008
|
}, {}, {
|
|
5009
5009
|
length: 256;
|
|
5010
5010
|
}>;
|
|
5011
|
-
type:
|
|
5011
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
5012
5012
|
name: "type";
|
|
5013
5013
|
tableName: "credential_references";
|
|
5014
5014
|
dataType: "string";
|
|
@@ -5027,7 +5027,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5027
5027
|
}, {}, {
|
|
5028
5028
|
length: 256;
|
|
5029
5029
|
}>;
|
|
5030
|
-
credentialStoreId:
|
|
5030
|
+
credentialStoreId: drizzle_orm_pg_core0.PgColumn<{
|
|
5031
5031
|
name: "credential_store_id";
|
|
5032
5032
|
tableName: "credential_references";
|
|
5033
5033
|
dataType: "string";
|
|
@@ -5046,7 +5046,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5046
5046
|
}, {}, {
|
|
5047
5047
|
length: 256;
|
|
5048
5048
|
}>;
|
|
5049
|
-
retrievalParams:
|
|
5049
|
+
retrievalParams: drizzle_orm_pg_core0.PgColumn<{
|
|
5050
5050
|
name: "retrieval_params";
|
|
5051
5051
|
tableName: "credential_references";
|
|
5052
5052
|
dataType: "json";
|
|
@@ -5065,7 +5065,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5065
5065
|
}, {}, {
|
|
5066
5066
|
$type: Record<string, unknown>;
|
|
5067
5067
|
}>;
|
|
5068
|
-
toolId:
|
|
5068
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
5069
5069
|
name: "tool_id";
|
|
5070
5070
|
tableName: "credential_references";
|
|
5071
5071
|
dataType: "string";
|
|
@@ -5084,7 +5084,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5084
5084
|
}, {}, {
|
|
5085
5085
|
length: 256;
|
|
5086
5086
|
}>;
|
|
5087
|
-
userId:
|
|
5087
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
5088
5088
|
name: "user_id";
|
|
5089
5089
|
tableName: "credential_references";
|
|
5090
5090
|
dataType: "string";
|
|
@@ -5103,7 +5103,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5103
5103
|
}, {}, {
|
|
5104
5104
|
length: 256;
|
|
5105
5105
|
}>;
|
|
5106
|
-
createdBy:
|
|
5106
|
+
createdBy: drizzle_orm_pg_core0.PgColumn<{
|
|
5107
5107
|
name: "created_by";
|
|
5108
5108
|
tableName: "credential_references";
|
|
5109
5109
|
dataType: "string";
|
|
@@ -5122,7 +5122,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5122
5122
|
}, {}, {
|
|
5123
5123
|
length: 256;
|
|
5124
5124
|
}>;
|
|
5125
|
-
projectId:
|
|
5125
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
5126
5126
|
name: "project_id";
|
|
5127
5127
|
tableName: "credential_references";
|
|
5128
5128
|
dataType: "string";
|
|
@@ -5141,7 +5141,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5141
5141
|
}, {}, {
|
|
5142
5142
|
length: 256;
|
|
5143
5143
|
}>;
|
|
5144
|
-
tenantId:
|
|
5144
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
5145
5145
|
name: "tenant_id";
|
|
5146
5146
|
tableName: "credential_references";
|
|
5147
5147
|
dataType: "string";
|
|
@@ -5160,7 +5160,7 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5160
5160
|
}, {}, {
|
|
5161
5161
|
length: 256;
|
|
5162
5162
|
}>;
|
|
5163
|
-
id:
|
|
5163
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
5164
5164
|
name: "id";
|
|
5165
5165
|
tableName: "credential_references";
|
|
5166
5166
|
dataType: "string";
|
|
@@ -5182,145 +5182,145 @@ declare const credentialReferences: drizzle_orm_pg_core208.PgTableWithColumns<{
|
|
|
5182
5182
|
};
|
|
5183
5183
|
dialect: "pg";
|
|
5184
5184
|
}>;
|
|
5185
|
-
declare const tasksRelations:
|
|
5186
|
-
project:
|
|
5187
|
-
parentRelations:
|
|
5188
|
-
childRelations:
|
|
5189
|
-
subAgent:
|
|
5190
|
-
messages:
|
|
5191
|
-
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">;
|
|
5192
5192
|
}>;
|
|
5193
|
-
declare const projectsRelations:
|
|
5194
|
-
subAgents:
|
|
5195
|
-
agents:
|
|
5196
|
-
tools:
|
|
5197
|
-
functions:
|
|
5198
|
-
contextConfigs:
|
|
5199
|
-
externalAgents:
|
|
5200
|
-
conversations:
|
|
5201
|
-
tasks:
|
|
5202
|
-
dataComponents:
|
|
5203
|
-
artifactComponents:
|
|
5204
|
-
ledgerArtifacts:
|
|
5205
|
-
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">;
|
|
5206
5206
|
}>;
|
|
5207
|
-
declare const taskRelationsRelations:
|
|
5208
|
-
parentTask:
|
|
5209
|
-
childTask:
|
|
5207
|
+
declare const taskRelationsRelations: drizzle_orm0.Relations<"task_relations", {
|
|
5208
|
+
parentTask: drizzle_orm0.One<"tasks", true>;
|
|
5209
|
+
childTask: drizzle_orm0.One<"tasks", true>;
|
|
5210
5210
|
}>;
|
|
5211
|
-
declare const contextConfigsRelations:
|
|
5212
|
-
project:
|
|
5213
|
-
agents:
|
|
5214
|
-
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">;
|
|
5215
5215
|
}>;
|
|
5216
|
-
declare const contextCacheRelations:
|
|
5217
|
-
contextConfig:
|
|
5216
|
+
declare const contextCacheRelations: drizzle_orm0.Relations<"context_cache", {
|
|
5217
|
+
contextConfig: drizzle_orm0.One<"context_configs", true>;
|
|
5218
5218
|
}>;
|
|
5219
|
-
declare const subAgentsRelations:
|
|
5220
|
-
project:
|
|
5221
|
-
tasks:
|
|
5222
|
-
defaultForAgents:
|
|
5223
|
-
sourceRelations:
|
|
5224
|
-
targetRelations:
|
|
5225
|
-
sentMessages:
|
|
5226
|
-
receivedMessages:
|
|
5227
|
-
toolRelations:
|
|
5228
|
-
functionToolRelations:
|
|
5229
|
-
dataComponentRelations:
|
|
5230
|
-
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">;
|
|
5231
5231
|
}>;
|
|
5232
|
-
declare const agentRelations:
|
|
5233
|
-
project:
|
|
5234
|
-
defaultSubAgent:
|
|
5235
|
-
contextConfig:
|
|
5236
|
-
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">;
|
|
5237
5237
|
}>;
|
|
5238
|
-
declare const externalAgentsRelations:
|
|
5239
|
-
project:
|
|
5240
|
-
subAgentExternalAgentRelations:
|
|
5241
|
-
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>;
|
|
5242
5242
|
}>;
|
|
5243
|
-
declare const apiKeysRelations:
|
|
5244
|
-
project:
|
|
5245
|
-
agent:
|
|
5243
|
+
declare const apiKeysRelations: drizzle_orm0.Relations<"api_keys", {
|
|
5244
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5245
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5246
5246
|
}>;
|
|
5247
|
-
declare const agentToolRelationsRelations:
|
|
5248
|
-
subAgent:
|
|
5249
|
-
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>;
|
|
5250
5250
|
}>;
|
|
5251
|
-
declare const credentialReferencesRelations:
|
|
5252
|
-
project:
|
|
5253
|
-
tools:
|
|
5254
|
-
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">;
|
|
5255
5255
|
}>;
|
|
5256
|
-
declare const toolsRelations:
|
|
5257
|
-
project:
|
|
5258
|
-
subAgentRelations:
|
|
5259
|
-
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>;
|
|
5260
5260
|
}>;
|
|
5261
|
-
declare const conversationsRelations:
|
|
5262
|
-
project:
|
|
5263
|
-
messages:
|
|
5264
|
-
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>;
|
|
5265
5265
|
}>;
|
|
5266
|
-
declare const messagesRelations:
|
|
5267
|
-
conversation:
|
|
5268
|
-
fromSubAgent:
|
|
5269
|
-
toSubAgent:
|
|
5270
|
-
fromTeamAgent:
|
|
5271
|
-
toTeamAgent:
|
|
5272
|
-
fromExternalAgent:
|
|
5273
|
-
toExternalAgent:
|
|
5274
|
-
task:
|
|
5275
|
-
parentMessage:
|
|
5276
|
-
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">;
|
|
5277
5277
|
}>;
|
|
5278
|
-
declare const artifactComponentsRelations:
|
|
5279
|
-
project:
|
|
5280
|
-
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">;
|
|
5281
5281
|
}>;
|
|
5282
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5283
|
-
subAgent:
|
|
5284
|
-
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>;
|
|
5285
5285
|
}>;
|
|
5286
|
-
declare const dataComponentsRelations:
|
|
5287
|
-
project:
|
|
5288
|
-
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">;
|
|
5289
5289
|
}>;
|
|
5290
|
-
declare const subAgentDataComponentsRelations:
|
|
5291
|
-
subAgent:
|
|
5292
|
-
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>;
|
|
5293
5293
|
}>;
|
|
5294
|
-
declare const ledgerArtifactsRelations:
|
|
5295
|
-
project:
|
|
5296
|
-
task:
|
|
5294
|
+
declare const ledgerArtifactsRelations: drizzle_orm0.Relations<"ledger_artifacts", {
|
|
5295
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5296
|
+
task: drizzle_orm0.One<"tasks", true>;
|
|
5297
5297
|
}>;
|
|
5298
|
-
declare const functionsRelations:
|
|
5299
|
-
functionTools:
|
|
5300
|
-
project:
|
|
5298
|
+
declare const functionsRelations: drizzle_orm0.Relations<"functions", {
|
|
5299
|
+
functionTools: drizzle_orm0.Many<"function_tools">;
|
|
5300
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5301
5301
|
}>;
|
|
5302
|
-
declare const subAgentRelationsRelations:
|
|
5303
|
-
agent:
|
|
5304
|
-
sourceSubAgent:
|
|
5305
|
-
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>;
|
|
5306
5306
|
}>;
|
|
5307
|
-
declare const functionToolsRelations:
|
|
5308
|
-
project:
|
|
5309
|
-
agent:
|
|
5310
|
-
function:
|
|
5311
|
-
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">;
|
|
5312
5312
|
}>;
|
|
5313
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5314
|
-
subAgent:
|
|
5315
|
-
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>;
|
|
5316
5316
|
}>;
|
|
5317
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5318
|
-
subAgent:
|
|
5319
|
-
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>;
|
|
5320
5320
|
}>;
|
|
5321
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5322
|
-
subAgent:
|
|
5323
|
-
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>;
|
|
5324
5324
|
}>;
|
|
5325
5325
|
//#endregion
|
|
5326
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 };
|