@inkeep/agents-cli 0.14.2 → 0.14.5

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1467,7 +1467,7 @@ var init_schema = __esm({
1467
1467
  contextConfigs = sqliteTable(
1468
1468
  "context_configs",
1469
1469
  {
1470
- ...projectScoped,
1470
+ ...graphScoped,
1471
1471
  ...uiProperties,
1472
1472
  // Developer-defined Zod schema for validating incoming request context
1473
1473
  requestContextSchema: blob("request_context_schema", { mode: "json" }).$type(),
@@ -1477,11 +1477,11 @@ var init_schema = __esm({
1477
1477
  ...timestamps
1478
1478
  },
1479
1479
  (table) => [
1480
- primaryKey({ columns: [table.tenantId, table.projectId, table.id] }),
1480
+ primaryKey({ columns: [table.tenantId, table.projectId, table.graphId, table.id] }),
1481
1481
  foreignKey({
1482
- columns: [table.tenantId, table.projectId],
1483
- foreignColumns: [projects.tenantId, projects.id],
1484
- name: "context_configs_project_fk"
1482
+ columns: [table.tenantId, table.projectId, table.graphId],
1483
+ foreignColumns: [agentGraph.tenantId, agentGraph.projectId, agentGraph.id],
1484
+ name: "context_configs_graph_fk"
1485
1485
  }).onDelete("cascade")
1486
1486
  ]
1487
1487
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.14.2",
3
+ "version": "0.14.5",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -45,8 +45,8 @@
45
45
  "recast": "^0.23.0",
46
46
  "ts-morph": "^26.0.0",
47
47
  "tsx": "^4.20.5",
48
- "@inkeep/agents-core": "^0.14.2",
49
- "@inkeep/agents-manage-ui": "^0.14.2"
48
+ "@inkeep/agents-core": "^0.14.5",
49
+ "@inkeep/agents-manage-ui": "^0.14.5"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/degit": "^2.8.6",