@appwrite.io/console 0.6.0-rc.16 → 0.6.0-rc.17
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 +2 -7
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +3 -8
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +2 -7
- package/docs/examples/users/delete-mfa-authenticator.md +2 -2
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/index.ts +0 -1
- package/src/services/users.ts +3 -3
- package/types/index.d.ts +0 -1
- package/types/services/users.d.ts +3 -3
- package/src/enums/type.ts +0 -3
- package/types/enums/type.d.ts +0 -3
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
|
|
|
33
33
|
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
|
|
34
34
|
|
|
35
35
|
```html
|
|
36
|
-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@0.6.0-rc.
|
|
36
|
+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@0.6.0-rc.17"></script>
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -117,7 +117,7 @@ class Client {
|
|
|
117
117
|
'x-sdk-name': 'Console',
|
|
118
118
|
'x-sdk-platform': 'console',
|
|
119
119
|
'x-sdk-language': 'web',
|
|
120
|
-
'x-sdk-version': '0.6.0-rc.
|
|
120
|
+
'x-sdk-version': '0.6.0-rc.17',
|
|
121
121
|
'X-Appwrite-Response-Format': '1.5.0',
|
|
122
122
|
};
|
|
123
123
|
this.realtime = {
|
|
@@ -11755,7 +11755,7 @@ class Users extends Service {
|
|
|
11755
11755
|
* Delete an authenticator app.
|
|
11756
11756
|
*
|
|
11757
11757
|
* @param {string} userId
|
|
11758
|
-
* @param {
|
|
11758
|
+
* @param {AuthenticatorType} type
|
|
11759
11759
|
* @throws {AppwriteException}
|
|
11760
11760
|
* @returns {Promise}
|
|
11761
11761
|
*/
|
|
@@ -13577,11 +13577,6 @@ exports.UserUsageRange = void 0;
|
|
|
13577
13577
|
UserUsageRange["NinetyDays"] = "90d";
|
|
13578
13578
|
})(exports.UserUsageRange || (exports.UserUsageRange = {}));
|
|
13579
13579
|
|
|
13580
|
-
exports.Type = void 0;
|
|
13581
|
-
(function (Type) {
|
|
13582
|
-
Type["Totp"] = "totp";
|
|
13583
|
-
})(exports.Type || (exports.Type = {}));
|
|
13584
|
-
|
|
13585
13580
|
exports.MessagingProviderType = void 0;
|
|
13586
13581
|
(function (MessagingProviderType) {
|
|
13587
13582
|
MessagingProviderType["Email"] = "email";
|