contentful-management 10.21.2 → 10.21.4
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 +597 -239
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +2 -2
- package/dist/contentful-management.node.js +911 -559
- package/dist/contentful-management.node.js.map +1 -1
- package/dist/contentful-management.node.min.js +2 -2
- package/dist/es-modules/contentful-management.js +1 -1
- package/package.json +2 -2
|
@@ -2855,7 +2855,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2855
2855
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "freezeSys", function() { return freezeSys; });
|
|
2856
2856
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getUserAgentHeader", function() { return getUserAgentHeader; });
|
|
2857
2857
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toPlainObject", function() { return toPlainObject; });
|
|
2858
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/fast-copy.js");
|
|
2858
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/contentful-sdk-core/node_modules/fast-copy/dist/fast-copy.js");
|
|
2859
2859
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
2860
2860
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! qs */ "../node_modules/qs/lib/index.js");
|
|
2861
2861
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_1__);
|
|
@@ -2873,17 +2873,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2873
2873
|
|
|
2874
2874
|
function ownKeys(object, enumerableOnly) {
|
|
2875
2875
|
var keys = Object.keys(object);
|
|
2876
|
-
|
|
2877
2876
|
if (Object.getOwnPropertySymbols) {
|
|
2878
2877
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
2879
2878
|
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
2880
2879
|
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
2881
2880
|
})), keys.push.apply(keys, symbols);
|
|
2882
2881
|
}
|
|
2883
|
-
|
|
2884
2882
|
return keys;
|
|
2885
2883
|
}
|
|
2886
|
-
|
|
2887
2884
|
function _objectSpread2(target) {
|
|
2888
2885
|
for (var i = 1; i < arguments.length; i++) {
|
|
2889
2886
|
var source = null != arguments[i] ? arguments[i] : {};
|
|
@@ -2893,10 +2890,8 @@ function _objectSpread2(target) {
|
|
|
2893
2890
|
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
2894
2891
|
});
|
|
2895
2892
|
}
|
|
2896
|
-
|
|
2897
2893
|
return target;
|
|
2898
2894
|
}
|
|
2899
|
-
|
|
2900
2895
|
function _typeof(obj) {
|
|
2901
2896
|
"@babel/helpers - typeof";
|
|
2902
2897
|
|
|
@@ -2906,55 +2901,47 @@ function _typeof(obj) {
|
|
|
2906
2901
|
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
2907
2902
|
}, _typeof(obj);
|
|
2908
2903
|
}
|
|
2909
|
-
|
|
2910
2904
|
function _wrapRegExp() {
|
|
2911
2905
|
_wrapRegExp = function (re, groups) {
|
|
2912
2906
|
return new BabelRegExp(re, void 0, groups);
|
|
2913
2907
|
};
|
|
2914
|
-
|
|
2915
2908
|
var _super = RegExp.prototype,
|
|
2916
|
-
|
|
2917
|
-
|
|
2909
|
+
_groups = new WeakMap();
|
|
2918
2910
|
function BabelRegExp(re, flags, groups) {
|
|
2919
2911
|
var _this = new RegExp(re, flags);
|
|
2920
|
-
|
|
2921
2912
|
return _groups.set(_this, groups || _groups.get(re)), _setPrototypeOf(_this, BabelRegExp.prototype);
|
|
2922
2913
|
}
|
|
2923
|
-
|
|
2924
2914
|
function buildGroups(result, re) {
|
|
2925
2915
|
var g = _groups.get(re);
|
|
2926
|
-
|
|
2927
2916
|
return Object.keys(g).reduce(function (groups, name) {
|
|
2928
|
-
|
|
2917
|
+
var i = g[name];
|
|
2918
|
+
if ("number" == typeof i) groups[name] = result[i];else {
|
|
2919
|
+
for (var k = 0; void 0 === result[i[k]] && k + 1 < i.length;) k++;
|
|
2920
|
+
groups[name] = result[i[k]];
|
|
2921
|
+
}
|
|
2922
|
+
return groups;
|
|
2929
2923
|
}, Object.create(null));
|
|
2930
2924
|
}
|
|
2931
|
-
|
|
2932
2925
|
return _inherits(BabelRegExp, RegExp), BabelRegExp.prototype.exec = function (str) {
|
|
2933
2926
|
var result = _super.exec.call(this, str);
|
|
2934
|
-
|
|
2935
2927
|
return result && (result.groups = buildGroups(result, this)), result;
|
|
2936
2928
|
}, BabelRegExp.prototype[Symbol.replace] = function (str, substitution) {
|
|
2937
2929
|
if ("string" == typeof substitution) {
|
|
2938
2930
|
var groups = _groups.get(this);
|
|
2939
|
-
|
|
2940
2931
|
return _super[Symbol.replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function (_, name) {
|
|
2941
2932
|
return "$" + groups[name];
|
|
2942
2933
|
}));
|
|
2943
2934
|
}
|
|
2944
|
-
|
|
2945
2935
|
if ("function" == typeof substitution) {
|
|
2946
2936
|
var _this = this;
|
|
2947
|
-
|
|
2948
2937
|
return _super[Symbol.replace].call(this, str, function () {
|
|
2949
2938
|
var args = arguments;
|
|
2950
2939
|
return "object" != typeof args[args.length - 1] && (args = [].slice.call(args)).push(buildGroups(args, _this)), substitution.apply(this, args);
|
|
2951
2940
|
});
|
|
2952
2941
|
}
|
|
2953
|
-
|
|
2954
2942
|
return _super[Symbol.replace].call(this, str, substitution);
|
|
2955
2943
|
}, _wrapRegExp.apply(this, arguments);
|
|
2956
2944
|
}
|
|
2957
|
-
|
|
2958
2945
|
function _defineProperty(obj, key, value) {
|
|
2959
2946
|
if (key in obj) {
|
|
2960
2947
|
Object.defineProperty(obj, key, {
|
|
@@ -2966,15 +2953,12 @@ function _defineProperty(obj, key, value) {
|
|
|
2966
2953
|
} else {
|
|
2967
2954
|
obj[key] = value;
|
|
2968
2955
|
}
|
|
2969
|
-
|
|
2970
2956
|
return obj;
|
|
2971
2957
|
}
|
|
2972
|
-
|
|
2973
2958
|
function _inherits(subClass, superClass) {
|
|
2974
2959
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
2975
2960
|
throw new TypeError("Super expression must either be null or a function");
|
|
2976
2961
|
}
|
|
2977
|
-
|
|
2978
2962
|
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
2979
2963
|
constructor: {
|
|
2980
2964
|
value: subClass,
|
|
@@ -2987,38 +2971,29 @@ function _inherits(subClass, superClass) {
|
|
|
2987
2971
|
});
|
|
2988
2972
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
2989
2973
|
}
|
|
2990
|
-
|
|
2991
2974
|
function _setPrototypeOf(o, p) {
|
|
2992
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
2975
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
2993
2976
|
o.__proto__ = p;
|
|
2994
2977
|
return o;
|
|
2995
2978
|
};
|
|
2996
|
-
|
|
2997
2979
|
return _setPrototypeOf(o, p);
|
|
2998
2980
|
}
|
|
2999
|
-
|
|
3000
2981
|
function _slicedToArray(arr, i) {
|
|
3001
2982
|
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
|
|
3002
2983
|
}
|
|
3003
|
-
|
|
3004
2984
|
function _arrayWithHoles(arr) {
|
|
3005
2985
|
if (Array.isArray(arr)) return arr;
|
|
3006
2986
|
}
|
|
3007
|
-
|
|
3008
2987
|
function _iterableToArrayLimit(arr, i) {
|
|
3009
2988
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
3010
|
-
|
|
3011
2989
|
if (_i == null) return;
|
|
3012
2990
|
var _arr = [];
|
|
3013
2991
|
var _n = true;
|
|
3014
2992
|
var _d = false;
|
|
3015
|
-
|
|
3016
2993
|
var _s, _e;
|
|
3017
|
-
|
|
3018
2994
|
try {
|
|
3019
2995
|
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
3020
2996
|
_arr.push(_s.value);
|
|
3021
|
-
|
|
3022
2997
|
if (i && _arr.length === i) break;
|
|
3023
2998
|
}
|
|
3024
2999
|
} catch (err) {
|
|
@@ -3031,10 +3006,8 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
3031
3006
|
if (_d) throw _e;
|
|
3032
3007
|
}
|
|
3033
3008
|
}
|
|
3034
|
-
|
|
3035
3009
|
return _arr;
|
|
3036
3010
|
}
|
|
3037
|
-
|
|
3038
3011
|
function _unsupportedIterableToArray(o, minLen) {
|
|
3039
3012
|
if (!o) return;
|
|
3040
3013
|
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
@@ -3043,29 +3016,21 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
3043
3016
|
if (n === "Map" || n === "Set") return Array.from(o);
|
|
3044
3017
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
3045
3018
|
}
|
|
3046
|
-
|
|
3047
3019
|
function _arrayLikeToArray(arr, len) {
|
|
3048
3020
|
if (len == null || len > arr.length) len = arr.length;
|
|
3049
|
-
|
|
3050
3021
|
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
|
|
3051
|
-
|
|
3052
3022
|
return arr2;
|
|
3053
3023
|
}
|
|
3054
|
-
|
|
3055
3024
|
function _nonIterableRest() {
|
|
3056
3025
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3057
3026
|
}
|
|
3058
|
-
|
|
3059
3027
|
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
3060
3028
|
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
3061
|
-
|
|
3062
3029
|
if (!it) {
|
|
3063
3030
|
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
3064
3031
|
if (it) o = it;
|
|
3065
3032
|
var i = 0;
|
|
3066
|
-
|
|
3067
3033
|
var F = function () {};
|
|
3068
|
-
|
|
3069
3034
|
return {
|
|
3070
3035
|
s: F,
|
|
3071
3036
|
n: function () {
|
|
@@ -3083,13 +3048,11 @@ function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
|
3083
3048
|
f: F
|
|
3084
3049
|
};
|
|
3085
3050
|
}
|
|
3086
|
-
|
|
3087
3051
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3088
3052
|
}
|
|
3089
|
-
|
|
3090
3053
|
var normalCompletion = true,
|
|
3091
|
-
|
|
3092
|
-
|
|
3054
|
+
didErr = false,
|
|
3055
|
+
err;
|
|
3093
3056
|
return {
|
|
3094
3057
|
s: function () {
|
|
3095
3058
|
it = it.call(o);
|
|
@@ -3139,25 +3102,19 @@ function noop() {
|
|
|
3139
3102
|
var PERCENTAGE_REGEX = /*#__PURE__*/_wrapRegExp(/(\d+)(%)/, {
|
|
3140
3103
|
value: 1
|
|
3141
3104
|
});
|
|
3142
|
-
|
|
3143
3105
|
function calculateLimit(type) {
|
|
3144
3106
|
var max = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 7;
|
|
3145
3107
|
var limit = max;
|
|
3146
|
-
|
|
3147
3108
|
if (PERCENTAGE_REGEX.test(type)) {
|
|
3148
3109
|
var _type$match;
|
|
3149
|
-
|
|
3150
3110
|
var groups = (_type$match = type.match(PERCENTAGE_REGEX)) === null || _type$match === void 0 ? void 0 : _type$match.groups;
|
|
3151
|
-
|
|
3152
3111
|
if (groups && groups.value) {
|
|
3153
3112
|
var percentage = parseInt(groups.value) / 100;
|
|
3154
3113
|
limit = Math.round(max * percentage);
|
|
3155
3114
|
}
|
|
3156
3115
|
}
|
|
3157
|
-
|
|
3158
3116
|
return Math.min(30, Math.max(1, limit));
|
|
3159
3117
|
}
|
|
3160
|
-
|
|
3161
3118
|
function createThrottle(limit, logger) {
|
|
3162
3119
|
logger('info', "Throttle request to ".concat(limit, "/s"));
|
|
3163
3120
|
return p_throttle__WEBPACK_IMPORTED_MODULE_3___default()({
|
|
@@ -3166,11 +3123,10 @@ function createThrottle(limit, logger) {
|
|
|
3166
3123
|
strict: false
|
|
3167
3124
|
});
|
|
3168
3125
|
}
|
|
3169
|
-
|
|
3170
3126
|
var rateLimitThrottle = (function (axiosInstance) {
|
|
3171
3127
|
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'auto';
|
|
3172
3128
|
var _axiosInstance$defaul = axiosInstance.defaults.logHandler,
|
|
3173
|
-
|
|
3129
|
+
logHandler = _axiosInstance$defaul === void 0 ? noop : _axiosInstance$defaul;
|
|
3174
3130
|
var limit = lodash_isstring__WEBPACK_IMPORTED_MODULE_2___default()(type) ? calculateLimit(type) : calculateLimit('auto', type);
|
|
3175
3131
|
var throttle = createThrottle(limit, logHandler);
|
|
3176
3132
|
var isCalculated = false;
|
|
@@ -3185,12 +3141,10 @@ var rateLimitThrottle = (function (axiosInstance) {
|
|
|
3185
3141
|
if (!isCalculated && lodash_isstring__WEBPACK_IMPORTED_MODULE_2___default()(type) && (type === 'auto' || PERCENTAGE_REGEX.test(type)) && response.headers && response.headers['x-contentful-ratelimit-second-limit']) {
|
|
3186
3142
|
var rawLimit = parseInt(response.headers['x-contentful-ratelimit-second-limit']);
|
|
3187
3143
|
var nextLimit = calculateLimit(type, rawLimit);
|
|
3188
|
-
|
|
3189
3144
|
if (nextLimit !== limit) {
|
|
3190
3145
|
if (requestInterceptorId) {
|
|
3191
3146
|
axiosInstance.interceptors.request.eject(requestInterceptorId);
|
|
3192
3147
|
}
|
|
3193
|
-
|
|
3194
3148
|
limit = nextLimit;
|
|
3195
3149
|
throttle = createThrottle(nextLimit, logHandler);
|
|
3196
3150
|
requestInterceptorId = axiosInstance.interceptors.request.use(function (config) {
|
|
@@ -3201,10 +3155,8 @@ var rateLimitThrottle = (function (axiosInstance) {
|
|
|
3201
3155
|
return Promise.reject(error);
|
|
3202
3156
|
});
|
|
3203
3157
|
}
|
|
3204
|
-
|
|
3205
3158
|
isCalculated = true;
|
|
3206
3159
|
}
|
|
3207
|
-
|
|
3208
3160
|
return response;
|
|
3209
3161
|
}, function (error) {
|
|
3210
3162
|
return Promise.reject(error);
|
|
@@ -3220,18 +3172,16 @@ var delay = function delay(ms) {
|
|
|
3220
3172
|
setTimeout(resolve, ms);
|
|
3221
3173
|
});
|
|
3222
3174
|
};
|
|
3223
|
-
|
|
3224
3175
|
var defaultWait = function defaultWait(attempts) {
|
|
3225
3176
|
return Math.pow(Math.SQRT2, attempts);
|
|
3226
3177
|
};
|
|
3227
|
-
|
|
3228
3178
|
function rateLimit(instance) {
|
|
3229
3179
|
var maxRetry = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 5;
|
|
3230
3180
|
var _instance$defaults = instance.defaults,
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3181
|
+
_instance$defaults$re = _instance$defaults.responseLogger,
|
|
3182
|
+
responseLogger = _instance$defaults$re === void 0 ? noop : _instance$defaults$re,
|
|
3183
|
+
_instance$defaults$re2 = _instance$defaults.requestLogger,
|
|
3184
|
+
requestLogger = _instance$defaults$re2 === void 0 ? noop : _instance$defaults$re2;
|
|
3235
3185
|
instance.interceptors.request.use(function (config) {
|
|
3236
3186
|
requestLogger(config);
|
|
3237
3187
|
return config;
|
|
@@ -3246,23 +3196,22 @@ function rateLimit(instance) {
|
|
|
3246
3196
|
}, function (error) {
|
|
3247
3197
|
var response = error.response;
|
|
3248
3198
|
var config = error.config;
|
|
3249
|
-
responseLogger(error);
|
|
3250
|
-
|
|
3199
|
+
responseLogger(error);
|
|
3200
|
+
// Do not retry if it is disabled or no request config exists (not an axios error)
|
|
3251
3201
|
if (!config || !instance.defaults.retryOnError) {
|
|
3252
3202
|
return Promise.reject(error);
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3203
|
+
}
|
|
3255
3204
|
|
|
3205
|
+
// Retried already for max attempts
|
|
3256
3206
|
var doneAttempts = config.attempts || 1;
|
|
3257
|
-
|
|
3258
3207
|
if (doneAttempts > maxRetry) {
|
|
3259
3208
|
error.attempts = config.attempts;
|
|
3260
3209
|
return Promise.reject(error);
|
|
3261
3210
|
}
|
|
3262
|
-
|
|
3263
3211
|
var retryErrorType = null;
|
|
3264
|
-
var wait = defaultWait(doneAttempts);
|
|
3212
|
+
var wait = defaultWait(doneAttempts);
|
|
3265
3213
|
|
|
3214
|
+
// Errors without response did not receive anything from the server
|
|
3266
3215
|
if (!response) {
|
|
3267
3216
|
retryErrorType = 'Connection';
|
|
3268
3217
|
} else if (response.status >= 500 && response.status < 600) {
|
|
@@ -3270,30 +3219,29 @@ function rateLimit(instance) {
|
|
|
3270
3219
|
retryErrorType = "Server ".concat(response.status);
|
|
3271
3220
|
} else if (response.status === 429) {
|
|
3272
3221
|
// 429 errors are exceeded rate limit exceptions
|
|
3273
|
-
retryErrorType = 'Rate limit';
|
|
3274
|
-
|
|
3222
|
+
retryErrorType = 'Rate limit';
|
|
3223
|
+
// all headers are lowercased by axios https://github.com/mzabriskie/axios/issues/413
|
|
3275
3224
|
if (response.headers && error.response.headers['x-contentful-ratelimit-reset']) {
|
|
3276
3225
|
wait = response.headers['x-contentful-ratelimit-reset'];
|
|
3277
3226
|
}
|
|
3278
3227
|
}
|
|
3279
|
-
|
|
3280
3228
|
if (retryErrorType) {
|
|
3281
3229
|
// convert to ms and add jitter
|
|
3282
3230
|
wait = Math.floor(wait * 1000 + Math.random() * 200 + 500);
|
|
3283
|
-
instance.defaults.logHandler('warning', "".concat(retryErrorType, " error occurred. Waiting for ").concat(wait, " ms before retrying..."));
|
|
3231
|
+
instance.defaults.logHandler('warning', "".concat(retryErrorType, " error occurred. Waiting for ").concat(wait, " ms before retrying..."));
|
|
3284
3232
|
|
|
3233
|
+
// increase attempts counter
|
|
3285
3234
|
config.attempts = doneAttempts + 1;
|
|
3235
|
+
|
|
3286
3236
|
/* Somehow between the interceptor and retrying the request the httpAgent/httpsAgent gets transformed from an Agent-like object
|
|
3287
3237
|
to a regular object, causing failures on retries after rate limits. Removing these properties here fixes the error, but retry
|
|
3288
3238
|
requests still use the original http/httpsAgent property */
|
|
3289
|
-
|
|
3290
3239
|
delete config.httpAgent;
|
|
3291
3240
|
delete config.httpsAgent;
|
|
3292
3241
|
return delay(wait).then(function () {
|
|
3293
3242
|
return instance(config);
|
|
3294
3243
|
});
|
|
3295
3244
|
}
|
|
3296
|
-
|
|
3297
3245
|
return Promise.reject(error);
|
|
3298
3246
|
});
|
|
3299
3247
|
}
|
|
@@ -3309,9 +3257,10 @@ function asyncToken(instance, getToken) {
|
|
|
3309
3257
|
});
|
|
3310
3258
|
}
|
|
3311
3259
|
|
|
3260
|
+
// Matches 'sub.host:port' or 'host:port' and extracts hostname and port
|
|
3312
3261
|
// Also enforces toplevel domain specified, no spaces and no protocol
|
|
3313
|
-
|
|
3314
3262
|
var HOST_REGEX = /^(?!\w+:\/\/)([^\s:]+\.?[^\s:]+)(?::(\d+))?(?!:)$/;
|
|
3263
|
+
|
|
3315
3264
|
/**
|
|
3316
3265
|
* Create pre configured axios instance
|
|
3317
3266
|
* @private
|
|
@@ -3319,7 +3268,6 @@ var HOST_REGEX = /^(?!\w+:\/\/)([^\s:]+\.?[^\s:]+)(?::(\d+))?(?!:)$/;
|
|
|
3319
3268
|
* @param {CreateHttpClientParams} options - Initialization parameters for the HTTP client
|
|
3320
3269
|
* @return {ContentfulAxiosInstance} Initialized axios instance
|
|
3321
3270
|
*/
|
|
3322
|
-
|
|
3323
3271
|
function createHttpClient(axios, options) {
|
|
3324
3272
|
var defaultConfig = {
|
|
3325
3273
|
insecure: false,
|
|
@@ -3334,7 +3282,6 @@ function createHttpClient(axios, options) {
|
|
|
3334
3282
|
console.error(data);
|
|
3335
3283
|
return;
|
|
3336
3284
|
}
|
|
3337
|
-
|
|
3338
3285
|
console.log("[".concat(level, "] ").concat(data));
|
|
3339
3286
|
},
|
|
3340
3287
|
// Passed to axios
|
|
@@ -3349,56 +3296,47 @@ function createHttpClient(axios, options) {
|
|
|
3349
3296
|
maxContentLength: 1073741824,
|
|
3350
3297
|
// 1GB
|
|
3351
3298
|
maxBodyLength: 1073741824 // 1GB
|
|
3352
|
-
|
|
3353
3299
|
};
|
|
3354
3300
|
|
|
3355
3301
|
var config = _objectSpread2(_objectSpread2({}, defaultConfig), options);
|
|
3356
|
-
|
|
3357
3302
|
if (!config.accessToken) {
|
|
3358
3303
|
var missingAccessTokenError = new TypeError('Expected parameter accessToken');
|
|
3359
3304
|
config.logHandler('error', missingAccessTokenError);
|
|
3360
3305
|
throw missingAccessTokenError;
|
|
3361
|
-
}
|
|
3362
|
-
|
|
3306
|
+
}
|
|
3363
3307
|
|
|
3308
|
+
// Construct axios baseURL option
|
|
3364
3309
|
var protocol = config.insecure ? 'http' : 'https';
|
|
3365
3310
|
var space = config.space ? "".concat(config.space, "/") : '';
|
|
3366
3311
|
var hostname = config.defaultHostname;
|
|
3367
3312
|
var port = config.insecure ? 80 : 443;
|
|
3368
|
-
|
|
3369
3313
|
if (config.host && HOST_REGEX.test(config.host)) {
|
|
3370
3314
|
var parsed = config.host.split(':');
|
|
3371
|
-
|
|
3372
3315
|
if (parsed.length === 2) {
|
|
3373
|
-
|
|
3374
3316
|
var _parsed = _slicedToArray(parsed, 2);
|
|
3375
|
-
|
|
3376
3317
|
hostname = _parsed[0];
|
|
3377
3318
|
port = _parsed[1];
|
|
3378
3319
|
} else {
|
|
3379
3320
|
hostname = parsed[0];
|
|
3380
3321
|
}
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3322
|
+
}
|
|
3383
3323
|
|
|
3324
|
+
// Ensure that basePath does start but not end with a slash
|
|
3384
3325
|
if (config.basePath) {
|
|
3385
3326
|
config.basePath = "/".concat(config.basePath.split('/').filter(Boolean).join('/'));
|
|
3386
3327
|
}
|
|
3387
|
-
|
|
3388
3328
|
var baseURL = options.baseURL || "".concat(protocol, "://").concat(hostname, ":").concat(port).concat(config.basePath, "/spaces/").concat(space);
|
|
3389
|
-
|
|
3390
3329
|
if (!config.headers.Authorization && typeof config.accessToken !== 'function') {
|
|
3391
3330
|
config.headers.Authorization = 'Bearer ' + config.accessToken;
|
|
3392
|
-
}
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
// Set these headers only for node because browsers don't like it when you
|
|
3393
3334
|
// override user-agent or accept-encoding.
|
|
3394
3335
|
// The SDKs should set their own X-Contentful-User-Agent.
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
3336
|
if (isNode()) {
|
|
3398
3337
|
config.headers['user-agent'] = 'node.js/' + getNodeVersion();
|
|
3399
3338
|
config.headers['Accept-Encoding'] = 'gzip';
|
|
3400
3339
|
}
|
|
3401
|
-
|
|
3402
3340
|
var axiosOptions = {
|
|
3403
3341
|
// Axios
|
|
3404
3342
|
baseURL: baseURL,
|
|
@@ -3419,6 +3357,7 @@ function createHttpClient(axios, options) {
|
|
|
3419
3357
|
};
|
|
3420
3358
|
var instance = axios.create(axiosOptions);
|
|
3421
3359
|
instance.httpClientParams = options;
|
|
3360
|
+
|
|
3422
3361
|
/**
|
|
3423
3362
|
* Creates a new axios instance with the same default base parameters as the
|
|
3424
3363
|
* current one, and with any overrides passed to the newParams object
|
|
@@ -3429,41 +3368,34 @@ function createHttpClient(axios, options) {
|
|
|
3429
3368
|
* @param {CreateHttpClientParams} httpClientParams - Initialization parameters for the HTTP client
|
|
3430
3369
|
* @return {ContentfulAxiosInstance} Initialized axios instance
|
|
3431
3370
|
*/
|
|
3432
|
-
|
|
3433
3371
|
instance.cloneWithNewParams = function (newParams) {
|
|
3434
3372
|
return createHttpClient(axios, _objectSpread2(_objectSpread2({}, fast_copy__WEBPACK_IMPORTED_MODULE_0___default()(options)), newParams));
|
|
3435
3373
|
};
|
|
3374
|
+
|
|
3436
3375
|
/**
|
|
3437
3376
|
* Apply interceptors.
|
|
3438
3377
|
* Please note that the order of interceptors is important
|
|
3439
3378
|
*/
|
|
3440
3379
|
|
|
3441
|
-
|
|
3442
3380
|
if (config.onBeforeRequest) {
|
|
3443
3381
|
instance.interceptors.request.use(config.onBeforeRequest);
|
|
3444
3382
|
}
|
|
3445
|
-
|
|
3446
3383
|
if (typeof config.accessToken === 'function') {
|
|
3447
3384
|
asyncToken(instance, config.accessToken);
|
|
3448
3385
|
}
|
|
3449
|
-
|
|
3450
3386
|
if (config.throttle) {
|
|
3451
3387
|
rateLimitThrottle(instance, config.throttle);
|
|
3452
3388
|
}
|
|
3453
|
-
|
|
3454
3389
|
rateLimit(instance, config.retryLimit);
|
|
3455
|
-
|
|
3456
3390
|
if (config.onError) {
|
|
3457
3391
|
instance.interceptors.response.use(function (response) {
|
|
3458
3392
|
return response;
|
|
3459
3393
|
}, config.onError);
|
|
3460
3394
|
}
|
|
3461
|
-
|
|
3462
3395
|
return instance;
|
|
3463
3396
|
}
|
|
3464
3397
|
|
|
3465
3398
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
3466
|
-
|
|
3467
3399
|
/**
|
|
3468
3400
|
* Creates request parameters configuration by parsing an existing query object
|
|
3469
3401
|
* @private
|
|
@@ -3486,22 +3418,19 @@ function enforceObjPath(obj, path) {
|
|
|
3486
3418
|
err.message = "Required property ".concat(path, " missing from:\n\n").concat(JSON.stringify(obj), "\n\n");
|
|
3487
3419
|
throw err;
|
|
3488
3420
|
}
|
|
3489
|
-
|
|
3490
3421
|
return true;
|
|
3491
3422
|
}
|
|
3492
3423
|
|
|
3493
3424
|
// copied from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze
|
|
3425
|
+
|
|
3494
3426
|
function deepFreeze(object) {
|
|
3495
3427
|
var propNames = Object.getOwnPropertyNames(object);
|
|
3496
|
-
|
|
3497
3428
|
var _iterator = _createForOfIteratorHelper(propNames),
|
|
3498
|
-
|
|
3499
|
-
|
|
3429
|
+
_step;
|
|
3500
3430
|
try {
|
|
3501
3431
|
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
3502
3432
|
var name = _step.value;
|
|
3503
3433
|
var value = object[name];
|
|
3504
|
-
|
|
3505
3434
|
if (value && _typeof(value) === 'object') {
|
|
3506
3435
|
deepFreeze(value);
|
|
3507
3436
|
}
|
|
@@ -3511,10 +3440,8 @@ function deepFreeze(object) {
|
|
|
3511
3440
|
} finally {
|
|
3512
3441
|
_iterator.f();
|
|
3513
3442
|
}
|
|
3514
|
-
|
|
3515
3443
|
return Object.freeze(object);
|
|
3516
3444
|
}
|
|
3517
|
-
|
|
3518
3445
|
function freezeSys(obj) {
|
|
3519
3446
|
deepFreeze(obj.sys || {});
|
|
3520
3447
|
return obj;
|
|
@@ -3522,18 +3449,15 @@ function freezeSys(obj) {
|
|
|
3522
3449
|
|
|
3523
3450
|
function getBrowserOS() {
|
|
3524
3451
|
var win = getWindow();
|
|
3525
|
-
|
|
3526
3452
|
if (!win) {
|
|
3527
3453
|
return null;
|
|
3528
3454
|
}
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3455
|
+
var userAgent = win.navigator.userAgent;
|
|
3456
|
+
// TODO: platform is deprecated.
|
|
3532
3457
|
var platform = win.navigator.platform;
|
|
3533
3458
|
var macosPlatforms = ['Macintosh', 'MacIntel', 'MacPPC', 'Mac68K'];
|
|
3534
3459
|
var windowsPlatforms = ['Win32', 'Win64', 'Windows', 'WinCE'];
|
|
3535
3460
|
var iosPlatforms = ['iPhone', 'iPad', 'iPod'];
|
|
3536
|
-
|
|
3537
3461
|
if (macosPlatforms.indexOf(platform) !== -1) {
|
|
3538
3462
|
return 'macOS';
|
|
3539
3463
|
} else if (iosPlatforms.indexOf(platform) !== -1) {
|
|
@@ -3545,10 +3469,8 @@ function getBrowserOS() {
|
|
|
3545
3469
|
} else if (/Linux/.test(platform)) {
|
|
3546
3470
|
return 'Linux';
|
|
3547
3471
|
}
|
|
3548
|
-
|
|
3549
3472
|
return null;
|
|
3550
3473
|
}
|
|
3551
|
-
|
|
3552
3474
|
function getNodeOS() {
|
|
3553
3475
|
var platform = process.platform || 'linux';
|
|
3554
3476
|
var version = process.version || '0.0.0';
|
|
@@ -3562,32 +3484,24 @@ function getNodeOS() {
|
|
|
3562
3484
|
sunos: 'Linux',
|
|
3563
3485
|
win32: 'Windows'
|
|
3564
3486
|
};
|
|
3565
|
-
|
|
3566
3487
|
if (platform in platformMap) {
|
|
3567
3488
|
return "".concat(platformMap[platform] || 'Linux', "/").concat(version);
|
|
3568
3489
|
}
|
|
3569
|
-
|
|
3570
3490
|
return null;
|
|
3571
3491
|
}
|
|
3572
|
-
|
|
3573
3492
|
function getUserAgentHeader(sdk, application, integration, feature) {
|
|
3574
3493
|
var headerParts = [];
|
|
3575
|
-
|
|
3576
3494
|
if (application) {
|
|
3577
3495
|
headerParts.push("app ".concat(application));
|
|
3578
3496
|
}
|
|
3579
|
-
|
|
3580
3497
|
if (integration) {
|
|
3581
3498
|
headerParts.push("integration ".concat(integration));
|
|
3582
3499
|
}
|
|
3583
|
-
|
|
3584
3500
|
if (feature) {
|
|
3585
3501
|
headerParts.push('feature ' + feature);
|
|
3586
3502
|
}
|
|
3587
|
-
|
|
3588
3503
|
headerParts.push("sdk ".concat(sdk));
|
|
3589
3504
|
var platform = null;
|
|
3590
|
-
|
|
3591
3505
|
try {
|
|
3592
3506
|
if (isReactNative()) {
|
|
3593
3507
|
platform = getBrowserOS();
|
|
@@ -3602,11 +3516,9 @@ function getUserAgentHeader(sdk, application, integration, feature) {
|
|
|
3602
3516
|
} catch (e) {
|
|
3603
3517
|
platform = null;
|
|
3604
3518
|
}
|
|
3605
|
-
|
|
3606
3519
|
if (platform) {
|
|
3607
3520
|
headerParts.push("os ".concat(platform));
|
|
3608
3521
|
}
|
|
3609
|
-
|
|
3610
3522
|
return "".concat(headerParts.filter(function (item) {
|
|
3611
3523
|
return item !== '';
|
|
3612
3524
|
}).join('; '), ";");
|
|
@@ -3618,7 +3530,6 @@ function getUserAgentHeader(sdk, application, integration, feature) {
|
|
|
3618
3530
|
* @param data - Any plain JSON response returned from the API
|
|
3619
3531
|
* @return Enhanced object with toPlainObject method
|
|
3620
3532
|
*/
|
|
3621
|
-
|
|
3622
3533
|
function toPlainObject(data) {
|
|
3623
3534
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
3624
3535
|
// @ts-expect-error
|
|
@@ -3642,18 +3553,17 @@ function toPlainObject(data) {
|
|
|
3642
3553
|
*/
|
|
3643
3554
|
function errorHandler(errorResponse) {
|
|
3644
3555
|
var config = errorResponse.config,
|
|
3645
|
-
|
|
3646
|
-
var errorName;
|
|
3556
|
+
response = errorResponse.response;
|
|
3557
|
+
var errorName;
|
|
3647
3558
|
|
|
3559
|
+
// Obscure the Management token
|
|
3648
3560
|
if (config && config.headers && config.headers['Authorization']) {
|
|
3649
3561
|
var token = "...".concat(config.headers['Authorization'].toString().substr(-5));
|
|
3650
3562
|
config.headers['Authorization'] = "Bearer ".concat(token);
|
|
3651
3563
|
}
|
|
3652
|
-
|
|
3653
3564
|
if (!lodash_isplainobject__WEBPACK_IMPORTED_MODULE_4___default()(response) || !lodash_isplainobject__WEBPACK_IMPORTED_MODULE_4___default()(config)) {
|
|
3654
3565
|
throw errorResponse;
|
|
3655
3566
|
}
|
|
3656
|
-
|
|
3657
3567
|
var data = response === null || response === void 0 ? void 0 : response.data;
|
|
3658
3568
|
var errorData = {
|
|
3659
3569
|
status: response === null || response === void 0 ? void 0 : response.status,
|
|
@@ -3661,7 +3571,6 @@ function errorHandler(errorResponse) {
|
|
|
3661
3571
|
message: '',
|
|
3662
3572
|
details: {}
|
|
3663
3573
|
};
|
|
3664
|
-
|
|
3665
3574
|
if (lodash_isplainobject__WEBPACK_IMPORTED_MODULE_4___default()(config)) {
|
|
3666
3575
|
errorData.request = {
|
|
3667
3576
|
url: config.url,
|
|
@@ -3670,38 +3579,30 @@ function errorHandler(errorResponse) {
|
|
|
3670
3579
|
payloadData: config.data
|
|
3671
3580
|
};
|
|
3672
3581
|
}
|
|
3673
|
-
|
|
3674
3582
|
if (data && lodash_isplainobject__WEBPACK_IMPORTED_MODULE_4___default()(data)) {
|
|
3675
3583
|
if ('requestId' in data) {
|
|
3676
3584
|
errorData.requestId = data.requestId || 'UNKNOWN';
|
|
3677
3585
|
}
|
|
3678
|
-
|
|
3679
3586
|
if ('message' in data) {
|
|
3680
3587
|
errorData.message = data.message || '';
|
|
3681
3588
|
}
|
|
3682
|
-
|
|
3683
3589
|
if ('details' in data) {
|
|
3684
3590
|
errorData.details = data.details || {};
|
|
3685
3591
|
}
|
|
3686
|
-
|
|
3687
3592
|
if ('sys' in data) {
|
|
3688
3593
|
if ('id' in data.sys) {
|
|
3689
3594
|
errorName = data.sys.id;
|
|
3690
3595
|
}
|
|
3691
3596
|
}
|
|
3692
3597
|
}
|
|
3693
|
-
|
|
3694
3598
|
var error = new Error();
|
|
3695
3599
|
error.name = errorName && errorName !== 'Unknown' ? errorName : "".concat(response === null || response === void 0 ? void 0 : response.status, " ").concat(response === null || response === void 0 ? void 0 : response.statusText);
|
|
3696
|
-
|
|
3697
3600
|
try {
|
|
3698
3601
|
error.message = JSON.stringify(errorData, null, ' ');
|
|
3699
3602
|
} catch (_unused) {
|
|
3700
3603
|
var _errorData$message;
|
|
3701
|
-
|
|
3702
3604
|
error.message = (_errorData$message = errorData === null || errorData === void 0 ? void 0 : errorData.message) !== null && _errorData$message !== void 0 ? _errorData$message : '';
|
|
3703
3605
|
}
|
|
3704
|
-
|
|
3705
3606
|
throw error;
|
|
3706
3607
|
}
|
|
3707
3608
|
|
|
@@ -3711,10 +3612,10 @@ function errorHandler(errorResponse) {
|
|
|
3711
3612
|
|
|
3712
3613
|
/***/ }),
|
|
3713
3614
|
|
|
3714
|
-
/***/ "../node_modules/fast-copy/dist/fast-copy.js":
|
|
3715
|
-
|
|
3716
|
-
!*** ../node_modules/fast-copy/dist/fast-copy.js ***!
|
|
3717
|
-
|
|
3615
|
+
/***/ "../node_modules/contentful-sdk-core/node_modules/fast-copy/dist/fast-copy.js":
|
|
3616
|
+
/*!************************************************************************************!*\
|
|
3617
|
+
!*** ../node_modules/contentful-sdk-core/node_modules/fast-copy/dist/fast-copy.js ***!
|
|
3618
|
+
\************************************************************************************/
|
|
3718
3619
|
/*! no static exports found */
|
|
3719
3620
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3720
3621
|
|
|
@@ -4073,7 +3974,427 @@ function errorHandler(errorResponse) {
|
|
|
4073
3974
|
}));
|
|
4074
3975
|
//# sourceMappingURL=fast-copy.js.map
|
|
4075
3976
|
|
|
4076
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*!
|
|
3977
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../webpack/buildin/global.js */ "../node_modules/webpack/buildin/global.js")))
|
|
3978
|
+
|
|
3979
|
+
/***/ }),
|
|
3980
|
+
|
|
3981
|
+
/***/ "../node_modules/fast-copy/dist/umd/index.js":
|
|
3982
|
+
/*!***************************************************!*\
|
|
3983
|
+
!*** ../node_modules/fast-copy/dist/umd/index.js ***!
|
|
3984
|
+
\***************************************************/
|
|
3985
|
+
/*! no static exports found */
|
|
3986
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
3987
|
+
|
|
3988
|
+
(function (global, factory) {
|
|
3989
|
+
true ? factory(exports) :
|
|
3990
|
+
undefined;
|
|
3991
|
+
})(this, (function (exports) { 'use strict';
|
|
3992
|
+
|
|
3993
|
+
var toStringFunction = Function.prototype.toString;
|
|
3994
|
+
var create = Object.create;
|
|
3995
|
+
var toStringObject = Object.prototype.toString;
|
|
3996
|
+
/**
|
|
3997
|
+
* @classdesc Fallback cache for when WeakMap is not natively supported
|
|
3998
|
+
*/
|
|
3999
|
+
var LegacyCache = /** @class */ (function () {
|
|
4000
|
+
function LegacyCache() {
|
|
4001
|
+
this._keys = [];
|
|
4002
|
+
this._values = [];
|
|
4003
|
+
}
|
|
4004
|
+
LegacyCache.prototype.has = function (key) {
|
|
4005
|
+
return !!~this._keys.indexOf(key);
|
|
4006
|
+
};
|
|
4007
|
+
LegacyCache.prototype.get = function (key) {
|
|
4008
|
+
return this._values[this._keys.indexOf(key)];
|
|
4009
|
+
};
|
|
4010
|
+
LegacyCache.prototype.set = function (key, value) {
|
|
4011
|
+
this._keys.push(key);
|
|
4012
|
+
this._values.push(value);
|
|
4013
|
+
};
|
|
4014
|
+
return LegacyCache;
|
|
4015
|
+
}());
|
|
4016
|
+
function createCacheLegacy() {
|
|
4017
|
+
return new LegacyCache();
|
|
4018
|
+
}
|
|
4019
|
+
function createCacheModern() {
|
|
4020
|
+
return new WeakMap();
|
|
4021
|
+
}
|
|
4022
|
+
/**
|
|
4023
|
+
* Get a new cache object to prevent circular references.
|
|
4024
|
+
*/
|
|
4025
|
+
var createCache = typeof WeakMap !== 'undefined' ? createCacheModern : createCacheLegacy;
|
|
4026
|
+
/**
|
|
4027
|
+
* Get an empty version of the object with the same prototype it has.
|
|
4028
|
+
*/
|
|
4029
|
+
function getCleanClone(prototype) {
|
|
4030
|
+
if (!prototype) {
|
|
4031
|
+
return create(null);
|
|
4032
|
+
}
|
|
4033
|
+
var Constructor = prototype.constructor;
|
|
4034
|
+
if (Constructor === Object) {
|
|
4035
|
+
return prototype === Object.prototype ? {} : create(prototype);
|
|
4036
|
+
}
|
|
4037
|
+
if (~toStringFunction.call(Constructor).indexOf('[native code]')) {
|
|
4038
|
+
try {
|
|
4039
|
+
return new Constructor();
|
|
4040
|
+
}
|
|
4041
|
+
catch (_a) { }
|
|
4042
|
+
}
|
|
4043
|
+
return create(prototype);
|
|
4044
|
+
}
|
|
4045
|
+
function getRegExpFlagsLegacy(regExp) {
|
|
4046
|
+
var flags = '';
|
|
4047
|
+
if (regExp.global) {
|
|
4048
|
+
flags += 'g';
|
|
4049
|
+
}
|
|
4050
|
+
if (regExp.ignoreCase) {
|
|
4051
|
+
flags += 'i';
|
|
4052
|
+
}
|
|
4053
|
+
if (regExp.multiline) {
|
|
4054
|
+
flags += 'm';
|
|
4055
|
+
}
|
|
4056
|
+
if (regExp.unicode) {
|
|
4057
|
+
flags += 'u';
|
|
4058
|
+
}
|
|
4059
|
+
if (regExp.sticky) {
|
|
4060
|
+
flags += 'y';
|
|
4061
|
+
}
|
|
4062
|
+
return flags;
|
|
4063
|
+
}
|
|
4064
|
+
function getRegExpFlagsModern(regExp) {
|
|
4065
|
+
return regExp.flags;
|
|
4066
|
+
}
|
|
4067
|
+
/**
|
|
4068
|
+
* Get the flags to apply to the copied regexp.
|
|
4069
|
+
*/
|
|
4070
|
+
var getRegExpFlags = /test/g.flags === 'g' ? getRegExpFlagsModern : getRegExpFlagsLegacy;
|
|
4071
|
+
function getTagLegacy(value) {
|
|
4072
|
+
var type = toStringObject.call(value);
|
|
4073
|
+
return type.substring(8, type.length - 1);
|
|
4074
|
+
}
|
|
4075
|
+
function getTagModern(value) {
|
|
4076
|
+
return value[Symbol.toStringTag] || getTagLegacy(value);
|
|
4077
|
+
}
|
|
4078
|
+
/**
|
|
4079
|
+
* Get the tag of the value passed, so that the correct copier can be used.
|
|
4080
|
+
*/
|
|
4081
|
+
var getTag = typeof Symbol !== 'undefined' ? getTagModern : getTagLegacy;
|
|
4082
|
+
|
|
4083
|
+
var defineProperty = Object.defineProperty, getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor, getOwnPropertyNames = Object.getOwnPropertyNames, getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
4084
|
+
var _a = Object.prototype, hasOwnProperty = _a.hasOwnProperty, propertyIsEnumerable = _a.propertyIsEnumerable;
|
|
4085
|
+
var SUPPORTS_SYMBOL = typeof getOwnPropertySymbols === 'function';
|
|
4086
|
+
function getStrictPropertiesModern(object) {
|
|
4087
|
+
return getOwnPropertyNames(object).concat(getOwnPropertySymbols(object));
|
|
4088
|
+
}
|
|
4089
|
+
/**
|
|
4090
|
+
* Get the properites used when copying objects strictly. This includes both keys and symbols.
|
|
4091
|
+
*/
|
|
4092
|
+
var getStrictProperties = SUPPORTS_SYMBOL
|
|
4093
|
+
? getStrictPropertiesModern
|
|
4094
|
+
: getOwnPropertyNames;
|
|
4095
|
+
/**
|
|
4096
|
+
* Striclty copy all properties contained on the object.
|
|
4097
|
+
*/
|
|
4098
|
+
function copyOwnPropertiesStrict(value, clone, state) {
|
|
4099
|
+
var properties = getStrictProperties(value);
|
|
4100
|
+
for (var index = 0, length_1 = properties.length, property = void 0, descriptor = void 0; index < length_1; ++index) {
|
|
4101
|
+
property = properties[index];
|
|
4102
|
+
if (property === 'callee' || property === 'caller') {
|
|
4103
|
+
continue;
|
|
4104
|
+
}
|
|
4105
|
+
descriptor = getOwnPropertyDescriptor(value, property);
|
|
4106
|
+
if (!descriptor) {
|
|
4107
|
+
// In extra edge cases where the property descriptor cannot be retrived, fall back to
|
|
4108
|
+
// the loose assignment.
|
|
4109
|
+
clone[property] = state.copier(value[property], state);
|
|
4110
|
+
continue;
|
|
4111
|
+
}
|
|
4112
|
+
// Only clone the value if actually a value, not a getter / setter.
|
|
4113
|
+
if (!descriptor.get && !descriptor.set) {
|
|
4114
|
+
descriptor.value = state.copier(descriptor.value, state);
|
|
4115
|
+
}
|
|
4116
|
+
try {
|
|
4117
|
+
defineProperty(clone, property, descriptor);
|
|
4118
|
+
}
|
|
4119
|
+
catch (error) {
|
|
4120
|
+
// Tee above can fail on node in edge cases, so fall back to the loose assignment.
|
|
4121
|
+
clone[property] = descriptor.value;
|
|
4122
|
+
}
|
|
4123
|
+
}
|
|
4124
|
+
return clone;
|
|
4125
|
+
}
|
|
4126
|
+
/**
|
|
4127
|
+
* Deeply copy the indexed values in the array.
|
|
4128
|
+
*/
|
|
4129
|
+
function copyArrayLoose(array, state) {
|
|
4130
|
+
var clone = new state.Constructor();
|
|
4131
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4132
|
+
state.cache.set(array, clone);
|
|
4133
|
+
for (var index = 0, length_2 = array.length; index < length_2; ++index) {
|
|
4134
|
+
clone[index] = state.copier(array[index], state);
|
|
4135
|
+
}
|
|
4136
|
+
return clone;
|
|
4137
|
+
}
|
|
4138
|
+
/**
|
|
4139
|
+
* Deeply copy the indexed values in the array, as well as any custom properties.
|
|
4140
|
+
*/
|
|
4141
|
+
function copyArrayStrict(array, state) {
|
|
4142
|
+
var clone = new state.Constructor();
|
|
4143
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4144
|
+
state.cache.set(array, clone);
|
|
4145
|
+
return copyOwnPropertiesStrict(array, clone, state);
|
|
4146
|
+
}
|
|
4147
|
+
/**
|
|
4148
|
+
* Copy the contents of the ArrayBuffer.
|
|
4149
|
+
*/
|
|
4150
|
+
function copyArrayBuffer(arrayBuffer, _state) {
|
|
4151
|
+
return arrayBuffer.slice(0);
|
|
4152
|
+
}
|
|
4153
|
+
/**
|
|
4154
|
+
* Create a new Blob with the contents of the original.
|
|
4155
|
+
*/
|
|
4156
|
+
function copyBlob(blob, _state) {
|
|
4157
|
+
return blob.slice(0, blob.size, blob.type);
|
|
4158
|
+
}
|
|
4159
|
+
/**
|
|
4160
|
+
* Create a new DataView with the contents of the original.
|
|
4161
|
+
*/
|
|
4162
|
+
function copyDataView(dataView, state) {
|
|
4163
|
+
return new state.Constructor(copyArrayBuffer(dataView.buffer));
|
|
4164
|
+
}
|
|
4165
|
+
/**
|
|
4166
|
+
* Create a new Date based on the time of the original.
|
|
4167
|
+
*/
|
|
4168
|
+
function copyDate(date, state) {
|
|
4169
|
+
return new state.Constructor(date.getTime());
|
|
4170
|
+
}
|
|
4171
|
+
/**
|
|
4172
|
+
* Deeply copy the keys and values of the original.
|
|
4173
|
+
*/
|
|
4174
|
+
function copyMapLoose(map, state) {
|
|
4175
|
+
var clone = new state.Constructor();
|
|
4176
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4177
|
+
state.cache.set(map, clone);
|
|
4178
|
+
map.forEach(function (value, key) {
|
|
4179
|
+
clone.set(key, state.copier(value, state));
|
|
4180
|
+
});
|
|
4181
|
+
return clone;
|
|
4182
|
+
}
|
|
4183
|
+
/**
|
|
4184
|
+
* Deeply copy the keys and values of the original, as well as any custom properties.
|
|
4185
|
+
*/
|
|
4186
|
+
function copyMapStrict(map, state) {
|
|
4187
|
+
return copyOwnPropertiesStrict(map, copyMapLoose(map, state), state);
|
|
4188
|
+
}
|
|
4189
|
+
function copyObjectLooseLegacy(object, state) {
|
|
4190
|
+
var clone = getCleanClone(state.prototype);
|
|
4191
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4192
|
+
state.cache.set(object, clone);
|
|
4193
|
+
for (var key in object) {
|
|
4194
|
+
if (hasOwnProperty.call(object, key)) {
|
|
4195
|
+
clone[key] = state.copier(object[key], state);
|
|
4196
|
+
}
|
|
4197
|
+
}
|
|
4198
|
+
return clone;
|
|
4199
|
+
}
|
|
4200
|
+
function copyObjectLooseModern(object, state) {
|
|
4201
|
+
var clone = getCleanClone(state.prototype);
|
|
4202
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4203
|
+
state.cache.set(object, clone);
|
|
4204
|
+
for (var key in object) {
|
|
4205
|
+
if (hasOwnProperty.call(object, key)) {
|
|
4206
|
+
clone[key] = state.copier(object[key], state);
|
|
4207
|
+
}
|
|
4208
|
+
}
|
|
4209
|
+
var symbols = getOwnPropertySymbols(object);
|
|
4210
|
+
for (var index = 0, length_3 = symbols.length, symbol = void 0; index < length_3; ++index) {
|
|
4211
|
+
symbol = symbols[index];
|
|
4212
|
+
if (propertyIsEnumerable.call(object, symbol)) {
|
|
4213
|
+
clone[symbol] = state.copier(object[symbol], state);
|
|
4214
|
+
}
|
|
4215
|
+
}
|
|
4216
|
+
return clone;
|
|
4217
|
+
}
|
|
4218
|
+
/**
|
|
4219
|
+
* Deeply copy the properties (keys and symbols) and values of the original.
|
|
4220
|
+
*/
|
|
4221
|
+
var copyObjectLoose = SUPPORTS_SYMBOL
|
|
4222
|
+
? copyObjectLooseModern
|
|
4223
|
+
: copyObjectLooseLegacy;
|
|
4224
|
+
/**
|
|
4225
|
+
* Deeply copy the properties (keys and symbols) and values of the original, as well
|
|
4226
|
+
* as any hidden or non-enumerable properties.
|
|
4227
|
+
*/
|
|
4228
|
+
function copyObjectStrict(object, state) {
|
|
4229
|
+
var clone = getCleanClone(state.prototype);
|
|
4230
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4231
|
+
state.cache.set(object, clone);
|
|
4232
|
+
return copyOwnPropertiesStrict(object, clone, state);
|
|
4233
|
+
}
|
|
4234
|
+
/**
|
|
4235
|
+
* Create a new primitive wrapper from the value of the original.
|
|
4236
|
+
*/
|
|
4237
|
+
function copyPrimitiveWrapper(primitiveObject, state) {
|
|
4238
|
+
return new state.Constructor(primitiveObject.valueOf());
|
|
4239
|
+
}
|
|
4240
|
+
/**
|
|
4241
|
+
* Create a new RegExp based on the value and flags of the original.
|
|
4242
|
+
*/
|
|
4243
|
+
function copyRegExp(regExp, state) {
|
|
4244
|
+
var clone = new state.Constructor(regExp.source, getRegExpFlags(regExp));
|
|
4245
|
+
clone.lastIndex = regExp.lastIndex;
|
|
4246
|
+
return clone;
|
|
4247
|
+
}
|
|
4248
|
+
/**
|
|
4249
|
+
* Return the original value (an identity function).
|
|
4250
|
+
*
|
|
4251
|
+
* @note
|
|
4252
|
+
* THis is used for objects that cannot be copied, such as WeakMap.
|
|
4253
|
+
*/
|
|
4254
|
+
function copySelf(value, _state) {
|
|
4255
|
+
return value;
|
|
4256
|
+
}
|
|
4257
|
+
/**
|
|
4258
|
+
* Deeply copy the values of the original.
|
|
4259
|
+
*/
|
|
4260
|
+
function copySetLoose(set, state) {
|
|
4261
|
+
var clone = new state.Constructor();
|
|
4262
|
+
// set in the cache immediately to be able to reuse the object recursively
|
|
4263
|
+
state.cache.set(set, clone);
|
|
4264
|
+
set.forEach(function (value) {
|
|
4265
|
+
clone.add(state.copier(value, state));
|
|
4266
|
+
});
|
|
4267
|
+
return clone;
|
|
4268
|
+
}
|
|
4269
|
+
/**
|
|
4270
|
+
* Deeply copy the values of the original, as well as any custom properties.
|
|
4271
|
+
*/
|
|
4272
|
+
function copySetStrict(set, state) {
|
|
4273
|
+
return copyOwnPropertiesStrict(set, copySetLoose(set, state), state);
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
var isArray = Array.isArray;
|
|
4277
|
+
var assign = Object.assign, getPrototypeOf = Object.getPrototypeOf;
|
|
4278
|
+
var DEFAULT_LOOSE_OPTIONS = {
|
|
4279
|
+
array: copyArrayLoose,
|
|
4280
|
+
arrayBuffer: copyArrayBuffer,
|
|
4281
|
+
blob: copyBlob,
|
|
4282
|
+
dataView: copyDataView,
|
|
4283
|
+
date: copyDate,
|
|
4284
|
+
error: copySelf,
|
|
4285
|
+
map: copyMapLoose,
|
|
4286
|
+
object: copyObjectLoose,
|
|
4287
|
+
regExp: copyRegExp,
|
|
4288
|
+
set: copySetLoose,
|
|
4289
|
+
};
|
|
4290
|
+
var DEFAULT_STRICT_OPTIONS = assign({}, DEFAULT_LOOSE_OPTIONS, {
|
|
4291
|
+
array: copyArrayStrict,
|
|
4292
|
+
map: copyMapStrict,
|
|
4293
|
+
object: copyObjectStrict,
|
|
4294
|
+
set: copySetStrict,
|
|
4295
|
+
});
|
|
4296
|
+
/**
|
|
4297
|
+
* Get the copiers used for each specific object tag.
|
|
4298
|
+
*/
|
|
4299
|
+
function getTagSpecificCopiers(options) {
|
|
4300
|
+
return {
|
|
4301
|
+
Arguments: options.object,
|
|
4302
|
+
Array: options.array,
|
|
4303
|
+
ArrayBuffer: options.arrayBuffer,
|
|
4304
|
+
Blob: options.blob,
|
|
4305
|
+
Boolean: copyPrimitiveWrapper,
|
|
4306
|
+
DataView: options.dataView,
|
|
4307
|
+
Date: options.date,
|
|
4308
|
+
Error: options.error,
|
|
4309
|
+
Float32Array: options.arrayBuffer,
|
|
4310
|
+
Float64Array: options.arrayBuffer,
|
|
4311
|
+
Int8Array: options.arrayBuffer,
|
|
4312
|
+
Int16Array: options.arrayBuffer,
|
|
4313
|
+
Int32Array: options.arrayBuffer,
|
|
4314
|
+
Map: options.map,
|
|
4315
|
+
Number: copyPrimitiveWrapper,
|
|
4316
|
+
Object: options.object,
|
|
4317
|
+
Promise: copySelf,
|
|
4318
|
+
RegExp: options.regExp,
|
|
4319
|
+
Set: options.set,
|
|
4320
|
+
String: copyPrimitiveWrapper,
|
|
4321
|
+
WeakMap: copySelf,
|
|
4322
|
+
WeakSet: copySelf,
|
|
4323
|
+
Uint8Array: options.arrayBuffer,
|
|
4324
|
+
Uint8ClampedArray: options.arrayBuffer,
|
|
4325
|
+
Uint16Array: options.arrayBuffer,
|
|
4326
|
+
Uint32Array: options.arrayBuffer,
|
|
4327
|
+
Uint64Array: options.arrayBuffer,
|
|
4328
|
+
};
|
|
4329
|
+
}
|
|
4330
|
+
/**
|
|
4331
|
+
* Create a custom copier based on the object-specific copy methods passed.
|
|
4332
|
+
*/
|
|
4333
|
+
function createCopier(options) {
|
|
4334
|
+
var normalizedOptions = assign({}, DEFAULT_LOOSE_OPTIONS, options);
|
|
4335
|
+
var tagSpecificCopiers = getTagSpecificCopiers(normalizedOptions);
|
|
4336
|
+
var array = tagSpecificCopiers.Array, object = tagSpecificCopiers.Object;
|
|
4337
|
+
function copier(value, state) {
|
|
4338
|
+
state.prototype = state.Constructor = undefined;
|
|
4339
|
+
if (!value || typeof value !== 'object') {
|
|
4340
|
+
return value;
|
|
4341
|
+
}
|
|
4342
|
+
if (state.cache.has(value)) {
|
|
4343
|
+
return state.cache.get(value);
|
|
4344
|
+
}
|
|
4345
|
+
state.prototype = value.__proto__ || getPrototypeOf(value);
|
|
4346
|
+
state.Constructor = state.prototype && state.prototype.constructor;
|
|
4347
|
+
// plain objects
|
|
4348
|
+
if (!state.Constructor || state.Constructor === Object) {
|
|
4349
|
+
return object(value, state);
|
|
4350
|
+
}
|
|
4351
|
+
// arrays
|
|
4352
|
+
if (isArray(value)) {
|
|
4353
|
+
return array(value, state);
|
|
4354
|
+
}
|
|
4355
|
+
var tagSpecificCopier = tagSpecificCopiers[getTag(value)];
|
|
4356
|
+
if (tagSpecificCopier) {
|
|
4357
|
+
return tagSpecificCopier(value, state);
|
|
4358
|
+
}
|
|
4359
|
+
return typeof value.then === 'function' ? value : object(value, state);
|
|
4360
|
+
}
|
|
4361
|
+
return function copy(value) {
|
|
4362
|
+
return copier(value, {
|
|
4363
|
+
Constructor: undefined,
|
|
4364
|
+
cache: createCache(),
|
|
4365
|
+
copier: copier,
|
|
4366
|
+
prototype: undefined,
|
|
4367
|
+
});
|
|
4368
|
+
};
|
|
4369
|
+
}
|
|
4370
|
+
/**
|
|
4371
|
+
* Create a custom copier based on the object-specific copy methods passed, defaulting to the
|
|
4372
|
+
* same internals as `copyStrict`.
|
|
4373
|
+
*/
|
|
4374
|
+
function createStrictCopier(options) {
|
|
4375
|
+
return createCopier(assign({}, DEFAULT_STRICT_OPTIONS, options));
|
|
4376
|
+
}
|
|
4377
|
+
/**
|
|
4378
|
+
* Copy an value deeply as much as possible, where strict recreation of object properties
|
|
4379
|
+
* are maintained. All properties (including non-enumerable ones) are copied with their
|
|
4380
|
+
* original property descriptors on both objects and arrays.
|
|
4381
|
+
*/
|
|
4382
|
+
var copyStrict = createStrictCopier({});
|
|
4383
|
+
/**
|
|
4384
|
+
* Copy an value deeply as much as possible.
|
|
4385
|
+
*/
|
|
4386
|
+
var index = createCopier({});
|
|
4387
|
+
|
|
4388
|
+
exports.copyStrict = copyStrict;
|
|
4389
|
+
exports.createCopier = createCopier;
|
|
4390
|
+
exports.createStrictCopier = createStrictCopier;
|
|
4391
|
+
exports["default"] = index;
|
|
4392
|
+
|
|
4393
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4394
|
+
|
|
4395
|
+
}));
|
|
4396
|
+
//# sourceMappingURL=index.js.map
|
|
4397
|
+
|
|
4077
4398
|
|
|
4078
4399
|
/***/ }),
|
|
4079
4400
|
|
|
@@ -7801,7 +8122,7 @@ var parseObject = function (chain, val, options, valuesParsed) {
|
|
|
7801
8122
|
) {
|
|
7802
8123
|
obj = [];
|
|
7803
8124
|
obj[index] = leaf;
|
|
7804
|
-
} else {
|
|
8125
|
+
} else if (cleanRoot !== '__proto__') {
|
|
7805
8126
|
obj[cleanRoot] = leaf;
|
|
7806
8127
|
}
|
|
7807
8128
|
}
|
|
@@ -7959,6 +8280,7 @@ var arrayPrefixGenerators = {
|
|
|
7959
8280
|
};
|
|
7960
8281
|
|
|
7961
8282
|
var isArray = Array.isArray;
|
|
8283
|
+
var split = String.prototype.split;
|
|
7962
8284
|
var push = Array.prototype.push;
|
|
7963
8285
|
var pushToArray = function (arr, valueOrArray) {
|
|
7964
8286
|
push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);
|
|
@@ -7995,10 +8317,13 @@ var isNonNullishPrimitive = function isNonNullishPrimitive(v) {
|
|
|
7995
8317
|
|| typeof v === 'bigint';
|
|
7996
8318
|
};
|
|
7997
8319
|
|
|
8320
|
+
var sentinel = {};
|
|
8321
|
+
|
|
7998
8322
|
var stringify = function stringify(
|
|
7999
8323
|
object,
|
|
8000
8324
|
prefix,
|
|
8001
8325
|
generateArrayPrefix,
|
|
8326
|
+
commaRoundTrip,
|
|
8002
8327
|
strictNullHandling,
|
|
8003
8328
|
skipNulls,
|
|
8004
8329
|
encoder,
|
|
@@ -8014,8 +8339,23 @@ var stringify = function stringify(
|
|
|
8014
8339
|
) {
|
|
8015
8340
|
var obj = object;
|
|
8016
8341
|
|
|
8017
|
-
|
|
8018
|
-
|
|
8342
|
+
var tmpSc = sideChannel;
|
|
8343
|
+
var step = 0;
|
|
8344
|
+
var findFlag = false;
|
|
8345
|
+
while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) {
|
|
8346
|
+
// Where object last appeared in the ref tree
|
|
8347
|
+
var pos = tmpSc.get(object);
|
|
8348
|
+
step += 1;
|
|
8349
|
+
if (typeof pos !== 'undefined') {
|
|
8350
|
+
if (pos === step) {
|
|
8351
|
+
throw new RangeError('Cyclic object value');
|
|
8352
|
+
} else {
|
|
8353
|
+
findFlag = true; // Break while
|
|
8354
|
+
}
|
|
8355
|
+
}
|
|
8356
|
+
if (typeof tmpSc.get(sentinel) === 'undefined') {
|
|
8357
|
+
step = 0;
|
|
8358
|
+
}
|
|
8019
8359
|
}
|
|
8020
8360
|
|
|
8021
8361
|
if (typeof filter === 'function') {
|
|
@@ -8042,6 +8382,14 @@ var stringify = function stringify(
|
|
|
8042
8382
|
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
|
|
8043
8383
|
if (encoder) {
|
|
8044
8384
|
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);
|
|
8385
|
+
if (generateArrayPrefix === 'comma' && encodeValuesOnly) {
|
|
8386
|
+
var valuesArray = split.call(String(obj), ',');
|
|
8387
|
+
var valuesJoined = '';
|
|
8388
|
+
for (var i = 0; i < valuesArray.length; ++i) {
|
|
8389
|
+
valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format));
|
|
8390
|
+
}
|
|
8391
|
+
return [formatter(keyValue) + (commaRoundTrip && isArray(obj) && valuesArray.length === 1 ? '[]' : '') + '=' + valuesJoined];
|
|
8392
|
+
}
|
|
8045
8393
|
return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];
|
|
8046
8394
|
}
|
|
8047
8395
|
return [formatter(prefix) + '=' + formatter(String(obj))];
|
|
@@ -8056,7 +8404,7 @@ var stringify = function stringify(
|
|
|
8056
8404
|
var objKeys;
|
|
8057
8405
|
if (generateArrayPrefix === 'comma' && isArray(obj)) {
|
|
8058
8406
|
// we need to join elements in
|
|
8059
|
-
objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : undefined }];
|
|
8407
|
+
objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }];
|
|
8060
8408
|
} else if (isArray(filter)) {
|
|
8061
8409
|
objKeys = filter;
|
|
8062
8410
|
} else {
|
|
@@ -8064,24 +8412,28 @@ var stringify = function stringify(
|
|
|
8064
8412
|
objKeys = sort ? keys.sort(sort) : keys;
|
|
8065
8413
|
}
|
|
8066
8414
|
|
|
8067
|
-
|
|
8068
|
-
|
|
8069
|
-
|
|
8415
|
+
var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
|
|
8416
|
+
|
|
8417
|
+
for (var j = 0; j < objKeys.length; ++j) {
|
|
8418
|
+
var key = objKeys[j];
|
|
8419
|
+
var value = typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key];
|
|
8070
8420
|
|
|
8071
8421
|
if (skipNulls && value === null) {
|
|
8072
8422
|
continue;
|
|
8073
8423
|
}
|
|
8074
8424
|
|
|
8075
8425
|
var keyPrefix = isArray(obj)
|
|
8076
|
-
? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(
|
|
8077
|
-
:
|
|
8426
|
+
? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix
|
|
8427
|
+
: adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
|
|
8078
8428
|
|
|
8079
|
-
sideChannel.set(object,
|
|
8429
|
+
sideChannel.set(object, step);
|
|
8080
8430
|
var valueSideChannel = getSideChannel();
|
|
8431
|
+
valueSideChannel.set(sentinel, sideChannel);
|
|
8081
8432
|
pushToArray(values, stringify(
|
|
8082
8433
|
value,
|
|
8083
8434
|
keyPrefix,
|
|
8084
8435
|
generateArrayPrefix,
|
|
8436
|
+
commaRoundTrip,
|
|
8085
8437
|
strictNullHandling,
|
|
8086
8438
|
skipNulls,
|
|
8087
8439
|
encoder,
|
|
@@ -8105,7 +8457,7 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
|
|
|
8105
8457
|
return defaults;
|
|
8106
8458
|
}
|
|
8107
8459
|
|
|
8108
|
-
if (opts.encoder !== null && opts.encoder !== undefined && typeof opts.encoder !== 'function') {
|
|
8460
|
+
if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {
|
|
8109
8461
|
throw new TypeError('Encoder has to be a function.');
|
|
8110
8462
|
}
|
|
8111
8463
|
|
|
@@ -8178,6 +8530,10 @@ module.exports = function (object, opts) {
|
|
|
8178
8530
|
}
|
|
8179
8531
|
|
|
8180
8532
|
var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
|
|
8533
|
+
if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
|
|
8534
|
+
throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
|
|
8535
|
+
}
|
|
8536
|
+
var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;
|
|
8181
8537
|
|
|
8182
8538
|
if (!objKeys) {
|
|
8183
8539
|
objKeys = Object.keys(obj);
|
|
@@ -8198,6 +8554,7 @@ module.exports = function (object, opts) {
|
|
|
8198
8554
|
obj[key],
|
|
8199
8555
|
key,
|
|
8200
8556
|
generateArrayPrefix,
|
|
8557
|
+
commaRoundTrip,
|
|
8201
8558
|
options.strictNullHandling,
|
|
8202
8559
|
options.skipNulls,
|
|
8203
8560
|
options.encode ? options.encoder : null,
|
|
@@ -8419,6 +8776,7 @@ var encode = function encode(str, defaultEncoder, charset, kind, format) {
|
|
|
8419
8776
|
|
|
8420
8777
|
i += 1;
|
|
8421
8778
|
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
|
|
8779
|
+
/* eslint operator-linebreak: [2, "before"] */
|
|
8422
8780
|
out += hexTable[0xF0 | (c >> 18)]
|
|
8423
8781
|
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
|
|
8424
8782
|
+ hexTable[0x80 | ((c >> 6) & 0x3F)]
|
|
@@ -8677,7 +9035,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8677
9035
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
8678
9036
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
8679
9037
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
8680
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9038
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
8681
9039
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
8682
9040
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
8683
9041
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -8871,7 +9229,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8871
9229
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
8872
9230
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getInstallationsForOrg", function() { return getInstallationsForOrg; });
|
|
8873
9231
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
8874
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9232
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
8875
9233
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
8876
9234
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
8877
9235
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -8969,7 +9327,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8969
9327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getForOrganization", function() { return getForOrganization; });
|
|
8970
9328
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
8971
9329
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
8972
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9330
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
8973
9331
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_2__);
|
|
8974
9332
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
8975
9333
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
@@ -9194,7 +9552,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9194
9552
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "processForLocale", function() { return processForLocale; });
|
|
9195
9553
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "processForAllLocales", function() { return processForAllLocales; });
|
|
9196
9554
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
9197
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9555
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9198
9556
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
9199
9557
|
/* harmony import */ var _upload_http_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../upload-http-client */ "./upload-http-client.ts");
|
|
9200
9558
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -9440,7 +9798,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9440
9798
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
9441
9799
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
9442
9800
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
9443
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9801
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9444
9802
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9445
9803
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9446
9804
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -9515,7 +9873,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9515
9873
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
9516
9874
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "publish", function() { return publish; });
|
|
9517
9875
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "unpublish", function() { return unpublish; });
|
|
9518
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9876
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9519
9877
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9520
9878
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9521
9879
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -9597,7 +9955,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9597
9955
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "get", function() { return get; });
|
|
9598
9956
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getMany", function() { return getMany; });
|
|
9599
9957
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
9600
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
9958
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9601
9959
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9602
9960
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9603
9961
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -9649,7 +10007,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9649
10007
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
9650
10008
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
9651
10009
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "references", function() { return references; });
|
|
9652
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10010
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9653
10011
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9654
10012
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9655
10013
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -9755,7 +10113,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9755
10113
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
9756
10114
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
9757
10115
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
9758
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10116
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9759
10117
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9760
10118
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9761
10119
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -9883,7 +10241,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9883
10241
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "validate", function() { return validate; });
|
|
9884
10242
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "install", function() { return install; });
|
|
9885
10243
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "disconnect", function() { return disconnect; });
|
|
9886
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10244
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9887
10245
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9888
10246
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9889
10247
|
|
|
@@ -9981,7 +10339,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9981
10339
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
9982
10340
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
9983
10341
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
9984
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10342
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
9985
10343
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
9986
10344
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9987
10345
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -10043,7 +10401,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10043
10401
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
10044
10402
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
10045
10403
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
10046
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10404
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
10047
10405
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
10048
10406
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
10049
10407
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -10349,7 +10707,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10349
10707
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
10350
10708
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
10351
10709
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
10352
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10710
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
10353
10711
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
10354
10712
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
10355
10713
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -10437,7 +10795,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10437
10795
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getMany", function() { return getMany; });
|
|
10438
10796
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
10439
10797
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
10440
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
10798
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
10441
10799
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
10442
10800
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
10443
10801
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -10781,7 +11139,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10781
11139
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
10782
11140
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
10783
11141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
10784
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11142
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
10785
11143
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
10786
11144
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
10787
11145
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -10968,7 +11326,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10968
11326
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
10969
11327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
10970
11328
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
10971
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11329
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
10972
11330
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
10973
11331
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
10974
11332
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -11045,7 +11403,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11045
11403
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11046
11404
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11047
11405
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11048
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11406
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11049
11407
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11050
11408
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11051
11409
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -11098,7 +11456,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11098
11456
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
11099
11457
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11100
11458
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11101
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11459
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11102
11460
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11103
11461
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11104
11462
|
var _excluded = ["version"];
|
|
@@ -11169,7 +11527,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11169
11527
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11170
11528
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11171
11529
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11172
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11530
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11173
11531
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11174
11532
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11175
11533
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -11242,7 +11600,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11242
11600
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11243
11601
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11244
11602
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11245
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11603
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11246
11604
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11247
11605
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11248
11606
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -11307,7 +11665,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11307
11665
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11308
11666
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11309
11667
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11310
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11668
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11311
11669
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11312
11670
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11313
11671
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -11379,7 +11737,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11379
11737
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11380
11738
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11381
11739
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11382
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11740
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11383
11741
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11384
11742
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11385
11743
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -11441,7 +11799,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11441
11799
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "get", function() { return get; });
|
|
11442
11800
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11443
11801
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11444
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11802
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11445
11803
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
11446
11804
|
|
|
11447
11805
|
|
|
@@ -11540,7 +11898,7 @@ var getManyForOrganization = function getManyForOrganization(http, params) {
|
|
|
11540
11898
|
__webpack_require__.r(__webpack_exports__);
|
|
11541
11899
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "get", function() { return get; });
|
|
11542
11900
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11543
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
11901
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11544
11902
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11545
11903
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11546
11904
|
|
|
@@ -11660,7 +12018,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11660
12018
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithId", function() { return createWithId; });
|
|
11661
12019
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11662
12020
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11663
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
12021
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11664
12022
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11665
12023
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11666
12024
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -11770,7 +12128,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11770
12128
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
11771
12129
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11772
12130
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11773
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
12131
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11774
12132
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11775
12133
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11776
12134
|
var _excluded = ["version"];
|
|
@@ -11841,7 +12199,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11841
12199
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "update", function() { return update; });
|
|
11842
12200
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "del", function() { return del; });
|
|
11843
12201
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "complete", function() { return complete; });
|
|
11844
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
12202
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11845
12203
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
11846
12204
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
11847
12205
|
var _excluded = ["version"],
|
|
@@ -11942,7 +12300,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11942
12300
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../node_modules/axios/index.js");
|
|
11943
12301
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_0__);
|
|
11944
12302
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
11945
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
12303
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
11946
12304
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_2__);
|
|
11947
12305
|
/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./endpoints */ "./adapters/REST/endpoints/index.ts");
|
|
11948
12306
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
@@ -12089,7 +12447,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12089
12447
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapCollection", function() { return wrapCollection; });
|
|
12090
12448
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapCursorPaginatedCollection", function() { return wrapCursorPaginatedCollection; });
|
|
12091
12449
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
12092
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
12450
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
12093
12451
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
12094
12452
|
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
12095
12453
|
|
|
@@ -12620,7 +12978,7 @@ function createClient(params) {
|
|
|
12620
12978
|
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
12621
12979
|
var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
|
|
12622
12980
|
var userAgent = Object(contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__["getUserAgentHeader"])( // @ts-expect-error
|
|
12623
|
-
"".concat(sdkMain, "/").concat("10.21.
|
|
12981
|
+
"".concat(sdkMain, "/").concat("10.21.4"), params.application, params.integration, params.feature);
|
|
12624
12982
|
var adapter = Object(_create_adapter__WEBPACK_IMPORTED_MODULE_1__["createAdapter"])(params);
|
|
12625
12983
|
|
|
12626
12984
|
// Parameters<?> and ReturnType<?> only return the types of the last overload
|
|
@@ -19377,7 +19735,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19377
19735
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapApiKey", function() { return wrapApiKey; });
|
|
19378
19736
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapApiKeyCollection", function() { return wrapApiKeyCollection; });
|
|
19379
19737
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19380
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
19738
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19381
19739
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
19382
19740
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
19383
19741
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19451,7 +19809,7 @@ var wrapApiKeyCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["wr
|
|
|
19451
19809
|
"use strict";
|
|
19452
19810
|
__webpack_require__.r(__webpack_exports__);
|
|
19453
19811
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppActionCall", function() { return wrapAppActionCall; });
|
|
19454
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
19812
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19455
19813
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19456
19814
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19457
19815
|
|
|
@@ -19482,7 +19840,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19482
19840
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppAction", function() { return wrapAppAction; });
|
|
19483
19841
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppActionCollection", function() { return wrapAppActionCollection; });
|
|
19484
19842
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19485
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
19843
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19486
19844
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
19487
19845
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
19488
19846
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19553,7 +19911,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19553
19911
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppBundle", function() { return wrapAppBundle; });
|
|
19554
19912
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppBundleCollection", function() { return wrapAppBundleCollection; });
|
|
19555
19913
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19556
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
19914
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19557
19915
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
19558
19916
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
19559
19917
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19617,7 +19975,7 @@ var wrapAppBundleCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__[
|
|
|
19617
19975
|
__webpack_require__.r(__webpack_exports__);
|
|
19618
19976
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppDefinition", function() { return wrapAppDefinition; });
|
|
19619
19977
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppDefinitionCollection", function() { return wrapAppDefinitionCollection; });
|
|
19620
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
19978
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19621
19979
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19622
19980
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19623
19981
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19661,7 +20019,7 @@ var wrapAppDefinitionCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_
|
|
|
19661
20019
|
__webpack_require__.r(__webpack_exports__);
|
|
19662
20020
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "IconType", function() { return IconType; });
|
|
19663
20021
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppDetails", function() { return wrapAppDetails; });
|
|
19664
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20022
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19665
20023
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19666
20024
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19667
20025
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19721,7 +20079,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19721
20079
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppInstallation", function() { return wrapAppInstallation; });
|
|
19722
20080
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppInstallationCollection", function() { return wrapAppInstallationCollection; });
|
|
19723
20081
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19724
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20082
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19725
20083
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
19726
20084
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
19727
20085
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
@@ -19793,7 +20151,7 @@ var wrapAppInstallationCollection = Object(_common_utils__WEBPACK_IMPORTED_MODUL
|
|
|
19793
20151
|
"use strict";
|
|
19794
20152
|
__webpack_require__.r(__webpack_exports__);
|
|
19795
20153
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppSignedRequest", function() { return wrapAppSignedRequest; });
|
|
19796
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20154
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19797
20155
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19798
20156
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19799
20157
|
|
|
@@ -19821,7 +20179,7 @@ function wrapAppSignedRequest(_makeRequest, data) {
|
|
|
19821
20179
|
"use strict";
|
|
19822
20180
|
__webpack_require__.r(__webpack_exports__);
|
|
19823
20181
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppSigningSecret", function() { return wrapAppSigningSecret; });
|
|
19824
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20182
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19825
20183
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19826
20184
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19827
20185
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19872,7 +20230,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19872
20230
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppUpload", function() { return wrapAppUpload; });
|
|
19873
20231
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppUploadCollection", function() { return wrapAppUploadCollection; });
|
|
19874
20232
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19875
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20233
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19876
20234
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
19877
20235
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
19878
20236
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -19934,7 +20292,7 @@ var wrapAppUploadCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__[
|
|
|
19934
20292
|
"use strict";
|
|
19935
20293
|
__webpack_require__.r(__webpack_exports__);
|
|
19936
20294
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAssetKey", function() { return wrapAssetKey; });
|
|
19937
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20295
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19938
20296
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19939
20297
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19940
20298
|
|
|
@@ -19963,7 +20321,7 @@ function wrapAssetKey(_makeRequest, data) {
|
|
|
19963
20321
|
__webpack_require__.r(__webpack_exports__);
|
|
19964
20322
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAsset", function() { return wrapAsset; });
|
|
19965
20323
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAssetCollection", function() { return wrapAssetCollection; });
|
|
19966
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20324
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
19967
20325
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
19968
20326
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
19969
20327
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20127,7 +20485,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20127
20485
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BulkActionStatus", function() { return BulkActionStatus; });
|
|
20128
20486
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapBulkAction", function() { return wrapBulkAction; });
|
|
20129
20487
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20130
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20488
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20131
20489
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20132
20490
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
20133
20491
|
/* harmony import */ var _methods_action__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../methods/action */ "./methods/action.ts");
|
|
@@ -20246,7 +20604,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20246
20604
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapComment", function() { return wrapComment; });
|
|
20247
20605
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapCommentCollection", function() { return wrapCommentCollection; });
|
|
20248
20606
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20249
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20607
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20250
20608
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20251
20609
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
20252
20610
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20324,7 +20682,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20324
20682
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapContentType", function() { return wrapContentType; });
|
|
20325
20683
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapContentTypeCollection", function() { return wrapContentTypeCollection; });
|
|
20326
20684
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20327
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20685
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20328
20686
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20329
20687
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
20330
20688
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20497,7 +20855,7 @@ var wrapContentTypeCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2_
|
|
|
20497
20855
|
__webpack_require__.r(__webpack_exports__);
|
|
20498
20856
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEditorInterface", function() { return wrapEditorInterface; });
|
|
20499
20857
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEditorInterfaceCollection", function() { return wrapEditorInterfaceCollection; });
|
|
20500
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20858
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20501
20859
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
20502
20860
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20503
20861
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20565,7 +20923,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20565
20923
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEntry", function() { return wrapEntry; });
|
|
20566
20924
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEntryCollection", function() { return wrapEntryCollection; });
|
|
20567
20925
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20568
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20926
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20569
20927
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20570
20928
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
20571
20929
|
/* harmony import */ var _create_entry_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../create-entry-api */ "./create-entry-api.ts");
|
|
@@ -20606,7 +20964,7 @@ var wrapEntryCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["wra
|
|
|
20606
20964
|
__webpack_require__.r(__webpack_exports__);
|
|
20607
20965
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentAlias", function() { return wrapEnvironmentAlias; });
|
|
20608
20966
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentAliasCollection", function() { return wrapEnvironmentAliasCollection; });
|
|
20609
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
20967
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20610
20968
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
20611
20969
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20612
20970
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20684,7 +21042,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20684
21042
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentTemplateInstallation", function() { return wrapEnvironmentTemplateInstallation; });
|
|
20685
21043
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentTemplateInstallationCollection", function() { return wrapEnvironmentTemplateInstallationCollection; });
|
|
20686
21044
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20687
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21045
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20688
21046
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20689
21047
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
20690
21048
|
|
|
@@ -20719,7 +21077,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20719
21077
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentTemplate", function() { return wrapEnvironmentTemplate; });
|
|
20720
21078
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentTemplateCollection", function() { return wrapEnvironmentTemplateCollection; });
|
|
20721
21079
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20722
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21080
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20723
21081
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
20724
21082
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
20725
21083
|
/* harmony import */ var _create_environment_template_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../create-environment-template-api */ "./create-environment-template-api.ts");
|
|
@@ -20750,7 +21108,7 @@ var wrapEnvironmentTemplateCollection = Object(_common_utils__WEBPACK_IMPORTED_M
|
|
|
20750
21108
|
__webpack_require__.r(__webpack_exports__);
|
|
20751
21109
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironment", function() { return wrapEnvironment; });
|
|
20752
21110
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapEnvironmentCollection", function() { return wrapEnvironmentCollection; });
|
|
20753
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21111
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20754
21112
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
20755
21113
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20756
21114
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -20799,7 +21157,7 @@ var wrapEnvironmentCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_4_
|
|
|
20799
21157
|
__webpack_require__.r(__webpack_exports__);
|
|
20800
21158
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapExtension", function() { return wrapExtension; });
|
|
20801
21159
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapExtensionCollection", function() { return wrapExtensionCollection; });
|
|
20802
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21160
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20803
21161
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
20804
21162
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20805
21163
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21030,7 +21388,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21030
21388
|
__webpack_require__.r(__webpack_exports__);
|
|
21031
21389
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapLocale", function() { return wrapLocale; });
|
|
21032
21390
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapLocaleCollection", function() { return wrapLocaleCollection; });
|
|
21033
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21391
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21034
21392
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21035
21393
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21036
21394
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21106,7 +21464,7 @@ var wrapLocaleCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_3__["wr
|
|
|
21106
21464
|
__webpack_require__.r(__webpack_exports__);
|
|
21107
21465
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapOrganizationInvitation", function() { return wrapOrganizationInvitation; });
|
|
21108
21466
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21109
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21467
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21110
21468
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
21111
21469
|
|
|
21112
21470
|
|
|
@@ -21134,7 +21492,7 @@ function wrapOrganizationInvitation(_makeRequest, data) {
|
|
|
21134
21492
|
__webpack_require__.r(__webpack_exports__);
|
|
21135
21493
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapOrganizationMembership", function() { return wrapOrganizationMembership; });
|
|
21136
21494
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapOrganizationMembershipCollection", function() { return wrapOrganizationMembershipCollection; });
|
|
21137
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21495
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21138
21496
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21139
21497
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21140
21498
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21206,7 +21564,7 @@ var wrapOrganizationMembershipCollection = Object(_common_utils__WEBPACK_IMPORTE
|
|
|
21206
21564
|
__webpack_require__.r(__webpack_exports__);
|
|
21207
21565
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapOrganization", function() { return wrapOrganization; });
|
|
21208
21566
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapOrganizationCollection", function() { return wrapOrganizationCollection; });
|
|
21209
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21567
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21210
21568
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21211
21569
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21212
21570
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21253,7 +21611,7 @@ var wrapOrganizationCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_4
|
|
|
21253
21611
|
__webpack_require__.r(__webpack_exports__);
|
|
21254
21612
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapPersonalAccessToken", function() { return wrapPersonalAccessToken; });
|
|
21255
21613
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapPersonalAccessTokenCollection", function() { return wrapPersonalAccessTokenCollection; });
|
|
21256
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21614
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21257
21615
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21258
21616
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21259
21617
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21308,7 +21666,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21308
21666
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapPreviewApiKey", function() { return wrapPreviewApiKey; });
|
|
21309
21667
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapPreviewApiKeyCollection", function() { return wrapPreviewApiKeyCollection; });
|
|
21310
21668
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21311
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21669
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21312
21670
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
21313
21671
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
21314
21672
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21354,7 +21712,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21354
21712
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapReleaseAction", function() { return wrapReleaseAction; });
|
|
21355
21713
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapReleaseActionCollection", function() { return wrapReleaseActionCollection; });
|
|
21356
21714
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21357
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21715
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21358
21716
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
21359
21717
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
21360
21718
|
/* harmony import */ var _methods_action__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../methods/action */ "./methods/action.ts");
|
|
@@ -21468,7 +21826,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21468
21826
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapRelease", function() { return wrapRelease; });
|
|
21469
21827
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapReleaseCollection", function() { return wrapReleaseCollection; });
|
|
21470
21828
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21471
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
21829
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21472
21830
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
21473
21831
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
21474
21832
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21708,7 +22066,7 @@ var wrapReleaseCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["w
|
|
|
21708
22066
|
__webpack_require__.r(__webpack_exports__);
|
|
21709
22067
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapRole", function() { return wrapRole; });
|
|
21710
22068
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapRoleCollection", function() { return wrapRoleCollection; });
|
|
21711
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22069
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21712
22070
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21713
22071
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21714
22072
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21782,7 +22140,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21782
22140
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapScheduledAction", function() { return wrapScheduledAction; });
|
|
21783
22141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapScheduledActionCollection", function() { return wrapScheduledActionCollection; });
|
|
21784
22142
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21785
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22143
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21786
22144
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
21787
22145
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
21788
22146
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -21980,7 +22338,7 @@ var wrapScheduledActionCollection = Object(_common_utils__WEBPACK_IMPORTED_MODUL
|
|
|
21980
22338
|
__webpack_require__.r(__webpack_exports__);
|
|
21981
22339
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSnapshot", function() { return wrapSnapshot; });
|
|
21982
22340
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSnapshotCollection", function() { return wrapSnapshotCollection; });
|
|
21983
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22341
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
21984
22342
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
21985
22343
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
21986
22344
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22031,7 +22389,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22031
22389
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpaceMember", function() { return wrapSpaceMember; });
|
|
22032
22390
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpaceMemberCollection", function() { return wrapSpaceMemberCollection; });
|
|
22033
22391
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22034
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22392
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22035
22393
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22036
22394
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22037
22395
|
|
|
@@ -22066,7 +22424,7 @@ var wrapSpaceMemberCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2_
|
|
|
22066
22424
|
__webpack_require__.r(__webpack_exports__);
|
|
22067
22425
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpaceMembership", function() { return wrapSpaceMembership; });
|
|
22068
22426
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpaceMembershipCollection", function() { return wrapSpaceMembershipCollection; });
|
|
22069
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22427
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22070
22428
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
22071
22429
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22072
22430
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22139,7 +22497,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22139
22497
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpace", function() { return wrapSpace; });
|
|
22140
22498
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapSpaceCollection", function() { return wrapSpaceCollection; });
|
|
22141
22499
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22142
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22500
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22143
22501
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22144
22502
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22145
22503
|
/* harmony import */ var _create_space_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../create-space-api */ "./create-space-api.ts");
|
|
@@ -22188,7 +22546,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22188
22546
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTag", function() { return wrapTag; });
|
|
22189
22547
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTagCollection", function() { return wrapTagCollection; });
|
|
22190
22548
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22191
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22549
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22192
22550
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22193
22551
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22194
22552
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22266,7 +22624,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22266
22624
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTask", function() { return wrapTask; });
|
|
22267
22625
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTaskCollection", function() { return wrapTaskCollection; });
|
|
22268
22626
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22269
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22627
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22270
22628
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22271
22629
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22272
22630
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22343,7 +22701,7 @@ var wrapTaskCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["wrap
|
|
|
22343
22701
|
__webpack_require__.r(__webpack_exports__);
|
|
22344
22702
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeamMembership", function() { return wrapTeamMembership; });
|
|
22345
22703
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeamMembershipCollection", function() { return wrapTeamMembershipCollection; });
|
|
22346
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22704
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22347
22705
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
22348
22706
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22349
22707
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22416,7 +22774,7 @@ var wrapTeamMembershipCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE
|
|
|
22416
22774
|
__webpack_require__.r(__webpack_exports__);
|
|
22417
22775
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeamSpaceMembership", function() { return wrapTeamSpaceMembership; });
|
|
22418
22776
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeamSpaceMembershipCollection", function() { return wrapTeamSpaceMembershipCollection; });
|
|
22419
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22777
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22420
22778
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
22421
22779
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22422
22780
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22488,7 +22846,7 @@ var wrapTeamSpaceMembershipCollection = Object(_common_utils__WEBPACK_IMPORTED_M
|
|
|
22488
22846
|
__webpack_require__.r(__webpack_exports__);
|
|
22489
22847
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeam", function() { return wrapTeam; });
|
|
22490
22848
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapTeamCollection", function() { return wrapTeamCollection; });
|
|
22491
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22849
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22492
22850
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
22493
22851
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22494
22852
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22560,7 +22918,7 @@ var wrapTeamCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_3__["wrap
|
|
|
22560
22918
|
__webpack_require__.r(__webpack_exports__);
|
|
22561
22919
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUIConfig", function() { return wrapUIConfig; });
|
|
22562
22920
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22563
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22921
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22564
22922
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22565
22923
|
/* harmony import */ var _create_ui_config_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../create-ui-config-api */ "./create-ui-config-api.ts");
|
|
22566
22924
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22592,7 +22950,7 @@ function wrapUIConfig(makeRequest, data) {
|
|
|
22592
22950
|
"use strict";
|
|
22593
22951
|
__webpack_require__.r(__webpack_exports__);
|
|
22594
22952
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUpload", function() { return wrapUpload; });
|
|
22595
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
22953
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22596
22954
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
22597
22955
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22598
22956
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22666,7 +23024,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22666
23024
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUsage", function() { return wrapUsage; });
|
|
22667
23025
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUsageCollection", function() { return wrapUsageCollection; });
|
|
22668
23026
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22669
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23027
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22670
23028
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22671
23029
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22672
23030
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22704,7 +23062,7 @@ var wrapUsageCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["wra
|
|
|
22704
23062
|
__webpack_require__.r(__webpack_exports__);
|
|
22705
23063
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUserUIConfig", function() { return wrapUserUIConfig; });
|
|
22706
23064
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22707
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23065
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22708
23066
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22709
23067
|
/* harmony import */ var _create_user_ui_config_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../create-user-ui-config-api */ "./create-user-ui-config-api.ts");
|
|
22710
23068
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22738,7 +23096,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22738
23096
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUser", function() { return wrapUser; });
|
|
22739
23097
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapUserCollection", function() { return wrapUserCollection; });
|
|
22740
23098
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22741
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23099
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22742
23100
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22743
23101
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
22744
23102
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
@@ -22780,7 +23138,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22780
23138
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWebhook", function() { return wrapWebhook; });
|
|
22781
23139
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWebhookCollection", function() { return wrapWebhookCollection; });
|
|
22782
23140
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22783
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23141
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22784
23142
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22785
23143
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22786
23144
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -22886,7 +23244,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22886
23244
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWorkflowDefinition", function() { return wrapWorkflowDefinition; });
|
|
22887
23245
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWorkflowDefinitionCollection", function() { return wrapWorkflowDefinitionCollection; });
|
|
22888
23246
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
22889
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23247
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
22890
23248
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_1__);
|
|
22891
23249
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../common-utils */ "./common-utils.ts");
|
|
22892
23250
|
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
@@ -23205,7 +23563,7 @@ function sleep(durationMs) {
|
|
|
23205
23563
|
"use strict";
|
|
23206
23564
|
__webpack_require__.r(__webpack_exports__);
|
|
23207
23565
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "asIterator", function() { return asIterator; });
|
|
23208
|
-
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/
|
|
23566
|
+
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
23209
23567
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
23210
23568
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
23211
23569
|
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|