@magic-sdk/provider 18.1.0 → 18.2.0-canary.557.5361107278.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 +5 -0
- package/README.md +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
#### 🚀 Enhancement
|
|
4
4
|
|
|
5
|
+
- Updates License to Apache 2.0 [#551](https://github.com/magiclabs/magic-js/pull/551) ([@Ariflo](https://github.com/Ariflo))
|
|
5
6
|
- Implement view-in-wallet [#548](https://github.com/magiclabs/magic-js/pull/548) ([@octave08](https://github.com/octave08))
|
|
6
7
|
|
|
7
8
|
#### 🐛 Bug Fix
|
|
8
9
|
|
|
10
|
+
- Replace `magic-sdk` w/ `@magic-sdk/commons` for `@magic-ext/oidc` Package [#550](https://github.com/magiclabs/magic-js/pull/550) ([@Ariflo](https://github.com/Ariflo))
|
|
11
|
+
- White space bump ([@Ariflo](https://github.com/Ariflo))
|
|
12
|
+
- Add typings to package.json export [#517](https://github.com/magiclabs/magic-js/pull/517) ([@octave08](https://github.com/octave08))
|
|
9
13
|
- Remove approval step for canary releases [sc-80045] [#549](https://github.com/magiclabs/magic-js/pull/549) ([@bcleary06](https://github.com/bcleary06))
|
|
10
14
|
- Add test suite for nft checkout ([@octave08](https://github.com/octave08))
|
|
11
15
|
- Implement view-in-wallet ([@octave08](https://github.com/octave08))
|
|
16
|
+
- Add typings to package.json export ([@octave08](https://github.com/octave08))
|
|
12
17
|
- Merge branch 'master' into briancleary7114-sc-80045-remove-approval-step-for-canary-releases ([@bcleary06](https://github.com/bcleary06))
|
|
13
18
|
- Fix Failing CI [#556](https://github.com/magiclabs/magic-js/pull/556) ([@Ariflo](https://github.com/Ariflo))
|
|
14
19
|
- Fix Failing CI ([@Ariflo](https://github.com/Ariflo))
|
package/README.md
CHANGED
|
@@ -20,4 +20,4 @@ This package is an internal dependency of the Magic JavaScript SDK ecosystem. If
|
|
|
20
20
|
|
|
21
21
|
- Web: [`magic-sdk`](https://github.com/magiclabs/magic-js/tree/master/packages/magic-sdk)
|
|
22
22
|
- Bare React Native: [`@magic-sdk/react-native-bare`](https://github.com/magiclabs/magic-js/tree/master/packages/@magic-sdk/react-native-bare)
|
|
23
|
-
- Expo React Native: [`@magic-sdk/react-native-expo`](https://github.com/magiclabs/magic-js/tree/master/packages/@magic-sdk/react-native-expo)
|
|
23
|
+
- Expo React Native: [`@magic-sdk/react-native-expo`](https://github.com/magiclabs/magic-js/tree/master/packages/@magic-sdk/react-native-expo)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/provider",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.2.0-canary.557.5361107278.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",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"module": "./dist/es/index.js",
|
|
18
18
|
"types": "./dist/types/index.d.ts",
|
|
19
19
|
"exports": {
|
|
20
|
+
"types": "./dist/types/index.d.ts",
|
|
20
21
|
"import": "./dist/es/index.mjs",
|
|
21
22
|
"require": "./dist/cjs/index.js"
|
|
22
23
|
},
|
|
@@ -34,12 +35,12 @@
|
|
|
34
35
|
"tslib": "^2.3.1"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@magic-sdk/types": "
|
|
38
|
+
"@magic-sdk/types": "15.6.0-canary.557.5361107278.0",
|
|
38
39
|
"eventemitter3": "^4.0.4",
|
|
39
40
|
"web3-core": "1.5.2"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
43
|
"localforage": "^1.7.4"
|
|
43
44
|
},
|
|
44
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "736af1614d5aaba88a74bcd35abf5978b9199e0b"
|
|
45
46
|
}
|