@magic-ext/oidc 4.3.0 → 4.3.1
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 +15 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
# v4.3.1 (Tue Nov 21 2023)
|
2
|
+
|
3
|
+
#### 🐛 Bug Fix
|
4
|
+
|
5
|
+
- Fix TypeScript resolution for @magic-ext/* packages when using modern module resolution (node16 etc) [#670](https://github.com/magiclabs/magic-js/pull/670) ([@rjwebb](https://github.com/rjwebb) [@joshuascan](https://github.com/joshuascan))
|
6
|
+
- Merge branch 'master' into rjwebb/669-fix-node16-magic-ext-imports ([@joshuascan](https://github.com/joshuascan))
|
7
|
+
- Update package.json exports to expose types when using node16 typescript, for algorand, auth, avalanche, bitcoin, conflux, cosmos, ed25519, flow, gdkms, harmony, hedera, icon, near, oauth, oidc, polkadot, react-native-bare-oauth, react-native-expo-oauth, taquito, terra, tezos, webauthn and zilliqa ([@rjwebb](https://github.com/rjwebb))
|
8
|
+
|
9
|
+
#### Authors: 2
|
10
|
+
|
11
|
+
- Bob Webb ([@rjwebb](https://github.com/rjwebb))
|
12
|
+
- Josh Scanlan ([@joshuascan](https://github.com/joshuascan))
|
13
|
+
|
14
|
+
---
|
15
|
+
|
1
16
|
# v4.2.1 (Tue Nov 14 2023)
|
2
17
|
|
3
18
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@magic-ext/oidc",
|
3
|
-
"version": "4.3.
|
3
|
+
"version": "4.3.1",
|
4
4
|
"description": "Magic OIDC SDK Extension for Web environments.",
|
5
5
|
"author": "Magic <team@magic.link> (https://magic.link/)",
|
6
6
|
"license": "MIT",
|
@@ -19,6 +19,7 @@
|
|
19
19
|
"jsdelivr": "./dist/extension.js",
|
20
20
|
"exports": {
|
21
21
|
"import": "./dist/es/index.mjs",
|
22
|
+
"types": "./dist/types/index.d.ts",
|
22
23
|
"require": "./dist/cjs/index.js"
|
23
24
|
},
|
24
25
|
"externals": {
|
@@ -29,5 +30,5 @@
|
|
29
30
|
"devDependencies": {
|
30
31
|
"@magic-sdk/commons": "^17.3.0"
|
31
32
|
},
|
32
|
-
"gitHead": "
|
33
|
+
"gitHead": "f818c695f77efb776a9373525c958d44f24a6d0e"
|
33
34
|
}
|