appwrite-cli 13.0.0-rc.5 → 13.0.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/CHANGELOG.md +14 -1
- package/README.md +3 -3
- package/dist/bundle.cjs +36319 -20470
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +3 -4
- package/dist/lib/client.js.map +1 -1
- package/dist/lib/commands/config.d.ts +90 -1
- package/dist/lib/commands/config.d.ts.map +1 -1
- package/dist/lib/commands/config.js +14 -4
- package/dist/lib/commands/config.js.map +1 -1
- package/dist/lib/commands/pull.d.ts.map +1 -1
- package/dist/lib/commands/pull.js +68 -25
- package/dist/lib/commands/pull.js.map +1 -1
- package/dist/lib/commands/push.d.ts +1 -1
- package/dist/lib/commands/push.d.ts.map +1 -1
- package/dist/lib/commands/push.js +11 -5
- package/dist/lib/commands/push.js.map +1 -1
- package/dist/lib/commands/services/projects.js +7 -1
- package/dist/lib/commands/services/projects.js.map +1 -1
- package/dist/lib/commands/services/storage.js +2 -2
- package/dist/lib/commands/services/storage.js.map +1 -1
- package/dist/lib/commands/utils/attributes.d.ts +5 -2
- package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
- package/dist/lib/commands/utils/attributes.js +16 -7
- package/dist/lib/commands/utils/attributes.js.map +1 -1
- package/dist/lib/config.d.ts +1 -0
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +48 -9
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/constants.js +1 -1
- package/dist/lib/constants.js.map +1 -1
- package/dist/lib/json.d.ts +8 -0
- package/dist/lib/json.d.ts.map +1 -0
- package/dist/lib/json.js +25 -0
- package/dist/lib/json.js.map +1 -0
- package/dist/lib/utils.d.ts +10 -1
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +19 -177
- package/dist/lib/utils.js.map +1 -1
- package/dist/package.json +3 -2
- package/docs/examples/projects/update-labels.md +3 -0
- package/install.ps1 +2 -2
- package/install.sh +1 -1
- package/lib/client.ts +3 -5
- package/lib/commands/config.ts +50 -32
- package/lib/commands/pull.ts +111 -25
- package/lib/commands/push.ts +21 -7
- package/lib/commands/services/projects.ts +13 -1
- package/lib/commands/services/storage.ts +2 -2
- package/lib/commands/utils/attributes.ts +19 -8
- package/lib/config.ts +54 -10
- package/lib/constants.ts +1 -1
- package/lib/json.ts +28 -0
- package/lib/utils.ts +25 -232
- package/package.json +3 -2
- package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 13.0.1
|
|
4
|
+
|
|
5
|
+
- Fix `project init` command leading to Cannot convert to BigInt error
|
|
6
|
+
- Fix filter out unwanted attributes being pulled in the config file
|
|
7
|
+
|
|
8
|
+
## 13.0.0
|
|
9
|
+
|
|
10
|
+
- Mark release as stable
|
|
11
|
+
- Feat: add pull sync on destruction of remote resources (+ confirmation)
|
|
12
|
+
- Fix: refine zod schema to check string size
|
|
13
|
+
- Validate using zod schema during push cli command
|
|
14
|
+
- Maintain order of keys in local config
|
|
15
|
+
|
|
3
16
|
## 13.0.0-rc.5
|
|
4
17
|
|
|
5
|
-
- Fix
|
|
18
|
+
- Fix push all command not working correctly
|
|
6
19
|
|
|
7
20
|
## 13.0.0-rc.4
|
|
8
21
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Appwrite Command Line SDK
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-

|
|
5
5
|
[](https://travis-ci.com/appwrite/sdk-generator)
|
|
6
6
|
[](https://twitter.com/appwrite)
|
|
7
7
|
[](https://appwrite.io/discord)
|
|
@@ -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
|
-
13.0.
|
|
32
|
+
13.0.1
|
|
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
|
-
13.0.
|
|
63
|
+
13.0.1
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Getting Started
|