@docyrus/docyrus 0.0.3 → 0.0.4

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 (4) hide show
  1. package/README.md +8 -1
  2. package/main.js +24688 -187
  3. package/main.js.map +4 -4
  4. package/package.json +8 -2
package/README.md CHANGED
@@ -62,6 +62,7 @@ docyrus discover --help
62
62
  docyrus ds --help
63
63
  docyrus apps --help
64
64
  docyrus studio --help
65
+ docyrus tui --help
65
66
  ```
66
67
 
67
68
  ## Example Usages
@@ -115,7 +116,7 @@ Work with accounts and tenants:
115
116
  docyrus auth accounts list --json
116
117
  docyrus auth accounts use --userId "<user-id>" --json
117
118
  docyrus auth tenants list --userId "<user-id>" --json
118
- docyrus auth tenants use --tenantId "<tenant-id>" --userId "<user-id>" --json
119
+ docyrus auth tenants use "<tenant-id-uuid-or-tenant-no>" --userId "<user-id>" --json
119
120
  ```
120
121
 
121
122
  Query data source items:
@@ -170,3 +171,9 @@ docyrus studio create-enums --appId "<app-id>" --dataSourceId "<data-source-id>"
170
171
  docyrus studio update-enums --appId "<app-id>" --dataSourceId "<data-source-id>" --fieldId "<field-id>" --from-file ./enums-update.json --json
171
172
  docyrus studio delete-enums --appId "<app-id>" --dataSourceId "<data-source-id>" --fieldId "<field-id>" --data '["enum-1","enum-2"]' --json
172
173
  ```
174
+
175
+ Launch the interactive terminal UI:
176
+
177
+ ```bash
178
+ docyrus tui
179
+ ```