dashnex 0.5.49 → 0.5.50

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 CHANGED
@@ -30,9 +30,12 @@ dashnex <command> [options]
30
30
  | `app delete` | Delete application from DashNex |
31
31
  | `app deploy` | Deploy application to DashNex |
32
32
  | `app status` | Show current application status |
33
- | `install` | Install dependencies using pnpm or npm |
34
- | `dev` | Run the development server |
35
- | `check` | Run build-time validations |
33
+ | `app install` | Install dependencies using pnpm or npm |
34
+ | `app dev` | Run the development server |
35
+ | `app check` | Run build-time validations |
36
+ | `secrets list` | List all secret names bound to the worker |
37
+ | `secrets set` | Create or update a secret |
38
+ | `secrets delete` | Delete a secret |
36
39
 
37
40
  ### Options
38
41
 
@@ -55,3 +58,10 @@ dashnex <command> [options]
55
58
 
56
59
  **app delete**:
57
60
  - `-y, --yes` — Skip confirmation prompt
61
+
62
+ **secrets set**:
63
+ - `--name <name>` — Secret name (prompted if omitted)
64
+ - `--value <value>` — Secret value (prompted with masked input if omitted)
65
+
66
+ **secrets delete**:
67
+ - `--name <name>` — Secret name (prompted if omitted)
@@ -1 +1 @@
1
- const e="@dashnex/cli",a="0.5.49",n="Command-line interface for DashNex framework",o={name:e,version:a,description:n};export{o as default,n as description,e as name,a as version};
1
+ const e="@dashnex/cli",a="0.5.50",n="Command-line interface for DashNex framework",o={name:e,version:a,description:n};export{o as default,n as description,e as name,a as version};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "dashnex",
4
- "version": "0.5.49",
4
+ "version": "0.5.50",
5
5
  "description": "Command-line interface for DashNex framework",
6
6
  "homepage": "https://dashnex.io",
7
7
  "type": "module",