Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.30.0 #544

Merged
merged 1 commit into from
Oct 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
77 changes: 15 additions & 62 deletions docs/RetryRestClient.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,12 @@ <h1 class="page-title">RetryRestClient.js</h1>
<article>
<pre class="prettyprint source linenums"><code>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
Expand All @@ -54,13 +57,14 @@ <h1 class="page-title">RetryRestClient.js</h1>
* @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');
Expand All @@ -71,8 +75,8 @@ <h1 class="page-title">RetryRestClient.js</h1>
}

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] */) {
Expand Down Expand Up @@ -122,16 +126,9 @@ <h1 class="page-title">RetryRestClient.js</h1>
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]
Expand All @@ -140,57 +137,13 @@ <h1 class="page-title">RetryRestClient.js</h1>
resolve(body);
})
.catch(function(err) {
self.invokeRetry(err, operation, reject);
if (err &amp;&amp; err.statusCode === 429 &amp;&amp; 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 &amp;&amp; err.statusCode === 429 &amp;&amp; err.originalError &amp;&amp; err.originalError.response) {
var headers = err.originalError.response.header;
if (headers &amp;&amp; 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;
Expand All @@ -206,7 +159,7 @@ <h1 class="page-title">RetryRestClient.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_DatabaseAuthenticator.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ <h1 class="page-title">auth/DatabaseAuthenticator.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_OAUthWithIDTokenValidation.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ <h1 class="page-title">auth/OAUthWithIDTokenValidation.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_OAuthAuthenticator.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ <h1 class="page-title">auth/OAuthAuthenticator.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_PasswordlessAuthenticator.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ <h1 class="page-title">auth/PasswordlessAuthenticator.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_TokensManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ <h1 class="page-title">auth/TokensManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_UsersManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ <h1 class="page-title">auth/UsersManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/auth_idToken.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ <h1 class="page-title">auth/idToken.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
5 changes: 2 additions & 3 deletions docs/auth_index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ <h1 class="page-title">auth/index.js</h1>
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');
Expand Down Expand Up @@ -105,7 +104,7 @@ <h1 class="page-title">auth/index.js</h1>
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
Expand Down Expand Up @@ -616,7 +615,7 @@ <h1 class="page-title">auth/index.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/errors.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h1 class="page-title">errors.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/external-RestClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,7 @@ <h2>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ <h2>License</h2>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h1 class="page-title">index.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_BlacklistedTokensManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h1 class="page-title">management/BlacklistedTokensManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_BrandingManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ <h1 class="page-title">management/BrandingManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_ClientGrantsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ <h1 class="page-title">management/ClientGrantsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_ClientsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h1 class="page-title">management/ClientsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_ConnectionsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ <h1 class="page-title">management/ConnectionsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_CustomDomainsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ <h1 class="page-title">management/CustomDomainsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_DeviceCredentialsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h1 class="page-title">management/DeviceCredentialsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_EmailProviderManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ <h1 class="page-title">management/EmailProviderManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_EmailTemplatesManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h1 class="page-title">management/EmailTemplatesManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_GrantsManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ <h1 class="page-title">management/GrantsManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_GuardianManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ <h1 class="page-title">management/GuardianManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/management_HooksManager.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ <h1 class="page-title">management/HooksManager.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Wed Sep 23 2020 13:43:07 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Thu Oct 22 2020 14:44:11 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Loading