@bizone-ai/cli 0.1.5 → 0.1.6

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/package.json +1 -1
  2. package/src/http.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizone-ai/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Assistant CLI for running the Bizone orchestrator platform locally with Docker",
5
5
  "type": "module",
6
6
  "bin": {
package/src/http.js CHANGED
@@ -53,7 +53,7 @@ export async function waitForReady({
53
53
 
54
54
  // Import a set of items into a resource-manager namespace.
55
55
  export async function importNamespace({ port, namespace, items }) {
56
- const url = `http://localhost:${port}/admin/${namespace}/status`;
56
+ const url = `http://localhost:${port}/admin/${namespace}/resources`;
57
57
  const payload = { user: IMPORT_USER, message: IMPORT_MESSAGE, items };
58
58
  const res = await fetch(url, {
59
59
  method: "POST",