Skip to content

Commit 92b4333

Browse files
feat: add response format for 0.14.0
1 parent f4c98c9 commit 92b4333

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 5.0.0
2+
* **BREAKING** `account.delete()` -> `account.updateStatus()`
3+
* **BREAKING** Execution model `stdout` renamed to `response`
4+
* **BREAKING** Membership model `name` renamed to `userName` and `email` renamed to `userEmail`
5+
* Added `teamName` to Membership model
6+
17
## 4.0.2
28
* Upgrade dependencies
39

lib/src/client_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
3838
_headers = {
3939
'content-type': 'application/json',
4040
'x-sdk-version': 'appwrite:flutter:5.0.0',
41-
'X-Appwrite-Response-Format' : '0.13.0',
41+
'X-Appwrite-Response-Format' : '0.14.0',
4242
};
4343

4444
config = {};

lib/src/client_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class ClientIO extends ClientBase with ClientMixin {
5656
_headers = {
5757
'content-type': 'application/json',
5858
'x-sdk-version': 'appwrite:flutter:5.0.0',
59-
'X-Appwrite-Response-Format' : '0.13.0',
59+
'X-Appwrite-Response-Format' : '0.14.0',
6060
};
6161

6262
config = {};

0 commit comments

Comments
 (0)