appwrite-cli 13.0.0-rc.4 → 13.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +2 -2
  3. package/dist/bundle.cjs +17258 -2711
  4. package/dist/lib/client.js +1 -1
  5. package/dist/lib/client.js.map +1 -1
  6. package/dist/lib/commands/config.d.ts +12 -12
  7. package/dist/lib/commands/config.d.ts.map +1 -1
  8. package/dist/lib/commands/config.js +15 -6
  9. package/dist/lib/commands/config.js.map +1 -1
  10. package/dist/lib/commands/pull.d.ts.map +1 -1
  11. package/dist/lib/commands/pull.js +53 -16
  12. package/dist/lib/commands/pull.js.map +1 -1
  13. package/dist/lib/commands/push.d.ts +1 -1
  14. package/dist/lib/commands/push.d.ts.map +1 -1
  15. package/dist/lib/commands/push.js +88 -12
  16. package/dist/lib/commands/push.js.map +1 -1
  17. package/dist/lib/commands/schema.js +1 -1
  18. package/dist/lib/commands/schema.js.map +1 -1
  19. package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
  20. package/dist/lib/commands/utils/attributes.js +7 -2
  21. package/dist/lib/commands/utils/attributes.js.map +1 -1
  22. package/dist/lib/commands/utils/pools.js +2 -2
  23. package/dist/lib/commands/utils/pools.js.map +1 -1
  24. package/dist/lib/config.d.ts +1 -0
  25. package/dist/lib/config.d.ts.map +1 -1
  26. package/dist/lib/config.js +41 -1
  27. package/dist/lib/config.js.map +1 -1
  28. package/dist/lib/constants.d.ts +1 -1
  29. package/dist/lib/constants.d.ts.map +1 -1
  30. package/dist/lib/constants.js +1 -1
  31. package/dist/lib/constants.js.map +1 -1
  32. package/dist/lib/questions.d.ts +2 -0
  33. package/dist/lib/questions.d.ts.map +1 -1
  34. package/dist/lib/questions.js +14 -0
  35. package/dist/lib/questions.js.map +1 -1
  36. package/dist/package.json +1 -1
  37. package/install.ps1 +2 -2
  38. package/install.sh +1 -1
  39. package/lib/client.ts +1 -1
  40. package/lib/commands/config.ts +20 -6
  41. package/lib/commands/pull.ts +81 -16
  42. package/lib/commands/push.ts +117 -12
  43. package/lib/commands/schema.ts +1 -1
  44. package/lib/commands/utils/attributes.ts +15 -9
  45. package/lib/commands/utils/pools.ts +2 -2
  46. package/lib/config.ts +47 -1
  47. package/lib/constants.ts +1 -1
  48. package/lib/questions.ts +16 -0
  49. package/package.json +1 -1
  50. package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.0.0
4
+
5
+ - Mark release as stable
6
+ - Feat: add pull sync on destruction of remote resources (+ confirmation)
7
+ - Fix: refine zod schema to check string size
8
+ - Validate using zod schema during push cli command
9
+ - Maintain order of keys in local config
10
+
11
+ ## 13.0.0-rc.5
12
+
13
+ - Fix push all command not working correctly
14
+
3
15
  ## 13.0.0-rc.4
4
16
 
5
17
  - Fix CLI ES module import issues
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
- 13.0.0-rc.4
32
+ 13.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
- 13.0.0-rc.4
63
+ 13.0.0
64
64
  ```
65
65
 
66
66
  ## Getting Started