appwrite-cli 14.0.1 → 15.1.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 (37) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +2 -2
  3. package/dist/bundle-win-arm64.mjs +267 -105
  4. package/dist/cli.cjs +267 -105
  5. package/dist/index.cjs +166 -61
  6. package/dist/index.js +166 -61
  7. package/dist/lib/client.d.ts.map +1 -1
  8. package/dist/lib/commands/config.d.ts +14 -4
  9. package/dist/lib/commands/config.d.ts.map +1 -1
  10. package/dist/lib/commands/init.d.ts.map +1 -1
  11. package/dist/lib/commands/pull.d.ts.map +1 -1
  12. package/dist/lib/commands/push.d.ts.map +1 -1
  13. package/dist/lib/commands/services/functions.d.ts.map +1 -1
  14. package/dist/lib/commands/services/sites.d.ts.map +1 -1
  15. package/dist/lib/commands/services/storage.d.ts.map +1 -1
  16. package/dist/lib/commands/utils/deployment.d.ts +5 -0
  17. package/dist/lib/commands/utils/deployment.d.ts.map +1 -1
  18. package/dist/lib/constants.d.ts +1 -1
  19. package/dist/lib/questions.d.ts.map +1 -1
  20. package/dist/lib/sdks.d.ts.map +1 -1
  21. package/install.ps1 +2 -2
  22. package/install.sh +1 -1
  23. package/lib/client.ts +17 -0
  24. package/lib/commands/config.ts +7 -2
  25. package/lib/commands/init.ts +4 -2
  26. package/lib/commands/pull.ts +7 -2
  27. package/lib/commands/push.ts +14 -4
  28. package/lib/commands/services/account.ts +1 -1
  29. package/lib/commands/services/functions.ts +12 -7
  30. package/lib/commands/services/sites.ts +14 -7
  31. package/lib/commands/services/storage.ts +2 -1
  32. package/lib/commands/utils/deployment.ts +28 -7
  33. package/lib/constants.ts +1 -1
  34. package/lib/questions.ts +38 -4
  35. package/lib/sdks.ts +2 -0
  36. package/package.json +2 -2
  37. package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## 15.1.0
4
+
5
+ * Added `resolveFileParam` to convert file or directory paths into `File` objects and tar.gz packages
6
+
7
+ ## 15.0.0
8
+
9
+ * Breaking: Separated `specification` with `buildSpecification` and `runtimeSpecification`; added `deploymentRetention` to both functions and sites
10
+ * Added `startCommand` option for sites
11
+ * Updated `init sites` prompts to select `buildSpecification` and `runtimeSpecification`
12
+ * Improved unauthorized error messages
13
+
3
14
  ## 14.0.1
4
15
 
5
16
  * Fixed `push tables` not passing `encrypt` parameter for varchar, text, mediumtext, and longtext string types
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
- 14.0.1
32
+ 15.1.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
- 14.0.1
63
+ 15.1.0
64
64
  ```
65
65
 
66
66
  ## Getting Started