appwrite-cli 13.3.2 → 13.5.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 (41) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +2 -2
  3. package/dist/bundle-win-arm64.mjs +1465 -3750
  4. package/dist/cli.cjs +1465 -3750
  5. package/dist/index.cjs +109626 -0
  6. package/dist/index.d.ts +1 -0
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/index.js +904 -3243
  9. package/dist/lib/commands/generators/base.d.ts +16 -5
  10. package/dist/lib/commands/generators/base.d.ts.map +1 -1
  11. package/dist/lib/commands/generators/typescript/databases.d.ts.map +1 -1
  12. package/dist/lib/commands/push.d.ts +1 -0
  13. package/dist/lib/commands/push.d.ts.map +1 -1
  14. package/dist/lib/commands/utils/attributes.d.ts +3 -1
  15. package/dist/lib/commands/utils/attributes.d.ts.map +1 -1
  16. package/dist/lib/commands/utils/pools.d.ts +3 -1
  17. package/dist/lib/commands/utils/pools.d.ts.map +1 -1
  18. package/dist/lib/constants.d.ts +1 -1
  19. package/dist/lib/json.d.ts.map +1 -1
  20. package/dist/lib/utils.d.ts +1 -0
  21. package/dist/lib/utils.d.ts.map +1 -1
  22. package/docs/examples/projects/create-schedule.md +7 -0
  23. package/docs/examples/projects/get-schedule.md +5 -0
  24. package/docs/examples/projects/list-schedules.md +4 -0
  25. package/index.ts +1 -0
  26. package/install.ps1 +2 -2
  27. package/install.sh +1 -1
  28. package/lib/commands/generators/base.ts +30 -9
  29. package/lib/commands/generators/typescript/databases.ts +12 -18
  30. package/lib/commands/push.ts +294 -197
  31. package/lib/commands/services/databases.ts +32 -8
  32. package/lib/commands/services/migrations.ts +1 -1
  33. package/lib/commands/services/projects.ts +57 -4
  34. package/lib/commands/services/tables-db.ts +32 -8
  35. package/lib/commands/utils/attributes.ts +9 -6
  36. package/lib/commands/utils/pools.ts +9 -6
  37. package/lib/constants.ts +1 -1
  38. package/lib/json.ts +12 -2
  39. package/lib/utils.ts +15 -0
  40. package/package.json +19 -6
  41. package/scoop/appwrite.config.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.5.0
4
+
5
+ * New: Added CLI commands under projects: `list-schedules`, `create-schedule`, and `get-schedule` for managing project schedules.
6
+ * Packaging/build: Updated packaging to support explicit ESM/CJS outputs with exports. main now points to dist/index.cjs, module to dist/index.js, and exports include type and entry-point mappings. This enables better compatibility for both ESM and CommonJS users.
7
+
8
+ ## 13.4.0
9
+
10
+ * Add `--queries` option to `list-keys` command
11
+ * Add `--key-id` option to `create-key` command
12
+ * Add `encrypt` param support to new string type attributes
13
+ * Fix `bignumber.js` bundler conflict by removing direct dependency in favor of transitive dependency from `json-bigint`
14
+ * Fix missing region in console failUrl for failed deployments
15
+
3
16
  ## 13.3.2
4
17
 
5
18
  - Fix handle null rows in table parser
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.3.2
32
+ 13.5.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.3.2
63
+ 13.5.0
64
64
  ```
65
65
 
66
66
  ## Getting Started