run402 1.13.3 → 1.13.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.
- package/lib/projects.mjs +3 -2
- package/package.json +1 -1
package/lib/projects.mjs
CHANGED
|
@@ -17,8 +17,8 @@ Subcommands:
|
|
|
17
17
|
usage <id> Show compute/storage usage for a project
|
|
18
18
|
schema <id> Inspect the database schema
|
|
19
19
|
rls <id> <template> <tables_json> Apply Row-Level Security policies
|
|
20
|
-
delete <id> Delete a project and remove it from local state
|
|
21
|
-
pin <id>
|
|
20
|
+
delete <id> Delete a project and remove it from local state
|
|
21
|
+
pin <id> Pin a project (prevents expiry/GC)
|
|
22
22
|
|
|
23
23
|
Examples:
|
|
24
24
|
run402 projects quote
|
|
@@ -32,6 +32,7 @@ Examples:
|
|
|
32
32
|
run402 projects usage abc123
|
|
33
33
|
run402 projects schema abc123
|
|
34
34
|
run402 projects rls abc123 public_read '[{"table":"posts"}]'
|
|
35
|
+
run402 projects keys abc123
|
|
35
36
|
run402 projects delete abc123
|
|
36
37
|
|
|
37
38
|
Notes:
|
package/package.json
CHANGED