appwrite-cli 14.0.0 → 15.0.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/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/dist/bundle-win-arm64.mjs +6913 -10490
- package/dist/cli.cjs +6972 -10549
- package/dist/index.cjs +10705 -14328
- package/dist/index.js +10496 -14119
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/commands/config.d.ts +14 -4
- package/dist/lib/commands/config.d.ts.map +1 -1
- package/dist/lib/commands/init.d.ts.map +1 -1
- package/dist/lib/commands/pull.d.ts.map +1 -1
- package/dist/lib/commands/push.d.ts.map +1 -1
- package/dist/lib/commands/update.d.ts.map +1 -1
- package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/questions.d.ts.map +1 -1
- package/dist/lib/sdks.d.ts.map +1 -1
- package/install.ps1 +2 -2
- package/install.sh +1 -1
- package/lib/client.ts +17 -0
- package/lib/commands/config.ts +7 -2
- package/lib/commands/init.ts +4 -2
- package/lib/commands/pull.ts +7 -2
- package/lib/commands/push.ts +14 -4
- package/lib/commands/run.ts +3 -3
- package/lib/commands/services/account.ts +1 -1
- package/lib/commands/services/functions.ts +10 -6
- package/lib/commands/services/sites.ts +12 -6
- package/lib/commands/update.ts +2 -1
- package/lib/commands/utils/attributes.ts +4 -0
- package/lib/commands/utils/deployment.ts +3 -3
- package/lib/constants.ts +1 -1
- package/lib/questions.ts +38 -4
- package/lib/sdks.ts +2 -0
- package/package.json +4 -4
- package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.0.0
|
|
4
|
+
|
|
5
|
+
* Breaking: Separated `specification` with `buildSpecification` and `runtimeSpecification`; added `deploymentRetention` to both functions and sites
|
|
6
|
+
* Added `startCommand` option for sites
|
|
7
|
+
* Updated `init sites` prompts to select `buildSpecification` and `runtimeSpecification`
|
|
8
|
+
* Improved unauthorized error messages
|
|
9
|
+
|
|
3
10
|
## 14.0.0
|
|
4
11
|
|
|
5
12
|
* Breaking: Changed createDeployment signature; activate option now optional with default true; parameter order updated
|
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
|
-
|
|
32
|
+
15.0.0
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -60,7 +60,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
60
60
|
Once the installation completes, you can verify your install using
|
|
61
61
|
```
|
|
62
62
|
$ appwrite -v
|
|
63
|
-
|
|
63
|
+
15.0.0
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Getting Started
|