Skip to content
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
13 changes: 13 additions & 0 deletions .talismanrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
fileignoreconfig:
- filename: jsdocs/stack_environment_index.js.html
checksum: e70125d5038c16be4c974b75780b252d2ba680f63a791dc788941996d6e2b2bc
- filename: .talisman
checksum: ef29fbb058801114e565011d7b292a00e86dd385ff2e77a06ddf62b253339d99
- filename: dist/node/contentstack-management.js
checksum: d0a2881a9f533cb24cd909792548617f70aea637d6f7ca0ff932ede72e5e57ee
- filename: dist/react-native/contentstack-management.js
checksum: 3f611ee5cc82bf3cf4135de830208ce448184c99364538435f35c6c67aaf2d9e
- filename: dist/web/contentstack-management.js
checksum: 8bf55c1cf4b9f59d2c47ae16e7b6b6476eab8b7aefb817a560a41f9c3c76b337
- filename: dist/nativescript/contentstack-management.js
checksum: b514e4144664db6b107c412655a36028e102e25b901ede0ee782be03e2380d14
59 changes: 33 additions & 26 deletions dist/es-modules/core/concurrency-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function ConcurrencyQueue(_ref) {
request: null,
response: null
};
}; // Request interseptor to queue the request
}; // Request interceptor to queue the request


var requestHandler = function requestHandler(request) {
Expand Down Expand Up @@ -165,6 +165,7 @@ export function ConcurrencyQueue(_ref) {
status: 408,
statusText: "timeout of ".concat(_this.config.timeout, "ms exceeded")
});
response = error.response;
} else {
return Promise.reject(responseHandler(error));
}
Expand All @@ -176,44 +177,50 @@ export function ConcurrencyQueue(_ref) {
return Promise.reject(responseHandler(error));
}

_this.running.shift();
_this.running.shift(); // Cool down the running requests

wait = 1000; // Cooldown the running requests

delay(wait);
error.config.retryCount = networkError;
return axios(updateRequestConfig(error, retryErrorType, wait));
} else if (_this.config.retryCondition && _this.config.retryCondition(error)) {
retryErrorType = "Error with status: ".concat(response.status);
}

if (_this.config.retryCondition && _this.config.retryCondition(error)) {
retryErrorType = error.response ? "Error with status: ".concat(response.status) : "Error Code:".concat(error.code);
networkError++;
return _this.retry(error, retryErrorType, networkError, wait);
}

if (networkError > _this.config.retryLimit) {
return Promise.reject(responseHandler(error));
}
return Promise.reject(responseHandler(error));
};

if (_this.config.retryDelayOptions) {
if (_this.config.retryDelayOptions.customBackoff) {
wait = _this.config.retryDelayOptions.customBackoff(networkError, error);
this.retry = function (error, retryErrorType, retryCount, waittime) {
var delaytime = waittime;

if (wait && wait <= 0) {
return Promise.reject(responseHandler(error));
}
} else if (_this.config.retryDelayOptions.base) {
wait = _this.config.retryDelayOptions.base * networkError;
if (retryCount > _this.config.retryLimit) {
return Promise.reject(responseHandler(error));
}

if (_this.config.retryDelayOptions) {
if (_this.config.retryDelayOptions.customBackoff) {
delaytime = _this.config.retryDelayOptions.customBackoff(retryCount, error);

if (delaytime && delaytime <= 0) {
return Promise.reject(responseHandler(error));
}
} else {
wait = _this.config.retryDelay;
} else if (_this.config.retryDelayOptions.base) {
delaytime = _this.config.retryDelayOptions.base * retryCount;
}

error.config.retryCount = networkError;
return new Promise(function (resolve) {
return setTimeout(function () {
return resolve(axios(updateRequestConfig(error, retryErrorType, wait)));
}, wait);
});
} else {
delaytime = _this.config.retryDelay;
}

return Promise.reject(responseHandler(error));
error.config.retryCount = retryCount;
return new Promise(function (resolve) {
return setTimeout(function () {
return resolve(axios(updateRequestConfig(error, retryErrorType, delaytime)));
}, delaytime);
});
};

this.interceptors = {
Expand Down
59 changes: 33 additions & 26 deletions dist/es5/core/concurrency-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function ConcurrencyQueue(_ref) {
request: null,
response: null
};
}; // Request interseptor to queue the request
}; // Request interceptor to queue the request


var requestHandler = function requestHandler(request) {
Expand Down Expand Up @@ -184,6 +184,7 @@ function ConcurrencyQueue(_ref) {
status: 408,
statusText: "timeout of ".concat(_this.config.timeout, "ms exceeded")
});
response = error.response;
} else {
return Promise.reject(responseHandler(error));
}
Expand All @@ -195,44 +196,50 @@ function ConcurrencyQueue(_ref) {
return Promise.reject(responseHandler(error));
}

_this.running.shift();
_this.running.shift(); // Cool down the running requests

wait = 1000; // Cooldown the running requests

delay(wait);
error.config.retryCount = networkError;
return axios(updateRequestConfig(error, retryErrorType, wait));
} else if (_this.config.retryCondition && _this.config.retryCondition(error)) {
retryErrorType = "Error with status: ".concat(response.status);
}

if (_this.config.retryCondition && _this.config.retryCondition(error)) {
retryErrorType = error.response ? "Error with status: ".concat(response.status) : "Error Code:".concat(error.code);
networkError++;
return _this.retry(error, retryErrorType, networkError, wait);
}

if (networkError > _this.config.retryLimit) {
return Promise.reject(responseHandler(error));
}
return Promise.reject(responseHandler(error));
};

if (_this.config.retryDelayOptions) {
if (_this.config.retryDelayOptions.customBackoff) {
wait = _this.config.retryDelayOptions.customBackoff(networkError, error);
this.retry = function (error, retryErrorType, retryCount, waittime) {
var delaytime = waittime;

if (wait && wait <= 0) {
return Promise.reject(responseHandler(error));
}
} else if (_this.config.retryDelayOptions.base) {
wait = _this.config.retryDelayOptions.base * networkError;
if (retryCount > _this.config.retryLimit) {
return Promise.reject(responseHandler(error));
}

if (_this.config.retryDelayOptions) {
if (_this.config.retryDelayOptions.customBackoff) {
delaytime = _this.config.retryDelayOptions.customBackoff(retryCount, error);

if (delaytime && delaytime <= 0) {
return Promise.reject(responseHandler(error));
}
} else {
wait = _this.config.retryDelay;
} else if (_this.config.retryDelayOptions.base) {
delaytime = _this.config.retryDelayOptions.base * retryCount;
}

error.config.retryCount = networkError;
return new Promise(function (resolve) {
return setTimeout(function () {
return resolve(axios(updateRequestConfig(error, retryErrorType, wait)));
}, wait);
});
} else {
delaytime = _this.config.retryDelay;
}

return Promise.reject(responseHandler(error));
error.config.retryCount = retryCount;
return new Promise(function (resolve) {
return setTimeout(function () {
return resolve(axios(updateRequestConfig(error, retryErrorType, delaytime)));
}, delaytime);
});
};

this.interceptors = {
Expand Down
2 changes: 1 addition & 1 deletion dist/nativescript/contentstack-management.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/node/contentstack-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react-native/contentstack-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/web/contentstack-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jsdocs/Asset.html
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:36 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:36 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:37 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Wed May 26 2021 15:44:36 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jun 17 2021 19:11:41 GMT+0530 (India Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>

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