@anythingai/cli 0.0.3 → 0.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anythingai/cli",
3
- "version": "0.0.3",
3
+ "version": "0.1.1",
4
4
  "homepage": "https://anything.com/",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -158,9 +158,10 @@ anything domains verify dom_123 --json
158
158
  ```bash
159
159
  anything databases list --org <org-id> --json
160
160
  anything databases get <database-id> --json
161
- anything databases create --project pg_123 --json
161
+ anything databases create --project pg_123 --name "My Database" --json
162
162
  anything databases query <database-id> "SELECT * FROM users LIMIT 5" --json
163
163
  anything databases connect <database-id>
164
+ anything databases connect <database-id> --mask # redact the password
164
165
  anything databases reset <database-id> --yes --json
165
166
  ```
166
167
 
@@ -239,9 +240,11 @@ anything projects create --dry-run --org org_1 --prompt "test" --json
239
240
 
240
241
  anything projects generate pg_123 --dry-run --prompt "Add auth" --json
241
242
  anything projects rename pg_123 --dry-run --name "New Name" --json
242
- anything databases create --dry-run --project pg_123 --json
243
+ anything databases create --dry-run --project pg_123 --name "My Database" --json
243
244
  anything domains add app.example.com --dry-run --project pg_123 --json
244
245
  anything deployments rollback pg_123 --dry-run --json
246
+ anything projects submit pg_123 --store app-store --dry-run --json
247
+ anything projects settings auth set pg_123 --provider google --enabled --dry-run --json
245
248
  ```
246
249
 
247
250
  ## Failure Handling