@auth0-kits/server
Advanced tools
Comparing version 1.3.11 to 1.3.12
{ | ||
"name": "@auth0-kits/server", | ||
"version": "1.3.11", | ||
"version": "1.3.12", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -225,3 +225,6 @@ const querystring = require('querystring'); | ||
async linkAccounts(primaryAccountUserId, secondaryToken) { | ||
async linkAccounts(primaryAccountUserId, { | ||
provider, | ||
secondaryUserId, | ||
} = {}) { | ||
this.tracer.trace('linkAccounts', { primaryAccountUserId, secondaryToken }); | ||
@@ -241,3 +244,7 @@ | ||
const body = JSON.stringify({ link_with: secondaryToken }); | ||
const body = JSON.stringify({ | ||
provider, | ||
user_id: secondaryUserId, | ||
}); | ||
this.tracer.crumb({ body }); | ||
@@ -244,0 +251,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12715
356