tovuk 0.1.66 → 0.1.68

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 +14 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -48,9 +48,15 @@ Durable Object namespaces, service bindings, and usage caps through the CLI.
48
48
  Agents can also inspect API capabilities, account identity, usage, account
49
49
  activity, services, complete service overviews, deploys, builds, service/deploy/build logs,
50
50
  env metadata, custom domains, domain verification, service storage files and media,
51
- billing checkout links, billing portal links, and support ticket create, list,
52
- and resolve actions
53
- through the same CLI.
51
+ pricing, billing checkout links, billing portal links, and support ticket create,
52
+ list, and resolve actions through the same CLI.
53
+
54
+ Before high-throughput work, read pricing and set hard caps:
55
+
56
+ ```sh
57
+ npx tovuk pricing --json
58
+ npx tovuk limit set worker_requests --period month --value 10000000 --json
59
+ ```
54
60
 
55
61
  Manage service files and media without dashboard access:
56
62
 
@@ -61,7 +67,12 @@ npx tovuk storage download --service service_1 uploads/logo.png ./logo.png --jso
61
67
  npx tovuk storage delete --service service_1 uploads/logo.png --json
62
68
  npx tovuk kv put --service service_1 CACHE user:1 '{"name":"Ada"}' --json
63
69
  npx tovuk kv get --service service_1 CACHE user:1 --json
70
+ npx tovuk kv bulk put --service service_1 CACHE '[{"key":"feature:search","value":"enabled"}]' --json
71
+ npx tovuk kv bulk get --service service_1 CACHE feature:search user:1 --json
72
+ npx tovuk kv bulk delete --service service_1 CACHE feature:search old:key --json
64
73
  npx tovuk queue send --service service_1 jobs '{"task":"sync"}' --json
74
+ npx tovuk queue send-batch --service service_1 jobs '[{"body":{"task":"sync"}},{"body":{"task":"index"}}]' --json
75
+ npx tovuk queue metrics --service service_1 jobs --json
65
76
  ```
66
77
 
67
78
  When a free-tier limit blocks work, run:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tovuk",
3
- "version": "0.1.66",
3
+ "version": "0.1.68",
4
4
  "description": "Deploy Rust workers, static frontends, and worker-static services to Tovuk.",
5
5
  "type": "module",
6
6
  "bin": {