diff --git a/CHANGELOG.md b/CHANGELOG.md index b90897695..72ac8552e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [v2.30.0](https://github.com/auth0/node-auth0/tree/v2.30.0) (2020-10-22) + +**Added** + +- Provide headers on mgmt token fetch [\#543](https://github.com/auth0/node-auth0/pull/543) ([davidpatrick](https://github.com/davidpatrick)) + +**Changed** + +- [SDK-1975] Use exponential backoff rather than rate limit headers [\#538](https://github.com/auth0/node-auth0/pull/538) ([adamjmcgrath](https://github.com/adamjmcgrath)) + +**Fixed** + +- Bumps Rest-Facade Dependencies [\#542](https://github.com/auth0/node-auth0/pull/542) ([davidpatrick](https://github.com/davidpatrick)) + +[Full Changelog](https://github.com/auth0/node-auth0/compare/v2.29.0...v2.30.0) + ## [v2.29.0](https://github.com/auth0/node-auth0/tree/v2.29.0) (2020-09-23) **Added** diff --git a/docs/RetryRestClient.js.html b/docs/RetryRestClient.js.html index b796e2a5b..ae8feeebe 100644 --- a/docs/RetryRestClient.js.html +++ b/docs/RetryRestClient.js.html @@ -41,9 +41,12 @@

RetryRestClient.js

var retry = require('retry');
 var ArgumentError = require('rest-facade').ArgumentError;
-var assign = Object.assign || require('object.assign');
 
-var DEFAULT_OPTIONS = { maxRetries: 10, enabled: true };
+var DEFAULT_OPTIONS = {
+  maxRetries: 3,
+  enabled: true,
+  randomize: true
+};
 
 /**
  * @class RetryRestClient
@@ -54,13 +57,14 @@ 

RetryRestClient.js

* @param {Object} [options] Options for the RetryRestClient. * @param {Object} [options.enabled:true] Enabled or Disable Retry Policy functionality. * @param {Number} [options.maxRetries=10] The maximum amount of times to retry the operation. Default is 10. + * @param {*} [options.*] Any options that are available in https://github.com/tim-kos/node-retry#retryoperationoptions */ var RetryRestClient = function(restClient, options) { if (restClient === null || typeof restClient !== 'object') { throw new ArgumentError('Must provide RestClient'); } - var params = assign({}, DEFAULT_OPTIONS, options); + var params = Object.assign({}, DEFAULT_OPTIONS, options); if (typeof params.enabled !== 'boolean') { throw new ArgumentError('Must provide enabled boolean value'); @@ -71,8 +75,8 @@

RetryRestClient.js

} this.restClient = restClient; - this.maxRetries = params.maxRetries; this.enabled = params.enabled; + this.retryOptions = Object.assign({ retries: params.maxRetries }, params); }; RetryRestClient.prototype.getAll = function(/* [params], [callback] */) { @@ -122,16 +126,9 @@

RetryRestClient.js

return this.restClient[method].apply(this.restClient, args); } - var retryOptions = { - retries: this.maxRetries, - factor: 1, - minTimeout: 1, // retry immediate, use custom logic to control this. - randomize: false - }; - var self = this; - var promise = new Promise(function(resolve, reject) { - var operation = retry.operation(retryOptions); + return new Promise(function(resolve, reject) { + var operation = retry.operation(self.retryOptions); operation.attempt(function() { self.restClient[method] @@ -140,57 +137,13 @@

RetryRestClient.js

resolve(body); }) .catch(function(err) { - self.invokeRetry(err, operation, reject); + if (err && err.statusCode === 429 && operation.retry(err)) { + return; + } + reject(err); }); }); }); - - return promise; -}; - -RetryRestClient.prototype.invokeRetry = function(err, operation, reject) { - var ratelimits = this.extractRatelimits(err); - if (ratelimits) { - var delay = ratelimits.reset * 1000 - new Date().getTime(); - if (delay > 0) { - this.retryWithDelay(delay, operation, err, reject); - } else { - this.retryWithImmediate(operation, err, reject); - } - } else { - reject(err); - } -}; - -RetryRestClient.prototype.extractRatelimits = function(err) { - if (err && err.statusCode === 429 && err.originalError && err.originalError.response) { - var headers = err.originalError.response.header; - if (headers && headers['x-ratelimit-limit']) { - return { - limit: headers['x-ratelimit-limit'], - remaining: headers['x-ratelimit-remaining'], - reset: headers['x-ratelimit-reset'] - }; - } - } - - return; -}; - -RetryRestClient.prototype.retryWithImmediate = function(operation, err, reject) { - if (operation.retry(err)) { - return; - } - reject(err); -}; - -RetryRestClient.prototype.retryWithDelay = function(delay, operation, err, reject) { - setTimeout(() => { - if (operation.retry(err)) { - return; - } - reject(err); - }, delay); }; module.exports = RetryRestClient; @@ -206,7 +159,7 @@

RetryRestClient.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_DatabaseAuthenticator.js.html b/docs/auth_DatabaseAuthenticator.js.html index 4169d79cd..84054ae50 100644 --- a/docs/auth_DatabaseAuthenticator.js.html +++ b/docs/auth_DatabaseAuthenticator.js.html @@ -348,7 +348,7 @@

auth/DatabaseAuthenticator.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_OAUthWithIDTokenValidation.js.html b/docs/auth_OAUthWithIDTokenValidation.js.html index aad17517c..8dd7204bd 100644 --- a/docs/auth_OAUthWithIDTokenValidation.js.html +++ b/docs/auth_OAUthWithIDTokenValidation.js.html @@ -175,7 +175,7 @@

auth/OAUthWithIDTokenValidation.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_OAuthAuthenticator.js.html b/docs/auth_OAuthAuthenticator.js.html index 7ff135611..b11803f8b 100644 --- a/docs/auth_OAuthAuthenticator.js.html +++ b/docs/auth_OAuthAuthenticator.js.html @@ -455,7 +455,7 @@

auth/OAuthAuthenticator.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_PasswordlessAuthenticator.js.html b/docs/auth_PasswordlessAuthenticator.js.html index 82605d77a..fec91d017 100644 --- a/docs/auth_PasswordlessAuthenticator.js.html +++ b/docs/auth_PasswordlessAuthenticator.js.html @@ -290,7 +290,7 @@

auth/PasswordlessAuthenticator.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_TokensManager.js.html b/docs/auth_TokensManager.js.html index 5f8bbb2d3..ef9d11300 100644 --- a/docs/auth_TokensManager.js.html +++ b/docs/auth_TokensManager.js.html @@ -226,7 +226,7 @@

auth/TokensManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_UsersManager.js.html b/docs/auth_UsersManager.js.html index 0553607bf..8b0a3f85a 100644 --- a/docs/auth_UsersManager.js.html +++ b/docs/auth_UsersManager.js.html @@ -223,7 +223,7 @@

auth/UsersManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_idToken.js.html b/docs/auth_idToken.js.html index 7678a90d8..a4d97eb9c 100644 --- a/docs/auth_idToken.js.html +++ b/docs/auth_idToken.js.html @@ -202,7 +202,7 @@

auth/idToken.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/auth_index.js.html b/docs/auth_index.js.html index 9bb4109d6..1d6bcad7c 100644 --- a/docs/auth_index.js.html +++ b/docs/auth_index.js.html @@ -45,7 +45,6 @@

auth/index.js

var utils = require('../utils'); var jsonToBase64 = utils.jsonToBase64; var ArgumentError = require('rest-facade').ArgumentError; -var assign = Object.assign || require('object.assign'); // Authenticators. var OAuthAuthenticator = require('./OAuthAuthenticator'); @@ -105,7 +104,7 @@

auth/index.js

clientId: options.clientId, domain: options.domain, clientSecret: options.clientSecret, - headers: assign(defaultHeaders, options.headers || {}), + headers: Object.assign(defaultHeaders, options.headers || {}), baseUrl: util.format(BASE_URL_FORMAT, options.domain), supportedAlgorithms: options.supportedAlgorithms, __bypassIdTokenValidation: options.__bypassIdTokenValidation @@ -616,7 +615,7 @@

auth/index.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/errors.js.html b/docs/errors.js.html index 84241046c..47cafa47d 100644 --- a/docs/errors.js.html +++ b/docs/errors.js.html @@ -111,7 +111,7 @@

errors.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/external-RestClient.html b/docs/external-RestClient.html index 9245e9cfe..89d3d4961 100644 --- a/docs/external-RestClient.html +++ b/docs/external-RestClient.html @@ -1639,7 +1639,7 @@


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/global.html b/docs/global.html index 760b8d6e5..238441a42 100644 --- a/docs/global.html +++ b/docs/global.html @@ -423,7 +423,7 @@

Returns:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/index.html b/docs/index.html index 67b1a2e0c..4b50ba5b0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -176,7 +176,7 @@

License


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/index.js.html b/docs/index.js.html index f3a7cabda..66aff9ef6 100644 --- a/docs/index.js.html +++ b/docs/index.js.html @@ -61,7 +61,7 @@

index.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_BlacklistedTokensManager.js.html b/docs/management_BlacklistedTokensManager.js.html index 45b17e58d..a7bdbebb5 100644 --- a/docs/management_BlacklistedTokensManager.js.html +++ b/docs/management_BlacklistedTokensManager.js.html @@ -153,7 +153,7 @@

management/BlacklistedTokensManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_BrandingManager.js.html b/docs/management_BrandingManager.js.html index a46e750d9..831cb634f 100644 --- a/docs/management_BrandingManager.js.html +++ b/docs/management_BrandingManager.js.html @@ -155,7 +155,7 @@

management/BrandingManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_ClientGrantsManager.js.html b/docs/management_ClientGrantsManager.js.html index c2935373a..f8f9fe4a3 100644 --- a/docs/management_ClientGrantsManager.js.html +++ b/docs/management_ClientGrantsManager.js.html @@ -216,7 +216,7 @@

management/ClientGrantsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_ClientsManager.js.html b/docs/management_ClientsManager.js.html index 7ec033e57..d3ebc6af3 100644 --- a/docs/management_ClientsManager.js.html +++ b/docs/management_ClientsManager.js.html @@ -238,7 +238,7 @@

management/ClientsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_ConnectionsManager.js.html b/docs/management_ConnectionsManager.js.html index 33c3252cc..dd27853f6 100644 --- a/docs/management_ConnectionsManager.js.html +++ b/docs/management_ConnectionsManager.js.html @@ -284,7 +284,7 @@

management/ConnectionsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_CustomDomainsManager.js.html b/docs/management_CustomDomainsManager.js.html index 86fed6d7c..24a62dd45 100644 --- a/docs/management_CustomDomainsManager.js.html +++ b/docs/management_CustomDomainsManager.js.html @@ -241,7 +241,7 @@

management/CustomDomainsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_DeviceCredentialsManager.js.html b/docs/management_DeviceCredentialsManager.js.html index c90c981a9..8db772246 100644 --- a/docs/management_DeviceCredentialsManager.js.html +++ b/docs/management_DeviceCredentialsManager.js.html @@ -180,7 +180,7 @@

management/DeviceCredentialsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_EmailProviderManager.js.html b/docs/management_EmailProviderManager.js.html index ccd0bb31d..02c10e4b7 100644 --- a/docs/management_EmailProviderManager.js.html +++ b/docs/management_EmailProviderManager.js.html @@ -198,7 +198,7 @@

management/EmailProviderManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_EmailTemplatesManager.js.html b/docs/management_EmailTemplatesManager.js.html index 9f2ed86de..d13675960 100644 --- a/docs/management_EmailTemplatesManager.js.html +++ b/docs/management_EmailTemplatesManager.js.html @@ -180,7 +180,7 @@

management/EmailTemplatesManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_GrantsManager.js.html b/docs/management_GrantsManager.js.html index 47043ef2e..5d29d57da 100644 --- a/docs/management_GrantsManager.js.html +++ b/docs/management_GrantsManager.js.html @@ -170,7 +170,7 @@

management/GrantsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_GuardianManager.js.html b/docs/management_GuardianManager.js.html index 314147d7b..9bce8eaff 100644 --- a/docs/management_GuardianManager.js.html +++ b/docs/management_GuardianManager.js.html @@ -508,7 +508,7 @@

management/GuardianManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_HooksManager.js.html b/docs/management_HooksManager.js.html index a95599d37..7a1e99c99 100644 --- a/docs/management_HooksManager.js.html +++ b/docs/management_HooksManager.js.html @@ -419,7 +419,7 @@

management/HooksManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_JobsManager.js.html b/docs/management_JobsManager.js.html index 0366d2afb..431f8bea0 100644 --- a/docs/management_JobsManager.js.html +++ b/docs/management_JobsManager.js.html @@ -165,42 +165,7 @@

management/JobsManager.js

return this.jobs.get(params); }; -/** - * Given a path to a file and a connection id, create a new job that imports the - * users contained in the file or JSON string and associate them with the given - * connection. - * @deprecated since version 2.26. It will be deleted in version 3.0. - * - * @method importUsers - * @memberOf module:management.JobsManager.prototype - * - * @example - * var params = { - * connection_id: '{CONNECTION_ID}', - * users: '{PATH_TO_USERS_FILE}' // or users_json: '{USERS_JSON_STRING}' - * }; - * - * management.jobs.importUsers(params, function (err) { - * if (err) { - * // Handle error. - * } - * }); - * - * @param {Object} data Users import data. - * @param {String} data.connection_id connection_id of the connection to which users will be imported. - * @param {String} [data.users] Path to the users data file. Either users or users_json is mandatory. - * @param {String} [data.users_json] JSON data for the users. - * @param {Boolean} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false). - * @param {Boolean} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false). - * @param {Function} [cb] Callback function. - * - * @return {Promise|undefined} - */ -JobsManager.prototype.importUsers = function(data, cb) { - console.warn( - '"importUsers" has been deprecated as it was inconsistent with the API. Please, use "importUsersJob" which returns the response data directly.' - ); - +JobsManager.prototype._importUsers = function(data, cb) { var options = this.options; var url = options.baseUrl + '/jobs/users-imports'; var userData = data.users_json ? Buffer.from(data.users_json) : fs.createReadStream(data.users); @@ -244,6 +209,44 @@

management/JobsManager.js

return promise; }; +/** + * Given a path to a file and a connection id, create a new job that imports the + * users contained in the file or JSON string and associate them with the given + * connection. + * @deprecated since version 2.26. It will be deleted in version 3.0. + * + * @method importUsers + * @memberOf module:management.JobsManager.prototype + * + * @example + * var params = { + * connection_id: '{CONNECTION_ID}', + * users: '{PATH_TO_USERS_FILE}' // or users_json: '{USERS_JSON_STRING}' + * }; + * + * management.jobs.importUsers(params, function (err) { + * if (err) { + * // Handle error. + * } + * }); + * + * @param {Object} data Users import data. + * @param {String} data.connection_id connection_id of the connection to which users will be imported. + * @param {String} [data.users] Path to the users data file. Either users or users_json is mandatory. + * @param {String} [data.users_json] JSON data for the users. + * @param {Boolean} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false). + * @param {Boolean} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false). + * @param {Function} [cb] Callback function. + * + * @return {Promise|undefined} + */ +JobsManager.prototype.importUsers = function(data, cb) { + console.warn( + '"importUsers" has been deprecated as it was inconsistent with the API. Please, use "importUsersJob" which returns the response data directly.' + ); + return this._importUsers(data, cb); +}; + /** * Given a path to a file and a connection id, create a new job that imports the * users contained in the file or JSON string and associate them with the given @@ -275,7 +278,7 @@

management/JobsManager.js

* @return {Promise|undefined} */ JobsManager.prototype.importUsersJob = function(data, cb) { - var promise = this.importUsers(data).then(response => response.data); + var promise = this._importUsers(data).then(response => response.data); // Don't return a promise if a callback was given. if (cb && cb instanceof Function) { @@ -402,6 +405,10 @@

management/JobsManager.js

* * @param {Object} data User data object. * @param {String} data.user_id ID of the user to be verified. + * @param {String} [data.client_id] client_id of the client (application). If no value provided, the global Client ID will be used. + * @param {Object} [data.identity] Used to verify secondary, federated, and passwordless-email identities. + * @param {String} data.identity.user_id user_id of the identity. + * @param {String} data.identity.provider provider of the identity. * @param {Function} [cb] Callback function. * * @return {Promise|undefined} @@ -432,7 +439,7 @@

management/JobsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_LogStreamsManager.js.html b/docs/management_LogStreamsManager.js.html index 227b06de3..de7347290 100644 --- a/docs/management_LogStreamsManager.js.html +++ b/docs/management_LogStreamsManager.js.html @@ -230,7 +230,7 @@

management/LogStreamsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_LogsManager.js.html b/docs/management_LogsManager.js.html index 1a930eac7..626a5a812 100644 --- a/docs/management_LogsManager.js.html +++ b/docs/management_LogsManager.js.html @@ -165,7 +165,7 @@

management/LogsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_ManagementTokenProvider.js.html b/docs/management_ManagementTokenProvider.js.html index ac4eab2b2..0232d94eb 100644 --- a/docs/management_ManagementTokenProvider.js.html +++ b/docs/management_ManagementTokenProvider.js.html @@ -40,7 +40,6 @@

management/ManagementTokenProvider.js

var ArgumentError = require('rest-facade').ArgumentError;
-var assign = Object.assign || require('object.assign');
 var AuthenticationClient = require('../auth');
 var memoizer = require('lru-memoizer');
 var es6Promisify = require('es6-promisify');
@@ -61,13 +60,15 @@ 

management/ManagementTokenProvider.js

* @param {String} options.audience Audience of the Management API. * @param {Boolean} [options.enableCache=true] Enabled or Disable Cache * @param {Number} [options.cacheTTLInSeconds] By default the `expires_in` value will be used to determine the cached time of the token, this can be overridden. + * @param {Object} [options.headers] Additional headers that will be added to the outgoing requests. + * */ var ManagementTokenProvider = function(options) { if (!options || typeof options !== 'object') { throw new ArgumentError('Options must be an object'); } - var params = assign({}, DEFAULT_OPTIONS, options); + var params = Object.assign({}, DEFAULT_OPTIONS, options); if (!params.domain || params.domain.length === 0) { throw new ArgumentError('Must provide a domain'); @@ -109,7 +110,8 @@

management/ManagementTokenProvider.js

clientId: this.options.clientId, clientSecret: this.options.clientSecret, telemetry: this.options.telemetry, - clientInfo: this.options.clientInfo + clientInfo: this.options.clientInfo, + headers: this.options.headers }; this.authenticationClient = new AuthenticationClient(authenticationClientOptions); @@ -192,7 +194,7 @@

management/ManagementTokenProvider.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_MigrationsManager.js.html b/docs/management_MigrationsManager.js.html index 49e7de1e7..83f7d1029 100644 --- a/docs/management_MigrationsManager.js.html +++ b/docs/management_MigrationsManager.js.html @@ -159,7 +159,7 @@

management/MigrationsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_PromptsManager.js.html b/docs/management_PromptsManager.js.html index 3bc2b1e38..2b47677be 100644 --- a/docs/management_PromptsManager.js.html +++ b/docs/management_PromptsManager.js.html @@ -261,7 +261,7 @@

management/PromptsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_ResourceServersManager.js.html b/docs/management_ResourceServersManager.js.html index 81b7a795e..6fa45197d 100644 --- a/docs/management_ResourceServersManager.js.html +++ b/docs/management_ResourceServersManager.js.html @@ -238,7 +238,7 @@

management/ResourceServersManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_RolesManager.js.html b/docs/management_RolesManager.js.html index 3bac3c50b..6ea81f448 100644 --- a/docs/management_RolesManager.js.html +++ b/docs/management_RolesManager.js.html @@ -460,7 +460,7 @@

management/RolesManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_RulesConfigsManager.js.html b/docs/management_RulesConfigsManager.js.html index e93108762..83ada3db8 100644 --- a/docs/management_RulesConfigsManager.js.html +++ b/docs/management_RulesConfigsManager.js.html @@ -180,7 +180,7 @@

management/RulesConfigsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_RulesManager.js.html b/docs/management_RulesManager.js.html index 9189afd7b..1c67c6588 100644 --- a/docs/management_RulesManager.js.html +++ b/docs/management_RulesManager.js.html @@ -248,7 +248,7 @@

management/RulesManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_StatsManager.js.html b/docs/management_StatsManager.js.html index c2eab9e2f..9973a2c3d 100644 --- a/docs/management_StatsManager.js.html +++ b/docs/management_StatsManager.js.html @@ -174,7 +174,7 @@

management/StatsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_TenantManager.js.html b/docs/management_TenantManager.js.html index 4906cb06f..2f309905e 100644 --- a/docs/management_TenantManager.js.html +++ b/docs/management_TenantManager.js.html @@ -166,7 +166,7 @@

management/TenantManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_TicketsManager.js.html b/docs/management_TicketsManager.js.html index d4433cc16..3f5c4b379 100644 --- a/docs/management_TicketsManager.js.html +++ b/docs/management_TicketsManager.js.html @@ -139,6 +139,14 @@

management/TicketsManager.js

* } * }); * + * @param {Object} data + * @param {String} [data.result_url] URL the user will be redirected to once ticket is used. + * @param {String} data.user_id user_id for whom the ticket should be created. + * @param {Integer} [data.ttl_sec] Number of seconds for which the ticket is valid before expiration. + * @param {Boolean} [data.includeEmailInRedirect] Whether to include the email address as part of the result_url (true), or not (false). + * @param {Object} [data.identity] Used to verify secondary, federated, and passwordless-email identities. + * @param {String} data.identity.user_id user_id of the identity. + * @param {String} data.identity.provider provider of the identity. * @param {Function} [cb] Callback function. * @return {Promise} */ @@ -166,7 +174,7 @@

management/TicketsManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_UserBlocksManager.js.html b/docs/management_UserBlocksManager.js.html index 83ebc0464..9eeab6dc4 100644 --- a/docs/management_UserBlocksManager.js.html +++ b/docs/management_UserBlocksManager.js.html @@ -229,7 +229,7 @@

management/UserBlocksManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_UsersManager.js.html b/docs/management_UsersManager.js.html index 84faf8eeb..c134e3184 100644 --- a/docs/management_UsersManager.js.html +++ b/docs/management_UsersManager.js.html @@ -975,7 +975,7 @@

management/UsersManager.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/management_index.js.html b/docs/management_index.js.html index fe0d7df09..49e36799c 100644 --- a/docs/management_index.js.html +++ b/docs/management_index.js.html @@ -46,7 +46,6 @@

management/index.js

var jsonToBase64 = utils.jsonToBase64; var generateClientInfo = utils.generateClientInfo; var ArgumentError = require('rest-facade').ArgumentError; -var assign = Object.assign || require('object.assign'); // Managers. var ClientsManager = require('./ClientsManager'); @@ -155,12 +154,12 @@

management/index.js

}; var managerOptions = { - headers: assign(defaultHeaders, options.headers || {}), + headers: Object.assign(defaultHeaders, options.headers || {}), baseUrl: baseUrl }; if (options.token === undefined) { - var config = assign( + var config = Object.assign( { audience: util.format(MANAGEMENT_API_AUD_FORMAT, options.domain) }, options ); @@ -3716,7 +3715,7 @@

management/index.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.AuthenticationClient.html b/docs/module-auth.AuthenticationClient.html index 27fbffb99..9c53e80a7 100644 --- a/docs/module-auth.AuthenticationClient.html +++ b/docs/module-auth.AuthenticationClient.html @@ -103,7 +103,7 @@

n
Source:
@@ -508,7 +508,7 @@

databaseSource:
@@ -582,7 +582,7 @@

oauthSource:
@@ -656,7 +656,7 @@

passwordl
Source:
@@ -730,7 +730,7 @@

tokensSource:
@@ -804,7 +804,7 @@

usersSource:
@@ -888,7 +888,7 @@

changeP
Source:
@@ -1224,7 +1224,7 @@

Source:
@@ -1504,7 +1504,7 @@

get
Source:
@@ -1866,7 +1866,7 @@

getProfile<
Source:
@@ -2044,7 +2044,7 @@

password
Source:
@@ -2365,7 +2365,7 @@

refreshTo
Source:
@@ -2602,7 +2602,7 @@

Source:
@@ -2937,7 +2937,7 @@

reque
Source:
@@ -3264,7 +3264,7 @@

request
Source:
@@ -3872,7 +3872,7 @@

verifySM
Source:
@@ -4207,7 +4207,7 @@

Examples

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.DatabaseAuthenticator.html b/docs/module-auth.DatabaseAuthenticator.html index 0323c027b..40ef33056 100644 --- a/docs/module-auth.DatabaseAuthenticator.html +++ b/docs/module-auth.DatabaseAuthenticator.html @@ -1765,7 +1765,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.OAUthWithIDTokenValidation.html b/docs/module-auth.OAUthWithIDTokenValidation.html index 3e6cc617b..f785180e9 100644 --- a/docs/module-auth.OAUthWithIDTokenValidation.html +++ b/docs/module-auth.OAUthWithIDTokenValidation.html @@ -450,7 +450,7 @@
Parameters:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.OAuthAuthenticator.html b/docs/module-auth.OAuthAuthenticator.html index 2b8ec9516..b7dbfcb1e 100644 --- a/docs/module-auth.OAuthAuthenticator.html +++ b/docs/module-auth.OAuthAuthenticator.html @@ -2050,7 +2050,7 @@
Returns:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.PasswordlessAuthenticator.html b/docs/module-auth.PasswordlessAuthenticator.html index 8188ddb74..2e39b07c9 100644 --- a/docs/module-auth.PasswordlessAuthenticator.html +++ b/docs/module-auth.PasswordlessAuthenticator.html @@ -1442,7 +1442,7 @@
Examples

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.TokensManager.html b/docs/module-auth.TokensManager.html index aa2a9dd5a..043c6e8e2 100644 --- a/docs/module-auth.TokensManager.html +++ b/docs/module-auth.TokensManager.html @@ -352,7 +352,7 @@
Parameters:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.UsersManager.html b/docs/module-auth.UsersManager.html index 9d052ed04..92c1014cf 100644 --- a/docs/module-auth.UsersManager.html +++ b/docs/module-auth.UsersManager.html @@ -1009,7 +1009,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-auth.html b/docs/module-auth.html index d9b6ddd08..346bec813 100644 --- a/docs/module-auth.html +++ b/docs/module-auth.html @@ -108,7 +108,7 @@

Classes


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-errors.html b/docs/module-errors.html index 87c7b942e..270f48ad5 100644 --- a/docs/module-errors.html +++ b/docs/module-errors.html @@ -254,7 +254,7 @@

(st
- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.BlacklistedTokensManager.html b/docs/module-management.BlacklistedTokensManager.html index 32829ab33..2586666da 100644 --- a/docs/module-management.BlacklistedTokensManager.html +++ b/docs/module-management.BlacklistedTokensManager.html @@ -991,7 +991,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.BrandingManager.html b/docs/module-management.BrandingManager.html index 311700e18..d85fa4d96 100644 --- a/docs/module-management.BrandingManager.html +++ b/docs/module-management.BrandingManager.html @@ -942,7 +942,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ClientGrantsManager.html b/docs/module-management.ClientGrantsManager.html index bab6cdb62..d2bd4d7ea 100644 --- a/docs/module-management.ClientGrantsManager.html +++ b/docs/module-management.ClientGrantsManager.html @@ -1636,7 +1636,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ClientsManager.html b/docs/module-management.ClientsManager.html index 9a1754e3f..5cb200099 100644 --- a/docs/module-management.ClientsManager.html +++ b/docs/module-management.ClientsManager.html @@ -1904,7 +1904,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ConnectionsManager.html b/docs/module-management.ConnectionsManager.html index 90ae2d42a..e910d7ce5 100644 --- a/docs/module-management.ConnectionsManager.html +++ b/docs/module-management.ConnectionsManager.html @@ -2269,7 +2269,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.CustomDomainsManager.html b/docs/module-management.CustomDomainsManager.html index 717f43735..6d79cf133 100644 --- a/docs/module-management.CustomDomainsManager.html +++ b/docs/module-management.CustomDomainsManager.html @@ -1731,7 +1731,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.DeviceCredentialsManager.html b/docs/module-management.DeviceCredentialsManager.html index a782aade3..610f8cb50 100644 --- a/docs/module-management.DeviceCredentialsManager.html +++ b/docs/module-management.DeviceCredentialsManager.html @@ -1215,7 +1215,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.EmailProviderManager.html b/docs/module-management.EmailProviderManager.html index 8c31e79a6..be1aee0ca 100644 --- a/docs/module-management.EmailProviderManager.html +++ b/docs/module-management.EmailProviderManager.html @@ -1480,7 +1480,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.EmailTemplatesManager.html b/docs/module-management.EmailTemplatesManager.html index fb4eb3ca6..b447bd49a 100644 --- a/docs/module-management.EmailTemplatesManager.html +++ b/docs/module-management.EmailTemplatesManager.html @@ -1304,7 +1304,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.GrantsManager.html b/docs/module-management.GrantsManager.html index e9e9b9705..7c2cb7236 100644 --- a/docs/module-management.GrantsManager.html +++ b/docs/module-management.GrantsManager.html @@ -842,7 +842,7 @@

deleteGran
Source:
@@ -1515,7 +1515,7 @@

Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.GuardianManager.html b/docs/module-management.GuardianManager.html index cc6f98c08..ecd70a11e 100644 --- a/docs/module-management.GuardianManager.html +++ b/docs/module-management.GuardianManager.html @@ -4415,7 +4415,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.HooksManager.html b/docs/module-management.HooksManager.html index 7efda891d..864e70a74 100644 --- a/docs/module-management.HooksManager.html +++ b/docs/module-management.HooksManager.html @@ -3099,7 +3099,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.JobsManager.html b/docs/module-management.JobsManager.html index 92019d6f5..c91bc784c 100644 --- a/docs/module-management.JobsManager.html +++ b/docs/module-management.JobsManager.html @@ -616,7 +616,7 @@

errorsSource:
@@ -890,7 +890,7 @@

exportUser
Source:
@@ -1582,7 +1582,7 @@

importUser
Source:
@@ -2010,7 +2010,7 @@

importU
Source:
@@ -2436,7 +2436,7 @@

verifyEmai
Source:
@@ -2521,6 +2521,8 @@

Parameters:
Type + Attributes + @@ -2546,6 +2548,14 @@
Parameters:
+ + + + + + + + @@ -2556,6 +2566,155 @@
Parameters:
+ + + + client_id + + + + + +String + + + + + + + + + <optional>
+ + + + + + + + + + + +

client_id of the client (application). If no value provided, the global Client ID will be used.

+ + + + + + + + + identity + + + + + +Object + + + + + + + + + <optional>
+ + + + + + + + + + + +

Used to verify secondary, federated, and passwordless-email identities.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
user_id + + +String + + + + +

user_id of the identity.

+ +
provider + + +String + + + + +

provider of the identity.

+ +
+ + + + + + @@ -2676,7 +2835,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.LogStreamsManager.html b/docs/module-management.LogStreamsManager.html index 9bd1fb796..97e865ebe 100644 --- a/docs/module-management.LogStreamsManager.html +++ b/docs/module-management.LogStreamsManager.html @@ -1763,7 +1763,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.LogsManager.html b/docs/module-management.LogsManager.html index 80aa4cf03..eb30d022d 100644 --- a/docs/module-management.LogsManager.html +++ b/docs/module-management.LogsManager.html @@ -1286,7 +1286,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ManagementClient.html b/docs/module-management.ManagementClient.html index eb4b83b88..912ee10ff 100644 --- a/docs/module-management.ManagementClient.html +++ b/docs/module-management.ManagementClient.html @@ -106,7 +106,7 @@

new M
Source:
@@ -763,7 +763,7 @@

blac
Source:
@@ -838,7 +838,7 @@

brandingSource:
@@ -913,7 +913,7 @@

clientGra
Source:
@@ -988,7 +988,7 @@

clientsSource:
@@ -1063,7 +1063,7 @@

connection
Source:
@@ -1138,7 +1138,7 @@

customDo
Source:
@@ -1213,7 +1213,7 @@

devi
Source:
@@ -1288,7 +1288,7 @@

emailPro
Source:
@@ -1363,7 +1363,7 @@

emailTe
Source:
@@ -1438,7 +1438,7 @@

grantsSource:
@@ -1513,7 +1513,7 @@

guardianSource:
@@ -1588,7 +1588,7 @@

hooksSource:
@@ -1662,7 +1662,7 @@

jobsSource:
@@ -1736,7 +1736,7 @@

logsSource:
@@ -1810,7 +1810,7 @@

logStreams<
Source:
@@ -1884,7 +1884,7 @@

migrations<
Source:
@@ -1958,7 +1958,7 @@

promptsSource:
@@ -2033,7 +2033,7 @@

resour
Source:
@@ -2108,7 +2108,7 @@

rolesSource:
@@ -2183,7 +2183,7 @@

rulesSource:
@@ -2257,7 +2257,7 @@

rulesConf
Source:
@@ -2331,7 +2331,7 @@

statsSource:
@@ -2405,7 +2405,7 @@

tenantSource:
@@ -2479,7 +2479,7 @@

ticketsSource:
@@ -2554,7 +2554,7 @@

userBlocks<
Source:
@@ -2629,7 +2629,7 @@

usersSource:
@@ -2713,7 +2713,7 @@

addHookS
Source:
@@ -3018,7 +3018,7 @@

a
Source:
@@ -3397,7 +3397,7 @@

Source:
@@ -3754,7 +3754,7 @@

assi
Source:
@@ -4111,7 +4111,7 @@

blackli
Source:
@@ -4411,7 +4411,7 @@

Source:
@@ -4629,7 +4629,7 @@

createCli
Source:
@@ -4847,7 +4847,7 @@

crea
Source:
@@ -5065,7 +5065,7 @@

creat
Source:
@@ -5283,7 +5283,7 @@

cre
Source:
@@ -5501,7 +5501,7 @@

Source:
@@ -5719,7 +5719,7 @@

cr
Source:
@@ -5935,7 +5935,7 @@

Source:
@@ -6119,7 +6119,7 @@

Source:
@@ -6299,7 +6299,7 @@

createHook<
Source:
@@ -6517,7 +6517,7 @@

create
Source:
@@ -6735,7 +6735,7 @@

Source:
@@ -6927,7 +6927,7 @@

c
Source:
@@ -7145,7 +7145,7 @@

createRole<
Source:
@@ -7364,7 +7364,7 @@

createRule<
Source:
@@ -7582,7 +7582,7 @@

createUser<
Source:
@@ -7802,7 +7802,7 @@

deleteA
Source:
@@ -7986,7 +7986,7 @@

deleteCli
Source:
@@ -8255,7 +8255,7 @@

dele
Source:
@@ -8524,7 +8524,7 @@

delet
Source:
@@ -8793,7 +8793,7 @@

del
Source:
@@ -9062,7 +9062,7 @@

Source:
@@ -9333,7 +9333,7 @@

de
Source:
@@ -9517,7 +9517,7 @@

Source:
@@ -9786,7 +9786,7 @@

deleteHook<
Source:
@@ -10055,7 +10055,7 @@

delete
Source:
@@ -10324,7 +10324,7 @@

d
Source:
@@ -10593,7 +10593,7 @@

deleteRole<
Source:
@@ -10862,7 +10862,7 @@

deleteRule<
Source:
@@ -11131,7 +11131,7 @@

dele
Source:
@@ -11400,7 +11400,7 @@

deleteUser<
Source:
@@ -11669,7 +11669,7 @@

Source:
@@ -11970,7 +11970,7 @@

Source:
@@ -12267,7 +12267,7 @@

exportUser
Source:
@@ -12681,7 +12681,7 @@

getAcce
Source:
@@ -12789,7 +12789,7 @@

ge
Source:
@@ -12973,7 +12973,7 @@

g
Source:
@@ -13153,7 +13153,7 @@

ge
Source:
@@ -13406,7 +13406,7 @@

getClientSource:
@@ -13675,7 +13675,7 @@

getCli
Source:
@@ -14002,7 +14002,7 @@

getClients<
Source:
@@ -14329,7 +14329,7 @@

getConne
Source:
@@ -14598,7 +14598,7 @@

getConn
Source:
@@ -14925,7 +14925,7 @@

getCus
Source:
@@ -15194,7 +15194,7 @@

getCu
Source:
@@ -15310,7 +15310,7 @@

getDaily
Source:
@@ -15610,7 +15610,7 @@

g
Source:
@@ -15826,7 +15826,7 @@

getEm
Source:
@@ -16141,7 +16141,7 @@

getEm
Source:
@@ -16410,7 +16410,7 @@

getGrantsSource:
@@ -16814,7 +16814,7 @@

Source:
@@ -17079,7 +17079,7 @@

Source:
@@ -17344,7 +17344,7 @@

Source:
@@ -17558,7 +17558,7 @@

get
Source:
@@ -17738,7 +17738,7 @@

Source:
@@ -17952,7 +17952,7 @@

Source:
@@ -18132,7 +18132,7 @@

Source:
@@ -18312,7 +18312,7 @@

ge
Source:
@@ -18492,7 +18492,7 @@

getHookSource:
@@ -18761,7 +18761,7 @@

getHooksSource:
@@ -19088,7 +19088,7 @@

getHook
Source:
@@ -19358,7 +19358,7 @@

getJobSource:
@@ -19632,7 +19632,7 @@

getLogSource:
@@ -19901,7 +19901,7 @@

getLogsSource:
@@ -20408,7 +20408,7 @@

getLogStr
Source:
@@ -20677,7 +20677,7 @@

getMigra
Source:
@@ -20862,7 +20862,7 @@

g
Source:
@@ -21086,7 +21086,7 @@

get
Source:
@@ -21270,7 +21270,7 @@

getR
Source:
@@ -21539,7 +21539,7 @@

get
Source:
@@ -21866,7 +21866,7 @@

getRoleSource:
@@ -22135,7 +22135,7 @@

getRolesSource:
@@ -22462,7 +22462,7 @@

getRuleSource:
@@ -22731,7 +22731,7 @@

getRulesSource:
@@ -23058,7 +23058,7 @@

getRul
Source:
@@ -23242,7 +23242,7 @@

getT
Source:
@@ -23426,7 +23426,7 @@

getUserSource:
@@ -23691,7 +23691,7 @@

getUserB
Source:
@@ -23960,7 +23960,7 @@

Source:
@@ -24229,7 +24229,7 @@

getUserLog
Source:
@@ -24604,7 +24604,7 @@

get
Source:
@@ -24979,7 +24979,7 @@

getUserRo
Source:
@@ -25354,7 +25354,7 @@

getUsersSource:
@@ -25755,7 +25755,7 @@

getUse
Source:
@@ -25976,7 +25976,7 @@

getUser
Source:
@@ -26276,7 +26276,7 @@

importUser
Source:
@@ -26702,7 +26702,7 @@

Source:
@@ -26971,7 +26971,7 @@

linkUsersSource:
@@ -27306,7 +27306,7 @@

Source:
@@ -27571,7 +27571,7 @@

remo
Source:
@@ -27876,7 +27876,7 @@

Source:
@@ -28255,7 +28255,7 @@

Source:
@@ -28612,7 +28612,7 @@

re
Source:
@@ -28969,7 +28969,7 @@

Source:
@@ -29240,7 +29240,7 @@

setRule
Source:
@@ -29597,7 +29597,7 @@

unblockUse
Source:
@@ -29866,7 +29866,7 @@

unblockUse
Source:
@@ -30135,7 +30135,7 @@

unlinkUser
Source:
@@ -30458,7 +30458,7 @@

upda
Source:
@@ -30767,7 +30767,7 @@

Source:
@@ -31020,7 +31020,7 @@

updateCli
Source:
@@ -31326,7 +31326,7 @@

upda
Source:
@@ -31636,7 +31636,7 @@

updat
Source:
@@ -31942,7 +31942,7 @@

up
Source:
@@ -32195,7 +32195,7 @@

u
Source:
@@ -32501,7 +32501,7 @@

u
Source:
@@ -32753,7 +32753,7 @@

u
Source:
@@ -33003,7 +33003,7 @@

Source:
@@ -33254,7 +33254,7 @@

Source:
@@ -33555,7 +33555,7 @@

Source:
@@ -33856,7 +33856,7 @@

Source:
@@ -34106,7 +34106,7 @@

updateHook<
Source:
@@ -34411,7 +34411,7 @@

upda
Source:
@@ -34716,7 +34716,7 @@

update
Source:
@@ -35021,7 +35021,7 @@

updat
Source:
@@ -35241,7 +35241,7 @@

Source:
@@ -35457,7 +35457,7 @@

u
Source:
@@ -35763,7 +35763,7 @@

updateRole<
Source:
@@ -36068,7 +36068,7 @@

updateRule<
Source:
@@ -36373,7 +36373,7 @@

u
Source:
@@ -36589,7 +36589,7 @@

updateUser<
Source:
@@ -36895,7 +36895,7 @@

upd
Source:
@@ -37204,7 +37204,7 @@

ver
Source:
@@ -37442,7 +37442,7 @@

Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ManagementTokenProvider.html b/docs/module-management.ManagementTokenProvider.html index c543e4b39..1ecffb14d 100644 --- a/docs/module-management.ManagementTokenProvider.html +++ b/docs/module-management.ManagementTokenProvider.html @@ -102,7 +102,7 @@

Source:
@@ -462,6 +462,46 @@
Parameters:
+ + + + headers + + + + + +Object + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + +

Additional headers that will be added to the outgoing requests.

+ + + + + @@ -556,7 +596,7 @@

getAcce
Source:
@@ -633,7 +673,7 @@

Returns:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.MigrationsManager.html b/docs/module-management.MigrationsManager.html index 3354dd565..0b23f132f 100644 --- a/docs/module-management.MigrationsManager.html +++ b/docs/module-management.MigrationsManager.html @@ -885,7 +885,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.PromptsManager.html b/docs/module-management.PromptsManager.html index 82d7f1e73..3f138980e 100644 --- a/docs/module-management.PromptsManager.html +++ b/docs/module-management.PromptsManager.html @@ -839,7 +839,7 @@

Source:
@@ -1712,7 +1712,7 @@

Source:
@@ -2257,7 +2257,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.ResourceServersManager.html b/docs/module-management.ResourceServersManager.html index db59be4cf..95cd38f4a 100644 --- a/docs/module-management.ResourceServersManager.html +++ b/docs/module-management.ResourceServersManager.html @@ -1904,7 +1904,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.RetryRestClient.html b/docs/module-management.RetryRestClient.html index b2f5123f7..cdce49551 100644 --- a/docs/module-management.RetryRestClient.html +++ b/docs/module-management.RetryRestClient.html @@ -102,7 +102,7 @@

new Re
Source:
@@ -318,6 +318,46 @@

Parameters:
+ + + + * + + + + + +* + + + + + + + + + <optional>
+ + + + + + + + + + + + + + + +

Any options that are available in https://github.com/tim-kos/node-retry#retryoperationoptions

+ + + + + @@ -377,7 +417,7 @@
Parameters:

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.RolesManager.html b/docs/module-management.RolesManager.html index e9c74614b..9a79e8a0c 100644 --- a/docs/module-management.RolesManager.html +++ b/docs/module-management.RolesManager.html @@ -4293,7 +4293,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.RulesConfigsManager.html b/docs/module-management.RulesConfigsManager.html index 7b10a6545..43e19e470 100644 --- a/docs/module-management.RulesConfigsManager.html +++ b/docs/module-management.RulesConfigsManager.html @@ -1317,7 +1317,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.RulesManager.html b/docs/module-management.RulesManager.html index 29c6f4f7b..0ff68b398 100644 --- a/docs/module-management.RulesManager.html +++ b/docs/module-management.RulesManager.html @@ -1910,7 +1910,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.StatsManager.html b/docs/module-management.StatsManager.html index 600993f09..085ad162d 100644 --- a/docs/module-management.StatsManager.html +++ b/docs/module-management.StatsManager.html @@ -919,7 +919,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.TenantManager.html b/docs/module-management.TenantManager.html index 8b40dcbeb..f13494488 100644 --- a/docs/module-management.TenantManager.html +++ b/docs/module-management.TenantManager.html @@ -871,7 +871,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.TicketsManager.html b/docs/module-management.TicketsManager.html index b0ed45e73..4626a6fb3 100644 --- a/docs/module-management.TicketsManager.html +++ b/docs/module-management.TicketsManager.html @@ -609,7 +609,7 @@
Example
-

verifyEmail(cbopt) → {Promise}

+

verifyEmail(data, cbopt) → {Promise}

@@ -696,6 +696,322 @@
Parameters:
+ + + data + + + + + +Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeAttributesDescription
result_url + + +String + + + + + + <optional>
+ + + + + +
+

URL the user will be redirected to once ticket is used.

+ +
user_id + + +String + + + + + + + + + + +

user_id for whom the ticket should be created.

+ +
ttl_sec + + +Integer + + + + + + <optional>
+ + + + + +
+

Number of seconds for which the ticket is valid before expiration.

+ +
includeEmailInRedirect + + +Boolean + + + + + + <optional>
+ + + + + +
+

Whether to include the email address as part of the result_url (true), or not (false).

+ +
identity + + +Object + + + + + + <optional>
+ + + + + +
+

Used to verify secondary, federated, and passwordless-email identities.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescription
user_id + + +String + + + + +

user_id of the identity.

+ +
provider + + +String + + + + +

provider of the identity.

+ +
+ + +
+ + + + + + + cb @@ -805,7 +1121,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.UserBlocksManager.html b/docs/module-management.UserBlocksManager.html index d44f89a9a..f8f436791 100644 --- a/docs/module-management.UserBlocksManager.html +++ b/docs/module-management.UserBlocksManager.html @@ -1432,7 +1432,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.UsersManager.html b/docs/module-management.UsersManager.html index fb43bf61f..78f0ae3ca 100644 --- a/docs/module-management.UsersManager.html +++ b/docs/module-management.UsersManager.html @@ -6096,7 +6096,7 @@
Example

- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-management.html b/docs/module-management.html index 80a6047a9..61c269b90 100644 --- a/docs/module-management.html +++ b/docs/module-management.html @@ -174,7 +174,7 @@

Classes


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-utils.html b/docs/module-utils.html index dd3eca677..b50073309 100644 --- a/docs/module-utils.html +++ b/docs/module-utils.html @@ -363,7 +363,7 @@

(static)
- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:08 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/utils.js.html b/docs/utils.js.html index ce5eaa68d..1642f2a37 100644 --- a/docs/utils.js.html +++ b/docs/utils.js.html @@ -140,7 +140,7 @@

utils.js


- Generated by JSDoc 3.6.4 on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.6.4 on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/package.json b/package.json index 278cf1254..e7517a96e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0", - "version": "2.29.0", + "version": "2.30.0", "description": "SDK for Auth0 API v2", "main": "src/index.js", "files": [