@appwrite.io/console 0.6.0-rc.6 → 0.6.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cjs/sdk.js +1 -1
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +1 -1
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/models.ts +4 -0
- package/types/models.d.ts +4 -0
package/dist/iife/sdk.js
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@appwrite.io/console",
|
|
3
3
|
"homepage": "https://appwrite.io/support",
|
|
4
4
|
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
|
|
5
|
-
"version": "0.6.0-rc.
|
|
5
|
+
"version": "0.6.0-rc.7",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"main": "dist/cjs/sdk.js",
|
|
8
8
|
"exports": {
|
package/src/client.ts
CHANGED
package/src/models.ts
CHANGED
|
@@ -1733,6 +1733,10 @@ export namespace Models {
|
|
|
1733
1733
|
* User confirmation status, true if the user has joined the team or false otherwise.
|
|
1734
1734
|
*/
|
|
1735
1735
|
confirm: boolean;
|
|
1736
|
+
/**
|
|
1737
|
+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
|
|
1738
|
+
*/
|
|
1739
|
+
mfa: boolean;
|
|
1736
1740
|
/**
|
|
1737
1741
|
* User list of roles
|
|
1738
1742
|
*/
|
package/types/models.d.ts
CHANGED
|
@@ -1733,6 +1733,10 @@ export declare namespace Models {
|
|
|
1733
1733
|
* User confirmation status, true if the user has joined the team or false otherwise.
|
|
1734
1734
|
*/
|
|
1735
1735
|
confirm: boolean;
|
|
1736
|
+
/**
|
|
1737
|
+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
|
|
1738
|
+
*/
|
|
1739
|
+
mfa: boolean;
|
|
1736
1740
|
/**
|
|
1737
1741
|
* User list of roles
|
|
1738
1742
|
*/
|