contentful-management 11.8.0 → 11.8.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 +5 -2
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.node.js +134 -81
- 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/package.json +1 -1
|
@@ -22604,7 +22604,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22604
22604
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22605
22605
|
/* harmony export */ VERSION: () => (/* binding */ VERSION)
|
|
22606
22606
|
/* harmony export */ });
|
|
22607
|
-
const VERSION = "1.6.
|
|
22607
|
+
const VERSION = "1.6.4";
|
|
22608
22608
|
|
|
22609
22609
|
/***/ }),
|
|
22610
22610
|
|
|
@@ -23022,6 +23022,9 @@ function arrayToObject(arr) {
|
|
|
23022
23022
|
function formDataToJSON(formData) {
|
|
23023
23023
|
function buildPath(path, value, target, index) {
|
|
23024
23024
|
let name = path[index++];
|
|
23025
|
+
|
|
23026
|
+
if (name === '__proto__') return true;
|
|
23027
|
+
|
|
23025
23028
|
const isNumericKey = Number.isFinite(+name);
|
|
23026
23029
|
const isLast = index >= path.length;
|
|
23027
23030
|
name = !name && _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].isArray(target) ? target.length : name;
|
|
@@ -25295,7 +25298,7 @@ function createClient(params) {
|
|
|
25295
25298
|
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
25296
25299
|
var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
|
|
25297
25300
|
var userAgent = (0,contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__.getUserAgentHeader)( // @ts-expect-error
|
|
25298
|
-
"".concat(sdkMain, "/").concat("11.8.
|
|
25301
|
+
"".concat(sdkMain, "/").concat("11.8.1"), params.application, params.integration, params.feature);
|
|
25299
25302
|
var adapter = (0,_create_adapter__WEBPACK_IMPORTED_MODULE_1__.createAdapter)(params);
|
|
25300
25303
|
|
|
25301
25304
|
// Parameters<?> and ReturnType<?> only return the types of the last overload
|