contentful 11.5.7 → 11.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2624,7 +2624,7 @@ var contentful = (function (exports) {
2624
2624
  */
2625
2625
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
2626
2626
  var isRelativeUrl = !isAbsoluteURL(requestedURL);
2627
- if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
2627
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
2628
2628
  return combineURLs(baseURL, requestedURL);
2629
2629
  }
2630
2630
  return requestedURL;
@@ -3571,7 +3571,7 @@ var contentful = (function (exports) {
3571
3571
  return Promise.reject(reason);
3572
3572
  });
3573
3573
  }
3574
- var VERSION = "1.8.3";
3574
+ var VERSION = "1.8.4";
3575
3575
  var validators$1 = {};
3576
3576
 
3577
3577
  // eslint-disable-next-line func-names
@@ -10098,7 +10098,7 @@ var contentful = (function (exports) {
10098
10098
  http.defaults.baseURL = getGlobalOptions().environmentBaseUrl;
10099
10099
  }
10100
10100
  return {
10101
- version: "11.5.7",
10101
+ version: "11.5.9",
10102
10102
  getSpace: getSpace,
10103
10103
  getContentType: getContentType,
10104
10104
  getContentTypes: getContentTypes,
@@ -10225,7 +10225,7 @@ var contentful = (function (exports) {
10225
10225
  environment: 'master'
10226
10226
  };
10227
10227
  var config = Object.assign(Object.assign({}, defaultConfig), params);
10228
- var userAgentHeader = getUserAgentHeader("contentful.js/".concat("11.5.7"), config.application, config.integration);
10228
+ var userAgentHeader = getUserAgentHeader("contentful.js/".concat("11.5.9"), config.application, config.integration);
10229
10229
  config.headers = Object.assign(Object.assign({}, config.headers), {
10230
10230
  'Content-Type': 'application/vnd.contentful.delivery.v1+json',
10231
10231
  'X-Contentful-User-Agent': userAgentHeader