magic-sdk 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 CHANGED
@@ -1,3 +1,23 @@
1
+ # v18.1.0 (Fri Jun 23 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Updates License to Apache 2.0 [#551](https://github.com/magiclabs/magic-js/pull/551) ([@Ariflo](https://github.com/Ariflo))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - 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))
10
+ - White space bump ([@Ariflo](https://github.com/Ariflo))
11
+ - Add typings to package.json export [#517](https://github.com/magiclabs/magic-js/pull/517) ([@octave08](https://github.com/octave08))
12
+ - Add typings to package.json export ([@octave08](https://github.com/octave08))
13
+
14
+ #### Authors: 2
15
+
16
+ - Arian Flores ([@Ariflo](https://github.com/Ariflo))
17
+ - Jay Hwang ([@octave08](https://github.com/octave08))
18
+
19
+ ---
20
+
1
21
  # v17.3.0 (Fri May 26 2023)
2
22
 
3
23
  #### 🐛 Bug Fix
package/README.md CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  ### Installation
28
28
 
29
- Integrating your app with Magic will require our client-side NPM package:
29
+ Integrating your app with Magic will require our client-side NPM package:
30
30
 
31
31
  ```bash
32
32
  # Via NPM:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magic-sdk",
3
- "version": "18.1.0",
3
+ "version": "18.2.0-canary.557.5361107278.0",
4
4
  "description": "Passwordless authentication for the web.",
5
5
  "author": "Magic Labs <team@magic.link> (https://magic.link/)",
6
6
  "license": "MIT",
@@ -19,6 +19,7 @@
19
19
  "types": "./dist/types/index.d.ts",
20
20
  "jsdelivr": "./dist/magic.js",
21
21
  "exports": {
22
+ "types": "./dist/types/index.d.ts",
22
23
  "import": "./dist/es/index.mjs",
23
24
  "require": "./dist/cjs/index.js"
24
25
  },
@@ -28,9 +29,9 @@
28
29
  ]
29
30
  },
30
31
  "dependencies": {
31
- "@magic-sdk/commons": "^14.1.0",
32
- "@magic-sdk/provider": "^18.1.0",
33
- "@magic-sdk/types": "^15.5.0",
32
+ "@magic-sdk/commons": "14.2.0-canary.557.5361107278.0",
33
+ "@magic-sdk/provider": "18.2.0-canary.557.5361107278.0",
34
+ "@magic-sdk/types": "15.6.0-canary.557.5361107278.0",
34
35
  "localforage": "^1.7.4"
35
36
  },
36
37
  "devDependencies": {
@@ -39,5 +40,5 @@
39
40
  "@babel/runtime": "^7.9.6",
40
41
  "localforage-driver-memory": "^1.0.5"
41
42
  },
42
- "gitHead": "dd51deb2e5c23fbbb9190cb47fee25919fc19798"
43
+ "gitHead": "736af1614d5aaba88a74bcd35abf5978b9199e0b"
43
44
  }