contentful-management 9.1.0 → 9.2.0

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.
@@ -3255,365 +3255,358 @@ function errorHandler(errorResponse) {
3255
3255
  /***/ (function(module, exports, __webpack_require__) {
3256
3256
 
3257
3257
  /* WEBPACK VAR INJECTION */(function(global) {(function (global, factory) {
3258
- true ? module.exports = factory() :
3259
- undefined;
3260
- }(this, (function () { 'use strict';
3261
-
3262
- var toStringFunction = Function.prototype.toString;
3263
- var create = Object.create, defineProperty = Object.defineProperty, getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor, getOwnPropertyNames = Object.getOwnPropertyNames, getOwnPropertySymbols = Object.getOwnPropertySymbols, getPrototypeOf = Object.getPrototypeOf;
3264
- var _a = Object.prototype, hasOwnProperty = _a.hasOwnProperty, propertyIsEnumerable = _a.propertyIsEnumerable;
3265
- /**
3266
- * @enum
3267
- *
3268
- * @const {Object} SUPPORTS
3269
- *
3270
- * @property {boolean} SYMBOL_PROPERTIES are symbol properties supported
3271
- * @property {boolean} WEAKMAP is WeakMap supported
3272
- */
3273
- var SUPPORTS = {
3274
- SYMBOL_PROPERTIES: typeof getOwnPropertySymbols === 'function',
3275
- WEAKMAP: typeof WeakMap === 'function',
3276
- };
3277
- /**
3278
- * @function createCache
3279
- *
3280
- * @description
3281
- * get a new cache object to prevent circular references
3282
- *
3283
- * @returns the new cache object
3284
- */
3285
- var createCache = function () {
3286
- if (SUPPORTS.WEAKMAP) {
3287
- return new WeakMap();
3288
- }
3289
- // tiny implementation of WeakMap
3290
- var object = create({
3291
- has: function (key) { return !!~object._keys.indexOf(key); },
3292
- set: function (key, value) {
3293
- object._keys.push(key);
3294
- object._values.push(value);
3295
- },
3296
- get: function (key) { return object._values[object._keys.indexOf(key)]; },
3297
- });
3298
- object._keys = [];
3299
- object._values = [];
3300
- return object;
3301
- };
3302
- /**
3303
- * @function getCleanClone
3304
- *
3305
- * @description
3306
- * get an empty version of the object with the same prototype it has
3307
- *
3308
- * @param object the object to build a clean clone from
3309
- * @param realm the realm the object resides in
3310
- * @returns the empty cloned object
3311
- */
3312
- var getCleanClone = function (object, realm) {
3313
- if (!object.constructor) {
3314
- return create(null);
3315
- }
3316
- var Constructor = object.constructor;
3317
- var prototype = object.__proto__ || getPrototypeOf(object);
3318
- if (Constructor === realm.Object) {
3319
- return prototype === realm.Object.prototype ? {} : create(prototype);
3320
- }
3321
- if (~toStringFunction.call(Constructor).indexOf('[native code]')) {
3322
- try {
3323
- return new Constructor();
3324
- }
3325
- catch (_a) { }
3326
- }
3327
- return create(prototype);
3328
- };
3329
- /**
3330
- * @function getObjectCloneLoose
3331
- *
3332
- * @description
3333
- * get a copy of the object based on loose rules, meaning all enumerable keys
3334
- * and symbols are copied, but property descriptors are not considered
3335
- *
3336
- * @param object the object to clone
3337
- * @param realm the realm the object resides in
3338
- * @param handleCopy the function that handles copying the object
3339
- * @returns the copied object
3340
- */
3341
- var getObjectCloneLoose = function (object, realm, handleCopy, cache) {
3342
- var clone = getCleanClone(object, realm);
3343
- // set in the cache immediately to be able to reuse the object recursively
3344
- cache.set(object, clone);
3345
- for (var key in object) {
3346
- if (hasOwnProperty.call(object, key)) {
3347
- clone[key] = handleCopy(object[key], cache);
3348
- }
3349
- }
3350
- if (SUPPORTS.SYMBOL_PROPERTIES) {
3351
- var symbols = getOwnPropertySymbols(object);
3352
- var length_1 = symbols.length;
3353
- if (length_1) {
3354
- for (var index = 0, symbol = void 0; index < length_1; index++) {
3355
- symbol = symbols[index];
3356
- if (propertyIsEnumerable.call(object, symbol)) {
3357
- clone[symbol] = handleCopy(object[symbol], cache);
3358
- }
3359
- }
3360
- }
3361
- }
3362
- return clone;
3363
- };
3364
- /**
3365
- * @function getObjectCloneStrict
3366
- *
3367
- * @description
3368
- * get a copy of the object based on strict rules, meaning all keys and symbols
3369
- * are copied based on the original property descriptors
3370
- *
3371
- * @param object the object to clone
3372
- * @param realm the realm the object resides in
3373
- * @param handleCopy the function that handles copying the object
3374
- * @returns the copied object
3375
- */
3376
- var getObjectCloneStrict = function (object, realm, handleCopy, cache) {
3377
- var clone = getCleanClone(object, realm);
3378
- // set in the cache immediately to be able to reuse the object recursively
3379
- cache.set(object, clone);
3380
- var properties = SUPPORTS.SYMBOL_PROPERTIES
3381
- ? getOwnPropertyNames(object).concat(getOwnPropertySymbols(object))
3382
- : getOwnPropertyNames(object);
3383
- var length = properties.length;
3384
- if (length) {
3385
- for (var index = 0, property = void 0, descriptor = void 0; index < length; index++) {
3386
- property = properties[index];
3387
- if (property !== 'callee' && property !== 'caller') {
3388
- descriptor = getOwnPropertyDescriptor(object, property);
3389
- if (descriptor) {
3390
- // Only clone the value if actually a value, not a getter / setter.
3391
- if (!descriptor.get && !descriptor.set) {
3392
- descriptor.value = handleCopy(object[property], cache);
3393
- }
3394
- try {
3395
- defineProperty(clone, property, descriptor);
3396
- }
3397
- catch (error) {
3398
- // Tee above can fail on node in edge cases, so fall back to the loose assignment.
3399
- clone[property] = descriptor.value;
3400
- }
3401
- }
3402
- else {
3403
- // In extra edge cases where the property descriptor cannot be retrived, fall back to
3404
- // the loose assignment.
3405
- clone[property] = handleCopy(object[property], cache);
3406
- }
3407
- }
3408
- }
3409
- }
3410
- return clone;
3411
- };
3412
- /**
3413
- * @function getRegExpFlags
3414
- *
3415
- * @description
3416
- * get the flags to apply to the copied regexp
3417
- *
3418
- * @param regExp the regexp to get the flags of
3419
- * @returns the flags for the regexp
3420
- */
3421
- var getRegExpFlags = function (regExp) {
3422
- var flags = '';
3423
- if (regExp.global) {
3424
- flags += 'g';
3425
- }
3426
- if (regExp.ignoreCase) {
3427
- flags += 'i';
3428
- }
3429
- if (regExp.multiline) {
3430
- flags += 'm';
3431
- }
3432
- if (regExp.unicode) {
3433
- flags += 'u';
3434
- }
3435
- if (regExp.sticky) {
3436
- flags += 'y';
3437
- }
3438
- return flags;
3439
- };
3258
+ true ? module.exports = factory() :
3259
+ undefined;
3260
+ })(this, (function () { 'use strict';
3261
+
3262
+ var toStringFunction = Function.prototype.toString;
3263
+ var create = Object.create, defineProperty = Object.defineProperty, getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor, getOwnPropertyNames = Object.getOwnPropertyNames, getOwnPropertySymbols = Object.getOwnPropertySymbols, getPrototypeOf$1 = Object.getPrototypeOf;
3264
+ var _a = Object.prototype, hasOwnProperty = _a.hasOwnProperty, propertyIsEnumerable = _a.propertyIsEnumerable;
3265
+ var SYMBOL_PROPERTIES = typeof getOwnPropertySymbols === 'function';
3266
+ var WEAK_MAP = typeof WeakMap === 'function';
3267
+ /**
3268
+ * @function createCache
3269
+ *
3270
+ * @description
3271
+ * get a new cache object to prevent circular references
3272
+ *
3273
+ * @returns the new cache object
3274
+ */
3275
+ var createCache = (function () {
3276
+ if (WEAK_MAP) {
3277
+ return function () { return new WeakMap(); };
3278
+ }
3279
+ var Cache = /** @class */ (function () {
3280
+ function Cache() {
3281
+ this._keys = [];
3282
+ this._values = [];
3283
+ }
3284
+ Cache.prototype.has = function (key) {
3285
+ return !!~this._keys.indexOf(key);
3286
+ };
3287
+ Cache.prototype.get = function (key) {
3288
+ return this._values[this._keys.indexOf(key)];
3289
+ };
3290
+ Cache.prototype.set = function (key, value) {
3291
+ this._keys.push(key);
3292
+ this._values.push(value);
3293
+ };
3294
+ return Cache;
3295
+ }());
3296
+ return function () { return new Cache(); };
3297
+ })();
3298
+ /**
3299
+ * @function getCleanClone
3300
+ *
3301
+ * @description
3302
+ * get an empty version of the object with the same prototype it has
3303
+ *
3304
+ * @param object the object to build a clean clone from
3305
+ * @param realm the realm the object resides in
3306
+ * @returns the empty cloned object
3307
+ */
3308
+ var getCleanClone = function (object, realm) {
3309
+ var prototype = object.__proto__ || getPrototypeOf$1(object);
3310
+ if (!prototype) {
3311
+ return create(null);
3312
+ }
3313
+ var Constructor = prototype.constructor;
3314
+ if (Constructor === realm.Object) {
3315
+ return prototype === realm.Object.prototype ? {} : create(prototype);
3316
+ }
3317
+ if (~toStringFunction.call(Constructor).indexOf('[native code]')) {
3318
+ try {
3319
+ return new Constructor();
3320
+ }
3321
+ catch (_a) { }
3322
+ }
3323
+ return create(prototype);
3324
+ };
3325
+ /**
3326
+ * @function getObjectCloneLoose
3327
+ *
3328
+ * @description
3329
+ * get a copy of the object based on loose rules, meaning all enumerable keys
3330
+ * and symbols are copied, but property descriptors are not considered
3331
+ *
3332
+ * @param object the object to clone
3333
+ * @param realm the realm the object resides in
3334
+ * @param handleCopy the function that handles copying the object
3335
+ * @returns the copied object
3336
+ */
3337
+ var getObjectCloneLoose = function (object, realm, handleCopy, cache) {
3338
+ var clone = getCleanClone(object, realm);
3339
+ // set in the cache immediately to be able to reuse the object recursively
3340
+ cache.set(object, clone);
3341
+ for (var key in object) {
3342
+ if (hasOwnProperty.call(object, key)) {
3343
+ clone[key] = handleCopy(object[key], cache);
3344
+ }
3345
+ }
3346
+ if (SYMBOL_PROPERTIES) {
3347
+ var symbols = getOwnPropertySymbols(object);
3348
+ for (var index = 0, length_1 = symbols.length, symbol = void 0; index < length_1; ++index) {
3349
+ symbol = symbols[index];
3350
+ if (propertyIsEnumerable.call(object, symbol)) {
3351
+ clone[symbol] = handleCopy(object[symbol], cache);
3352
+ }
3353
+ }
3354
+ }
3355
+ return clone;
3356
+ };
3357
+ /**
3358
+ * @function getObjectCloneStrict
3359
+ *
3360
+ * @description
3361
+ * get a copy of the object based on strict rules, meaning all keys and symbols
3362
+ * are copied based on the original property descriptors
3363
+ *
3364
+ * @param object the object to clone
3365
+ * @param realm the realm the object resides in
3366
+ * @param handleCopy the function that handles copying the object
3367
+ * @returns the copied object
3368
+ */
3369
+ var getObjectCloneStrict = function (object, realm, handleCopy, cache) {
3370
+ var clone = getCleanClone(object, realm);
3371
+ // set in the cache immediately to be able to reuse the object recursively
3372
+ cache.set(object, clone);
3373
+ var properties = SYMBOL_PROPERTIES
3374
+ ? getOwnPropertyNames(object).concat(getOwnPropertySymbols(object))
3375
+ : getOwnPropertyNames(object);
3376
+ for (var index = 0, length_2 = properties.length, property = void 0, descriptor = void 0; index < length_2; ++index) {
3377
+ property = properties[index];
3378
+ if (property !== 'callee' && property !== 'caller') {
3379
+ descriptor = getOwnPropertyDescriptor(object, property);
3380
+ if (descriptor) {
3381
+ // Only clone the value if actually a value, not a getter / setter.
3382
+ if (!descriptor.get && !descriptor.set) {
3383
+ descriptor.value = handleCopy(object[property], cache);
3384
+ }
3385
+ try {
3386
+ defineProperty(clone, property, descriptor);
3387
+ }
3388
+ catch (error) {
3389
+ // Tee above can fail on node in edge cases, so fall back to the loose assignment.
3390
+ clone[property] = descriptor.value;
3391
+ }
3392
+ }
3393
+ else {
3394
+ // In extra edge cases where the property descriptor cannot be retrived, fall back to
3395
+ // the loose assignment.
3396
+ clone[property] = handleCopy(object[property], cache);
3397
+ }
3398
+ }
3399
+ }
3400
+ return clone;
3401
+ };
3402
+ /**
3403
+ * @function getRegExpFlags
3404
+ *
3405
+ * @description
3406
+ * get the flags to apply to the copied regexp
3407
+ *
3408
+ * @param regExp the regexp to get the flags of
3409
+ * @returns the flags for the regexp
3410
+ */
3411
+ var getRegExpFlags = function (regExp) {
3412
+ var flags = '';
3413
+ if (regExp.global) {
3414
+ flags += 'g';
3415
+ }
3416
+ if (regExp.ignoreCase) {
3417
+ flags += 'i';
3418
+ }
3419
+ if (regExp.multiline) {
3420
+ flags += 'm';
3421
+ }
3422
+ if (regExp.unicode) {
3423
+ flags += 'u';
3424
+ }
3425
+ if (regExp.sticky) {
3426
+ flags += 'y';
3427
+ }
3428
+ return flags;
3429
+ };
3440
3430
 
3441
- // utils
3442
- var isArray = Array.isArray;
3443
- var GLOBAL_THIS = (function () {
3444
- if (typeof self !== 'undefined') {
3445
- return self;
3446
- }
3447
- if (typeof window !== 'undefined') {
3448
- return window;
3449
- }
3450
- if (typeof global !== 'undefined') {
3451
- return global;
3452
- }
3453
- if (console && console.error) {
3454
- console.error('Unable to locate global object, returning "this".');
3455
- }
3456
- })();
3457
- /**
3458
- * @function copy
3459
- *
3460
- * @description
3461
- * copy an object deeply as much as possible
3462
- *
3463
- * If `strict` is applied, then all properties (including non-enumerable ones)
3464
- * are copied with their original property descriptors on both objects and arrays.
3465
- *
3466
- * The object is compared to the global constructors in the `realm` provided,
3467
- * and the native constructor is always used to ensure that extensions of native
3468
- * objects (allows in ES2015+) are maintained.
3469
- *
3470
- * @param object the object to copy
3471
- * @param [options] the options for copying with
3472
- * @param [options.isStrict] should the copy be strict
3473
- * @param [options.realm] the realm (this) object the object is copied from
3474
- * @returns the copied object
3475
- */
3476
- function copy(object, options) {
3477
- // manually coalesced instead of default parameters for performance
3478
- var isStrict = !!(options && options.isStrict);
3479
- var realm = (options && options.realm) || GLOBAL_THIS;
3480
- var getObjectClone = isStrict
3481
- ? getObjectCloneStrict
3482
- : getObjectCloneLoose;
3483
- /**
3484
- * @function handleCopy
3485
- *
3486
- * @description
3487
- * copy the object recursively based on its type
3488
- *
3489
- * @param object the object to copy
3490
- * @returns the copied object
3491
- */
3492
- var handleCopy = function (object, cache) {
3493
- if (!object || typeof object !== 'object') {
3494
- return object;
3495
- }
3496
- if (cache.has(object)) {
3497
- return cache.get(object);
3498
- }
3499
- var Constructor = object.constructor;
3500
- // plain objects
3501
- if (Constructor === realm.Object) {
3502
- return getObjectClone(object, realm, handleCopy, cache);
3503
- }
3504
- var clone;
3505
- // arrays
3506
- if (isArray(object)) {
3507
- // if strict, include non-standard properties
3508
- if (isStrict) {
3509
- return getObjectCloneStrict(object, realm, handleCopy, cache);
3510
- }
3511
- var length_1 = object.length;
3512
- clone = new Constructor();
3513
- cache.set(object, clone);
3514
- for (var index = 0; index < length_1; index++) {
3515
- clone[index] = handleCopy(object[index], cache);
3516
- }
3517
- return clone;
3518
- }
3519
- // dates
3520
- if (object instanceof realm.Date) {
3521
- return new Constructor(object.getTime());
3522
- }
3523
- // regexps
3524
- if (object instanceof realm.RegExp) {
3525
- clone = new Constructor(object.source, object.flags || getRegExpFlags(object));
3526
- clone.lastIndex = object.lastIndex;
3527
- return clone;
3528
- }
3529
- // maps
3530
- if (realm.Map && object instanceof realm.Map) {
3531
- clone = new Constructor();
3532
- cache.set(object, clone);
3533
- object.forEach(function (value, key) {
3534
- clone.set(key, handleCopy(value, cache));
3535
- });
3536
- return clone;
3537
- }
3538
- // sets
3539
- if (realm.Set && object instanceof realm.Set) {
3540
- clone = new Constructor();
3541
- cache.set(object, clone);
3542
- object.forEach(function (value) {
3543
- clone.add(handleCopy(value, cache));
3544
- });
3545
- return clone;
3546
- }
3547
- // blobs
3548
- if (realm.Blob && object instanceof realm.Blob) {
3549
- return object.slice(0, object.size, object.type);
3550
- }
3551
- // buffers (node-only)
3552
- if (realm.Buffer && realm.Buffer.isBuffer(object)) {
3553
- clone = realm.Buffer.allocUnsafe
3554
- ? realm.Buffer.allocUnsafe(object.length)
3555
- : new Constructor(object.length);
3556
- cache.set(object, clone);
3557
- object.copy(clone);
3558
- return clone;
3559
- }
3560
- // arraybuffers / dataviews
3561
- if (realm.ArrayBuffer) {
3562
- // dataviews
3563
- if (realm.ArrayBuffer.isView(object)) {
3564
- clone = new Constructor(object.buffer.slice(0));
3565
- cache.set(object, clone);
3566
- return clone;
3567
- }
3568
- // arraybuffers
3569
- if (object instanceof realm.ArrayBuffer) {
3570
- clone = object.slice(0);
3571
- cache.set(object, clone);
3572
- return clone;
3573
- }
3574
- }
3575
- // if the object cannot / should not be cloned, don't
3576
- if (
3577
- // promise-like
3578
- typeof object.then === 'function' ||
3579
- // errors
3580
- object instanceof Error ||
3581
- // weakmaps
3582
- (realm.WeakMap && object instanceof realm.WeakMap) ||
3583
- // weaksets
3584
- (realm.WeakSet && object instanceof realm.WeakSet)) {
3585
- return object;
3586
- }
3587
- // assume anything left is a custom constructor
3588
- return getObjectClone(object, realm, handleCopy, cache);
3589
- };
3590
- return handleCopy(object, createCache());
3591
- }
3592
- // Adding reference to allow usage in CommonJS libraries compiled using TSC, which
3593
- // expects there to be a default property on the exported object. See
3594
- // [#37](https://github.com/planttheidea/fast-copy/issues/37) for details.
3595
- copy.default = copy;
3596
- /**
3597
- * @function strictCopy
3598
- *
3599
- * @description
3600
- * copy the object with `strict` option pre-applied
3601
- *
3602
- * @param object the object to copy
3603
- * @param [options] the options for copying with
3604
- * @param [options.realm] the realm (this) object the object is copied from
3605
- * @returns the copied object
3606
- */
3607
- copy.strict = function strictCopy(object, options) {
3608
- return copy(object, {
3609
- isStrict: true,
3610
- realm: options ? options.realm : void 0,
3611
- });
3612
- };
3431
+ // utils
3432
+ var isArray = Array.isArray;
3433
+ var getPrototypeOf = Object.getPrototypeOf;
3434
+ var GLOBAL_THIS = (function () {
3435
+ if (typeof globalThis !== 'undefined') {
3436
+ return globalThis;
3437
+ }
3438
+ if (typeof self !== 'undefined') {
3439
+ return self;
3440
+ }
3441
+ if (typeof window !== 'undefined') {
3442
+ return window;
3443
+ }
3444
+ if (typeof global !== 'undefined') {
3445
+ return global;
3446
+ }
3447
+ if (console && console.error) {
3448
+ console.error('Unable to locate global object, returning "this".');
3449
+ }
3450
+ return this;
3451
+ })();
3452
+ /**
3453
+ * @function copy
3454
+ *
3455
+ * @description
3456
+ * copy an value deeply as much as possible
3457
+ *
3458
+ * If `strict` is applied, then all properties (including non-enumerable ones)
3459
+ * are copied with their original property descriptors on both objects and arrays.
3460
+ *
3461
+ * The value is compared to the global constructors in the `realm` provided,
3462
+ * and the native constructor is always used to ensure that extensions of native
3463
+ * objects (allows in ES2015+) are maintained.
3464
+ *
3465
+ * @param value the value to copy
3466
+ * @param [options] the options for copying with
3467
+ * @param [options.isStrict] should the copy be strict
3468
+ * @param [options.realm] the realm (this) value the value is copied from
3469
+ * @returns the copied value
3470
+ */
3471
+ function copy(value, options) {
3472
+ // manually coalesced instead of default parameters for performance
3473
+ var isStrict = !!(options && options.isStrict);
3474
+ var realm = (options && options.realm) || GLOBAL_THIS;
3475
+ var getObjectClone = isStrict ? getObjectCloneStrict : getObjectCloneLoose;
3476
+ /**
3477
+ * @function handleCopy
3478
+ *
3479
+ * @description
3480
+ * copy the value recursively based on its type
3481
+ *
3482
+ * @param value the value to copy
3483
+ * @returns the copied value
3484
+ */
3485
+ var handleCopy = function (value, cache) {
3486
+ if (!value || typeof value !== 'object') {
3487
+ return value;
3488
+ }
3489
+ if (cache.has(value)) {
3490
+ return cache.get(value);
3491
+ }
3492
+ var prototype = value.__proto__ || getPrototypeOf(value);
3493
+ var Constructor = prototype && prototype.constructor;
3494
+ // plain objects
3495
+ if (!Constructor || Constructor === realm.Object) {
3496
+ return getObjectClone(value, realm, handleCopy, cache);
3497
+ }
3498
+ var clone;
3499
+ // arrays
3500
+ if (isArray(value)) {
3501
+ // if strict, include non-standard properties
3502
+ if (isStrict) {
3503
+ return getObjectCloneStrict(value, realm, handleCopy, cache);
3504
+ }
3505
+ clone = new Constructor();
3506
+ cache.set(value, clone);
3507
+ for (var index = 0, length_1 = value.length; index < length_1; ++index) {
3508
+ clone[index] = handleCopy(value[index], cache);
3509
+ }
3510
+ return clone;
3511
+ }
3512
+ // dates
3513
+ if (value instanceof realm.Date) {
3514
+ return new Constructor(value.getTime());
3515
+ }
3516
+ // regexps
3517
+ if (value instanceof realm.RegExp) {
3518
+ clone = new Constructor(value.source, value.flags || getRegExpFlags(value));
3519
+ clone.lastIndex = value.lastIndex;
3520
+ return clone;
3521
+ }
3522
+ // maps
3523
+ if (realm.Map && value instanceof realm.Map) {
3524
+ clone = new Constructor();
3525
+ cache.set(value, clone);
3526
+ value.forEach(function (value, key) {
3527
+ clone.set(key, handleCopy(value, cache));
3528
+ });
3529
+ return clone;
3530
+ }
3531
+ // sets
3532
+ if (realm.Set && value instanceof realm.Set) {
3533
+ clone = new Constructor();
3534
+ cache.set(value, clone);
3535
+ value.forEach(function (value) {
3536
+ clone.add(handleCopy(value, cache));
3537
+ });
3538
+ return clone;
3539
+ }
3540
+ // blobs
3541
+ if (realm.Blob && value instanceof realm.Blob) {
3542
+ return value.slice(0, value.size, value.type);
3543
+ }
3544
+ // buffers (node-only)
3545
+ if (realm.Buffer && realm.Buffer.isBuffer(value)) {
3546
+ clone = realm.Buffer.allocUnsafe
3547
+ ? realm.Buffer.allocUnsafe(value.length)
3548
+ : new Constructor(value.length);
3549
+ cache.set(value, clone);
3550
+ value.copy(clone);
3551
+ return clone;
3552
+ }
3553
+ // arraybuffers / dataviews
3554
+ if (realm.ArrayBuffer) {
3555
+ // dataviews
3556
+ if (realm.ArrayBuffer.isView(value)) {
3557
+ clone = new Constructor(value.buffer.slice(0));
3558
+ cache.set(value, clone);
3559
+ return clone;
3560
+ }
3561
+ // arraybuffers
3562
+ if (value instanceof realm.ArrayBuffer) {
3563
+ clone = value.slice(0);
3564
+ cache.set(value, clone);
3565
+ return clone;
3566
+ }
3567
+ }
3568
+ // if the value cannot / should not be cloned, don't
3569
+ if (
3570
+ // promise-like
3571
+ typeof value.then === 'function' ||
3572
+ // errors
3573
+ value instanceof Error ||
3574
+ // weakmaps
3575
+ (realm.WeakMap && value instanceof realm.WeakMap) ||
3576
+ // weaksets
3577
+ (realm.WeakSet && value instanceof realm.WeakSet)) {
3578
+ return value;
3579
+ }
3580
+ // assume anything left is a custom constructor
3581
+ return getObjectClone(value, realm, handleCopy, cache);
3582
+ };
3583
+ return handleCopy(value, createCache());
3584
+ }
3585
+ // Adding reference to allow usage in CommonJS libraries compiled using TSC, which
3586
+ // expects there to be a default property on the exported value. See
3587
+ // [#37](https://github.com/planttheidea/fast-copy/issues/37) for details.
3588
+ copy.default = copy;
3589
+ /**
3590
+ * @function strictCopy
3591
+ *
3592
+ * @description
3593
+ * copy the value with `strict` option pre-applied
3594
+ *
3595
+ * @param value the value to copy
3596
+ * @param [options] the options for copying with
3597
+ * @param [options.realm] the realm (this) value the value is copied from
3598
+ * @returns the copied value
3599
+ */
3600
+ copy.strict = function strictCopy(value, options) {
3601
+ return copy(value, {
3602
+ isStrict: true,
3603
+ realm: options ? options.realm : void 0,
3604
+ });
3605
+ };
3613
3606
 
3614
- return copy;
3607
+ return copy;
3615
3608
 
3616
- })));
3609
+ }));
3617
3610
  //# sourceMappingURL=fast-copy.js.map
3618
3611
 
3619
3612
  /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ "../node_modules/webpack/buildin/global.js")))
@@ -8225,7 +8218,7 @@ var queryForRelease = function queryForRelease(http, params) {
8225
8218
  /*!********************************************!*\
8226
8219
  !*** ./adapters/REST/endpoints/release.ts ***!
8227
8220
  \********************************************/
8228
- /*! exports provided: get, query, create, update, del, publish, unpublish, validate */
8221
+ /*! exports provided: get, query, create, update, del, publish, unpublish, validate, archive, unarchive */
8229
8222
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
8230
8223
 
8231
8224
  "use strict";
@@ -8238,6 +8231,8 @@ __webpack_require__.r(__webpack_exports__);
8238
8231
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "publish", function() { return publish; });
8239
8232
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "unpublish", function() { return unpublish; });
8240
8233
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "validate", function() { return validate; });
8234
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "archive", function() { return archive; });
8235
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "unarchive", function() { return unarchive; });
8241
8236
  /* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
8242
8237
  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; }
8243
8238
 
@@ -8245,7 +8240,6 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
8245
8240
 
8246
8241
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8247
8242
 
8248
- /* eslint-disable @typescript-eslint/no-explicit-any */
8249
8243
 
8250
8244
  var get = function get(http, params) {
8251
8245
  return _raw__WEBPACK_IMPORTED_MODULE_0__["get"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/releases/").concat(params.releaseId));
@@ -8285,6 +8279,20 @@ var unpublish = function unpublish(http, params, headers) {
8285
8279
  var validate = function validate(http, params, payload) {
8286
8280
  return _raw__WEBPACK_IMPORTED_MODULE_0__["post"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/releases/").concat(params.releaseId, "/validate"), payload);
8287
8281
  };
8282
+ var archive = function archive(http, params) {
8283
+ return _raw__WEBPACK_IMPORTED_MODULE_0__["put"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/releases/").concat(params.releaseId, "/archived"), null, {
8284
+ headers: {
8285
+ 'X-Contentful-Version': params.version
8286
+ }
8287
+ });
8288
+ };
8289
+ var unarchive = function unarchive(http, params) {
8290
+ return _raw__WEBPACK_IMPORTED_MODULE_0__["del"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/releases/").concat(params.releaseId, "/archived"), {
8291
+ headers: {
8292
+ 'X-Contentful-Version': params.version
8293
+ }
8294
+ });
8295
+ };
8288
8296
 
8289
8297
  /***/ }),
8290
8298
 
@@ -10174,7 +10182,7 @@ function createClient(params) {
10174
10182
  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
10175
10183
  var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
10176
10184
  var userAgent = Object(contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__["getUserAgentHeader"])( // @ts-expect-error
10177
- "".concat(sdkMain, "/").concat("9.1.0"), params.application, params.integration, params.feature);
10185
+ "".concat(sdkMain, "/").concat("9.2.0"), params.application, params.integration, params.feature);
10178
10186
  var adapter = Object(_create_adapter__WEBPACK_IMPORTED_MODULE_1__["createAdapter"])(params); // Parameters<?> and ReturnType<?> only return the types of the last overload
10179
10187
  // https://github.com/microsoft/TypeScript/issues/26591
10180
10188
  // @ts-expect-error
@@ -13506,6 +13514,80 @@ function createEnvironmentApi(makeRequest) {
13506
13514
  });
13507
13515
  },
13508
13516
 
13517
+ /**
13518
+ * Archives a Release and prevents new operations (publishing, unpublishing adding new entities etc).
13519
+ * @param options.releaseId the ID of the release
13520
+ * @param options.version the version of the release that is to be archived
13521
+ * @returns Promise containing a wrapped Release, that has helper methods within.
13522
+ *
13523
+ * @example ```javascript
13524
+ * const contentful = require('contentful-management')
13525
+ *
13526
+ * const client = contentful.createClient({
13527
+ * accessToken: '<content_management_api_key>'
13528
+ * })
13529
+ *
13530
+ * client.getSpace('<space_id>')
13531
+ * .then((space) => space.getEnvironment('<environment-id>'))
13532
+ * .then((environment) => environment.archiveRelease({ releaseId: '<release_id>', version: 1 }))
13533
+ * .catch(console.error)
13534
+ * ```
13535
+ */
13536
+ archiveRelease: function archiveRelease(_ref6) {
13537
+ var releaseId = _ref6.releaseId,
13538
+ version = _ref6.version;
13539
+ var raw = this.toPlainObject();
13540
+ return makeRequest({
13541
+ entityType: 'Release',
13542
+ action: 'archive',
13543
+ params: {
13544
+ spaceId: raw.sys.space.sys.id,
13545
+ environmentId: raw.sys.id,
13546
+ releaseId: releaseId,
13547
+ version: version
13548
+ }
13549
+ }).then(function (data) {
13550
+ return Object(_entities_release__WEBPACK_IMPORTED_MODULE_3__["wrapRelease"])(makeRequest, data);
13551
+ });
13552
+ },
13553
+
13554
+ /**
13555
+ * Unarchives a previously archived Release - this enables the release to be published, unpublished etc.
13556
+ * @param options.releaseId the ID of the release
13557
+ * @param options.version the version of the release that is to be unarchived
13558
+ * @returns Promise containing a wrapped Release, that has helper methods within.
13559
+ *
13560
+ * @example ```javascript
13561
+ * const contentful = require('contentful-management')
13562
+ *
13563
+ * const client = contentful.createClient({
13564
+ * accessToken: '<content_management_api_key>'
13565
+ * })
13566
+ *
13567
+ * client.getSpace('<space_id>')
13568
+ * .then((space) => space.getEnvironment('<environment-id>'))
13569
+ * .then((environment) => environment.unarchiveRelease({ releaseId: '<release_id>', version: 1 }))
13570
+ * .catch(console.error)
13571
+ * ```
13572
+ */
13573
+ unarchiveRelease: function unarchiveRelease(_ref7) {
13574
+ var releaseId = _ref7.releaseId,
13575
+ version = _ref7.version;
13576
+ var raw = this.toPlainObject();
13577
+ return makeRequest({
13578
+ entityType: 'Release',
13579
+ action: 'unarchive',
13580
+ params: {
13581
+ spaceId: raw.sys.space.sys.id,
13582
+ environmentId: raw.sys.id,
13583
+ releaseId: releaseId,
13584
+ version: version
13585
+ }
13586
+ }).then(function (data) {
13587
+ return Object(_entities_release__WEBPACK_IMPORTED_MODULE_3__["wrapRelease"])(makeRequest, data);
13588
+ });
13589
+ },
13590
+
13509
13591
  /**
13510
13592
  * Retrieves a ReleaseAction by ID
13511
13593
  * @param params.releaseId The ID of a Release
@@ -13525,9 +13607,9 @@ function createEnvironmentApi(makeRequest) {
13525
13607
  * .catch(console.error)
13526
13608
  * ```
13527
13609
  */
13528
- getReleaseAction: function getReleaseAction(_ref6) {
13529
- var actionId = _ref6.actionId,
13530
- releaseId = _ref6.releaseId;
13610
+ getReleaseAction: function getReleaseAction(_ref8) {
13611
+ var actionId = _ref8.actionId,
13612
+ releaseId = _ref8.releaseId;
13531
13613
  var raw = this.toPlainObject();
13532
13614
  return makeRequest({
13533
13615
  entityType: 'ReleaseAction',
@@ -13563,9 +13645,9 @@ function createEnvironmentApi(makeRequest) {
13563
13645
  * .catch(console.error)
13564
13646
  * ```
13565
13647
  */
13566
- getReleaseActions: function getReleaseActions(_ref7) {
13567
- var releaseId = _ref7.releaseId,
13568
- query = _ref7.query;
13648
+ getReleaseActions: function getReleaseActions(_ref9) {
13649
+ var releaseId = _ref9.releaseId,
13650
+ query = _ref9.query;
13569
13651
  var raw = this.toPlainObject();
13570
13652
  return makeRequest({
13571
13653
  entityType: 'ReleaseAction',
@@ -18348,7 +18430,7 @@ function createReleaseApi(makeRequest) {
18348
18430
  };
18349
18431
 
18350
18432
  return {
18351
- update: function update(payload) {
18433
+ archive: function archive() {
18352
18434
  var _this = this;
18353
18435
 
18354
18436
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
@@ -18360,9 +18442,8 @@ function createReleaseApi(makeRequest) {
18360
18442
  params = getParams(_this);
18361
18443
  return _context.abrupt("return", makeRequest({
18362
18444
  entityType: 'Release',
18363
- action: 'update',
18364
- params: params,
18365
- payload: payload
18445
+ action: 'archive',
18446
+ params: params
18366
18447
  }).then(function (release) {
18367
18448
  return wrapRelease(makeRequest, release);
18368
18449
  }));
@@ -18375,7 +18456,7 @@ function createReleaseApi(makeRequest) {
18375
18456
  }, _callee);
18376
18457
  }))();
18377
18458
  },
18378
- delete: function _delete() {
18459
+ unarchive: function unarchive() {
18379
18460
  var _this2 = this;
18380
18461
 
18381
18462
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() {
@@ -18385,14 +18466,15 @@ function createReleaseApi(makeRequest) {
18385
18466
  switch (_context2.prev = _context2.next) {
18386
18467
  case 0:
18387
18468
  params = getParams(_this2);
18388
- _context2.next = 3;
18389
- return makeRequest({
18469
+ return _context2.abrupt("return", makeRequest({
18390
18470
  entityType: 'Release',
18391
- action: 'delete',
18471
+ action: 'unarchive',
18392
18472
  params: params
18393
- });
18473
+ }).then(function (release) {
18474
+ return wrapRelease(makeRequest, release);
18475
+ }));
18394
18476
 
18395
- case 3:
18477
+ case 2:
18396
18478
  case "end":
18397
18479
  return _context2.stop();
18398
18480
  }
@@ -18400,7 +18482,7 @@ function createReleaseApi(makeRequest) {
18400
18482
  }, _callee2);
18401
18483
  }))();
18402
18484
  },
18403
- publish: function publish(options) {
18485
+ update: function update(payload) {
18404
18486
  var _this3 = this;
18405
18487
 
18406
18488
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3() {
@@ -18412,12 +18494,11 @@ function createReleaseApi(makeRequest) {
18412
18494
  params = getParams(_this3);
18413
18495
  return _context3.abrupt("return", makeRequest({
18414
18496
  entityType: 'Release',
18415
- action: 'publish',
18416
- params: params
18417
- }).then(function (data) {
18418
- return Object(_release_action__WEBPACK_IMPORTED_MODULE_4__["wrapReleaseAction"])(makeRequest, data);
18419
- }).then(function (action) {
18420
- return action.waitProcessing(options);
18497
+ action: 'update',
18498
+ params: params,
18499
+ payload: payload
18500
+ }).then(function (release) {
18501
+ return wrapRelease(makeRequest, release);
18421
18502
  }));
18422
18503
 
18423
18504
  case 2:
@@ -18428,7 +18509,7 @@ function createReleaseApi(makeRequest) {
18428
18509
  }, _callee3);
18429
18510
  }))();
18430
18511
  },
18431
- unpublish: function unpublish(options) {
18512
+ delete: function _delete() {
18432
18513
  var _this4 = this;
18433
18514
 
18434
18515
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4() {
@@ -18438,17 +18519,14 @@ function createReleaseApi(makeRequest) {
18438
18519
  switch (_context4.prev = _context4.next) {
18439
18520
  case 0:
18440
18521
  params = getParams(_this4);
18441
- return _context4.abrupt("return", makeRequest({
18522
+ _context4.next = 3;
18523
+ return makeRequest({
18442
18524
  entityType: 'Release',
18443
- action: 'unpublish',
18525
+ action: 'delete',
18444
18526
  params: params
18445
- }).then(function (data) {
18446
- return Object(_release_action__WEBPACK_IMPORTED_MODULE_4__["wrapReleaseAction"])(makeRequest, data);
18447
- }).then(function (action) {
18448
- return action.waitProcessing(options);
18449
- }));
18527
+ });
18450
18528
 
18451
- case 2:
18529
+ case 3:
18452
18530
  case "end":
18453
18531
  return _context4.stop();
18454
18532
  }
@@ -18456,7 +18534,7 @@ function createReleaseApi(makeRequest) {
18456
18534
  }, _callee4);
18457
18535
  }))();
18458
18536
  },
18459
- validate: function validate(options) {
18537
+ publish: function publish(options) {
18460
18538
  var _this5 = this;
18461
18539
 
18462
18540
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee5() {
@@ -18467,6 +18545,62 @@ function createReleaseApi(makeRequest) {
18467
18545
  case 0:
18468
18546
  params = getParams(_this5);
18469
18547
  return _context5.abrupt("return", makeRequest({
18548
+ entityType: 'Release',
18549
+ action: 'publish',
18550
+ params: params
18551
+ }).then(function (data) {
18552
+ return Object(_release_action__WEBPACK_IMPORTED_MODULE_4__["wrapReleaseAction"])(makeRequest, data);
18553
+ }).then(function (action) {
18554
+ return action.waitProcessing(options);
18555
+ }));
18556
+
18557
+ case 2:
18558
+ case "end":
18559
+ return _context5.stop();
18560
+ }
18561
+ }
18562
+ }, _callee5);
18563
+ }))();
18564
+ },
18565
+ unpublish: function unpublish(options) {
18566
+ var _this6 = this;
18567
+
18568
+ return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee6() {
18569
+ var params;
18570
+ return regeneratorRuntime.wrap(function _callee6$(_context6) {
18571
+ while (1) {
18572
+ switch (_context6.prev = _context6.next) {
18573
+ case 0:
18574
+ params = getParams(_this6);
18575
+ return _context6.abrupt("return", makeRequest({
18576
+ entityType: 'Release',
18577
+ action: 'unpublish',
18578
+ params: params
18579
+ }).then(function (data) {
18580
+ return Object(_release_action__WEBPACK_IMPORTED_MODULE_4__["wrapReleaseAction"])(makeRequest, data);
18581
+ }).then(function (action) {
18582
+ return action.waitProcessing(options);
18583
+ }));
18584
+
18585
+ case 2:
18586
+ case "end":
18587
+ return _context6.stop();
18588
+ }
18589
+ }
18590
+ }, _callee6);
18591
+ }))();
18592
+ },
18593
+ validate: function validate(options) {
18594
+ var _this7 = this;
18595
+
18596
+ return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee7() {
18597
+ var params;
18598
+ return regeneratorRuntime.wrap(function _callee7$(_context7) {
18599
+ while (1) {
18600
+ switch (_context7.prev = _context7.next) {
18601
+ case 0:
18602
+ params = getParams(_this7);
18603
+ return _context7.abrupt("return", makeRequest({
18470
18604
  entityType: 'Release',
18471
18605
  action: 'validate',
18472
18606
  params: params,
@@ -18479,10 +18613,10 @@ function createReleaseApi(makeRequest) {
18479
18613
 
18480
18614
  case 2:
18481
18615
  case "end":
18482
- return _context5.stop();
18616
+ return _context7.stop();
18483
18617
  }
18484
18618
  }
18485
- }, _callee5);
18619
+ }, _callee7);
18486
18620
  }))();
18487
18621
  }
18488
18622
  };
@@ -20445,12 +20579,14 @@ var createPlainClient = function createPlainClient(makeRequest, defaults, alphaF
20445
20579
  getManyForOrganization: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Usage', 'getManyForOrganization')
20446
20580
  },
20447
20581
  release: {
20582
+ archive: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'archive'),
20448
20583
  get: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'get'),
20449
20584
  query: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'query'),
20450
20585
  create: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'create'),
20451
20586
  update: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'update'),
20452
20587
  delete: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'delete'),
20453
20588
  publish: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'publish'),
20589
+ unarchive: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'unarchive'),
20454
20590
  unpublish: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'unpublish'),
20455
20591
  validate: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_2__["wrap"])(wrapParams, 'Release', 'validate')
20456
20592
  },