@lumiapassport/ui-kit 1.8.0 → 1.8.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/dist/iframe/index.html +1 -1
- package/dist/iframe/main.js +2 -4
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/iframe/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
16
16
|
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
|
|
17
17
|
|
|
18
|
-
<title>Lumia Passport Secure Wallet - iframe version 1.8.
|
|
18
|
+
<title>Lumia Passport Secure Wallet - iframe version 1.8.1</title>
|
|
19
19
|
|
|
20
20
|
<!-- Styles will be injected by build process -->
|
|
21
21
|
<style>
|
package/dist/iframe/main.js
CHANGED
|
@@ -1085,7 +1085,6 @@ async function uploadShareToVault(encryptedShare, accessToken) {
|
|
|
1085
1085
|
"Authorization": `Bearer ${token}`,
|
|
1086
1086
|
"Idempotency-Key": idempotencyKey
|
|
1087
1087
|
},
|
|
1088
|
-
credentials: "include",
|
|
1089
1088
|
body: JSON.stringify(encryptedShare)
|
|
1090
1089
|
});
|
|
1091
1090
|
if (!response.ok) {
|
|
@@ -1110,8 +1109,7 @@ async function downloadShareFromVault(accessToken) {
|
|
|
1110
1109
|
"Authorization": `Bearer ${token}`,
|
|
1111
1110
|
"X-Client-Device-Id": "lumia-ui-kit",
|
|
1112
1111
|
"X-Client-Device-Name": "Lumia UI Kit"
|
|
1113
|
-
}
|
|
1114
|
-
credentials: "include"
|
|
1112
|
+
}
|
|
1115
1113
|
});
|
|
1116
1114
|
if (!response.ok) {
|
|
1117
1115
|
if (response.status === 404) {
|
|
@@ -3930,7 +3928,7 @@ var BackupManager = class {
|
|
|
3930
3928
|
};
|
|
3931
3929
|
|
|
3932
3930
|
// src/iframe/main.ts
|
|
3933
|
-
var IFRAME_VERSION = "1.8.
|
|
3931
|
+
var IFRAME_VERSION = "1.8.1";
|
|
3934
3932
|
var IframeWallet = class {
|
|
3935
3933
|
constructor() {
|
|
3936
3934
|
console.log("=".repeat(60));
|