@inkeep/agents-cli 0.0.0-dev-20251022215725 → 0.0.0-dev-20251022224218
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 +8 -8
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1824,7 +1824,7 @@ var init_schema = __esm({
|
|
|
1824
1824
|
...projectScoped,
|
|
1825
1825
|
...uiProperties,
|
|
1826
1826
|
props: blob("props", { mode: "json" }).$type(),
|
|
1827
|
-
|
|
1827
|
+
render: blob("render", { mode: "json" }).$type(),
|
|
1828
1828
|
...timestamps
|
|
1829
1829
|
},
|
|
1830
1830
|
(table) => [
|
|
@@ -233743,9 +233743,9 @@ var init_artifactComponents = __esm({
|
|
|
233743
233743
|
}
|
|
233744
233744
|
});
|
|
233745
233745
|
|
|
233746
|
-
// ../packages/agents-core/src/validation/
|
|
233747
|
-
var
|
|
233748
|
-
"../packages/agents-core/src/validation/
|
|
233746
|
+
// ../packages/agents-core/src/validation/render-validation.ts
|
|
233747
|
+
var init_render_validation = __esm({
|
|
233748
|
+
"../packages/agents-core/src/validation/render-validation.ts"() {
|
|
233749
233749
|
"use strict";
|
|
233750
233750
|
init_esm_shims();
|
|
233751
233751
|
}
|
|
@@ -233757,10 +233757,10 @@ var init_dataComponents = __esm({
|
|
|
233757
233757
|
"../packages/agents-core/src/data-access/dataComponents.ts"() {
|
|
233758
233758
|
"use strict";
|
|
233759
233759
|
init_esm_shims();
|
|
233760
|
-
init_conversations();
|
|
233761
233760
|
init_schema();
|
|
233762
|
-
|
|
233761
|
+
init_conversations();
|
|
233763
233762
|
init_props_validation();
|
|
233763
|
+
init_render_validation();
|
|
233764
233764
|
}
|
|
233765
233765
|
});
|
|
233766
233766
|
|
|
@@ -234212,8 +234212,8 @@ var init_validation2 = __esm({
|
|
|
234212
234212
|
init_agentFull();
|
|
234213
234213
|
init_event_schemas();
|
|
234214
234214
|
init_id_validation();
|
|
234215
|
-
init_preview_validation();
|
|
234216
234215
|
init_props_validation();
|
|
234216
|
+
init_render_validation();
|
|
234217
234217
|
init_schemas();
|
|
234218
234218
|
}
|
|
234219
234219
|
});
|
|
@@ -240687,7 +240687,7 @@ async function pushCommand(options) {
|
|
|
240687
240687
|
}
|
|
240688
240688
|
}
|
|
240689
240689
|
if (config.manageUiUrl) {
|
|
240690
|
-
const projectUrl = `${config.manageUiUrl}/projects/${projectId}`;
|
|
240690
|
+
const projectUrl = `${config.manageUiUrl}/${config.tenantId}/projects/${projectId}`;
|
|
240691
240691
|
console.log(chalk10.cyan("\n\u{1F517} Project URL:"));
|
|
240692
240692
|
console.log(chalk10.blue.underline(` ${projectUrl}`));
|
|
240693
240693
|
}
|
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-20251022224218",
|
|
4
4
|
"description": "Inkeep CLI tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"recast": "^0.23.0",
|
|
49
49
|
"ts-morph": "^26.0.0",
|
|
50
50
|
"tsx": "^4.20.5",
|
|
51
|
-
"@inkeep/agents-core": "^0.0.0-dev-
|
|
52
|
-
"@inkeep/agents-sdk": "^0.0.0-dev-
|
|
51
|
+
"@inkeep/agents-core": "^0.0.0-dev-20251022224218",
|
|
52
|
+
"@inkeep/agents-sdk": "^0.0.0-dev-20251022224218"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/degit": "^2.8.6",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"vitest": "^3.2.4"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@inkeep/agents-manage-ui": "0.0.0-dev-
|
|
65
|
+
"@inkeep/agents-manage-ui": "0.0.0-dev-20251022224218",
|
|
66
66
|
"zod": "^4.1.11"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|