contentful-management 11.6.1 → 11.7.1
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.
- package/dist/contentful-management.browser.js +3 -3
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.node.js +3 -3
- package/dist/contentful-management.node.js.map +1 -1
- package/dist/contentful-management.node.min.js +1 -1
- package/dist/es-modules/contentful-management.js +1 -1
- package/dist/es-modules/plain/plain-client-test.js +18 -1
- package/dist/typings/entities/comment.d.ts +1 -1
- package/dist/typings/entities/upload.d.ts +1 -0
- package/package.json +1 -1
|
@@ -22464,7 +22464,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22464
22464
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22465
22465
|
/* harmony export */ VERSION: () => (/* binding */ VERSION)
|
|
22466
22466
|
/* harmony export */ });
|
|
22467
|
-
const VERSION = "1.6.
|
|
22467
|
+
const VERSION = "1.6.3";
|
|
22468
22468
|
|
|
22469
22469
|
/***/ }),
|
|
22470
22470
|
|
|
@@ -22753,7 +22753,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22753
22753
|
*/
|
|
22754
22754
|
function combineURLs(baseURL, relativeURL) {
|
|
22755
22755
|
return relativeURL
|
|
22756
|
-
? baseURL.replace(
|
|
22756
|
+
? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')
|
|
22757
22757
|
: baseURL;
|
|
22758
22758
|
}
|
|
22759
22759
|
|
|
@@ -25154,7 +25154,7 @@ function createClient(params) {
|
|
|
25154
25154
|
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
25155
25155
|
var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
|
|
25156
25156
|
var userAgent = (0,contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__.getUserAgentHeader)( // @ts-expect-error
|
|
25157
|
-
"".concat(sdkMain, "/").concat("11.
|
|
25157
|
+
"".concat(sdkMain, "/").concat("11.7.1"), params.application, params.integration, params.feature);
|
|
25158
25158
|
var adapter = (0,_create_adapter__WEBPACK_IMPORTED_MODULE_1__.createAdapter)(params);
|
|
25159
25159
|
|
|
25160
25160
|
// Parameters<?> and ReturnType<?> only return the types of the last overload
|