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

auth0

Package Overview
Dependencies
Maintainers
7
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 0.8.2 to 0.8.3

4

package.json
{
"name": "auth0",
"version": "0.8.2",
"version": "0.8.3",
"description": "Client library for the Auth0 platform",

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

"xtend": "~1.0.3",
"request": "~2.42.0",
"request": "~2.72.0",
"parse-links": "0.0.1"
}
}

@@ -171,3 +171,3 @@ var expect = require('chai').expect;

})
.put('/api/users/' + reqUserData.userId + '/email', {
.put('/api/users/' + encodeURIComponent(reqUserData.userId) + '/email', {
email: reqUserData.email,

@@ -197,3 +197,3 @@ verify: reqUserData.verify

})
.put('/api/users/' + reqUserData.userId + '/email', {
.put('/api/users/' + encodeURIComponent(reqUserData.userId) + '/email', {
email: reqUserData.email,

@@ -229,3 +229,3 @@ verify: reqUserData.verify

})
.put('/api/users/' + reqUserData.userId + '/password', {
.put('/api/users/' + encodeURIComponent(reqUserData.userId) + '/password', {
password: reqUserData.password,

@@ -255,3 +255,3 @@ verify: reqUserData.verify

})
.put('/api/users/' + reqUserData.userId + '/password', {
.put('/api/users/' + encodeURIComponent(reqUserData.userId) + '/password', {
password: reqUserData.password,

@@ -287,3 +287,3 @@ verify: reqUserData.verify

})
.get('/api/users/' + reqUserData.userId + '/metadata')
.get('/api/users/' + encodeURIComponent(reqUserData.userId) + '/metadata')
.matchHeader('Authorization', 'Bearer ' + accessToken)

@@ -309,3 +309,3 @@ .reply(200, resUserData);

})
.get('/api/users/' + reqUserData.userId + '/metadata')
.get('/api/users/' + encodeURIComponent(reqUserData.userId) + '/metadata')
.matchHeader('Authorization', 'Bearer ' + accessToken)

@@ -338,3 +338,3 @@ .reply(401, resError);

})
.patch('/api/users/' + reqUserData.userId + '/metadata', reqUserMetadata)
.patch('/api/users/' + encodeURIComponent(reqUserData.userId) + '/metadata', reqUserMetadata)
.matchHeader('Authorization', 'Bearer ' + accessToken)

@@ -360,3 +360,3 @@ .reply(200, resUserData);

})
.patch('/api/users/' + reqUserData.userId + '/metadata', reqUserMetadata)
.patch('/api/users/' + encodeURIComponent(reqUserData.userId) + '/metadata', reqUserMetadata)
.matchHeader('Authorization', 'Bearer ' + accessToken)

@@ -363,0 +363,0 @@ .reply(401, resError);

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