@inkeep/agents-core 0.0.0-dev-20260204182014 → 0.0.0-dev-20260204185956
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth.d.ts +54 -54
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +4 -3
- package/dist/data-access/index.d.ts +1 -3
- package/dist/data-access/index.js +1 -3
- package/dist/data-access/manage/agents.d.ts +10 -10
- package/dist/data-access/manage/artifactComponents.d.ts +4 -4
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +18 -18
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +380 -600
- package/dist/db/manage/manage-schema.js +2 -27
- package/dist/db/runtime/runtime-schema.d.ts +234 -1147
- package/dist/db/runtime/runtime-schema.js +2 -98
- package/dist/index.d.ts +5 -10
- package/dist/index.js +4 -9
- package/dist/types/entities.d.ts +2 -8
- package/dist/types/index.d.ts +2 -2
- package/dist/utils/index.d.ts +1 -4
- package/dist/utils/index.js +1 -4
- package/dist/utils/trigger-auth.d.ts +1 -1
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +1352 -3912
- package/dist/validation/schemas.js +3 -65
- package/drizzle/manage/meta/_journal.json +0 -7
- package/drizzle/runtime/meta/_journal.json +0 -14
- package/package.json +1 -1
- package/dist/auth/create-test-users.d.ts +0 -1
- package/dist/auth/create-test-users.js +0 -102
- package/dist/data-access/manage/workAppConfigs.d.ts +0 -228
- package/dist/data-access/manage/workAppConfigs.js +0 -120
- package/dist/data-access/runtime/workAppSlack.d.ts +0 -45
- package/dist/data-access/runtime/workAppSlack.js +0 -154
- package/dist/utils/slack-link-token.d.ts +0 -60
- package/dist/utils/slack-link-token.js +0 -124
- package/dist/utils/slack-user-token.d.ts +0 -87
- package/dist/utils/slack-user-token.js +0 -156
- package/dist/utils/sse-parser.d.ts +0 -35
- package/dist/utils/sse-parser.js +0 -71
- package/drizzle/manage/0007_whole_skreet.sql +0 -17
- package/drizzle/manage/meta/0007_snapshot.json +0 -3265
- package/drizzle/runtime/0011_grey_energizer.sql +0 -131
- package/drizzle/runtime/0012_salty_zuras.sql +0 -6
- package/drizzle/runtime/meta/0011_snapshot.json +0 -3747
- package/drizzle/runtime/meta/0012_snapshot.json +0 -3747
|
@@ -51,9 +51,7 @@ var manage_schema_exports = /* @__PURE__ */ __exportAll({
|
|
|
51
51
|
subAgentsRelations: () => subAgentsRelations,
|
|
52
52
|
tools: () => tools,
|
|
53
53
|
toolsRelations: () => toolsRelations,
|
|
54
|
-
triggers: () => triggers
|
|
55
|
-
workAppConfigs: () => workAppConfigs,
|
|
56
|
-
workAppConfigsRelations: () => workAppConfigsRelations
|
|
54
|
+
triggers: () => triggers
|
|
57
55
|
});
|
|
58
56
|
const tenantScoped = {
|
|
59
57
|
tenantId: varchar("tenant_id", { length: 256 }).notNull(),
|
|
@@ -1261,29 +1259,6 @@ const datasetRunConfigAgentRelations = pgTable("dataset_run_config_agent_relatio
|
|
|
1261
1259
|
name: "dataset_run_config_agent_relations_agent_fk"
|
|
1262
1260
|
}).onDelete("cascade")
|
|
1263
1261
|
]);
|
|
1264
|
-
const workAppConfigs = pgTable("work_app_configs", {
|
|
1265
|
-
...tenantScoped,
|
|
1266
|
-
appType: varchar("app_type", { length: 50 }).notNull().$type(),
|
|
1267
|
-
workspaceId: varchar("workspace_id", { length: 256 }).notNull(),
|
|
1268
|
-
channelId: varchar("channel_id", { length: 256 }),
|
|
1269
|
-
projectId: varchar("project_id", { length: 256 }).notNull(),
|
|
1270
|
-
agentId: varchar("agent_id", { length: 256 }).notNull(),
|
|
1271
|
-
enabled: boolean("enabled").notNull().default(true),
|
|
1272
|
-
metadata: jsonb("metadata").$type(),
|
|
1273
|
-
...timestamps
|
|
1274
|
-
}, (table) => [
|
|
1275
|
-
primaryKey({ columns: [table.tenantId, table.id] }),
|
|
1276
|
-
foreignKey({
|
|
1277
|
-
columns: [table.tenantId, table.projectId],
|
|
1278
|
-
foreignColumns: [projects.tenantId, projects.id],
|
|
1279
|
-
name: "work_app_configs_project_fk"
|
|
1280
|
-
}).onDelete("cascade"),
|
|
1281
|
-
unique("work_app_configs_workspace_channel_unique").on(table.tenantId, table.appType, table.workspaceId, table.channelId)
|
|
1282
|
-
]);
|
|
1283
|
-
const workAppConfigsRelations = relations(workAppConfigs, ({ one }) => ({ project: one(projects, {
|
|
1284
|
-
fields: [workAppConfigs.tenantId, workAppConfigs.projectId],
|
|
1285
|
-
references: [projects.tenantId, projects.id]
|
|
1286
|
-
}) }));
|
|
1287
1262
|
|
|
1288
1263
|
//#endregion
|
|
1289
|
-
export { agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, manage_schema_exports, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers
|
|
1264
|
+
export { agentRelations, agentToolRelationsRelations, agents, artifactComponents, artifactComponentsRelations, contextConfigs, contextConfigsRelations, credentialReferences, credentialReferencesRelations, dataComponents, dataComponentsRelations, dataset, datasetItem, datasetRunConfig, datasetRunConfigAgentRelations, evaluationJobConfig, evaluationJobConfigEvaluatorRelations, evaluationRunConfig, evaluationRunConfigEvaluationSuiteConfigRelations, evaluationSuiteConfig, evaluationSuiteConfigEvaluatorRelations, evaluator, externalAgents, externalAgentsRelations, functionTools, functionToolsRelations, functions, functionsRelations, manage_schema_exports, projects, projectsRelations, subAgentArtifactComponents, subAgentArtifactComponentsRelations, subAgentDataComponents, subAgentDataComponentsRelations, subAgentExternalAgentRelations, subAgentExternalAgentRelationsRelations, subAgentFunctionToolRelations, subAgentFunctionToolRelationsRelations, subAgentRelations, subAgentRelationsRelations, subAgentTeamAgentRelations, subAgentTeamAgentRelationsRelations, subAgentToolRelations, subAgents, subAgentsRelations, tools, toolsRelations, triggers };
|