@tapni/auth 1.0.7 → 1.0.9

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.
Files changed (54) hide show
  1. package/README.md +2 -0
  2. package/dist/.vite/manifest.json +12 -19
  3. package/dist/.well-known/assetlinks.json +10 -12
  4. package/dist/.well-known/microsoft-identity-association.json +5 -5
  5. package/dist/{Apps-BNLnNAmv.js → Apps-spt3-xmr.js} +1 -1
  6. package/dist/{Billing-C6F6zxbg.js → Billing-EQtSRyls.js} +1 -1
  7. package/dist/{CustomApp-B78nPESB.js → CustomApp-DytcodWc.js} +1 -1
  8. package/dist/{General-E-VRkj_Y.js → General-BBoC_TV2.js} +1 -1
  9. package/dist/{QR-vXam_Tu3.js → QR-DmSyXgb5.js} +1 -1
  10. package/dist/TapniAuth.es.js +1 -1
  11. package/dist/TapniAuth.umd.js +15 -15
  12. package/dist/blank.html +31 -0
  13. package/dist/{install-DW5mvDvp.js → install-DJ7V1wyP.js} +1870 -1940
  14. package/dist/site.webmanifest +11 -1
  15. package/dist/style.css +1 -1
  16. package/package.json +14 -5
  17. package/src/.prettierrc.json +16 -0
  18. package/src/components/DELETE_LinkIcon.vue +174 -225
  19. package/src/components/DELETE_SSOPick.vue +93 -148
  20. package/src/eslint.config.js +15 -0
  21. package/src/install.js +9 -10
  22. package/src/main.js +54 -57
  23. package/src/mixins/apple.mixin.js +56 -54
  24. package/src/mixins/auth.mixin.js +3 -2
  25. package/src/mixins/global.mixin.js +2 -2
  26. package/src/mixins/google.mixin.js +53 -54
  27. package/src/mixins/qr-auth.mixin.js +111 -107
  28. package/src/router/index.js +6 -6
  29. package/src/routes.js +1 -1
  30. package/src/services/Api.js +55 -57
  31. package/src/services/AuthService.js +0 -8
  32. package/src/services/CompanyService.js +10 -10
  33. package/src/services/DeviceService.js +3 -3
  34. package/src/services/UserService.js +45 -45
  35. package/src/services/UtilService.js +256 -218
  36. package/src/store/event-bus.js +22 -22
  37. package/src/store/locales/cn.js +442 -458
  38. package/src/store/locales/de.js +438 -517
  39. package/src/store/locales/es.js +442 -524
  40. package/src/store/locales/fr.js +442 -516
  41. package/src/store/locales/it.js +442 -514
  42. package/src/store/locales/kr.js +442 -491
  43. package/src/store/locales/lang.js +43 -43
  44. package/src/store/locales/sr.js +439 -492
  45. package/src/store/locales/tr.js +436 -487
  46. package/src/store/store.js +6 -6
  47. package/src/views/Account.vue +2 -2
  48. package/src/views/Callback.vue +36 -33
  49. package/src/views/Login.vue +4 -26
  50. package/src/views/Register.vue +1 -11
  51. package/src/views/Reset.vue +132 -135
  52. package/src/views/Verify.vue +153 -151
  53. package/dist/web-AXRKjAOB.js +0 -92
  54. package/src/mixins/facebook.mixin.js +0 -78
@@ -0,0 +1,31 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>Blank</title>
6
+ </head>
7
+ <body>
8
+ <script>
9
+ (function() {
10
+ try {
11
+ // Read the auth payload from window.name.
12
+ var payload = window.name;
13
+ if (payload) {
14
+ var authData = JSON.parse(payload);
15
+ console.log('blank.html read authData:', authData);
16
+ // Instead of BroadcastChannel, we simply keep this page static.
17
+ // (The iframe is polling the popup window, which now shows blank.html.)
18
+ // Optionally, we could auto-close this page if needed.
19
+ setTimeout(function() {
20
+ // Do nothing here; the parent iframe is polling the popup.
21
+ window.close()
22
+ }, 3000);
23
+ }
24
+ } catch (e) {
25
+ console.error('Error in blank.html script:', e);
26
+ }
27
+ })();
28
+ </script>
29
+ <!-- This page intentionally left blank -->
30
+ </body>
31
+ </html>