appwrite-cli 10.0.1 → 10.2.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 +9 -0
- package/README.md +2 -2
- package/docs/examples/account/create-email-verification.md +2 -0
- package/docs/examples/account/update-email-verification.md +3 -0
- package/docs/examples/databases/create-operations.md +2 -0
- package/docs/examples/databases/create-transaction.md +1 -0
- package/docs/examples/databases/delete-transaction.md +2 -0
- package/docs/examples/databases/get-transaction.md +2 -0
- package/docs/examples/databases/list-transactions.md +1 -0
- package/docs/examples/databases/update-transaction.md +2 -0
- package/docs/examples/migrations/create-csv-migration.md +1 -1
- package/docs/examples/tablesdb/create-operations.md +2 -0
- package/docs/examples/tablesdb/create-transaction.md +1 -0
- package/docs/examples/tablesdb/delete-transaction.md +2 -0
- package/docs/examples/tablesdb/get-transaction.md +2 -0
- package/docs/examples/tablesdb/list-transactions.md +1 -0
- package/docs/examples/tablesdb/update-transaction.md +2 -0
- package/install.ps1 +2 -2
- package/install.sh +1 -1
- package/lib/client.js +2 -2
- package/lib/commands/account.js +91 -6
- package/lib/commands/databases.js +325 -13
- package/lib/commands/functions.js +1 -1
- package/lib/commands/sites.js +1 -1
- package/lib/commands/tables-db.js +369 -57
- package/lib/parser.js +1 -1
- package/package.json +1 -1
- package/scoop/appwrite.config.json +3 -3
|
@@ -1541,7 +1541,7 @@ functions
|
|
|
1541
1541
|
|
|
1542
1542
|
functions
|
|
1543
1543
|
.command(`create-template-deployment`)
|
|
1544
|
-
.description(`Create a deployment based on a template. Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
1544
|
+
.description(`Create a deployment based on a template. Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/functions/templates) to find the template details.`)
|
|
1545
1545
|
.requiredOption(`--function-id <function-id>`, `Function ID.`)
|
|
1546
1546
|
.requiredOption(`--repository <repository>`, `Repository name of the template.`)
|
|
1547
1547
|
.requiredOption(`--owner <owner>`, `The name of the owner of the template.`)
|
package/lib/commands/sites.js
CHANGED
|
@@ -1482,7 +1482,7 @@ sites
|
|
|
1482
1482
|
|
|
1483
1483
|
sites
|
|
1484
1484
|
.command(`create-template-deployment`)
|
|
1485
|
-
.description(`Create a deployment based on a template. Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
1485
|
+
.description(`Create a deployment based on a template. Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/sites/templates) to find the template details.`)
|
|
1486
1486
|
.requiredOption(`--site-id <site-id>`, `Site ID.`)
|
|
1487
1487
|
.requiredOption(`--repository <repository>`, `Repository name of the template.`)
|
|
1488
1488
|
.requiredOption(`--owner <owner>`, `The name of the owner of the template.`)
|