@globio/cli 0.1.7 → 0.1.9
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 +6 -0
- package/dist/index.js +304 -145
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/auth/login.ts +9 -10
- package/src/auth/logout.ts +5 -5
- package/src/auth/whoami.ts +58 -19
- package/src/commands/functions.ts +60 -34
- package/src/commands/init.ts +3 -2
- package/src/commands/migrate.ts +32 -10
- package/src/commands/profiles.ts +39 -12
- package/src/commands/projects.ts +51 -29
- package/src/commands/services.ts +62 -22
- package/src/lib/api.ts +21 -0
- package/src/lib/banner.ts +1 -6
- package/src/lib/config.ts +2 -0
- package/src/lib/manage.ts +4 -0
- package/src/lib/table.ts +97 -0
package/README.md
CHANGED
|
@@ -35,6 +35,12 @@ npx @globio/cli migrate firebase-storage \
|
|
|
35
35
|
--all
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
After migration, GlobalDoc indexes are created automatically for every field in your collections.
|
|
39
|
+
Queries using `where()` clauses will work immediately.
|
|
40
|
+
|
|
41
|
+
Note: GlobalDoc requires explicit indexes unlike Firestore's automatic indexing.
|
|
42
|
+
The migrate command handles this for you automatically.
|
|
43
|
+
|
|
38
44
|
## Commands
|
|
39
45
|
|
|
40
46
|
### Auth
|