File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 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+ * New ` users.getMemberships ` function
7+
18## 4.0.2
29* Fix null issues with float attributes (https://github.com/appwrite/sdk-for-dart/issues/17 and https://github.com/appwrite/sdk-for-dart/issues/16 )
310
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
2727 _headers = {
2828 'content-type' : 'application/json' ,
2929 'x-sdk-version' : 'appwrite:dart:5.0.0' ,
30- 'X-Appwrite-Response-Format' : '0.13 .0' ,
30+ 'X-Appwrite-Response-Format' : '0.14 .0' ,
3131 };
3232
3333 config = {};
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class ClientIO extends ClientBase with ClientMixin {
3636 _headers = {
3737 'content-type' : 'application/json' ,
3838 'x-sdk-version' : 'appwrite:dart:5.0.0' ,
39- 'X-Appwrite-Response-Format' : '0.13 .0' ,
39+ 'X-Appwrite-Response-Format' : '0.14 .0' ,
4040 };
4141
4242 config = {};
You can’t perform that action at this time.
0 commit comments