From bf6e97b95015570711afb306b305184e5a7091ef Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 20 Aug 2025 18:13:41 +1200 Subject: [PATCH] Fix docs --- composer.lock | 12 +++++----- docs/references/databases/list-rows.md | 1 - docs/references/databases/list-usage.md | 2 +- docs/references/tablesdb/create-index.md | 2 +- .../references/tablesdb/get-database-usage.md | 2 +- docs/references/tablesdb/list-indexes.md | 2 +- docs/sdks/dart/CHANGELOG.md | 22 +++++++++++++++++++ 7 files changed, 32 insertions(+), 11 deletions(-) delete mode 100644 docs/references/databases/list-rows.md diff --git a/composer.lock b/composer.lock index a9a8494de2..0302e83288 100644 --- a/composer.lock +++ b/composer.lock @@ -4930,16 +4930,16 @@ "packages-dev": [ { "name": "appwrite/sdk-generator", - "version": "0.41.31", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/appwrite/sdk-generator.git", - "reference": "95d3dd7b925181acea89468e7f74e99b6832c3dc" + "reference": "8f16ba871856b379c3b33c72ebb175011437e724" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/95d3dd7b925181acea89468e7f74e99b6832c3dc", - "reference": "95d3dd7b925181acea89468e7f74e99b6832c3dc", + "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/8f16ba871856b379c3b33c72ebb175011437e724", + "reference": "8f16ba871856b379c3b33c72ebb175011437e724", "shasum": "" }, "require": { @@ -4975,9 +4975,9 @@ "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "support": { "issues": "https://github.com/appwrite/sdk-generator/issues", - "source": "https://github.com/appwrite/sdk-generator/tree/0.41.31" + "source": "https://github.com/appwrite/sdk-generator/tree/1.0.0" }, - "time": "2025-08-19T18:03:34+00:00" + "time": "2025-08-20T05:54:57+00:00" }, { "name": "doctrine/annotations", diff --git a/docs/references/databases/list-rows.md b/docs/references/databases/list-rows.md deleted file mode 100644 index 68185fc192..0000000000 --- a/docs/references/databases/list-rows.md +++ /dev/null @@ -1 +0,0 @@ -Get a list of all the user's rows in a given table. You can use the query params to filter your results. \ No newline at end of file diff --git a/docs/references/databases/list-usage.md b/docs/references/databases/list-usage.md index 0f318d6466..a88e76680e 100644 --- a/docs/references/databases/list-usage.md +++ b/docs/references/databases/list-usage.md @@ -1 +1 @@ -List usage metrics and statistics for all databases in the project. You can view the total number of databases, collections/tables, documents/rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days. \ No newline at end of file +List usage metrics and statistics for all databases in the project. You can view the total number of databases, collections, documents, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days. \ No newline at end of file diff --git a/docs/references/tablesdb/create-index.md b/docs/references/tablesdb/create-index.md index 3a68c04e86..b0920a74a5 100644 --- a/docs/references/tablesdb/create-index.md +++ b/docs/references/tablesdb/create-index.md @@ -1,2 +1,2 @@ Creates an index on the columns listed. Your index should include all the columns you will query in a single request. -Attributes can be `key`, `fulltext`, and `unique`. \ No newline at end of file +Type can be `key`, `fulltext`, or `unique`. \ No newline at end of file diff --git a/docs/references/tablesdb/get-database-usage.md b/docs/references/tablesdb/get-database-usage.md index 2c2628a464..d9298f4814 100644 --- a/docs/references/tablesdb/get-database-usage.md +++ b/docs/references/tablesdb/get-database-usage.md @@ -1 +1 @@ -Get usage metrics and statistics for a database. You can view the total number of collections, documents, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days. \ No newline at end of file +Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days. \ No newline at end of file diff --git a/docs/references/tablesdb/list-indexes.md b/docs/references/tablesdb/list-indexes.md index a8c687fb2b..598187558d 100644 --- a/docs/references/tablesdb/list-indexes.md +++ b/docs/references/tablesdb/list-indexes.md @@ -1 +1 @@ -List indexes in the collection. \ No newline at end of file +List indexes on the table. \ No newline at end of file diff --git a/docs/sdks/dart/CHANGELOG.md b/docs/sdks/dart/CHANGELOG.md index 1972a122e3..392eaf2bf5 100644 --- a/docs/sdks/dart/CHANGELOG.md +++ b/docs/sdks/dart/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## 17.0.0 + +* Support for Appwrite 1.8 +* Add TablesDB service +* Add new query types: + * `notContains` + * `notSearch` + * `notBetween` + * `notStartsWith` + * `notEndsWith` + * `createdBefore` + * `createdAfter` + * `updatedBefore` + * `updatedAfter` +* Deprecated `updateMagicURLSession` +* Deprecated `updatePhoneSession` +* Deprecated Databases service +> The TablesDB service is the new recommended way to work with databases. +> Existing databases/collections can be managed using the TablesDB service. +> Existing Databases service will continue to work, but new features will only be added to the TablesDB service. + + ## 16.2.0 * Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service