@appwrite.io/console 0.6.0-rc.1 → 0.6.0-rc.3

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/dist/iife/sdk.js CHANGED
@@ -102,7 +102,7 @@
102
102
  'x-sdk-name': 'Console',
103
103
  'x-sdk-platform': 'console',
104
104
  'x-sdk-language': 'web',
105
- 'x-sdk-version': '0.6.0-rc.1',
105
+ 'x-sdk-version': '0.6.0-rc.3',
106
106
  'X-Appwrite-Response-Format': '1.4.0',
107
107
  };
108
108
  this.realtime = {
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.1",
5
+ "version": "0.6.0-rc.3",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/cjs/sdk.js",
8
8
  "exports": {
package/src/client.ts CHANGED
@@ -104,7 +104,7 @@ class Client {
104
104
  'x-sdk-name': 'Console',
105
105
  'x-sdk-platform': 'console',
106
106
  'x-sdk-language': 'web',
107
- 'x-sdk-version': '0.6.0-rc.1',
107
+ 'x-sdk-version': '0.6.0-rc.3',
108
108
  'X-Appwrite-Response-Format': '1.4.0',
109
109
  };
110
110
 
package/src/models.ts CHANGED
@@ -1182,6 +1182,14 @@ export namespace Models {
1182
1182
  * Phone verification status.
1183
1183
  */
1184
1184
  phoneVerification: boolean;
1185
+ /**
1186
+ * Multi factor authentication status.
1187
+ */
1188
+ mfa: boolean;
1189
+ /**
1190
+ * TOTP status.
1191
+ */
1192
+ totp: boolean;
1185
1193
  /**
1186
1194
  * User preferences as a key-value object
1187
1195
  */
package/types/models.d.ts CHANGED
@@ -1182,6 +1182,14 @@ export declare namespace Models {
1182
1182
  * Phone verification status.
1183
1183
  */
1184
1184
  phoneVerification: boolean;
1185
+ /**
1186
+ * Multi factor authentication status.
1187
+ */
1188
+ mfa: boolean;
1189
+ /**
1190
+ * TOTP status.
1191
+ */
1192
+ totp: boolean;
1185
1193
  /**
1186
1194
  * User preferences as a key-value object
1187
1195
  */