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

auth0

Package Overview
Dependencies
Maintainers
6
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth0 - npm Package Compare versions

Comparing version 2.1.0 to 2.3.0

coverage/coverage.json

2

package.json
{
"name": "auth0",
"version": "2.1.0",
"version": "2.3.0",
"description": "SDK for Auth0 API v2",

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

@@ -69,3 +69,3 @@ /** @module auth **/

if (options.telemetry !== false) {
var telemetry = jsonToBase64(this.getClientInfo());
var telemetry = jsonToBase64(options.clientInfo || this.getClientInfo());
managerOptions.headers['Auth0-Client'] = telemetry;

@@ -356,3 +356,4 @@ }

scope: data.scope,
target: data.targetClientId || data.target
target: data.targetClientId || data.target,
grant_type: data.grant_type
};

@@ -359,0 +360,0 @@

@@ -76,3 +76,4 @@ /** @module management */

if (options.telemetry !== false) {
var telemetry = jsonToBase64(this.getClientInfo());
var telemetry = jsonToBase64(options.clientInfo || this.getClientInfo());
managerOptions.headers['Auth0-Client'] = telemetry;

@@ -192,3 +193,2 @@ }

};
// Add the dependencies to the client info object.

@@ -195,0 +195,0 @@ Object

@@ -14,2 +14,7 @@ var Webpack = require('webpack');

},
node: {
Buffer: true,
process: true,
url: true
},
module: {

@@ -50,4 +55,3 @@ loaders: [

alias: {},
},
node: false
}
};
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