New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@genezio/auth

Package Overview
Dependencies
Maintainers
5
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@genezio/auth - npm Package Compare versions

Comparing version 2.0.19 to 2.0.20

5

lib/authService.sdk.js

@@ -117,3 +117,4 @@ "use strict";

AuthService.prototype.setTokenAndRegion = function (token, region) {
var _a = token.split("-"), cloud = _a[0], id = _a[1];
var _a = token.split("-"), cloud = _a[0], rest = _a.slice(1);
var id = rest.join('-');
var url;

@@ -124,3 +125,3 @@ if (cloud === "0") {

else if (cloud === "1") {
url = "https://runtime.genez.io:8091/".concat(id);
url = "https://runtime.genez.io/".concat(id);
}

@@ -127,0 +128,0 @@ else {

2

package.json
{
"name": "@genezio/auth",
"version": "2.0.19",
"version": "2.0.20",
"description": "SDK for accessing genezio authentication system.",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

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