This commit is contained in:
Jake Barnby
2025-08-20 18:13:41 +12:00
parent 42a7f909a2
commit bf6e97b950
7 changed files with 32 additions and 11 deletions
Generated
+6 -6
View File
@@ -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",
-1
View File
@@ -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.
+1 -1
View File
@@ -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.
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.
+1 -1
View File
@@ -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`.
Type can be `key`, `fulltext`, or `unique`.
@@ -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.
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.
+1 -1
View File
@@ -1 +1 @@
List indexes in the collection.
List indexes on the table.
+22
View File
@@ -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