@iola_adm/iola-cli 0.1.88 → 0.1.89
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/package.json +1 -1
- package/src/cli.js +4 -4
- package/test/smoke-test.js +2 -2
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -298,8 +298,8 @@ const SLASH_COMMANDS = [
|
|
|
298
298
|
{ command: "/quality", description: "качество данных" },
|
|
299
299
|
{ command: "/views", description: "saved views" },
|
|
300
300
|
{ command: "/config get", description: "конфигурация" },
|
|
301
|
-
{ command: "/delete
|
|
302
|
-
{ command: "/uninstall
|
|
301
|
+
{ command: "/delete", description: "удалить локальные данные iola-cli" },
|
|
302
|
+
{ command: "/uninstall", description: "алиас для /delete" },
|
|
303
303
|
{ command: "/layers", description: "слои данных" },
|
|
304
304
|
{ command: "/data schools --limit 10", description: "данные слоя" },
|
|
305
305
|
{ command: "/schools --limit 10", description: "школы" },
|
|
@@ -581,8 +581,8 @@ Usage:
|
|
|
581
581
|
iola config set api.baseUrl URL
|
|
582
582
|
iola config set api.mcpBaseUrl URL
|
|
583
583
|
iola config reset
|
|
584
|
-
iola delete
|
|
585
|
-
iola uninstall
|
|
584
|
+
iola delete
|
|
585
|
+
iola uninstall
|
|
586
586
|
iola update
|
|
587
587
|
iola ask TEXT [--profile NAME] [--model MODEL] [--tools] [--files] [--plan] [--trace] [--reasoning fast|verify|vote] [--output FILE] [--schema json|table] [--events] [--no-history] [--bare] [--quiet] [--no-color] [--fail-on-empty]
|
|
588
588
|
iola data LAYER [--limit 10] [--search TEXT] [--where FIELD=VALUE] [--columns a,b,c] [--format table|json|csv]
|
package/test/smoke-test.js
CHANGED
|
@@ -48,8 +48,8 @@ assertIncludes(help, "iola ask", "help");
|
|
|
48
48
|
const commands = await runCli(["commands"]);
|
|
49
49
|
assertIncludes(commands, "iola browser status|install|open|text|html|screenshot|pdf|click|type|eval", "commands");
|
|
50
50
|
assertIncludes(commands, "iola mcp list|status|install|remove|serve [--stdio]", "commands");
|
|
51
|
-
assertIncludes(commands, "iola delete
|
|
52
|
-
assertIncludes(commands, "iola uninstall
|
|
51
|
+
assertIncludes(commands, "iola delete", "commands");
|
|
52
|
+
assertIncludes(commands, "iola uninstall", "commands");
|
|
53
53
|
assertNotIncludes(commands, "Госуслуг", "commands");
|
|
54
54
|
assertNotIncludes(commands, "gosuslugi", "commands");
|
|
55
55
|
|