@inkeep/agents-core 0.24.2 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-5B6IOJZY.js → chunk-ALZI4IXB.js} +57 -17
- package/dist/{chunk-ZGJI6UNK.js → chunk-HMVAAUTK.js} +42 -23
- package/dist/{chunk-HN77JIDP.js → chunk-NXC2HZQL.js} +46 -13
- package/dist/client-exports.cjs +99 -36
- package/dist/client-exports.d.cts +7 -11
- package/dist/client-exports.d.ts +7 -11
- package/dist/client-exports.js +3 -11
- package/dist/db/schema.cjs +56 -16
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +1052 -577
- package/dist/index.d.cts +276 -86
- package/dist/index.d.ts +276 -86
- package/dist/index.js +895 -531
- package/dist/{schema-PgBNwsV-.d.ts → schema-CDKDLrBu.d.ts} +188 -62
- package/dist/{schema-B8NMPwEM.d.cts → schema-P1kG10Kn.d.cts} +188 -62
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-mGrlR4Ta.d.cts → utility-CWjvUL4k.d.cts} +329 -71
- package/dist/{utility-mGrlR4Ta.d.ts → utility-CWjvUL4k.d.ts} +329 -71
- package/dist/validation/index.cjs +146 -50
- package/dist/validation/index.d.cts +5 -5
- package/dist/validation/index.d.ts +5 -5
- package/dist/validation/index.js +2 -2
- package/drizzle/0011_slippery_korg.sql +36 -0
- package/drizzle/meta/0011_snapshot.json +2849 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-BO8bSpe4.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-CWjvUL4k.cjs';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-CWjvUL4k.cjs';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.cjs';
|
|
6
6
|
import 'pino';
|
|
7
7
|
import 'drizzle-zod';
|
|
@@ -205,15 +205,11 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
205
205
|
dataComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
206
206
|
artifactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
207
207
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
208
|
-
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
214
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
215
|
-
type: z.ZodOptional<z.ZodLiteral<"external">>;
|
|
216
|
-
id: z.ZodString;
|
|
208
|
+
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
209
|
+
externalAgentId: z.ZodString;
|
|
210
|
+
subAgentExternalAgentRelationId: z.ZodOptional<z.ZodString>;
|
|
211
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
212
|
+
}, z.core.$strip>]>>>;
|
|
217
213
|
}, z.core.$strip>]>>;
|
|
218
214
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
219
215
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-BO8bSpe4.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-CWjvUL4k.js';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-CWjvUL4k.js';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.js';
|
|
6
6
|
import 'pino';
|
|
7
7
|
import 'drizzle-zod';
|
|
@@ -205,15 +205,11 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
205
205
|
dataComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
206
206
|
artifactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
207
207
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
208
|
-
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
214
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
215
|
-
type: z.ZodOptional<z.ZodLiteral<"external">>;
|
|
216
|
-
id: z.ZodString;
|
|
208
|
+
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
209
|
+
externalAgentId: z.ZodString;
|
|
210
|
+
subAgentExternalAgentRelationId: z.ZodOptional<z.ZodString>;
|
|
211
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
212
|
+
}, z.core.$strip>]>>>;
|
|
217
213
|
}, z.core.$strip>]>>;
|
|
218
214
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
219
215
|
id: z.ZodOptional<z.ZodString>;
|
package/dist/client-exports.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE, detectAuthenticationRequired } from './chunk-NJZ3ICNP.js';
|
|
2
|
-
import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-
|
|
3
|
-
export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-
|
|
2
|
+
import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-NXC2HZQL.js';
|
|
3
|
+
export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-NXC2HZQL.js';
|
|
4
4
|
import { CredentialStoreType } from './chunk-YFHT5M2R.js';
|
|
5
5
|
export { CredentialStoreType, MCPTransportType } from './chunk-YFHT5M2R.js';
|
|
6
6
|
import { z } from 'zod';
|
|
@@ -114,15 +114,7 @@ var AgentAgentApiInsertSchema = z.object({
|
|
|
114
114
|
defaultSubAgentId: z.string().optional()
|
|
115
115
|
});
|
|
116
116
|
var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
|
|
117
|
-
subAgents: z.record(
|
|
118
|
-
z.string(),
|
|
119
|
-
z.union([
|
|
120
|
-
FullAgentAgentInsertSchema,
|
|
121
|
-
ExternalAgentApiInsertSchema.extend({
|
|
122
|
-
id: z.string()
|
|
123
|
-
})
|
|
124
|
-
])
|
|
125
|
-
),
|
|
117
|
+
subAgents: z.record(z.string(), z.union([FullAgentAgentInsertSchema])),
|
|
126
118
|
contextConfig: z.optional(ContextConfigApiInsertSchema),
|
|
127
119
|
models: z.object({
|
|
128
120
|
base: z.object({
|
package/dist/db/schema.cjs
CHANGED
|
@@ -135,7 +135,6 @@ var subAgentRelations = sqliteCore.sqliteTable(
|
|
|
135
135
|
...agentScoped,
|
|
136
136
|
sourceSubAgentId: sqliteCore.text("source_sub_agent_id").notNull(),
|
|
137
137
|
targetSubAgentId: sqliteCore.text("target_sub_agent_id"),
|
|
138
|
-
externalSubAgentId: sqliteCore.text("external_sub_agent_id"),
|
|
139
138
|
relationType: sqliteCore.text("relation_type"),
|
|
140
139
|
...timestamps
|
|
141
140
|
},
|
|
@@ -151,19 +150,18 @@ var subAgentRelations = sqliteCore.sqliteTable(
|
|
|
151
150
|
var externalAgents = sqliteCore.sqliteTable(
|
|
152
151
|
"external_agents",
|
|
153
152
|
{
|
|
154
|
-
...
|
|
153
|
+
...projectScoped,
|
|
155
154
|
...uiProperties,
|
|
156
155
|
baseUrl: sqliteCore.text("base_url").notNull(),
|
|
157
156
|
credentialReferenceId: sqliteCore.text("credential_reference_id"),
|
|
158
|
-
headers: sqliteCore.blob("headers", { mode: "json" }).$type(),
|
|
159
157
|
...timestamps
|
|
160
158
|
},
|
|
161
159
|
(table) => [
|
|
162
|
-
sqliteCore.primaryKey({ columns: [table.tenantId, table.projectId, table.
|
|
160
|
+
sqliteCore.primaryKey({ columns: [table.tenantId, table.projectId, table.id] }),
|
|
163
161
|
sqliteCore.foreignKey({
|
|
164
|
-
columns: [table.tenantId, table.projectId
|
|
165
|
-
foreignColumns: [
|
|
166
|
-
name: "
|
|
162
|
+
columns: [table.tenantId, table.projectId],
|
|
163
|
+
foreignColumns: [projects.tenantId, projects.id],
|
|
164
|
+
name: "external_agents_project_fk"
|
|
167
165
|
}).onDelete("cascade"),
|
|
168
166
|
sqliteCore.foreignKey({
|
|
169
167
|
columns: [table.tenantId, table.projectId, table.credentialReferenceId],
|
|
@@ -382,6 +380,28 @@ var subAgentToolRelations = sqliteCore.sqliteTable(
|
|
|
382
380
|
}).onDelete("cascade")
|
|
383
381
|
]
|
|
384
382
|
);
|
|
383
|
+
var subAgentExternalAgentRelations = sqliteCore.sqliteTable(
|
|
384
|
+
"sub_agent_external_agent_relations",
|
|
385
|
+
{
|
|
386
|
+
...subAgentScoped,
|
|
387
|
+
externalAgentId: sqliteCore.text("external_agent_id").notNull(),
|
|
388
|
+
headers: sqliteCore.blob("headers", { mode: "json" }).$type(),
|
|
389
|
+
...timestamps
|
|
390
|
+
},
|
|
391
|
+
(table) => [
|
|
392
|
+
sqliteCore.primaryKey({ columns: [table.tenantId, table.projectId, table.agentId, table.id] }),
|
|
393
|
+
sqliteCore.foreignKey({
|
|
394
|
+
columns: [table.tenantId, table.projectId, table.agentId, table.subAgentId],
|
|
395
|
+
foreignColumns: [subAgents.tenantId, subAgents.projectId, subAgents.agentId, subAgents.id],
|
|
396
|
+
name: "sub_agent_external_agent_relations_sub_agent_fk"
|
|
397
|
+
}).onDelete("cascade"),
|
|
398
|
+
sqliteCore.foreignKey({
|
|
399
|
+
columns: [table.tenantId, table.projectId, table.externalAgentId],
|
|
400
|
+
foreignColumns: [externalAgents.tenantId, externalAgents.projectId, externalAgents.id],
|
|
401
|
+
name: "sub_agent_external_agent_relations_external_agent_fk"
|
|
402
|
+
}).onDelete("cascade")
|
|
403
|
+
]
|
|
404
|
+
);
|
|
385
405
|
var subAgentFunctionToolRelations = sqliteCore.sqliteTable(
|
|
386
406
|
"sub_agent_function_tool_relations",
|
|
387
407
|
{
|
|
@@ -643,7 +663,7 @@ var externalAgentsRelations = drizzleOrm.relations(externalAgents, ({ one, many
|
|
|
643
663
|
fields: [externalAgents.tenantId, externalAgents.projectId],
|
|
644
664
|
references: [projects.tenantId, projects.id]
|
|
645
665
|
}),
|
|
646
|
-
|
|
666
|
+
subAgentExternalAgentRelations: many(subAgentExternalAgentRelations),
|
|
647
667
|
credentialReference: one(credentialReferences, {
|
|
648
668
|
fields: [externalAgents.credentialReferenceId],
|
|
649
669
|
references: [credentialReferences.id]
|
|
@@ -715,13 +735,13 @@ var messagesRelations = drizzleOrm.relations(messages, ({ one, many }) => ({
|
|
|
715
735
|
relationName: "receivedMessages"
|
|
716
736
|
}),
|
|
717
737
|
fromExternalAgent: one(externalAgents, {
|
|
718
|
-
fields: [messages.fromExternalAgentId],
|
|
719
|
-
references: [externalAgents.id],
|
|
738
|
+
fields: [messages.tenantId, messages.projectId, messages.fromExternalAgentId],
|
|
739
|
+
references: [externalAgents.tenantId, externalAgents.projectId, externalAgents.id],
|
|
720
740
|
relationName: "receivedExternalMessages"
|
|
721
741
|
}),
|
|
722
742
|
toExternalAgent: one(externalAgents, {
|
|
723
|
-
fields: [messages.toExternalAgentId],
|
|
724
|
-
references: [externalAgents.id],
|
|
743
|
+
fields: [messages.tenantId, messages.projectId, messages.toExternalAgentId],
|
|
744
|
+
references: [externalAgents.tenantId, externalAgents.projectId, externalAgents.id],
|
|
725
745
|
relationName: "sentExternalMessages"
|
|
726
746
|
}),
|
|
727
747
|
task: one(tasks, {
|
|
@@ -805,10 +825,6 @@ var subAgentRelationsRelations = drizzleOrm.relations(subAgentRelations, ({ one
|
|
|
805
825
|
fields: [subAgentRelations.targetSubAgentId],
|
|
806
826
|
references: [subAgents.id],
|
|
807
827
|
relationName: "targetRelations"
|
|
808
|
-
}),
|
|
809
|
-
externalAgent: one(externalAgents, {
|
|
810
|
-
fields: [subAgentRelations.externalSubAgentId],
|
|
811
|
-
references: [externalAgents.id]
|
|
812
828
|
})
|
|
813
829
|
}));
|
|
814
830
|
var functionToolsRelations = drizzleOrm.relations(functionTools, ({ one, many }) => ({
|
|
@@ -839,6 +855,28 @@ var subAgentFunctionToolRelationsRelations = drizzleOrm.relations(
|
|
|
839
855
|
})
|
|
840
856
|
})
|
|
841
857
|
);
|
|
858
|
+
var subAgentExternalAgentRelationsRelations = drizzleOrm.relations(
|
|
859
|
+
subAgentExternalAgentRelations,
|
|
860
|
+
({ one }) => ({
|
|
861
|
+
subAgent: one(subAgents, {
|
|
862
|
+
fields: [
|
|
863
|
+
subAgentExternalAgentRelations.tenantId,
|
|
864
|
+
subAgentExternalAgentRelations.projectId,
|
|
865
|
+
subAgentExternalAgentRelations.agentId,
|
|
866
|
+
subAgentExternalAgentRelations.subAgentId
|
|
867
|
+
],
|
|
868
|
+
references: [subAgents.tenantId, subAgents.projectId, subAgents.agentId, subAgents.id]
|
|
869
|
+
}),
|
|
870
|
+
externalAgent: one(externalAgents, {
|
|
871
|
+
fields: [
|
|
872
|
+
subAgentExternalAgentRelations.tenantId,
|
|
873
|
+
subAgentExternalAgentRelations.projectId,
|
|
874
|
+
subAgentExternalAgentRelations.externalAgentId
|
|
875
|
+
],
|
|
876
|
+
references: [externalAgents.tenantId, externalAgents.projectId, externalAgents.id]
|
|
877
|
+
})
|
|
878
|
+
})
|
|
879
|
+
);
|
|
842
880
|
|
|
843
881
|
exports.agentRelations = agentRelations;
|
|
844
882
|
exports.agentToolRelationsRelations = agentToolRelationsRelations;
|
|
@@ -873,6 +911,8 @@ exports.subAgentArtifactComponents = subAgentArtifactComponents;
|
|
|
873
911
|
exports.subAgentArtifactComponentsRelations = subAgentArtifactComponentsRelations;
|
|
874
912
|
exports.subAgentDataComponents = subAgentDataComponents;
|
|
875
913
|
exports.subAgentDataComponentsRelations = subAgentDataComponentsRelations;
|
|
914
|
+
exports.subAgentExternalAgentRelations = subAgentExternalAgentRelations;
|
|
915
|
+
exports.subAgentExternalAgentRelationsRelations = subAgentExternalAgentRelationsRelations;
|
|
876
916
|
exports.subAgentFunctionToolRelations = subAgentFunctionToolRelations;
|
|
877
917
|
exports.subAgentFunctionToolRelationsRelations = subAgentFunctionToolRelationsRelations;
|
|
878
918
|
exports.subAgentRelations = subAgentRelations;
|
package/dist/db/schema.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export {
|
|
3
|
+
import '../utility-CWjvUL4k.cjs';
|
|
4
|
+
export { F as agentRelations, I as agentToolRelationsRelations, a as agents, x as apiKeys, H as apiKeysRelations, j as artifactComponents, N as artifactComponentsRelations, b as contextCache, D as contextCacheRelations, c as contextConfigs, C as contextConfigsRelations, u as conversations, L as conversationsRelations, y as credentialReferences, J as credentialReferencesRelations, h as dataComponents, P as dataComponentsRelations, f as externalAgents, G as externalAgentsRelations, m as functionTools, U as functionToolsRelations, n as functions, S as functionsRelations, w as ledgerArtifacts, R as ledgerArtifactsRelations, v as messages, M as messagesRelations, p as projects, A as projectsRelations, k as subAgentArtifactComponents, O as subAgentArtifactComponentsRelations, i as subAgentDataComponents, Q as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, W as subAgentExternalAgentRelationsRelations, r as subAgentFunctionToolRelations, V as subAgentFunctionToolRelationsRelations, e as subAgentRelations, T as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, E as subAgentsRelations, g as taskRelations, B as taskRelationsRelations, t as tasks, z as tasksRelations, l as tools, K as toolsRelations } from '../schema-P1kG10Kn.cjs';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/db/schema.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export {
|
|
3
|
+
import '../utility-CWjvUL4k.js';
|
|
4
|
+
export { F as agentRelations, I as agentToolRelationsRelations, a as agents, x as apiKeys, H as apiKeysRelations, j as artifactComponents, N as artifactComponentsRelations, b as contextCache, D as contextCacheRelations, c as contextConfigs, C as contextConfigsRelations, u as conversations, L as conversationsRelations, y as credentialReferences, J as credentialReferencesRelations, h as dataComponents, P as dataComponentsRelations, f as externalAgents, G as externalAgentsRelations, m as functionTools, U as functionToolsRelations, n as functions, S as functionsRelations, w as ledgerArtifacts, R as ledgerArtifactsRelations, v as messages, M as messagesRelations, p as projects, A as projectsRelations, k as subAgentArtifactComponents, O as subAgentArtifactComponentsRelations, i as subAgentDataComponents, Q as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, W as subAgentExternalAgentRelationsRelations, r as subAgentFunctionToolRelations, V as subAgentFunctionToolRelationsRelations, e as subAgentRelations, T as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, E as subAgentsRelations, g as taskRelations, B as taskRelationsRelations, t as tasks, z as tasksRelations, l as tools, K as toolsRelations } from '../schema-CDKDLrBu.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/db/schema.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { agentRelations, agentToolRelationsRelations, agents, apiKeys, apiKeysRelations, artifactComponents, artifactComponentsRelations, contextCache, contextCacheRelations, contextConfigs, contextConfigsRelations, conversations, conversationsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, ledgerArtifacts, ledgerArtifactsRelations, messages, messagesRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, taskRelations, taskRelationsRelations, tasks, tasksRelations, tools, toolsRelations } from '../chunk-
|
|
1
|
+
export { agentRelations, agentToolRelationsRelations, agents, apiKeys, apiKeysRelations, artifactComponents, artifactComponentsRelations, contextCache, contextCacheRelations, contextConfigs, contextConfigsRelations, conversations, conversationsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, ledgerArtifacts, ledgerArtifactsRelations, messages, messagesRelations, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, taskRelations, taskRelationsRelations, tasks, tasksRelations, tools, toolsRelations } from '../chunk-ALZI4IXB.js';
|