@inkeep/agents-cli 0.8.7 → 0.9.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/index.js +6 -5
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2778,6 +2778,7 @@ var init_schemas = __esm({
|
|
|
2778
2778
|
statusComponents: z.array(StatusComponentSchema).optional()
|
|
2779
2779
|
});
|
|
2780
2780
|
CanUseItemSchema = z.object({
|
|
2781
|
+
agentToolRelationId: z.string().optional(),
|
|
2781
2782
|
toolId: z.string(),
|
|
2782
2783
|
toolSelection: z.array(z.string()).nullish(),
|
|
2783
2784
|
headers: z.record(z.string(), z.string()).nullish()
|
|
@@ -13658,7 +13659,7 @@ var init_tools = __esm({
|
|
|
13658
13659
|
});
|
|
13659
13660
|
|
|
13660
13661
|
// ../packages/agents-core/src/data-access/graphFull.ts
|
|
13661
|
-
import { and as and13, eq as eq13 } from "drizzle-orm";
|
|
13662
|
+
import { and as and13, eq as eq13, inArray as inArray3, not } from "drizzle-orm";
|
|
13662
13663
|
var init_graphFull2 = __esm({
|
|
13663
13664
|
"../packages/agents-core/src/data-access/graphFull.ts"() {
|
|
13664
13665
|
"use strict";
|
|
@@ -13687,7 +13688,7 @@ var init_ledgerArtifacts = __esm({
|
|
|
13687
13688
|
});
|
|
13688
13689
|
|
|
13689
13690
|
// ../packages/agents-core/src/data-access/messages.ts
|
|
13690
|
-
import { and as and15, asc as asc2, count as count13, desc as desc12, eq as eq15, inArray as
|
|
13691
|
+
import { and as and15, asc as asc2, count as count13, desc as desc12, eq as eq15, inArray as inArray4 } from "drizzle-orm";
|
|
13691
13692
|
var init_messages = __esm({
|
|
13692
13693
|
"../packages/agents-core/src/data-access/messages.ts"() {
|
|
13693
13694
|
"use strict";
|
|
@@ -14319,7 +14320,7 @@ var require_codegen = __commonJS({
|
|
|
14319
14320
|
return e2 instanceof _If ? e2 : e2.nodes;
|
|
14320
14321
|
if (this.nodes.length)
|
|
14321
14322
|
return this;
|
|
14322
|
-
return new _If(
|
|
14323
|
+
return new _If(not2(cond), e2 instanceof _If ? [e2] : e2.nodes);
|
|
14323
14324
|
}
|
|
14324
14325
|
if (cond === false || !this.nodes.length)
|
|
14325
14326
|
return void 0;
|
|
@@ -14771,10 +14772,10 @@ var require_codegen = __commonJS({
|
|
|
14771
14772
|
for (const n2 in from)
|
|
14772
14773
|
names[n2] = (names[n2] || 0) - (from[n2] || 0);
|
|
14773
14774
|
}
|
|
14774
|
-
function
|
|
14775
|
+
function not2(x2) {
|
|
14775
14776
|
return typeof x2 == "boolean" || typeof x2 == "number" || x2 === null ? !x2 : (0, code_1._)`!${par(x2)}`;
|
|
14776
14777
|
}
|
|
14777
|
-
exports.not =
|
|
14778
|
+
exports.not = not2;
|
|
14778
14779
|
var andCode = mappend(exports.operators.AND);
|
|
14779
14780
|
function and18(...args) {
|
|
14780
14781
|
return args.reduce(andCode);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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.
|
|
49
|
-
"@inkeep/agents-manage-ui": "^0.
|
|
48
|
+
"@inkeep/agents-core": "^0.9.0",
|
|
49
|
+
"@inkeep/agents-manage-ui": "^0.9.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/degit": "^2.8.6",
|