@magic-sdk/provider 21.1.0-canary.e4b4b2f.0 → 21.1.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 +20 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# v21.1.0 (Thu Oct 19 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Adds template name to loginWithOTP and loginWithMagicLink [#643](https://github.com/magiclabs/magic-js/pull/643) ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Fixes tests ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
10
|
+
- Changes function to accept overrides ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
11
|
+
- Logging ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
12
|
+
- Change out variable name for back end consumption ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
13
|
+
- Add optional field to login methods ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
14
|
+
|
|
15
|
+
#### Authors: 1
|
|
16
|
+
|
|
17
|
+
- Chris Dakin ([@chrisdakin-magic](https://github.com/chrisdakin-magic))
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
1
21
|
# v21.0.0 (Fri Oct 13 2023)
|
|
2
22
|
|
|
3
23
|
#### 💥 Breaking Change
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/provider",
|
|
3
|
-
"version": "21.1.0
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "Core business logic for Magic SDK packages.",
|
|
5
5
|
"author": "Magic Labs <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"tslib": "^2.3.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@magic-sdk/types": "17.1.0
|
|
38
|
+
"@magic-sdk/types": "^17.1.0",
|
|
39
39
|
"eventemitter3": "^4.0.4",
|
|
40
40
|
"web3-core": "1.5.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"localforage": "^1.7.4"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2080535b67b032732eeadff98f8761240e89db32"
|
|
46
46
|
}
|