You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Change log
2
2
3
+
## 0.32.0
4
+
5
+
* Breaking: Renamed `Theme` enum to `BrowserTheme`.
6
+
* Breaking: Removed `Models.DefaultPresence` and dropped the `Presence` generic from `presences` methods.
7
+
* Added: Email metadata fields to `User`, plus `Membership.userAccessedAt` and `Presence.metadata`.
8
+
* Updated: Requests now send an explicit `accept` header matching each endpoint's response type.
9
+
3
10
## 0.30.1
4
11
5
12
* Fixed: Removed `Advisor` service and `Insight`, `InsightCTA`, `InsightList`, `Report`, `ReportList` models (admin-only endpoints, not intended for client SDKs)
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "react-native-appwrite",
3
3
"homepage": "https://appwrite.io/support",
4
4
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
* Total number of presences that matched your query.
42
42
*/
@@ -357,13 +357,12 @@ export namespace Models {
357
357
* Presence expiry date in ISO 8601 format.
358
358
*/
359
359
expiresAt?: string;
360
+
/**
361
+
* Presence metadata.
362
+
*/
363
+
metadata?: object;
360
364
}
361
365
362
-
exporttypeDefaultPresence=Presence&{
363
-
[key: string]: any;
364
-
[__default]: true;
365
-
};
366
-
367
366
/**
368
367
* Log
369
368
*/
@@ -518,6 +517,26 @@ export namespace Models {
518
517
* Email verification status.
519
518
*/
520
519
emailVerification: boolean;
520
+
/**
521
+
* Canonical form of the user email address.
522
+
*/
523
+
emailCanonical?: string;
524
+
/**
525
+
* Whether the user email is from a free email provider.
526
+
*/
527
+
emailIsFree?: boolean;
528
+
/**
529
+
* Whether the user email is from a disposable email provider.
530
+
*/
531
+
emailIsDisposable?: boolean;
532
+
/**
533
+
* Whether the user email is from a corporate domain.
534
+
*/
535
+
emailIsCorporate?: boolean;
536
+
/**
537
+
* Whether the user email is in its canonical form.
538
+
*/
539
+
emailIsCanonical?: boolean;
521
540
/**
522
541
* Phone verification status.
523
542
*/
@@ -1073,6 +1092,10 @@ export namespace Models {
1073
1092
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by toggling membership privacy in the Console.
1074
1093
*/
1075
1094
mfa: boolean;
1095
+
/**
1096
+
* Most recent access date in ISO 8601 format. Show this attribute by toggling membership privacy in the Console.
0 commit comments