appwrite-cli 19.1.0 → 19.2.0
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 +23 -2
- package/dist/bundle-win-arm64.mjs +1414 -926
- package/dist/cli.cjs +1456 -968
- package/dist/index.cjs +3 -3
- package/dist/index.js +3 -3
- package/dist/lib/commands/update.d.ts.map +1 -1
- package/dist/lib/completions.d.ts +5 -0
- package/dist/lib/completions.d.ts.map +1 -0
- package/dist/lib/constants.d.ts +3 -3
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/utils.d.ts +8 -3
- package/dist/lib/utils.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
|
|
|
29
29
|
|
|
30
30
|
```sh
|
|
31
31
|
$ appwrite -v
|
|
32
|
-
19.
|
|
32
|
+
19.2.0
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -49,6 +49,27 @@ $ brew install appwrite/appwrite/appwrite
|
|
|
49
49
|
|
|
50
50
|
Homebrew pulls the formula from the [`appwrite/homebrew-appwrite`](https://github.com/appwrite/homebrew-appwrite) tap and downloads the native binary for your platform.
|
|
51
51
|
|
|
52
|
+
### Shell completion
|
|
53
|
+
|
|
54
|
+
Install completion for your current shell:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
appwrite completion install
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
You can also generate or install completion scripts manually:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
# zsh
|
|
64
|
+
appwrite completion install zsh
|
|
65
|
+
# bash
|
|
66
|
+
appwrite completion install bash
|
|
67
|
+
# fish
|
|
68
|
+
appwrite completion install fish
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
For zsh, ensure `~/.zfunc` is in your `fpath` and `compinit` is loaded from your shell config.
|
|
72
|
+
|
|
52
73
|
### Windows
|
|
53
74
|
Via Powershell
|
|
54
75
|
```powershell
|
|
@@ -62,7 +83,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
62
83
|
Once the installation completes, you can verify your install using
|
|
63
84
|
```
|
|
64
85
|
$ appwrite -v
|
|
65
|
-
19.
|
|
86
|
+
19.2.0
|
|
66
87
|
```
|
|
67
88
|
|
|
68
89
|
## Getting Started
|