Skip to content

Commit bfb1a4f

Browse files
authored
Merge pull request #282 from appwrite/dev
feat: Flutter SDK update for version 20.3.0
2 parents 6f43583 + c7575b8 commit bfb1a4f

24 files changed

+405
-34
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 20.3.0
4+
5+
* Add `total` parameter to list queries allowing skipping counting rows in a table for improved performance
6+
* Add `Operator` class for atomic modification of rows via update, bulk update, upsert, and bulk upsert operations
7+
38
## 20.2.2
49

510
* Widen `device_info_plus` and `package_info_plus` dependencies to allow for newer versions for Android 15+ support

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^20.2.2
24+
appwrite: ^20.3.0
2525
```
2626
2727
You can install packages from the command line:

docs/examples/account/list-identities.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Account account = Account(client);
88

99
IdentityList result = await account.listIdentities(
1010
queries: [], // optional
11+
total: false, // optional
1112
);

docs/examples/account/list-logs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Account account = Account(client);
88

99
LogList result = await account.listLogs(
1010
queries: [], // optional
11+
total: false, // optional
1112
);

docs/examples/databases/list-documents.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ DocumentList result = await databases.listDocuments(
1111
collectionId: '<COLLECTION_ID>',
1212
queries: [], // optional
1313
transactionId: '<TRANSACTION_ID>', // optional
14+
total: false, // optional
1415
);

docs/examples/functions/list-executions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ Functions functions = Functions(client);
99
ExecutionList result = await functions.listExecutions(
1010
functionId: '<FUNCTION_ID>',
1111
queries: [], // optional
12+
total: false, // optional
1213
);

docs/examples/storage/list-files.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ FileList result = await storage.listFiles(
1010
bucketId: '<BUCKET_ID>',
1111
queries: [], // optional
1212
search: '<SEARCH>', // optional
13+
total: false, // optional
1314
);

docs/examples/tablesdb/list-rows.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ RowList result = await tablesDB.listRows(
1111
tableId: '<TABLE_ID>',
1212
queries: [], // optional
1313
transactionId: '<TRANSACTION_ID>', // optional
14+
total: false, // optional
1415
);

docs/examples/teams/list-memberships.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ MembershipList result = await teams.listMemberships(
1010
teamId: '<TEAM_ID>',
1111
queries: [], // optional
1212
search: '<SEARCH>', // optional
13+
total: false, // optional
1314
);

docs/examples/teams/list.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ Teams teams = Teams(client);
99
TeamList result = await teams.list(
1010
queries: [], // optional
1111
search: '<SEARCH>', // optional
12+
total: false, // optional
1213
);

0 commit comments

Comments
 (0)