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.
Files changed (58) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/README.md +3 -3
  3. package/dist/bundle.cjs +36319 -20470
  4. package/dist/lib/client.d.ts.map +1 -1
  5. package/dist/lib/client.js +3 -4
  6. package/dist/lib/client.js.map +1 -1
  7. package/dist/lib/commands/config.d.ts +90 -1
  8. package/dist/lib/commands/config.d.ts.map +1 -1
  9. package/dist/lib/commands/config.js +14 -4
  10. package/dist/lib/commands/config.js.map +1 -1
  11. package/dist/lib/commands/pull.d.ts.map +1 -1
  12. package/dist/lib/commands/pull.js +68 -25
  13. package/dist/lib/commands/pull.js.map +1 -1
  14. package/dist/lib/commands/push.d.ts +1 -1
  15. package/dist/lib/commands/push.d.ts.map +1 -1
  16. package/dist/lib/commands/push.js +11 -5
  17. package/dist/lib/commands/push.js.map +1 -1
  18. package/dist/lib/commands/services/projects.js +7 -1
  19. package/dist/lib/commands/services/projects.js.map +1 -1
  20. package/dist/lib/commands/services/storage.js +2 -2
  21. package/dist/lib/commands/services/storage.js.map +1 -1
  22. package/dist/lib/commands/utils/attributes.d.ts +5 -2
  23. package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
  24. package/dist/lib/commands/utils/attributes.js +16 -7
  25. package/dist/lib/commands/utils/attributes.js.map +1 -1
  26. package/dist/lib/config.d.ts +1 -0
  27. package/dist/lib/config.d.ts.map +1 -1
  28. package/dist/lib/config.js +48 -9
  29. package/dist/lib/config.js.map +1 -1
  30. package/dist/lib/constants.d.ts +1 -1
  31. package/dist/lib/constants.d.ts.map +1 -1
  32. package/dist/lib/constants.js +1 -1
  33. package/dist/lib/constants.js.map +1 -1
  34. package/dist/lib/json.d.ts +8 -0
  35. package/dist/lib/json.d.ts.map +1 -0
  36. package/dist/lib/json.js +25 -0
  37. package/dist/lib/json.js.map +1 -0
  38. package/dist/lib/utils.d.ts +10 -1
  39. package/dist/lib/utils.d.ts.map +1 -1
  40. package/dist/lib/utils.js +19 -177
  41. package/dist/lib/utils.js.map +1 -1
  42. package/dist/package.json +3 -2
  43. package/docs/examples/projects/update-labels.md +3 -0
  44. package/install.ps1 +2 -2
  45. package/install.sh +1 -1
  46. package/lib/client.ts +3 -5
  47. package/lib/commands/config.ts +50 -32
  48. package/lib/commands/pull.ts +111 -25
  49. package/lib/commands/push.ts +21 -7
  50. package/lib/commands/services/projects.ts +13 -1
  51. package/lib/commands/services/storage.ts +2 -2
  52. package/lib/commands/utils/attributes.ts +19 -8
  53. package/lib/config.ts +54 -10
  54. package/lib/constants.ts +1 -1
  55. package/lib/json.ts +28 -0
  56. package/lib/utils.ts +25 -232
  57. package/package.json +3 -2
  58. 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 Push all not working correctly
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
  ![License](https://img.shields.io/github/license/appwrite/sdk-for-cli.svg?style=flat-square)
4
- ![Version](https://img.shields.io/badge/api%20version-1.8.0-blue.svg?style=flat-square)
4
+ ![Version](https://img.shields.io/badge/api%20version-1.8.1-blue.svg?style=flat-square)
5
5
  [![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
6
6
  [![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
7
7
  [![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](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.0-rc.5
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.0-rc.5
63
+ 13.0.1
64
64
  ```
65
65
 
66
66
  ## Getting Started