tovuk 0.1.58 → 0.1.60

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/README.md +12 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -48,10 +48,20 @@ database pool.
48
48
 
49
49
  Agents can also inspect API capabilities, account identity, usage, account
50
50
  activity, apps, complete app overviews, deploys, builds, app/deploy/build logs,
51
- env metadata, custom domains, domain verification, billing checkout links,
52
- billing portal links, and support ticket create, list, and resolve actions
51
+ env metadata, custom domains, domain verification, app storage files and media,
52
+ billing checkout links, billing portal links, and support ticket create, list,
53
+ and resolve actions
53
54
  through the same CLI.
54
55
 
56
+ Manage app files and media without dashboard access:
57
+
58
+ ```sh
59
+ npx tovuk storage list --app app_1 --json
60
+ npx tovuk storage upload --app app_1 ./logo.png uploads/logo.png --public --json
61
+ npx tovuk storage download --app app_1 uploads/logo.png ./logo.png --json
62
+ npx tovuk storage delete --app app_1 uploads/logo.png --json
63
+ ```
64
+
55
65
  When a free-tier limit blocks work, run:
56
66
 
57
67
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tovuk",
3
- "version": "0.1.58",
3
+ "version": "0.1.60",
4
4
  "description": "Deploy Rust backends, static frontends, and fullstack apps to Tovuk.",
5
5
  "type": "module",
6
6
  "bin": {