@magic-sdk/types 11.4.0 → 11.5.0
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/CHANGELOG.md +17 -0
- package/dist/types/modules/auth-types.d.ts +1 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# v11.5.0 (Tue Feb 28 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- LoginWithEmailOtp Whitelabeling [#414](https://github.com/magiclabs/magic-js/pull/414) ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Merge branch 'master' of github.com:magiclabs/magic-js into mushfichowdhury-login-with-email-otp-whitelabel ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
|
|
10
|
+
- updated auth module and unit tests ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
|
|
11
|
+
|
|
12
|
+
#### Authors: 1
|
|
13
|
+
|
|
14
|
+
- Mushfi Chowdhury ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v11.4.0 (Tue Feb 21 2023)
|
|
2
19
|
|
|
3
20
|
#### 🚀 Enhancement
|
|
@@ -44,10 +44,7 @@ export declare type LoginWithMagicLinkEvents = {
|
|
|
44
44
|
retry: () => void;
|
|
45
45
|
};
|
|
46
46
|
export declare type LoginWithEmailOTPEvents = {
|
|
47
|
-
'
|
|
47
|
+
'email-otp-sent': () => void;
|
|
48
48
|
'verify-email-otp': (otp: string) => void;
|
|
49
|
-
'email-not-deliverable': () => void;
|
|
50
|
-
'invalid-email-format': () => void;
|
|
51
49
|
'invalid-email-otp': () => void;
|
|
52
|
-
'lockout-too-many-failed-attempts': () => void;
|
|
53
50
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/types",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.5.0",
|
|
4
4
|
"description": "Core typings for Magic SDK packages.",
|
|
5
5
|
"author": "Magic Labs <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"import": "./dist/es/index.mjs",
|
|
21
21
|
"require": "./dist/cjs/index.js"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "21244c905ec11f7a328c67547630ac26749713eb"
|
|
24
24
|
}
|