@tapni/auth 1.0.39 → 1.0.41
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/.vite/manifest.json +12 -12
- package/dist/{Apps-DGnyocsW.js → Apps-BPcIXPax.js} +1 -1
- package/dist/{Billing-BPi5eI_Y.js → Billing-DNQq2W8Q.js} +1 -1
- package/dist/{CustomApp-MvC6iFwQ.js → CustomApp-93zHxNyg.js} +1 -1
- package/dist/{General-D0Lk3y8B.js → General-D3WotPy3.js} +1 -1
- package/dist/{QR-BgbkqsG2.js → QR-BwVMf7yi.js} +1 -1
- package/dist/TapniAuth.es.js +1 -1
- package/dist/TapniAuth.umd.js +3 -3
- package/dist/{install-nNnkEk19.js → install-4PBH1U2G.js} +5 -4
- package/package.json +1 -1
- package/src/mixins/saml.mixin.js +1 -1
- package/src/store/auth.js +2 -1
|
@@ -1391,7 +1391,7 @@ function sa(n, e, t, r, o, i) {
|
|
|
1391
1391
|
const ro = /* @__PURE__ */ pn(ea, [["render", sa], ["__scopeId", "data-v-cb61958b"]]), ca = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1392
1392
|
__proto__: null,
|
|
1393
1393
|
default: ro
|
|
1394
|
-
}, Symbol.toStringTag, { value: "Module" })), la = "1.0.
|
|
1394
|
+
}, Symbol.toStringTag, { value: "Module" })), la = "1.0.41", ar = {
|
|
1395
1395
|
getMe() {
|
|
1396
1396
|
return le().get("/users/me");
|
|
1397
1397
|
},
|
|
@@ -5825,7 +5825,7 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
5825
5825
|
app_region: "지역",
|
|
5826
5826
|
app_region_p: "맞춤형 결제 및 지원을 위해 지역을 선택하세요"
|
|
5827
5827
|
}
|
|
5828
|
-
}, ko = () => Promise.resolve().then(() => ca), da = () => Promise.resolve().then(() => mc), pa = () => Promise.resolve().then(() => cl), ha = () => Promise.resolve().then(() => Xu), fa = () => Promise.resolve().then(() => zc), ma = () => Promise.resolve().then(() => Cl), ga = () => Promise.resolve().then(() => od), _a = () => import("./QR-
|
|
5828
|
+
}, ko = () => Promise.resolve().then(() => ca), da = () => Promise.resolve().then(() => mc), pa = () => Promise.resolve().then(() => cl), ha = () => Promise.resolve().then(() => Xu), fa = () => Promise.resolve().then(() => zc), ma = () => Promise.resolve().then(() => Cl), ga = () => Promise.resolve().then(() => od), _a = () => import("./QR-BwVMf7yi.js"), va = () => Promise.resolve().then(() => Cu), ya = () => import("./Apps-BPcIXPax.js"), wa = () => import("./Billing-DNQq2W8Q.js"), ba = () => import("./CustomApp-93zHxNyg.js"), ka = () => import("./General-D3WotPy3.js"), Ca = [
|
|
5829
5829
|
{
|
|
5830
5830
|
path: "/welcome",
|
|
5831
5831
|
name: "AuthWelcome",
|
|
@@ -5952,7 +5952,8 @@ Tanıştığınız herkesi etkileyin 😎 <br> Kendinize bir tane ayırın 👇`
|
|
|
5952
5952
|
"https://localhost:7777",
|
|
5953
5953
|
"http://localhost:8086",
|
|
5954
5954
|
"https://localhost:8085",
|
|
5955
|
-
"http://localhost:8085"
|
|
5955
|
+
"http://localhost:8085",
|
|
5956
|
+
"capacitor://localhost"
|
|
5956
5957
|
]
|
|
5957
5958
|
},
|
|
5958
5959
|
mutations: {
|
|
@@ -15525,7 +15526,7 @@ const Ms = Er("MsAuthPlugin", {
|
|
|
15525
15526
|
"message",
|
|
15526
15527
|
async (i) => {
|
|
15527
15528
|
var u;
|
|
15528
|
-
if (!this.allowedOriginsAuth.includes(i.origin)) return;
|
|
15529
|
+
if (!this.allowedOriginsAuth.includes(i.origin)) return console.error("Origin is not allowed! " + i.origin);
|
|
15529
15530
|
const a = i.data.code, s = localStorage.getItem("pkce_code_verifier");
|
|
15530
15531
|
if (a) {
|
|
15531
15532
|
if (o.display === "popup")
|
package/package.json
CHANGED
package/src/mixins/saml.mixin.js
CHANGED
|
@@ -49,7 +49,7 @@ export default {
|
|
|
49
49
|
window.addEventListener(
|
|
50
50
|
'message',
|
|
51
51
|
async (message) => {
|
|
52
|
-
if (!this.allowedOriginsAuth.includes(message.origin)) return;
|
|
52
|
+
if (!this.allowedOriginsAuth.includes(message.origin)) return console.error('Origin is not allowed! ' + message.origin);
|
|
53
53
|
const code = message.data.code;
|
|
54
54
|
const pkce = localStorage.getItem('pkce_code_verifier');
|
|
55
55
|
if (code) {
|