Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@websanova/vue-auth

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@websanova/vue-auth - npm Package Compare versions

Comparing version 3.1.4-beta to 3.1.5-beta

2

package.json

@@ -17,3 +17,3 @@ {

"version": "3.1.4-beta",
"version": "3.1.5-beta",

@@ -20,0 +20,0 @@ "repository": {

@@ -338,4 +338,2 @@ import * as __utils from './lib/utils.js';

function _processLogout(redirect) {
// __cookie.remove.call(__auth, __auth.options.rememberKey);
__cookie.remove.call(__auth, __auth.options.tokenImpersonateKey);

@@ -346,2 +344,4 @@ __cookie.remove.call(__auth, __auth.options.tokenDefaultKey);

__token.remove.call(__auth, __auth.options.tokenDefaultKey);
__token.remove.call(__auth, __auth.options.staySignedInKey);

@@ -356,4 +356,4 @@ __auth.$vm.loaded = true;

function _processImpersonate(defaultToken, redirect) {
__token.set.call(__auth, __auth.options.tokenImpersonateKey, __auth.token(), __token.get.call(__auth, __auth.options.staySignedInKey));
__token.set.call(__auth, __auth.options.tokenDefaultKey, defaultToken, __token.get.call(__auth, __auth.options.staySignedInKey));
__token.set.call(__auth, __auth.options.tokenImpersonateKey, __auth.token(), __token.get.call(__auth, __auth.options.staySignedInKey) ? false : true);
__token.set.call(__auth, __auth.options.tokenDefaultKey, defaultToken, __token.get.call(__auth, __auth.options.staySignedInKey) ? false : true);
__auth.$vm.impersonating = true;

@@ -513,3 +513,3 @@

else {
expires = (expires === true || expires === false) ? expires : __token.get.call(__auth, __auth.options.staySignedInKey);
expires = (expires === true || expires === false) ? expires : (__token.get.call(__auth, __auth.options.staySignedInKey) ? false : true);

@@ -516,0 +516,0 @@ __token.set.call(__auth, name, token, expires);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc