login-authorization-v2 2.0.0 → 2.0.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/index.esm.js CHANGED
@@ -340,7 +340,7 @@ const make = (config) => {
340
340
  openDialog();
341
341
  return Promise.reject();
342
342
  }
343
- if (config.moduleName === 'commonLogin') {
343
+ if (config.moduleName === 'commonLogin' || config.moduleName === 'App') {
344
344
  setupRefreshTokenTimer();
345
345
  return Promise.resolve(menus);
346
346
  }
package/dist/index.umd.js CHANGED
@@ -342,7 +342,7 @@
342
342
  openDialog();
343
343
  return Promise.reject();
344
344
  }
345
- if (config.moduleName === 'commonLogin') {
345
+ if (config.moduleName === 'commonLogin' || config.moduleName === 'App') {
346
346
  setupRefreshTokenTimer();
347
347
  return Promise.resolve(menus);
348
348
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "login-authorization-v2",
4
- "version": "2.0.0",
4
+ "version": "2.0.1",
5
5
  "engines": {
6
6
  "node": "^20"
7
7
  },