@inkeep/agents-core 0.0.0-dev-20260105192809 → 0.0.0-dev-20260105201718
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 +37 -37
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/constants/otel-attributes.d.ts +2 -0
- package/dist/constants/otel-attributes.js +4 -2
- package/dist/constants/signoz-queries.d.ts +1 -0
- package/dist/constants/signoz-queries.js +2 -1
- package/dist/data-access/ledgerArtifacts.d.ts +4 -2
- package/dist/data-access/ledgerArtifacts.js +10 -6
- package/dist/data-access/messages.d.ts +9 -9
- package/dist/data-access/tasks.d.ts +1 -1
- package/dist/db/schema.d.ts +404 -404
- package/dist/types/a2a.d.ts +1 -0
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +772 -772
- package/package.json +1 -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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.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_core852.PgTableWithColumns<{
|
|
|
2220
2220
|
}, {}, {
|
|
2221
2221
|
$type: Record<string, unknown>;
|
|
2222
2222
|
}>;
|
|
2223
|
-
name:
|
|
2223
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2224
2224
|
name: "name";
|
|
2225
2225
|
tableName: "artifact_components";
|
|
2226
2226
|
dataType: "string";
|
|
@@ -2239,7 +2239,7 @@ declare const artifactComponents: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2239
2239
|
}, {}, {
|
|
2240
2240
|
length: 256;
|
|
2241
2241
|
}>;
|
|
2242
|
-
description:
|
|
2242
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2243
2243
|
name: "description";
|
|
2244
2244
|
tableName: "artifact_components";
|
|
2245
2245
|
dataType: "string";
|
|
@@ -2256,7 +2256,7 @@ declare const artifactComponents: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2256
2256
|
identity: undefined;
|
|
2257
2257
|
generated: undefined;
|
|
2258
2258
|
}, {}, {}>;
|
|
2259
|
-
projectId:
|
|
2259
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2260
2260
|
name: "project_id";
|
|
2261
2261
|
tableName: "artifact_components";
|
|
2262
2262
|
dataType: "string";
|
|
@@ -2275,7 +2275,7 @@ declare const artifactComponents: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2275
2275
|
}, {}, {
|
|
2276
2276
|
length: 256;
|
|
2277
2277
|
}>;
|
|
2278
|
-
tenantId:
|
|
2278
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2279
2279
|
name: "tenant_id";
|
|
2280
2280
|
tableName: "artifact_components";
|
|
2281
2281
|
dataType: "string";
|
|
@@ -2294,7 +2294,7 @@ declare const artifactComponents: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2294
2294
|
}, {}, {
|
|
2295
2295
|
length: 256;
|
|
2296
2296
|
}>;
|
|
2297
|
-
id:
|
|
2297
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2298
2298
|
name: "id";
|
|
2299
2299
|
tableName: "artifact_components";
|
|
2300
2300
|
dataType: "string";
|
|
@@ -2316,11 +2316,11 @@ declare const artifactComponents: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2316
2316
|
};
|
|
2317
2317
|
dialect: "pg";
|
|
2318
2318
|
}>;
|
|
2319
|
-
declare const subAgentArtifactComponents:
|
|
2319
|
+
declare const subAgentArtifactComponents: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2320
2320
|
name: "sub_agent_artifact_components";
|
|
2321
2321
|
schema: undefined;
|
|
2322
2322
|
columns: {
|
|
2323
|
-
artifactComponentId:
|
|
2323
|
+
artifactComponentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2324
2324
|
name: "artifact_component_id";
|
|
2325
2325
|
tableName: "sub_agent_artifact_components";
|
|
2326
2326
|
dataType: "string";
|
|
@@ -2339,7 +2339,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2339
2339
|
}, {}, {
|
|
2340
2340
|
length: 256;
|
|
2341
2341
|
}>;
|
|
2342
|
-
createdAt:
|
|
2342
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2343
2343
|
name: "created_at";
|
|
2344
2344
|
tableName: "sub_agent_artifact_components";
|
|
2345
2345
|
dataType: "string";
|
|
@@ -2356,7 +2356,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2356
2356
|
identity: undefined;
|
|
2357
2357
|
generated: undefined;
|
|
2358
2358
|
}, {}, {}>;
|
|
2359
|
-
subAgentId:
|
|
2359
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2360
2360
|
name: "sub_agent_id";
|
|
2361
2361
|
tableName: "sub_agent_artifact_components";
|
|
2362
2362
|
dataType: "string";
|
|
@@ -2375,7 +2375,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2375
2375
|
}, {}, {
|
|
2376
2376
|
length: 256;
|
|
2377
2377
|
}>;
|
|
2378
|
-
agentId:
|
|
2378
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2379
2379
|
name: "agent_id";
|
|
2380
2380
|
tableName: "sub_agent_artifact_components";
|
|
2381
2381
|
dataType: "string";
|
|
@@ -2394,7 +2394,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2394
2394
|
}, {}, {
|
|
2395
2395
|
length: 256;
|
|
2396
2396
|
}>;
|
|
2397
|
-
projectId:
|
|
2397
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2398
2398
|
name: "project_id";
|
|
2399
2399
|
tableName: "sub_agent_artifact_components";
|
|
2400
2400
|
dataType: "string";
|
|
@@ -2413,7 +2413,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2413
2413
|
}, {}, {
|
|
2414
2414
|
length: 256;
|
|
2415
2415
|
}>;
|
|
2416
|
-
tenantId:
|
|
2416
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2417
2417
|
name: "tenant_id";
|
|
2418
2418
|
tableName: "sub_agent_artifact_components";
|
|
2419
2419
|
dataType: "string";
|
|
@@ -2432,7 +2432,7 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2432
2432
|
}, {}, {
|
|
2433
2433
|
length: 256;
|
|
2434
2434
|
}>;
|
|
2435
|
-
id:
|
|
2435
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2436
2436
|
name: "id";
|
|
2437
2437
|
tableName: "sub_agent_artifact_components";
|
|
2438
2438
|
dataType: "string";
|
|
@@ -2454,11 +2454,11 @@ declare const subAgentArtifactComponents: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
2454
2454
|
};
|
|
2455
2455
|
dialect: "pg";
|
|
2456
2456
|
}>;
|
|
2457
|
-
declare const tools:
|
|
2457
|
+
declare const tools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2458
2458
|
name: "tools";
|
|
2459
2459
|
schema: undefined;
|
|
2460
2460
|
columns: {
|
|
2461
|
-
createdAt:
|
|
2461
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2462
2462
|
name: "created_at";
|
|
2463
2463
|
tableName: "tools";
|
|
2464
2464
|
dataType: "string";
|
|
@@ -2475,7 +2475,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2475
2475
|
identity: undefined;
|
|
2476
2476
|
generated: undefined;
|
|
2477
2477
|
}, {}, {}>;
|
|
2478
|
-
updatedAt:
|
|
2478
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2479
2479
|
name: "updated_at";
|
|
2480
2480
|
tableName: "tools";
|
|
2481
2481
|
dataType: "string";
|
|
@@ -2492,7 +2492,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2492
2492
|
identity: undefined;
|
|
2493
2493
|
generated: undefined;
|
|
2494
2494
|
}, {}, {}>;
|
|
2495
|
-
name:
|
|
2495
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2496
2496
|
name: "name";
|
|
2497
2497
|
tableName: "tools";
|
|
2498
2498
|
dataType: "string";
|
|
@@ -2511,7 +2511,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2511
2511
|
}, {}, {
|
|
2512
2512
|
length: 256;
|
|
2513
2513
|
}>;
|
|
2514
|
-
description:
|
|
2514
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2515
2515
|
name: "description";
|
|
2516
2516
|
tableName: "tools";
|
|
2517
2517
|
dataType: "string";
|
|
@@ -2528,7 +2528,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2528
2528
|
identity: undefined;
|
|
2529
2529
|
generated: undefined;
|
|
2530
2530
|
}, {}, {}>;
|
|
2531
|
-
config:
|
|
2531
|
+
config: drizzle_orm_pg_core0.PgColumn<{
|
|
2532
2532
|
name: "config";
|
|
2533
2533
|
tableName: "tools";
|
|
2534
2534
|
dataType: "json";
|
|
@@ -2553,7 +2553,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2553
2553
|
mcp: ToolMcpConfig;
|
|
2554
2554
|
};
|
|
2555
2555
|
}>;
|
|
2556
|
-
credentialReferenceId:
|
|
2556
|
+
credentialReferenceId: drizzle_orm_pg_core0.PgColumn<{
|
|
2557
2557
|
name: "credential_reference_id";
|
|
2558
2558
|
tableName: "tools";
|
|
2559
2559
|
dataType: "string";
|
|
@@ -2572,7 +2572,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2572
2572
|
}, {}, {
|
|
2573
2573
|
length: 256;
|
|
2574
2574
|
}>;
|
|
2575
|
-
credentialScope:
|
|
2575
|
+
credentialScope: drizzle_orm_pg_core0.PgColumn<{
|
|
2576
2576
|
name: "credential_scope";
|
|
2577
2577
|
tableName: "tools";
|
|
2578
2578
|
dataType: "string";
|
|
@@ -2591,7 +2591,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2591
2591
|
}, {}, {
|
|
2592
2592
|
length: 50;
|
|
2593
2593
|
}>;
|
|
2594
|
-
headers:
|
|
2594
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
2595
2595
|
name: "headers";
|
|
2596
2596
|
tableName: "tools";
|
|
2597
2597
|
dataType: "json";
|
|
@@ -2610,7 +2610,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2610
2610
|
}, {}, {
|
|
2611
2611
|
$type: Record<string, string>;
|
|
2612
2612
|
}>;
|
|
2613
|
-
imageUrl:
|
|
2613
|
+
imageUrl: drizzle_orm_pg_core0.PgColumn<{
|
|
2614
2614
|
name: "image_url";
|
|
2615
2615
|
tableName: "tools";
|
|
2616
2616
|
dataType: "string";
|
|
@@ -2627,7 +2627,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2627
2627
|
identity: undefined;
|
|
2628
2628
|
generated: undefined;
|
|
2629
2629
|
}, {}, {}>;
|
|
2630
|
-
capabilities:
|
|
2630
|
+
capabilities: drizzle_orm_pg_core0.PgColumn<{
|
|
2631
2631
|
name: "capabilities";
|
|
2632
2632
|
tableName: "tools";
|
|
2633
2633
|
dataType: "json";
|
|
@@ -2646,7 +2646,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2646
2646
|
}, {}, {
|
|
2647
2647
|
$type: ToolServerCapabilities;
|
|
2648
2648
|
}>;
|
|
2649
|
-
lastError:
|
|
2649
|
+
lastError: drizzle_orm_pg_core0.PgColumn<{
|
|
2650
2650
|
name: "last_error";
|
|
2651
2651
|
tableName: "tools";
|
|
2652
2652
|
dataType: "string";
|
|
@@ -2663,7 +2663,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2663
2663
|
identity: undefined;
|
|
2664
2664
|
generated: undefined;
|
|
2665
2665
|
}, {}, {}>;
|
|
2666
|
-
projectId:
|
|
2666
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2667
2667
|
name: "project_id";
|
|
2668
2668
|
tableName: "tools";
|
|
2669
2669
|
dataType: "string";
|
|
@@ -2682,7 +2682,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2682
2682
|
}, {}, {
|
|
2683
2683
|
length: 256;
|
|
2684
2684
|
}>;
|
|
2685
|
-
tenantId:
|
|
2685
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2686
2686
|
name: "tenant_id";
|
|
2687
2687
|
tableName: "tools";
|
|
2688
2688
|
dataType: "string";
|
|
@@ -2701,7 +2701,7 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2701
2701
|
}, {}, {
|
|
2702
2702
|
length: 256;
|
|
2703
2703
|
}>;
|
|
2704
|
-
id:
|
|
2704
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2705
2705
|
name: "id";
|
|
2706
2706
|
tableName: "tools";
|
|
2707
2707
|
dataType: "string";
|
|
@@ -2723,11 +2723,11 @@ declare const tools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2723
2723
|
};
|
|
2724
2724
|
dialect: "pg";
|
|
2725
2725
|
}>;
|
|
2726
|
-
declare const functionTools:
|
|
2726
|
+
declare const functionTools: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2727
2727
|
name: "function_tools";
|
|
2728
2728
|
schema: undefined;
|
|
2729
2729
|
columns: {
|
|
2730
|
-
createdAt:
|
|
2730
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2731
2731
|
name: "created_at";
|
|
2732
2732
|
tableName: "function_tools";
|
|
2733
2733
|
dataType: "string";
|
|
@@ -2744,7 +2744,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2744
2744
|
identity: undefined;
|
|
2745
2745
|
generated: undefined;
|
|
2746
2746
|
}, {}, {}>;
|
|
2747
|
-
updatedAt:
|
|
2747
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2748
2748
|
name: "updated_at";
|
|
2749
2749
|
tableName: "function_tools";
|
|
2750
2750
|
dataType: "string";
|
|
@@ -2761,7 +2761,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2761
2761
|
identity: undefined;
|
|
2762
2762
|
generated: undefined;
|
|
2763
2763
|
}, {}, {}>;
|
|
2764
|
-
name:
|
|
2764
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
2765
2765
|
name: "name";
|
|
2766
2766
|
tableName: "function_tools";
|
|
2767
2767
|
dataType: "string";
|
|
@@ -2780,7 +2780,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2780
2780
|
}, {}, {
|
|
2781
2781
|
length: 256;
|
|
2782
2782
|
}>;
|
|
2783
|
-
description:
|
|
2783
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
2784
2784
|
name: "description";
|
|
2785
2785
|
tableName: "function_tools";
|
|
2786
2786
|
dataType: "string";
|
|
@@ -2797,7 +2797,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2797
2797
|
identity: undefined;
|
|
2798
2798
|
generated: undefined;
|
|
2799
2799
|
}, {}, {}>;
|
|
2800
|
-
functionId:
|
|
2800
|
+
functionId: drizzle_orm_pg_core0.PgColumn<{
|
|
2801
2801
|
name: "function_id";
|
|
2802
2802
|
tableName: "function_tools";
|
|
2803
2803
|
dataType: "string";
|
|
@@ -2816,7 +2816,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2816
2816
|
}, {}, {
|
|
2817
2817
|
length: 256;
|
|
2818
2818
|
}>;
|
|
2819
|
-
agentId:
|
|
2819
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
2820
2820
|
name: "agent_id";
|
|
2821
2821
|
tableName: "function_tools";
|
|
2822
2822
|
dataType: "string";
|
|
@@ -2835,7 +2835,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2835
2835
|
}, {}, {
|
|
2836
2836
|
length: 256;
|
|
2837
2837
|
}>;
|
|
2838
|
-
projectId:
|
|
2838
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2839
2839
|
name: "project_id";
|
|
2840
2840
|
tableName: "function_tools";
|
|
2841
2841
|
dataType: "string";
|
|
@@ -2854,7 +2854,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2854
2854
|
}, {}, {
|
|
2855
2855
|
length: 256;
|
|
2856
2856
|
}>;
|
|
2857
|
-
tenantId:
|
|
2857
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
2858
2858
|
name: "tenant_id";
|
|
2859
2859
|
tableName: "function_tools";
|
|
2860
2860
|
dataType: "string";
|
|
@@ -2873,7 +2873,7 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2873
2873
|
}, {}, {
|
|
2874
2874
|
length: 256;
|
|
2875
2875
|
}>;
|
|
2876
|
-
id:
|
|
2876
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
2877
2877
|
name: "id";
|
|
2878
2878
|
tableName: "function_tools";
|
|
2879
2879
|
dataType: "string";
|
|
@@ -2895,11 +2895,11 @@ declare const functionTools: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2895
2895
|
};
|
|
2896
2896
|
dialect: "pg";
|
|
2897
2897
|
}>;
|
|
2898
|
-
declare const functions:
|
|
2898
|
+
declare const functions: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
2899
2899
|
name: "functions";
|
|
2900
2900
|
schema: undefined;
|
|
2901
2901
|
columns: {
|
|
2902
|
-
createdAt:
|
|
2902
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2903
2903
|
name: "created_at";
|
|
2904
2904
|
tableName: "functions";
|
|
2905
2905
|
dataType: "string";
|
|
@@ -2916,7 +2916,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2916
2916
|
identity: undefined;
|
|
2917
2917
|
generated: undefined;
|
|
2918
2918
|
}, {}, {}>;
|
|
2919
|
-
updatedAt:
|
|
2919
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
2920
2920
|
name: "updated_at";
|
|
2921
2921
|
tableName: "functions";
|
|
2922
2922
|
dataType: "string";
|
|
@@ -2933,7 +2933,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2933
2933
|
identity: undefined;
|
|
2934
2934
|
generated: undefined;
|
|
2935
2935
|
}, {}, {}>;
|
|
2936
|
-
inputSchema:
|
|
2936
|
+
inputSchema: drizzle_orm_pg_core0.PgColumn<{
|
|
2937
2937
|
name: "input_schema";
|
|
2938
2938
|
tableName: "functions";
|
|
2939
2939
|
dataType: "json";
|
|
@@ -2952,7 +2952,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2952
2952
|
}, {}, {
|
|
2953
2953
|
$type: Record<string, unknown>;
|
|
2954
2954
|
}>;
|
|
2955
|
-
executeCode:
|
|
2955
|
+
executeCode: drizzle_orm_pg_core0.PgColumn<{
|
|
2956
2956
|
name: "execute_code";
|
|
2957
2957
|
tableName: "functions";
|
|
2958
2958
|
dataType: "string";
|
|
@@ -2969,7 +2969,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2969
2969
|
identity: undefined;
|
|
2970
2970
|
generated: undefined;
|
|
2971
2971
|
}, {}, {}>;
|
|
2972
|
-
dependencies:
|
|
2972
|
+
dependencies: drizzle_orm_pg_core0.PgColumn<{
|
|
2973
2973
|
name: "dependencies";
|
|
2974
2974
|
tableName: "functions";
|
|
2975
2975
|
dataType: "json";
|
|
@@ -2988,7 +2988,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
2988
2988
|
}, {}, {
|
|
2989
2989
|
$type: Record<string, string>;
|
|
2990
2990
|
}>;
|
|
2991
|
-
projectId:
|
|
2991
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
2992
2992
|
name: "project_id";
|
|
2993
2993
|
tableName: "functions";
|
|
2994
2994
|
dataType: "string";
|
|
@@ -3007,7 +3007,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3007
3007
|
}, {}, {
|
|
3008
3008
|
length: 256;
|
|
3009
3009
|
}>;
|
|
3010
|
-
tenantId:
|
|
3010
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3011
3011
|
name: "tenant_id";
|
|
3012
3012
|
tableName: "functions";
|
|
3013
3013
|
dataType: "string";
|
|
@@ -3026,7 +3026,7 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3026
3026
|
}, {}, {
|
|
3027
3027
|
length: 256;
|
|
3028
3028
|
}>;
|
|
3029
|
-
id:
|
|
3029
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3030
3030
|
name: "id";
|
|
3031
3031
|
tableName: "functions";
|
|
3032
3032
|
dataType: "string";
|
|
@@ -3048,11 +3048,11 @@ declare const functions: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3048
3048
|
};
|
|
3049
3049
|
dialect: "pg";
|
|
3050
3050
|
}>;
|
|
3051
|
-
declare const subAgentToolRelations:
|
|
3051
|
+
declare const subAgentToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3052
3052
|
name: "sub_agent_tool_relations";
|
|
3053
3053
|
schema: undefined;
|
|
3054
3054
|
columns: {
|
|
3055
|
-
createdAt:
|
|
3055
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3056
3056
|
name: "created_at";
|
|
3057
3057
|
tableName: "sub_agent_tool_relations";
|
|
3058
3058
|
dataType: "string";
|
|
@@ -3069,7 +3069,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3069
3069
|
identity: undefined;
|
|
3070
3070
|
generated: undefined;
|
|
3071
3071
|
}, {}, {}>;
|
|
3072
|
-
updatedAt:
|
|
3072
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3073
3073
|
name: "updated_at";
|
|
3074
3074
|
tableName: "sub_agent_tool_relations";
|
|
3075
3075
|
dataType: "string";
|
|
@@ -3086,7 +3086,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3086
3086
|
identity: undefined;
|
|
3087
3087
|
generated: undefined;
|
|
3088
3088
|
}, {}, {}>;
|
|
3089
|
-
toolId:
|
|
3089
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3090
3090
|
name: "tool_id";
|
|
3091
3091
|
tableName: "sub_agent_tool_relations";
|
|
3092
3092
|
dataType: "string";
|
|
@@ -3105,7 +3105,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3105
3105
|
}, {}, {
|
|
3106
3106
|
length: 256;
|
|
3107
3107
|
}>;
|
|
3108
|
-
selectedTools:
|
|
3108
|
+
selectedTools: drizzle_orm_pg_core0.PgColumn<{
|
|
3109
3109
|
name: "selected_tools";
|
|
3110
3110
|
tableName: "sub_agent_tool_relations";
|
|
3111
3111
|
dataType: "json";
|
|
@@ -3124,7 +3124,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3124
3124
|
}, {}, {
|
|
3125
3125
|
$type: string[] | null;
|
|
3126
3126
|
}>;
|
|
3127
|
-
headers:
|
|
3127
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3128
3128
|
name: "headers";
|
|
3129
3129
|
tableName: "sub_agent_tool_relations";
|
|
3130
3130
|
dataType: "json";
|
|
@@ -3143,7 +3143,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3143
3143
|
}, {}, {
|
|
3144
3144
|
$type: Record<string, string> | null;
|
|
3145
3145
|
}>;
|
|
3146
|
-
toolPolicies:
|
|
3146
|
+
toolPolicies: drizzle_orm_pg_core0.PgColumn<{
|
|
3147
3147
|
name: "tool_policies";
|
|
3148
3148
|
tableName: "sub_agent_tool_relations";
|
|
3149
3149
|
dataType: "json";
|
|
@@ -3166,7 +3166,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3166
3166
|
needsApproval?: boolean;
|
|
3167
3167
|
}> | null;
|
|
3168
3168
|
}>;
|
|
3169
|
-
subAgentId:
|
|
3169
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3170
3170
|
name: "sub_agent_id";
|
|
3171
3171
|
tableName: "sub_agent_tool_relations";
|
|
3172
3172
|
dataType: "string";
|
|
@@ -3185,7 +3185,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3185
3185
|
}, {}, {
|
|
3186
3186
|
length: 256;
|
|
3187
3187
|
}>;
|
|
3188
|
-
agentId:
|
|
3188
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3189
3189
|
name: "agent_id";
|
|
3190
3190
|
tableName: "sub_agent_tool_relations";
|
|
3191
3191
|
dataType: "string";
|
|
@@ -3204,7 +3204,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3204
3204
|
}, {}, {
|
|
3205
3205
|
length: 256;
|
|
3206
3206
|
}>;
|
|
3207
|
-
projectId:
|
|
3207
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3208
3208
|
name: "project_id";
|
|
3209
3209
|
tableName: "sub_agent_tool_relations";
|
|
3210
3210
|
dataType: "string";
|
|
@@ -3223,7 +3223,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3223
3223
|
}, {}, {
|
|
3224
3224
|
length: 256;
|
|
3225
3225
|
}>;
|
|
3226
|
-
tenantId:
|
|
3226
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3227
3227
|
name: "tenant_id";
|
|
3228
3228
|
tableName: "sub_agent_tool_relations";
|
|
3229
3229
|
dataType: "string";
|
|
@@ -3242,7 +3242,7 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3242
3242
|
}, {}, {
|
|
3243
3243
|
length: 256;
|
|
3244
3244
|
}>;
|
|
3245
|
-
id:
|
|
3245
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3246
3246
|
name: "id";
|
|
3247
3247
|
tableName: "sub_agent_tool_relations";
|
|
3248
3248
|
dataType: "string";
|
|
@@ -3264,11 +3264,11 @@ declare const subAgentToolRelations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3264
3264
|
};
|
|
3265
3265
|
dialect: "pg";
|
|
3266
3266
|
}>;
|
|
3267
|
-
declare const subAgentExternalAgentRelations:
|
|
3267
|
+
declare const subAgentExternalAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3268
3268
|
name: "sub_agent_external_agent_relations";
|
|
3269
3269
|
schema: undefined;
|
|
3270
3270
|
columns: {
|
|
3271
|
-
createdAt:
|
|
3271
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3272
3272
|
name: "created_at";
|
|
3273
3273
|
tableName: "sub_agent_external_agent_relations";
|
|
3274
3274
|
dataType: "string";
|
|
@@ -3285,7 +3285,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3285
3285
|
identity: undefined;
|
|
3286
3286
|
generated: undefined;
|
|
3287
3287
|
}, {}, {}>;
|
|
3288
|
-
updatedAt:
|
|
3288
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3289
3289
|
name: "updated_at";
|
|
3290
3290
|
tableName: "sub_agent_external_agent_relations";
|
|
3291
3291
|
dataType: "string";
|
|
@@ -3302,7 +3302,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3302
3302
|
identity: undefined;
|
|
3303
3303
|
generated: undefined;
|
|
3304
3304
|
}, {}, {}>;
|
|
3305
|
-
externalAgentId:
|
|
3305
|
+
externalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3306
3306
|
name: "external_agent_id";
|
|
3307
3307
|
tableName: "sub_agent_external_agent_relations";
|
|
3308
3308
|
dataType: "string";
|
|
@@ -3321,7 +3321,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3321
3321
|
}, {}, {
|
|
3322
3322
|
length: 256;
|
|
3323
3323
|
}>;
|
|
3324
|
-
headers:
|
|
3324
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3325
3325
|
name: "headers";
|
|
3326
3326
|
tableName: "sub_agent_external_agent_relations";
|
|
3327
3327
|
dataType: "json";
|
|
@@ -3340,7 +3340,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3340
3340
|
}, {}, {
|
|
3341
3341
|
$type: Record<string, string> | null;
|
|
3342
3342
|
}>;
|
|
3343
|
-
subAgentId:
|
|
3343
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3344
3344
|
name: "sub_agent_id";
|
|
3345
3345
|
tableName: "sub_agent_external_agent_relations";
|
|
3346
3346
|
dataType: "string";
|
|
@@ -3359,7 +3359,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3359
3359
|
}, {}, {
|
|
3360
3360
|
length: 256;
|
|
3361
3361
|
}>;
|
|
3362
|
-
agentId:
|
|
3362
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3363
3363
|
name: "agent_id";
|
|
3364
3364
|
tableName: "sub_agent_external_agent_relations";
|
|
3365
3365
|
dataType: "string";
|
|
@@ -3378,7 +3378,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3378
3378
|
}, {}, {
|
|
3379
3379
|
length: 256;
|
|
3380
3380
|
}>;
|
|
3381
|
-
projectId:
|
|
3381
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3382
3382
|
name: "project_id";
|
|
3383
3383
|
tableName: "sub_agent_external_agent_relations";
|
|
3384
3384
|
dataType: "string";
|
|
@@ -3397,7 +3397,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3397
3397
|
}, {}, {
|
|
3398
3398
|
length: 256;
|
|
3399
3399
|
}>;
|
|
3400
|
-
tenantId:
|
|
3400
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3401
3401
|
name: "tenant_id";
|
|
3402
3402
|
tableName: "sub_agent_external_agent_relations";
|
|
3403
3403
|
dataType: "string";
|
|
@@ -3416,7 +3416,7 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3416
3416
|
}, {}, {
|
|
3417
3417
|
length: 256;
|
|
3418
3418
|
}>;
|
|
3419
|
-
id:
|
|
3419
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3420
3420
|
name: "id";
|
|
3421
3421
|
tableName: "sub_agent_external_agent_relations";
|
|
3422
3422
|
dataType: "string";
|
|
@@ -3438,11 +3438,11 @@ declare const subAgentExternalAgentRelations: drizzle_orm_pg_core852.PgTableWith
|
|
|
3438
3438
|
};
|
|
3439
3439
|
dialect: "pg";
|
|
3440
3440
|
}>;
|
|
3441
|
-
declare const subAgentTeamAgentRelations:
|
|
3441
|
+
declare const subAgentTeamAgentRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3442
3442
|
name: "sub_agent_team_agent_relations";
|
|
3443
3443
|
schema: undefined;
|
|
3444
3444
|
columns: {
|
|
3445
|
-
createdAt:
|
|
3445
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3446
3446
|
name: "created_at";
|
|
3447
3447
|
tableName: "sub_agent_team_agent_relations";
|
|
3448
3448
|
dataType: "string";
|
|
@@ -3459,7 +3459,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3459
3459
|
identity: undefined;
|
|
3460
3460
|
generated: undefined;
|
|
3461
3461
|
}, {}, {}>;
|
|
3462
|
-
updatedAt:
|
|
3462
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3463
3463
|
name: "updated_at";
|
|
3464
3464
|
tableName: "sub_agent_team_agent_relations";
|
|
3465
3465
|
dataType: "string";
|
|
@@ -3476,7 +3476,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3476
3476
|
identity: undefined;
|
|
3477
3477
|
generated: undefined;
|
|
3478
3478
|
}, {}, {}>;
|
|
3479
|
-
targetAgentId:
|
|
3479
|
+
targetAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3480
3480
|
name: "target_agent_id";
|
|
3481
3481
|
tableName: "sub_agent_team_agent_relations";
|
|
3482
3482
|
dataType: "string";
|
|
@@ -3495,7 +3495,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3495
3495
|
}, {}, {
|
|
3496
3496
|
length: 256;
|
|
3497
3497
|
}>;
|
|
3498
|
-
headers:
|
|
3498
|
+
headers: drizzle_orm_pg_core0.PgColumn<{
|
|
3499
3499
|
name: "headers";
|
|
3500
3500
|
tableName: "sub_agent_team_agent_relations";
|
|
3501
3501
|
dataType: "json";
|
|
@@ -3514,7 +3514,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3514
3514
|
}, {}, {
|
|
3515
3515
|
$type: Record<string, string> | null;
|
|
3516
3516
|
}>;
|
|
3517
|
-
subAgentId:
|
|
3517
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3518
3518
|
name: "sub_agent_id";
|
|
3519
3519
|
tableName: "sub_agent_team_agent_relations";
|
|
3520
3520
|
dataType: "string";
|
|
@@ -3533,7 +3533,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3533
3533
|
}, {}, {
|
|
3534
3534
|
length: 256;
|
|
3535
3535
|
}>;
|
|
3536
|
-
agentId:
|
|
3536
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3537
3537
|
name: "agent_id";
|
|
3538
3538
|
tableName: "sub_agent_team_agent_relations";
|
|
3539
3539
|
dataType: "string";
|
|
@@ -3552,7 +3552,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3552
3552
|
}, {}, {
|
|
3553
3553
|
length: 256;
|
|
3554
3554
|
}>;
|
|
3555
|
-
projectId:
|
|
3555
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3556
3556
|
name: "project_id";
|
|
3557
3557
|
tableName: "sub_agent_team_agent_relations";
|
|
3558
3558
|
dataType: "string";
|
|
@@ -3571,7 +3571,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3571
3571
|
}, {}, {
|
|
3572
3572
|
length: 256;
|
|
3573
3573
|
}>;
|
|
3574
|
-
tenantId:
|
|
3574
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3575
3575
|
name: "tenant_id";
|
|
3576
3576
|
tableName: "sub_agent_team_agent_relations";
|
|
3577
3577
|
dataType: "string";
|
|
@@ -3590,7 +3590,7 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3590
3590
|
}, {}, {
|
|
3591
3591
|
length: 256;
|
|
3592
3592
|
}>;
|
|
3593
|
-
id:
|
|
3593
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3594
3594
|
name: "id";
|
|
3595
3595
|
tableName: "sub_agent_team_agent_relations";
|
|
3596
3596
|
dataType: "string";
|
|
@@ -3612,11 +3612,11 @@ declare const subAgentTeamAgentRelations: drizzle_orm_pg_core852.PgTableWithColu
|
|
|
3612
3612
|
};
|
|
3613
3613
|
dialect: "pg";
|
|
3614
3614
|
}>;
|
|
3615
|
-
declare const subAgentFunctionToolRelations:
|
|
3615
|
+
declare const subAgentFunctionToolRelations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3616
3616
|
name: "sub_agent_function_tool_relations";
|
|
3617
3617
|
schema: undefined;
|
|
3618
3618
|
columns: {
|
|
3619
|
-
createdAt:
|
|
3619
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3620
3620
|
name: "created_at";
|
|
3621
3621
|
tableName: "sub_agent_function_tool_relations";
|
|
3622
3622
|
dataType: "string";
|
|
@@ -3633,7 +3633,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3633
3633
|
identity: undefined;
|
|
3634
3634
|
generated: undefined;
|
|
3635
3635
|
}, {}, {}>;
|
|
3636
|
-
updatedAt:
|
|
3636
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3637
3637
|
name: "updated_at";
|
|
3638
3638
|
tableName: "sub_agent_function_tool_relations";
|
|
3639
3639
|
dataType: "string";
|
|
@@ -3650,7 +3650,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3650
3650
|
identity: undefined;
|
|
3651
3651
|
generated: undefined;
|
|
3652
3652
|
}, {}, {}>;
|
|
3653
|
-
functionToolId:
|
|
3653
|
+
functionToolId: drizzle_orm_pg_core0.PgColumn<{
|
|
3654
3654
|
name: "function_tool_id";
|
|
3655
3655
|
tableName: "sub_agent_function_tool_relations";
|
|
3656
3656
|
dataType: "string";
|
|
@@ -3669,7 +3669,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3669
3669
|
}, {}, {
|
|
3670
3670
|
length: 256;
|
|
3671
3671
|
}>;
|
|
3672
|
-
subAgentId:
|
|
3672
|
+
subAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3673
3673
|
name: "sub_agent_id";
|
|
3674
3674
|
tableName: "sub_agent_function_tool_relations";
|
|
3675
3675
|
dataType: "string";
|
|
@@ -3688,7 +3688,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3688
3688
|
}, {}, {
|
|
3689
3689
|
length: 256;
|
|
3690
3690
|
}>;
|
|
3691
|
-
agentId:
|
|
3691
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3692
3692
|
name: "agent_id";
|
|
3693
3693
|
tableName: "sub_agent_function_tool_relations";
|
|
3694
3694
|
dataType: "string";
|
|
@@ -3707,7 +3707,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3707
3707
|
}, {}, {
|
|
3708
3708
|
length: 256;
|
|
3709
3709
|
}>;
|
|
3710
|
-
projectId:
|
|
3710
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3711
3711
|
name: "project_id";
|
|
3712
3712
|
tableName: "sub_agent_function_tool_relations";
|
|
3713
3713
|
dataType: "string";
|
|
@@ -3726,7 +3726,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3726
3726
|
}, {}, {
|
|
3727
3727
|
length: 256;
|
|
3728
3728
|
}>;
|
|
3729
|
-
tenantId:
|
|
3729
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3730
3730
|
name: "tenant_id";
|
|
3731
3731
|
tableName: "sub_agent_function_tool_relations";
|
|
3732
3732
|
dataType: "string";
|
|
@@ -3745,7 +3745,7 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3745
3745
|
}, {}, {
|
|
3746
3746
|
length: 256;
|
|
3747
3747
|
}>;
|
|
3748
|
-
id:
|
|
3748
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3749
3749
|
name: "id";
|
|
3750
3750
|
tableName: "sub_agent_function_tool_relations";
|
|
3751
3751
|
dataType: "string";
|
|
@@ -3767,11 +3767,11 @@ declare const subAgentFunctionToolRelations: drizzle_orm_pg_core852.PgTableWithC
|
|
|
3767
3767
|
};
|
|
3768
3768
|
dialect: "pg";
|
|
3769
3769
|
}>;
|
|
3770
|
-
declare const conversations:
|
|
3770
|
+
declare const conversations: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3771
3771
|
name: "conversations";
|
|
3772
3772
|
schema: undefined;
|
|
3773
3773
|
columns: {
|
|
3774
|
-
createdAt:
|
|
3774
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3775
3775
|
name: "created_at";
|
|
3776
3776
|
tableName: "conversations";
|
|
3777
3777
|
dataType: "string";
|
|
@@ -3788,7 +3788,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3788
3788
|
identity: undefined;
|
|
3789
3789
|
generated: undefined;
|
|
3790
3790
|
}, {}, {}>;
|
|
3791
|
-
updatedAt:
|
|
3791
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3792
3792
|
name: "updated_at";
|
|
3793
3793
|
tableName: "conversations";
|
|
3794
3794
|
dataType: "string";
|
|
@@ -3805,7 +3805,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3805
3805
|
identity: undefined;
|
|
3806
3806
|
generated: undefined;
|
|
3807
3807
|
}, {}, {}>;
|
|
3808
|
-
userId:
|
|
3808
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
3809
3809
|
name: "user_id";
|
|
3810
3810
|
tableName: "conversations";
|
|
3811
3811
|
dataType: "string";
|
|
@@ -3824,7 +3824,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3824
3824
|
}, {}, {
|
|
3825
3825
|
length: 256;
|
|
3826
3826
|
}>;
|
|
3827
|
-
activeSubAgentId:
|
|
3827
|
+
activeSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
3828
3828
|
name: "active_sub_agent_id";
|
|
3829
3829
|
tableName: "conversations";
|
|
3830
3830
|
dataType: "string";
|
|
@@ -3843,7 +3843,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3843
3843
|
}, {}, {
|
|
3844
3844
|
length: 256;
|
|
3845
3845
|
}>;
|
|
3846
|
-
title:
|
|
3846
|
+
title: drizzle_orm_pg_core0.PgColumn<{
|
|
3847
3847
|
name: "title";
|
|
3848
3848
|
tableName: "conversations";
|
|
3849
3849
|
dataType: "string";
|
|
@@ -3860,7 +3860,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3860
3860
|
identity: undefined;
|
|
3861
3861
|
generated: undefined;
|
|
3862
3862
|
}, {}, {}>;
|
|
3863
|
-
lastContextResolution:
|
|
3863
|
+
lastContextResolution: drizzle_orm_pg_core0.PgColumn<{
|
|
3864
3864
|
name: "last_context_resolution";
|
|
3865
3865
|
tableName: "conversations";
|
|
3866
3866
|
dataType: "string";
|
|
@@ -3877,7 +3877,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3877
3877
|
identity: undefined;
|
|
3878
3878
|
generated: undefined;
|
|
3879
3879
|
}, {}, {}>;
|
|
3880
|
-
metadata:
|
|
3880
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
3881
3881
|
name: "metadata";
|
|
3882
3882
|
tableName: "conversations";
|
|
3883
3883
|
dataType: "json";
|
|
@@ -3896,7 +3896,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3896
3896
|
}, {}, {
|
|
3897
3897
|
$type: ConversationMetadata;
|
|
3898
3898
|
}>;
|
|
3899
|
-
projectId:
|
|
3899
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
3900
3900
|
name: "project_id";
|
|
3901
3901
|
tableName: "conversations";
|
|
3902
3902
|
dataType: "string";
|
|
@@ -3915,7 +3915,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3915
3915
|
}, {}, {
|
|
3916
3916
|
length: 256;
|
|
3917
3917
|
}>;
|
|
3918
|
-
tenantId:
|
|
3918
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
3919
3919
|
name: "tenant_id";
|
|
3920
3920
|
tableName: "conversations";
|
|
3921
3921
|
dataType: "string";
|
|
@@ -3934,7 +3934,7 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3934
3934
|
}, {}, {
|
|
3935
3935
|
length: 256;
|
|
3936
3936
|
}>;
|
|
3937
|
-
id:
|
|
3937
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
3938
3938
|
name: "id";
|
|
3939
3939
|
tableName: "conversations";
|
|
3940
3940
|
dataType: "string";
|
|
@@ -3956,11 +3956,11 @@ declare const conversations: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3956
3956
|
};
|
|
3957
3957
|
dialect: "pg";
|
|
3958
3958
|
}>;
|
|
3959
|
-
declare const messages:
|
|
3959
|
+
declare const messages: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
3960
3960
|
name: "messages";
|
|
3961
3961
|
schema: undefined;
|
|
3962
3962
|
columns: {
|
|
3963
|
-
createdAt:
|
|
3963
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3964
3964
|
name: "created_at";
|
|
3965
3965
|
tableName: "messages";
|
|
3966
3966
|
dataType: "string";
|
|
@@ -3977,7 +3977,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3977
3977
|
identity: undefined;
|
|
3978
3978
|
generated: undefined;
|
|
3979
3979
|
}, {}, {}>;
|
|
3980
|
-
updatedAt:
|
|
3980
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
3981
3981
|
name: "updated_at";
|
|
3982
3982
|
tableName: "messages";
|
|
3983
3983
|
dataType: "string";
|
|
@@ -3994,7 +3994,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
3994
3994
|
identity: undefined;
|
|
3995
3995
|
generated: undefined;
|
|
3996
3996
|
}, {}, {}>;
|
|
3997
|
-
conversationId:
|
|
3997
|
+
conversationId: drizzle_orm_pg_core0.PgColumn<{
|
|
3998
3998
|
name: "conversation_id";
|
|
3999
3999
|
tableName: "messages";
|
|
4000
4000
|
dataType: "string";
|
|
@@ -4013,7 +4013,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4013
4013
|
}, {}, {
|
|
4014
4014
|
length: 256;
|
|
4015
4015
|
}>;
|
|
4016
|
-
role:
|
|
4016
|
+
role: drizzle_orm_pg_core0.PgColumn<{
|
|
4017
4017
|
name: "role";
|
|
4018
4018
|
tableName: "messages";
|
|
4019
4019
|
dataType: "string";
|
|
@@ -4032,7 +4032,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4032
4032
|
}, {}, {
|
|
4033
4033
|
length: 256;
|
|
4034
4034
|
}>;
|
|
4035
|
-
fromSubAgentId:
|
|
4035
|
+
fromSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4036
4036
|
name: "from_sub_agent_id";
|
|
4037
4037
|
tableName: "messages";
|
|
4038
4038
|
dataType: "string";
|
|
@@ -4051,7 +4051,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4051
4051
|
}, {}, {
|
|
4052
4052
|
length: 256;
|
|
4053
4053
|
}>;
|
|
4054
|
-
toSubAgentId:
|
|
4054
|
+
toSubAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4055
4055
|
name: "to_sub_agent_id";
|
|
4056
4056
|
tableName: "messages";
|
|
4057
4057
|
dataType: "string";
|
|
@@ -4070,7 +4070,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4070
4070
|
}, {}, {
|
|
4071
4071
|
length: 256;
|
|
4072
4072
|
}>;
|
|
4073
|
-
fromExternalAgentId:
|
|
4073
|
+
fromExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4074
4074
|
name: "from_external_sub_agent_id";
|
|
4075
4075
|
tableName: "messages";
|
|
4076
4076
|
dataType: "string";
|
|
@@ -4089,7 +4089,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4089
4089
|
}, {}, {
|
|
4090
4090
|
length: 256;
|
|
4091
4091
|
}>;
|
|
4092
|
-
toExternalAgentId:
|
|
4092
|
+
toExternalAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4093
4093
|
name: "to_external_sub_agent_id";
|
|
4094
4094
|
tableName: "messages";
|
|
4095
4095
|
dataType: "string";
|
|
@@ -4108,7 +4108,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4108
4108
|
}, {}, {
|
|
4109
4109
|
length: 256;
|
|
4110
4110
|
}>;
|
|
4111
|
-
fromTeamAgentId:
|
|
4111
|
+
fromTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4112
4112
|
name: "from_team_agent_id";
|
|
4113
4113
|
tableName: "messages";
|
|
4114
4114
|
dataType: "string";
|
|
@@ -4127,7 +4127,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4127
4127
|
}, {}, {
|
|
4128
4128
|
length: 256;
|
|
4129
4129
|
}>;
|
|
4130
|
-
toTeamAgentId:
|
|
4130
|
+
toTeamAgentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4131
4131
|
name: "to_team_agent_id";
|
|
4132
4132
|
tableName: "messages";
|
|
4133
4133
|
dataType: "string";
|
|
@@ -4146,7 +4146,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4146
4146
|
}, {}, {
|
|
4147
4147
|
length: 256;
|
|
4148
4148
|
}>;
|
|
4149
|
-
content:
|
|
4149
|
+
content: drizzle_orm_pg_core0.PgColumn<{
|
|
4150
4150
|
name: "content";
|
|
4151
4151
|
tableName: "messages";
|
|
4152
4152
|
dataType: "json";
|
|
@@ -4165,7 +4165,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4165
4165
|
}, {}, {
|
|
4166
4166
|
$type: MessageContent;
|
|
4167
4167
|
}>;
|
|
4168
|
-
visibility:
|
|
4168
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4169
4169
|
name: "visibility";
|
|
4170
4170
|
tableName: "messages";
|
|
4171
4171
|
dataType: "string";
|
|
@@ -4184,7 +4184,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4184
4184
|
}, {}, {
|
|
4185
4185
|
length: 256;
|
|
4186
4186
|
}>;
|
|
4187
|
-
messageType:
|
|
4187
|
+
messageType: drizzle_orm_pg_core0.PgColumn<{
|
|
4188
4188
|
name: "message_type";
|
|
4189
4189
|
tableName: "messages";
|
|
4190
4190
|
dataType: "string";
|
|
@@ -4203,7 +4203,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4203
4203
|
}, {}, {
|
|
4204
4204
|
length: 256;
|
|
4205
4205
|
}>;
|
|
4206
|
-
taskId:
|
|
4206
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4207
4207
|
name: "task_id";
|
|
4208
4208
|
tableName: "messages";
|
|
4209
4209
|
dataType: "string";
|
|
@@ -4222,7 +4222,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4222
4222
|
}, {}, {
|
|
4223
4223
|
length: 256;
|
|
4224
4224
|
}>;
|
|
4225
|
-
parentMessageId:
|
|
4225
|
+
parentMessageId: drizzle_orm_pg_core0.PgColumn<{
|
|
4226
4226
|
name: "parent_message_id";
|
|
4227
4227
|
tableName: "messages";
|
|
4228
4228
|
dataType: "string";
|
|
@@ -4241,7 +4241,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4241
4241
|
}, {}, {
|
|
4242
4242
|
length: 256;
|
|
4243
4243
|
}>;
|
|
4244
|
-
a2aTaskId:
|
|
4244
|
+
a2aTaskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4245
4245
|
name: "a2a_task_id";
|
|
4246
4246
|
tableName: "messages";
|
|
4247
4247
|
dataType: "string";
|
|
@@ -4260,7 +4260,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4260
4260
|
}, {}, {
|
|
4261
4261
|
length: 256;
|
|
4262
4262
|
}>;
|
|
4263
|
-
a2aSessionId:
|
|
4263
|
+
a2aSessionId: drizzle_orm_pg_core0.PgColumn<{
|
|
4264
4264
|
name: "a2a_session_id";
|
|
4265
4265
|
tableName: "messages";
|
|
4266
4266
|
dataType: "string";
|
|
@@ -4279,7 +4279,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4279
4279
|
}, {}, {
|
|
4280
4280
|
length: 256;
|
|
4281
4281
|
}>;
|
|
4282
|
-
metadata:
|
|
4282
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4283
4283
|
name: "metadata";
|
|
4284
4284
|
tableName: "messages";
|
|
4285
4285
|
dataType: "json";
|
|
@@ -4298,7 +4298,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4298
4298
|
}, {}, {
|
|
4299
4299
|
$type: MessageMetadata;
|
|
4300
4300
|
}>;
|
|
4301
|
-
projectId:
|
|
4301
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4302
4302
|
name: "project_id";
|
|
4303
4303
|
tableName: "messages";
|
|
4304
4304
|
dataType: "string";
|
|
@@ -4317,7 +4317,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4317
4317
|
}, {}, {
|
|
4318
4318
|
length: 256;
|
|
4319
4319
|
}>;
|
|
4320
|
-
tenantId:
|
|
4320
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4321
4321
|
name: "tenant_id";
|
|
4322
4322
|
tableName: "messages";
|
|
4323
4323
|
dataType: "string";
|
|
@@ -4336,7 +4336,7 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4336
4336
|
}, {}, {
|
|
4337
4337
|
length: 256;
|
|
4338
4338
|
}>;
|
|
4339
|
-
id:
|
|
4339
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4340
4340
|
name: "id";
|
|
4341
4341
|
tableName: "messages";
|
|
4342
4342
|
dataType: "string";
|
|
@@ -4358,11 +4358,11 @@ declare const messages: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4358
4358
|
};
|
|
4359
4359
|
dialect: "pg";
|
|
4360
4360
|
}>;
|
|
4361
|
-
declare const ledgerArtifacts:
|
|
4361
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4362
4362
|
name: "ledger_artifacts";
|
|
4363
4363
|
schema: undefined;
|
|
4364
4364
|
columns: {
|
|
4365
|
-
createdAt:
|
|
4365
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4366
4366
|
name: "created_at";
|
|
4367
4367
|
tableName: "ledger_artifacts";
|
|
4368
4368
|
dataType: "string";
|
|
@@ -4379,7 +4379,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4379
4379
|
identity: undefined;
|
|
4380
4380
|
generated: undefined;
|
|
4381
4381
|
}, {}, {}>;
|
|
4382
|
-
updatedAt:
|
|
4382
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4383
4383
|
name: "updated_at";
|
|
4384
4384
|
tableName: "ledger_artifacts";
|
|
4385
4385
|
dataType: "string";
|
|
@@ -4396,7 +4396,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4396
4396
|
identity: undefined;
|
|
4397
4397
|
generated: undefined;
|
|
4398
4398
|
}, {}, {}>;
|
|
4399
|
-
taskId:
|
|
4399
|
+
taskId: drizzle_orm_pg_core0.PgColumn<{
|
|
4400
4400
|
name: "task_id";
|
|
4401
4401
|
tableName: "ledger_artifacts";
|
|
4402
4402
|
dataType: "string";
|
|
@@ -4415,7 +4415,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4415
4415
|
}, {}, {
|
|
4416
4416
|
length: 256;
|
|
4417
4417
|
}>;
|
|
4418
|
-
toolCallId:
|
|
4418
|
+
toolCallId: drizzle_orm_pg_core0.PgColumn<{
|
|
4419
4419
|
name: "tool_call_id";
|
|
4420
4420
|
tableName: "ledger_artifacts";
|
|
4421
4421
|
dataType: "string";
|
|
@@ -4434,7 +4434,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4434
4434
|
}, {}, {
|
|
4435
4435
|
length: 256;
|
|
4436
4436
|
}>;
|
|
4437
|
-
contextId:
|
|
4437
|
+
contextId: drizzle_orm_pg_core0.PgColumn<{
|
|
4438
4438
|
name: "context_id";
|
|
4439
4439
|
tableName: "ledger_artifacts";
|
|
4440
4440
|
dataType: "string";
|
|
@@ -4453,7 +4453,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4453
4453
|
}, {}, {
|
|
4454
4454
|
length: 256;
|
|
4455
4455
|
}>;
|
|
4456
|
-
type:
|
|
4456
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
4457
4457
|
name: "type";
|
|
4458
4458
|
tableName: "ledger_artifacts";
|
|
4459
4459
|
dataType: "string";
|
|
@@ -4472,7 +4472,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4472
4472
|
}, {}, {
|
|
4473
4473
|
length: 256;
|
|
4474
4474
|
}>;
|
|
4475
|
-
name:
|
|
4475
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4476
4476
|
name: "name";
|
|
4477
4477
|
tableName: "ledger_artifacts";
|
|
4478
4478
|
dataType: "string";
|
|
@@ -4491,7 +4491,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4491
4491
|
}, {}, {
|
|
4492
4492
|
length: 256;
|
|
4493
4493
|
}>;
|
|
4494
|
-
description:
|
|
4494
|
+
description: drizzle_orm_pg_core0.PgColumn<{
|
|
4495
4495
|
name: "description";
|
|
4496
4496
|
tableName: "ledger_artifacts";
|
|
4497
4497
|
dataType: "string";
|
|
@@ -4508,7 +4508,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4508
4508
|
identity: undefined;
|
|
4509
4509
|
generated: undefined;
|
|
4510
4510
|
}, {}, {}>;
|
|
4511
|
-
parts:
|
|
4511
|
+
parts: drizzle_orm_pg_core0.PgColumn<{
|
|
4512
4512
|
name: "parts";
|
|
4513
4513
|
tableName: "ledger_artifacts";
|
|
4514
4514
|
dataType: "json";
|
|
@@ -4527,7 +4527,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4527
4527
|
}, {}, {
|
|
4528
4528
|
$type: Part[] | null;
|
|
4529
4529
|
}>;
|
|
4530
|
-
metadata:
|
|
4530
|
+
metadata: drizzle_orm_pg_core0.PgColumn<{
|
|
4531
4531
|
name: "metadata";
|
|
4532
4532
|
tableName: "ledger_artifacts";
|
|
4533
4533
|
dataType: "json";
|
|
@@ -4546,7 +4546,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4546
4546
|
}, {}, {
|
|
4547
4547
|
$type: Record<string, unknown> | null;
|
|
4548
4548
|
}>;
|
|
4549
|
-
summary:
|
|
4549
|
+
summary: drizzle_orm_pg_core0.PgColumn<{
|
|
4550
4550
|
name: "summary";
|
|
4551
4551
|
tableName: "ledger_artifacts";
|
|
4552
4552
|
dataType: "string";
|
|
@@ -4563,7 +4563,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4563
4563
|
identity: undefined;
|
|
4564
4564
|
generated: undefined;
|
|
4565
4565
|
}, {}, {}>;
|
|
4566
|
-
mime:
|
|
4566
|
+
mime: drizzle_orm_pg_core0.PgColumn<{
|
|
4567
4567
|
name: "mime";
|
|
4568
4568
|
tableName: "ledger_artifacts";
|
|
4569
4569
|
dataType: "json";
|
|
@@ -4582,7 +4582,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4582
4582
|
}, {}, {
|
|
4583
4583
|
$type: string[] | null;
|
|
4584
4584
|
}>;
|
|
4585
|
-
visibility:
|
|
4585
|
+
visibility: drizzle_orm_pg_core0.PgColumn<{
|
|
4586
4586
|
name: "visibility";
|
|
4587
4587
|
tableName: "ledger_artifacts";
|
|
4588
4588
|
dataType: "string";
|
|
@@ -4601,7 +4601,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4601
4601
|
}, {}, {
|
|
4602
4602
|
length: 256;
|
|
4603
4603
|
}>;
|
|
4604
|
-
allowedAgents:
|
|
4604
|
+
allowedAgents: drizzle_orm_pg_core0.PgColumn<{
|
|
4605
4605
|
name: "allowed_agents";
|
|
4606
4606
|
tableName: "ledger_artifacts";
|
|
4607
4607
|
dataType: "json";
|
|
@@ -4620,7 +4620,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4620
4620
|
}, {}, {
|
|
4621
4621
|
$type: string[] | null;
|
|
4622
4622
|
}>;
|
|
4623
|
-
derivedFrom:
|
|
4623
|
+
derivedFrom: drizzle_orm_pg_core0.PgColumn<{
|
|
4624
4624
|
name: "derived_from";
|
|
4625
4625
|
tableName: "ledger_artifacts";
|
|
4626
4626
|
dataType: "string";
|
|
@@ -4639,7 +4639,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4639
4639
|
}, {}, {
|
|
4640
4640
|
length: 256;
|
|
4641
4641
|
}>;
|
|
4642
|
-
projectId:
|
|
4642
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4643
4643
|
name: "project_id";
|
|
4644
4644
|
tableName: "ledger_artifacts";
|
|
4645
4645
|
dataType: "string";
|
|
@@ -4658,7 +4658,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4658
4658
|
}, {}, {
|
|
4659
4659
|
length: 256;
|
|
4660
4660
|
}>;
|
|
4661
|
-
tenantId:
|
|
4661
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4662
4662
|
name: "tenant_id";
|
|
4663
4663
|
tableName: "ledger_artifacts";
|
|
4664
4664
|
dataType: "string";
|
|
@@ -4677,7 +4677,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4677
4677
|
}, {}, {
|
|
4678
4678
|
length: 256;
|
|
4679
4679
|
}>;
|
|
4680
|
-
id:
|
|
4680
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4681
4681
|
name: "id";
|
|
4682
4682
|
tableName: "ledger_artifacts";
|
|
4683
4683
|
dataType: "string";
|
|
@@ -4699,11 +4699,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4699
4699
|
};
|
|
4700
4700
|
dialect: "pg";
|
|
4701
4701
|
}>;
|
|
4702
|
-
declare const apiKeys:
|
|
4702
|
+
declare const apiKeys: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4703
4703
|
name: "api_keys";
|
|
4704
4704
|
schema: undefined;
|
|
4705
4705
|
columns: {
|
|
4706
|
-
createdAt:
|
|
4706
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4707
4707
|
name: "created_at";
|
|
4708
4708
|
tableName: "api_keys";
|
|
4709
4709
|
dataType: "string";
|
|
@@ -4720,7 +4720,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4720
4720
|
identity: undefined;
|
|
4721
4721
|
generated: undefined;
|
|
4722
4722
|
}, {}, {}>;
|
|
4723
|
-
updatedAt:
|
|
4723
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4724
4724
|
name: "updated_at";
|
|
4725
4725
|
tableName: "api_keys";
|
|
4726
4726
|
dataType: "string";
|
|
@@ -4737,7 +4737,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4737
4737
|
identity: undefined;
|
|
4738
4738
|
generated: undefined;
|
|
4739
4739
|
}, {}, {}>;
|
|
4740
|
-
publicId:
|
|
4740
|
+
publicId: drizzle_orm_pg_core0.PgColumn<{
|
|
4741
4741
|
name: "public_id";
|
|
4742
4742
|
tableName: "api_keys";
|
|
4743
4743
|
dataType: "string";
|
|
@@ -4756,7 +4756,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4756
4756
|
}, {}, {
|
|
4757
4757
|
length: 256;
|
|
4758
4758
|
}>;
|
|
4759
|
-
keyHash:
|
|
4759
|
+
keyHash: drizzle_orm_pg_core0.PgColumn<{
|
|
4760
4760
|
name: "key_hash";
|
|
4761
4761
|
tableName: "api_keys";
|
|
4762
4762
|
dataType: "string";
|
|
@@ -4775,7 +4775,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4775
4775
|
}, {}, {
|
|
4776
4776
|
length: 256;
|
|
4777
4777
|
}>;
|
|
4778
|
-
keyPrefix:
|
|
4778
|
+
keyPrefix: drizzle_orm_pg_core0.PgColumn<{
|
|
4779
4779
|
name: "key_prefix";
|
|
4780
4780
|
tableName: "api_keys";
|
|
4781
4781
|
dataType: "string";
|
|
@@ -4794,7 +4794,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4794
4794
|
}, {}, {
|
|
4795
4795
|
length: 256;
|
|
4796
4796
|
}>;
|
|
4797
|
-
name:
|
|
4797
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4798
4798
|
name: "name";
|
|
4799
4799
|
tableName: "api_keys";
|
|
4800
4800
|
dataType: "string";
|
|
@@ -4813,7 +4813,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4813
4813
|
}, {}, {
|
|
4814
4814
|
length: 256;
|
|
4815
4815
|
}>;
|
|
4816
|
-
lastUsedAt:
|
|
4816
|
+
lastUsedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4817
4817
|
name: "last_used_at";
|
|
4818
4818
|
tableName: "api_keys";
|
|
4819
4819
|
dataType: "string";
|
|
@@ -4830,7 +4830,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4830
4830
|
identity: undefined;
|
|
4831
4831
|
generated: undefined;
|
|
4832
4832
|
}, {}, {}>;
|
|
4833
|
-
expiresAt:
|
|
4833
|
+
expiresAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4834
4834
|
name: "expires_at";
|
|
4835
4835
|
tableName: "api_keys";
|
|
4836
4836
|
dataType: "string";
|
|
@@ -4847,7 +4847,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4847
4847
|
identity: undefined;
|
|
4848
4848
|
generated: undefined;
|
|
4849
4849
|
}, {}, {}>;
|
|
4850
|
-
agentId:
|
|
4850
|
+
agentId: drizzle_orm_pg_core0.PgColumn<{
|
|
4851
4851
|
name: "agent_id";
|
|
4852
4852
|
tableName: "api_keys";
|
|
4853
4853
|
dataType: "string";
|
|
@@ -4866,7 +4866,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4866
4866
|
}, {}, {
|
|
4867
4867
|
length: 256;
|
|
4868
4868
|
}>;
|
|
4869
|
-
projectId:
|
|
4869
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
4870
4870
|
name: "project_id";
|
|
4871
4871
|
tableName: "api_keys";
|
|
4872
4872
|
dataType: "string";
|
|
@@ -4885,7 +4885,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4885
4885
|
}, {}, {
|
|
4886
4886
|
length: 256;
|
|
4887
4887
|
}>;
|
|
4888
|
-
tenantId:
|
|
4888
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
4889
4889
|
name: "tenant_id";
|
|
4890
4890
|
tableName: "api_keys";
|
|
4891
4891
|
dataType: "string";
|
|
@@ -4904,7 +4904,7 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4904
4904
|
}, {}, {
|
|
4905
4905
|
length: 256;
|
|
4906
4906
|
}>;
|
|
4907
|
-
id:
|
|
4907
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
4908
4908
|
name: "id";
|
|
4909
4909
|
tableName: "api_keys";
|
|
4910
4910
|
dataType: "string";
|
|
@@ -4926,11 +4926,11 @@ declare const apiKeys: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4926
4926
|
};
|
|
4927
4927
|
dialect: "pg";
|
|
4928
4928
|
}>;
|
|
4929
|
-
declare const credentialReferences:
|
|
4929
|
+
declare const credentialReferences: drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4930
4930
|
name: "credential_references";
|
|
4931
4931
|
schema: undefined;
|
|
4932
4932
|
columns: {
|
|
4933
|
-
createdAt:
|
|
4933
|
+
createdAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4934
4934
|
name: "created_at";
|
|
4935
4935
|
tableName: "credential_references";
|
|
4936
4936
|
dataType: "string";
|
|
@@ -4947,7 +4947,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4947
4947
|
identity: undefined;
|
|
4948
4948
|
generated: undefined;
|
|
4949
4949
|
}, {}, {}>;
|
|
4950
|
-
updatedAt:
|
|
4950
|
+
updatedAt: drizzle_orm_pg_core0.PgColumn<{
|
|
4951
4951
|
name: "updated_at";
|
|
4952
4952
|
tableName: "credential_references";
|
|
4953
4953
|
dataType: "string";
|
|
@@ -4964,7 +4964,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4964
4964
|
identity: undefined;
|
|
4965
4965
|
generated: undefined;
|
|
4966
4966
|
}, {}, {}>;
|
|
4967
|
-
name:
|
|
4967
|
+
name: drizzle_orm_pg_core0.PgColumn<{
|
|
4968
4968
|
name: "name";
|
|
4969
4969
|
tableName: "credential_references";
|
|
4970
4970
|
dataType: "string";
|
|
@@ -4983,7 +4983,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
4983
4983
|
}, {}, {
|
|
4984
4984
|
length: 256;
|
|
4985
4985
|
}>;
|
|
4986
|
-
type:
|
|
4986
|
+
type: drizzle_orm_pg_core0.PgColumn<{
|
|
4987
4987
|
name: "type";
|
|
4988
4988
|
tableName: "credential_references";
|
|
4989
4989
|
dataType: "string";
|
|
@@ -5002,7 +5002,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5002
5002
|
}, {}, {
|
|
5003
5003
|
length: 256;
|
|
5004
5004
|
}>;
|
|
5005
|
-
credentialStoreId:
|
|
5005
|
+
credentialStoreId: drizzle_orm_pg_core0.PgColumn<{
|
|
5006
5006
|
name: "credential_store_id";
|
|
5007
5007
|
tableName: "credential_references";
|
|
5008
5008
|
dataType: "string";
|
|
@@ -5021,7 +5021,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5021
5021
|
}, {}, {
|
|
5022
5022
|
length: 256;
|
|
5023
5023
|
}>;
|
|
5024
|
-
retrievalParams:
|
|
5024
|
+
retrievalParams: drizzle_orm_pg_core0.PgColumn<{
|
|
5025
5025
|
name: "retrieval_params";
|
|
5026
5026
|
tableName: "credential_references";
|
|
5027
5027
|
dataType: "json";
|
|
@@ -5040,7 +5040,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5040
5040
|
}, {}, {
|
|
5041
5041
|
$type: Record<string, unknown>;
|
|
5042
5042
|
}>;
|
|
5043
|
-
toolId:
|
|
5043
|
+
toolId: drizzle_orm_pg_core0.PgColumn<{
|
|
5044
5044
|
name: "tool_id";
|
|
5045
5045
|
tableName: "credential_references";
|
|
5046
5046
|
dataType: "string";
|
|
@@ -5059,7 +5059,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5059
5059
|
}, {}, {
|
|
5060
5060
|
length: 256;
|
|
5061
5061
|
}>;
|
|
5062
|
-
userId:
|
|
5062
|
+
userId: drizzle_orm_pg_core0.PgColumn<{
|
|
5063
5063
|
name: "user_id";
|
|
5064
5064
|
tableName: "credential_references";
|
|
5065
5065
|
dataType: "string";
|
|
@@ -5078,7 +5078,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5078
5078
|
}, {}, {
|
|
5079
5079
|
length: 256;
|
|
5080
5080
|
}>;
|
|
5081
|
-
createdBy:
|
|
5081
|
+
createdBy: drizzle_orm_pg_core0.PgColumn<{
|
|
5082
5082
|
name: "created_by";
|
|
5083
5083
|
tableName: "credential_references";
|
|
5084
5084
|
dataType: "string";
|
|
@@ -5097,7 +5097,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5097
5097
|
}, {}, {
|
|
5098
5098
|
length: 256;
|
|
5099
5099
|
}>;
|
|
5100
|
-
projectId:
|
|
5100
|
+
projectId: drizzle_orm_pg_core0.PgColumn<{
|
|
5101
5101
|
name: "project_id";
|
|
5102
5102
|
tableName: "credential_references";
|
|
5103
5103
|
dataType: "string";
|
|
@@ -5116,7 +5116,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5116
5116
|
}, {}, {
|
|
5117
5117
|
length: 256;
|
|
5118
5118
|
}>;
|
|
5119
|
-
tenantId:
|
|
5119
|
+
tenantId: drizzle_orm_pg_core0.PgColumn<{
|
|
5120
5120
|
name: "tenant_id";
|
|
5121
5121
|
tableName: "credential_references";
|
|
5122
5122
|
dataType: "string";
|
|
@@ -5135,7 +5135,7 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5135
5135
|
}, {}, {
|
|
5136
5136
|
length: 256;
|
|
5137
5137
|
}>;
|
|
5138
|
-
id:
|
|
5138
|
+
id: drizzle_orm_pg_core0.PgColumn<{
|
|
5139
5139
|
name: "id";
|
|
5140
5140
|
tableName: "credential_references";
|
|
5141
5141
|
dataType: "string";
|
|
@@ -5157,145 +5157,145 @@ declare const credentialReferences: drizzle_orm_pg_core852.PgTableWithColumns<{
|
|
|
5157
5157
|
};
|
|
5158
5158
|
dialect: "pg";
|
|
5159
5159
|
}>;
|
|
5160
|
-
declare const tasksRelations:
|
|
5161
|
-
project:
|
|
5162
|
-
parentRelations:
|
|
5163
|
-
childRelations:
|
|
5164
|
-
subAgent:
|
|
5165
|
-
messages:
|
|
5166
|
-
ledgerArtifacts:
|
|
5160
|
+
declare const tasksRelations: drizzle_orm0.Relations<"tasks", {
|
|
5161
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5162
|
+
parentRelations: drizzle_orm0.Many<"task_relations">;
|
|
5163
|
+
childRelations: drizzle_orm0.Many<"task_relations">;
|
|
5164
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5165
|
+
messages: drizzle_orm0.Many<"messages">;
|
|
5166
|
+
ledgerArtifacts: drizzle_orm0.Many<"ledger_artifacts">;
|
|
5167
5167
|
}>;
|
|
5168
|
-
declare const projectsRelations:
|
|
5169
|
-
subAgents:
|
|
5170
|
-
agents:
|
|
5171
|
-
tools:
|
|
5172
|
-
functions:
|
|
5173
|
-
contextConfigs:
|
|
5174
|
-
externalAgents:
|
|
5175
|
-
conversations:
|
|
5176
|
-
tasks:
|
|
5177
|
-
dataComponents:
|
|
5178
|
-
artifactComponents:
|
|
5179
|
-
ledgerArtifacts:
|
|
5180
|
-
credentialReferences:
|
|
5168
|
+
declare const projectsRelations: drizzle_orm0.Relations<"projects", {
|
|
5169
|
+
subAgents: drizzle_orm0.Many<"sub_agents">;
|
|
5170
|
+
agents: drizzle_orm0.Many<"agent">;
|
|
5171
|
+
tools: drizzle_orm0.Many<"tools">;
|
|
5172
|
+
functions: drizzle_orm0.Many<"functions">;
|
|
5173
|
+
contextConfigs: drizzle_orm0.Many<"context_configs">;
|
|
5174
|
+
externalAgents: drizzle_orm0.Many<"external_agents">;
|
|
5175
|
+
conversations: drizzle_orm0.Many<"conversations">;
|
|
5176
|
+
tasks: drizzle_orm0.Many<"tasks">;
|
|
5177
|
+
dataComponents: drizzle_orm0.Many<"data_components">;
|
|
5178
|
+
artifactComponents: drizzle_orm0.Many<"artifact_components">;
|
|
5179
|
+
ledgerArtifacts: drizzle_orm0.Many<"ledger_artifacts">;
|
|
5180
|
+
credentialReferences: drizzle_orm0.Many<"credential_references">;
|
|
5181
5181
|
}>;
|
|
5182
|
-
declare const taskRelationsRelations:
|
|
5183
|
-
parentTask:
|
|
5184
|
-
childTask:
|
|
5182
|
+
declare const taskRelationsRelations: drizzle_orm0.Relations<"task_relations", {
|
|
5183
|
+
parentTask: drizzle_orm0.One<"tasks", true>;
|
|
5184
|
+
childTask: drizzle_orm0.One<"tasks", true>;
|
|
5185
5185
|
}>;
|
|
5186
|
-
declare const contextConfigsRelations:
|
|
5187
|
-
project:
|
|
5188
|
-
agents:
|
|
5189
|
-
cache:
|
|
5186
|
+
declare const contextConfigsRelations: drizzle_orm0.Relations<"context_configs", {
|
|
5187
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5188
|
+
agents: drizzle_orm0.Many<"agent">;
|
|
5189
|
+
cache: drizzle_orm0.Many<"context_cache">;
|
|
5190
5190
|
}>;
|
|
5191
|
-
declare const contextCacheRelations:
|
|
5192
|
-
contextConfig:
|
|
5191
|
+
declare const contextCacheRelations: drizzle_orm0.Relations<"context_cache", {
|
|
5192
|
+
contextConfig: drizzle_orm0.One<"context_configs", true>;
|
|
5193
5193
|
}>;
|
|
5194
|
-
declare const subAgentsRelations:
|
|
5195
|
-
project:
|
|
5196
|
-
tasks:
|
|
5197
|
-
defaultForAgents:
|
|
5198
|
-
sourceRelations:
|
|
5199
|
-
targetRelations:
|
|
5200
|
-
sentMessages:
|
|
5201
|
-
receivedMessages:
|
|
5202
|
-
toolRelations:
|
|
5203
|
-
functionToolRelations:
|
|
5204
|
-
dataComponentRelations:
|
|
5205
|
-
artifactComponentRelations:
|
|
5194
|
+
declare const subAgentsRelations: drizzle_orm0.Relations<"sub_agents", {
|
|
5195
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5196
|
+
tasks: drizzle_orm0.Many<"tasks">;
|
|
5197
|
+
defaultForAgents: drizzle_orm0.Many<"agent">;
|
|
5198
|
+
sourceRelations: drizzle_orm0.Many<"sub_agent_relations">;
|
|
5199
|
+
targetRelations: drizzle_orm0.Many<"sub_agent_relations">;
|
|
5200
|
+
sentMessages: drizzle_orm0.Many<"messages">;
|
|
5201
|
+
receivedMessages: drizzle_orm0.Many<"messages">;
|
|
5202
|
+
toolRelations: drizzle_orm0.Many<"sub_agent_tool_relations">;
|
|
5203
|
+
functionToolRelations: drizzle_orm0.Many<"sub_agent_function_tool_relations">;
|
|
5204
|
+
dataComponentRelations: drizzle_orm0.Many<"sub_agent_data_components">;
|
|
5205
|
+
artifactComponentRelations: drizzle_orm0.Many<"sub_agent_artifact_components">;
|
|
5206
5206
|
}>;
|
|
5207
|
-
declare const agentRelations:
|
|
5208
|
-
project:
|
|
5209
|
-
defaultSubAgent:
|
|
5210
|
-
contextConfig:
|
|
5211
|
-
functionTools:
|
|
5207
|
+
declare const agentRelations: drizzle_orm0.Relations<"agent", {
|
|
5208
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5209
|
+
defaultSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5210
|
+
contextConfig: drizzle_orm0.One<"context_configs", false>;
|
|
5211
|
+
functionTools: drizzle_orm0.Many<"function_tools">;
|
|
5212
5212
|
}>;
|
|
5213
|
-
declare const externalAgentsRelations:
|
|
5214
|
-
project:
|
|
5215
|
-
subAgentExternalAgentRelations:
|
|
5216
|
-
credentialReference:
|
|
5213
|
+
declare const externalAgentsRelations: drizzle_orm0.Relations<"external_agents", {
|
|
5214
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5215
|
+
subAgentExternalAgentRelations: drizzle_orm0.Many<"sub_agent_external_agent_relations">;
|
|
5216
|
+
credentialReference: drizzle_orm0.One<"credential_references", false>;
|
|
5217
5217
|
}>;
|
|
5218
|
-
declare const apiKeysRelations:
|
|
5219
|
-
project:
|
|
5220
|
-
agent:
|
|
5218
|
+
declare const apiKeysRelations: drizzle_orm0.Relations<"api_keys", {
|
|
5219
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5220
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5221
5221
|
}>;
|
|
5222
|
-
declare const agentToolRelationsRelations:
|
|
5223
|
-
subAgent:
|
|
5224
|
-
tool:
|
|
5222
|
+
declare const agentToolRelationsRelations: drizzle_orm0.Relations<"sub_agent_tool_relations", {
|
|
5223
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5224
|
+
tool: drizzle_orm0.One<"tools", true>;
|
|
5225
5225
|
}>;
|
|
5226
|
-
declare const credentialReferencesRelations:
|
|
5227
|
-
project:
|
|
5228
|
-
tools:
|
|
5229
|
-
externalAgents:
|
|
5226
|
+
declare const credentialReferencesRelations: drizzle_orm0.Relations<"credential_references", {
|
|
5227
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5228
|
+
tools: drizzle_orm0.Many<"tools">;
|
|
5229
|
+
externalAgents: drizzle_orm0.Many<"external_agents">;
|
|
5230
5230
|
}>;
|
|
5231
|
-
declare const toolsRelations:
|
|
5232
|
-
project:
|
|
5233
|
-
subAgentRelations:
|
|
5234
|
-
credentialReference:
|
|
5231
|
+
declare const toolsRelations: drizzle_orm0.Relations<"tools", {
|
|
5232
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5233
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_tool_relations">;
|
|
5234
|
+
credentialReference: drizzle_orm0.One<"credential_references", false>;
|
|
5235
5235
|
}>;
|
|
5236
|
-
declare const conversationsRelations:
|
|
5237
|
-
project:
|
|
5238
|
-
messages:
|
|
5239
|
-
activeSubAgent:
|
|
5236
|
+
declare const conversationsRelations: drizzle_orm0.Relations<"conversations", {
|
|
5237
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5238
|
+
messages: drizzle_orm0.Many<"messages">;
|
|
5239
|
+
activeSubAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5240
5240
|
}>;
|
|
5241
|
-
declare const messagesRelations:
|
|
5242
|
-
conversation:
|
|
5243
|
-
fromSubAgent:
|
|
5244
|
-
toSubAgent:
|
|
5245
|
-
fromTeamAgent:
|
|
5246
|
-
toTeamAgent:
|
|
5247
|
-
fromExternalAgent:
|
|
5248
|
-
toExternalAgent:
|
|
5249
|
-
task:
|
|
5250
|
-
parentMessage:
|
|
5251
|
-
childMessages:
|
|
5241
|
+
declare const messagesRelations: drizzle_orm0.Relations<"messages", {
|
|
5242
|
+
conversation: drizzle_orm0.One<"conversations", true>;
|
|
5243
|
+
fromSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5244
|
+
toSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5245
|
+
fromTeamAgent: drizzle_orm0.One<"agent", false>;
|
|
5246
|
+
toTeamAgent: drizzle_orm0.One<"agent", false>;
|
|
5247
|
+
fromExternalAgent: drizzle_orm0.One<"external_agents", false>;
|
|
5248
|
+
toExternalAgent: drizzle_orm0.One<"external_agents", false>;
|
|
5249
|
+
task: drizzle_orm0.One<"tasks", false>;
|
|
5250
|
+
parentMessage: drizzle_orm0.One<"messages", false>;
|
|
5251
|
+
childMessages: drizzle_orm0.Many<"messages">;
|
|
5252
5252
|
}>;
|
|
5253
|
-
declare const artifactComponentsRelations:
|
|
5254
|
-
project:
|
|
5255
|
-
subAgentRelations:
|
|
5253
|
+
declare const artifactComponentsRelations: drizzle_orm0.Relations<"artifact_components", {
|
|
5254
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5255
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_artifact_components">;
|
|
5256
5256
|
}>;
|
|
5257
|
-
declare const subAgentArtifactComponentsRelations:
|
|
5258
|
-
subAgent:
|
|
5259
|
-
artifactComponent:
|
|
5257
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm0.Relations<"sub_agent_artifact_components", {
|
|
5258
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5259
|
+
artifactComponent: drizzle_orm0.One<"artifact_components", true>;
|
|
5260
5260
|
}>;
|
|
5261
|
-
declare const dataComponentsRelations:
|
|
5262
|
-
project:
|
|
5263
|
-
subAgentRelations:
|
|
5261
|
+
declare const dataComponentsRelations: drizzle_orm0.Relations<"data_components", {
|
|
5262
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5263
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_data_components">;
|
|
5264
5264
|
}>;
|
|
5265
|
-
declare const subAgentDataComponentsRelations:
|
|
5266
|
-
subAgent:
|
|
5267
|
-
dataComponent:
|
|
5265
|
+
declare const subAgentDataComponentsRelations: drizzle_orm0.Relations<"sub_agent_data_components", {
|
|
5266
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5267
|
+
dataComponent: drizzle_orm0.One<"data_components", true>;
|
|
5268
5268
|
}>;
|
|
5269
|
-
declare const ledgerArtifactsRelations:
|
|
5270
|
-
project:
|
|
5271
|
-
task:
|
|
5269
|
+
declare const ledgerArtifactsRelations: drizzle_orm0.Relations<"ledger_artifacts", {
|
|
5270
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5271
|
+
task: drizzle_orm0.One<"tasks", true>;
|
|
5272
5272
|
}>;
|
|
5273
|
-
declare const functionsRelations:
|
|
5274
|
-
functionTools:
|
|
5275
|
-
project:
|
|
5273
|
+
declare const functionsRelations: drizzle_orm0.Relations<"functions", {
|
|
5274
|
+
functionTools: drizzle_orm0.Many<"function_tools">;
|
|
5275
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5276
5276
|
}>;
|
|
5277
|
-
declare const subAgentRelationsRelations:
|
|
5278
|
-
agent:
|
|
5279
|
-
sourceSubAgent:
|
|
5280
|
-
targetSubAgent:
|
|
5277
|
+
declare const subAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_relations", {
|
|
5278
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5279
|
+
sourceSubAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5280
|
+
targetSubAgent: drizzle_orm0.One<"sub_agents", false>;
|
|
5281
5281
|
}>;
|
|
5282
|
-
declare const functionToolsRelations:
|
|
5283
|
-
project:
|
|
5284
|
-
agent:
|
|
5285
|
-
function:
|
|
5286
|
-
subAgentRelations:
|
|
5282
|
+
declare const functionToolsRelations: drizzle_orm0.Relations<"function_tools", {
|
|
5283
|
+
project: drizzle_orm0.One<"projects", true>;
|
|
5284
|
+
agent: drizzle_orm0.One<"agent", true>;
|
|
5285
|
+
function: drizzle_orm0.One<"functions", true>;
|
|
5286
|
+
subAgentRelations: drizzle_orm0.Many<"sub_agent_function_tool_relations">;
|
|
5287
5287
|
}>;
|
|
5288
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
5289
|
-
subAgent:
|
|
5290
|
-
functionTool:
|
|
5288
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm0.Relations<"sub_agent_function_tool_relations", {
|
|
5289
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5290
|
+
functionTool: drizzle_orm0.One<"function_tools", true>;
|
|
5291
5291
|
}>;
|
|
5292
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
5293
|
-
subAgent:
|
|
5294
|
-
externalAgent:
|
|
5292
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_external_agent_relations", {
|
|
5293
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5294
|
+
externalAgent: drizzle_orm0.One<"external_agents", true>;
|
|
5295
5295
|
}>;
|
|
5296
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
5297
|
-
subAgent:
|
|
5298
|
-
targetAgent:
|
|
5296
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm0.Relations<"sub_agent_team_agent_relations", {
|
|
5297
|
+
subAgent: drizzle_orm0.One<"sub_agents", true>;
|
|
5298
|
+
targetAgent: drizzle_orm0.One<"agent", true>;
|
|
5299
5299
|
}>;
|
|
5300
5300
|
//#endregion
|
|
5301
5301
|
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 };
|