@docyrus/docyrus 0.0.4 → 0.0.5
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/README.md +2 -1
- package/main.js +114 -742
- package/main.js.map +4 -4
- package/package.json +5 -4
- package/tui.mjs +1073 -0
- package/tui.mjs.map +7 -0
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@ Docyrus API CLI.
|
|
|
4
4
|
|
|
5
5
|
CLI state files are stored under `~/.docyrus/` (`auth.json`, `config.json`).
|
|
6
6
|
Tenant OpenAPI files are stored under `~/docyrus/tenans/<tenantId>/openapi.json`.
|
|
7
|
+
`docyrus tui` requires [Bun](https://bun.sh) installed locally.
|
|
7
8
|
|
|
8
9
|
## Installation
|
|
9
10
|
|
|
@@ -172,7 +173,7 @@ docyrus studio update-enums --appId "<app-id>" --dataSourceId "<data-source-id>"
|
|
|
172
173
|
docyrus studio delete-enums --appId "<app-id>" --dataSourceId "<data-source-id>" --fieldId "<field-id>" --data '["enum-1","enum-2"]' --json
|
|
173
174
|
```
|
|
174
175
|
|
|
175
|
-
Launch the
|
|
176
|
+
Launch the OpenTUI terminal UI (requires Bun):
|
|
176
177
|
|
|
177
178
|
```bash
|
|
178
179
|
docyrus tui
|