@inkeep/agents-cli 0.0.0-dev-20251003221329 → 0.0.0-dev-20251006143824
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/index.js +17 -7
- 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
|
-
...
|
|
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: [
|
|
1484
|
-
name: "
|
|
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
|
);
|
|
@@ -4594,13 +4594,22 @@ var init_contextCache = __esm({
|
|
|
4594
4594
|
}
|
|
4595
4595
|
});
|
|
4596
4596
|
|
|
4597
|
+
// ../packages/agents-core/src/utils/conversations.ts
|
|
4598
|
+
var init_conversations = __esm({
|
|
4599
|
+
"../packages/agents-core/src/utils/conversations.ts"() {
|
|
4600
|
+
"use strict";
|
|
4601
|
+
init_esm_shims();
|
|
4602
|
+
}
|
|
4603
|
+
});
|
|
4604
|
+
|
|
4597
4605
|
// ../packages/agents-core/src/data-access/conversations.ts
|
|
4598
4606
|
import { and as and9, count as count8, desc as desc8, eq as eq9 } from "drizzle-orm";
|
|
4599
|
-
var
|
|
4607
|
+
var init_conversations2 = __esm({
|
|
4600
4608
|
"../packages/agents-core/src/data-access/conversations.ts"() {
|
|
4601
4609
|
"use strict";
|
|
4602
4610
|
init_esm_shims();
|
|
4603
4611
|
init_schema();
|
|
4612
|
+
init_conversations();
|
|
4604
4613
|
}
|
|
4605
4614
|
});
|
|
4606
4615
|
|
|
@@ -13529,6 +13538,7 @@ var init_utils = __esm({
|
|
|
13529
13538
|
init_esm_shims();
|
|
13530
13539
|
init_apiKeys();
|
|
13531
13540
|
init_auth_detection();
|
|
13541
|
+
init_conversations();
|
|
13532
13542
|
init_credential_store_utils();
|
|
13533
13543
|
init_error();
|
|
13534
13544
|
init_execution();
|
|
@@ -13658,7 +13668,7 @@ var init_data_access = __esm({
|
|
|
13658
13668
|
init_artifactComponents();
|
|
13659
13669
|
init_contextCache();
|
|
13660
13670
|
init_contextConfigs();
|
|
13661
|
-
|
|
13671
|
+
init_conversations2();
|
|
13662
13672
|
init_credentialReferences();
|
|
13663
13673
|
init_dataComponents();
|
|
13664
13674
|
init_externalAgents();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-cli",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251006143824",
|
|
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-
|
|
49
|
-
"@inkeep/agents-
|
|
48
|
+
"@inkeep/agents-core": "^0.0.0-dev-20251006143824",
|
|
49
|
+
"@inkeep/agents-manage-ui": "^0.0.0-dev-20251006143824"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/degit": "^2.8.6",
|