diff --git a/.eslintrc b/.eslintrc index 1b1af392..64a11f32 100644 --- a/.eslintrc +++ b/.eslintrc @@ -7,7 +7,7 @@ "jest/globals": true }, "parserOptions": { - "ecmaVersion": 9 + "ecmaVersion": 2020 }, "rules": { "no-plusplus": 0, @@ -23,10 +23,7 @@ "no-lonely-if": 0, "max-classes-per-file": 0, "prefer-spread": 0, - "no-constructor-return": 0, - "no-console": 0, - "object-curly-spacing": 0, - "no-extend-native": 0 + "no-constructor-return": 0 }, "globals": { "BigInt": "readonly" diff --git a/CountItems/CountManager.js b/CountItems/CountManager.js index d60b6e7c..a9b2d22b 100644 --- a/CountItems/CountManager.js +++ b/CountItems/CountManager.js @@ -11,12 +11,12 @@ class CountManager { this.maxConcurrent = params.maxConcurrent; this.temporaryStore = {}; this.store = { - objects: BigInt(0), - versions: BigInt(0), + objects: 0n, + versions: 0n, buckets: 0, bucketList: [], dataManaged: { - total: { curr: BigInt(0), prev: BigInt(0) }, + total: { curr: 0n, prev: 0n }, byLocation: {}, }, stalled: 0, @@ -61,22 +61,14 @@ class CountManager { if (!results) { return; } - this.store.versions += results.versions ? results.versions : BigInt(0); - // eslint-disable-next-line no-console - console.log('results.objects', results.objects); - this.store.objects += results.objects ? results.objects : BigInt(0); - // eslint-disable-next-line no-console - console.log('this.store.objects', this.store.objects); + this.store.versions += results.versions ? results.versions : 0n; + this.store.objects += results.objects ? results.objects : 0n; this.store.stalled += results.stalled; if (results.dataManaged && results.dataManaged.locations && results.dataManaged.total) { const { locations, total } = results.dataManaged; - // eslint-disable-next-line no-console - console.log('total.curr', total.curr); this.store.dataManaged.total.curr += total.curr; - // eslint-disable-next-line no-console - console.log('total.prev', total.prev); this.store.dataManaged.total.prev += total.prev; Object.keys(locations).forEach(site => { if (!this.store.dataManaged.byLocation[site]) { diff --git a/CountItems/CountWorker.js b/CountItems/CountWorker.js index e8d09bf2..c56eb4b9 100644 --- a/CountItems/CountWorker.js +++ b/CountItems/CountWorker.js @@ -3,10 +3,6 @@ const async = require('async'); const { BucketInfo } = require('arsenal').models; const monitoring = require('../utils/monitoring'); -/* eslint-disable no-extend-native */ -BigInt.prototype.toJSON = () => this.toString(); -/* eslint-disable no-extend-native */ - class CountWorker { constructor(params) { this.log = params.log; diff --git a/CountItems/masterProcess.js b/CountItems/masterProcess.js index 9b841ecd..277ce8d0 100644 --- a/CountItems/masterProcess.js +++ b/CountItems/masterProcess.js @@ -21,10 +21,6 @@ const loggerConfig = { let waitingForPromScraping = false; -/* eslint-disable no-extend-native */ -BigInt.prototype.toJSON = () => this.toString(); -/* eslint-disable no-extend-native */ - werelogs.configure(loggerConfig); const log = new werelogs.Logger('S3Utils::CountItems::Master'); diff --git a/CountItems/utils/utils.js b/CountItems/utils/utils.js index 2ef76730..c4442512 100644 --- a/CountItems/utils/utils.js +++ b/CountItems/utils/utils.js @@ -9,32 +9,32 @@ function consolidateDataMetrics(target, source) { if (!resTarget.usedCapacity) { Object.assign(resTarget, { usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _inflightsPreScan: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _inflightsPreScan: 0n, + _incompleteMPUParts: 0n, }, }); } if (!resTarget.objectCount) { Object.assign(resTarget, { objectCount: { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }, }); } @@ -42,42 +42,42 @@ function consolidateDataMetrics(target, source) { return resTarget; } const { usedCapacity, objectCount, accountOwnerID } = source; - resTarget.usedCapacity.current += usedCapacity && usedCapacity.current ? usedCapacity.current : BigInt(0); - resTarget.usedCapacity.nonCurrent += usedCapacity && usedCapacity.nonCurrent ? usedCapacity.nonCurrent : BigInt(0); - resTarget.usedCapacity._currentCold += usedCapacity && usedCapacity._currentCold ? usedCapacity._currentCold : BigInt(0); - resTarget.usedCapacity._nonCurrentCold += usedCapacity && usedCapacity._nonCurrentCold ? usedCapacity._nonCurrentCold : BigInt(0); - resTarget.usedCapacity._currentRestoring += usedCapacity && usedCapacity._currentRestoring ? usedCapacity._currentRestoring : BigInt(0); - resTarget.usedCapacity._currentRestored += usedCapacity && usedCapacity._currentRestored ? usedCapacity._currentRestored : BigInt(0); - resTarget.usedCapacity._nonCurrentRestoring += usedCapacity && usedCapacity._nonCurrentRestoring ? usedCapacity._nonCurrentRestoring : BigInt(0); - resTarget.usedCapacity._nonCurrentRestored += usedCapacity && usedCapacity._nonCurrentRestored ? usedCapacity._nonCurrentRestored : BigInt(0); - resTarget.usedCapacity._incompleteMPUParts += usedCapacity && usedCapacity._incompleteMPUParts ? usedCapacity._incompleteMPUParts : BigInt(0); + resTarget.usedCapacity.current += usedCapacity && usedCapacity.current ? usedCapacity.current : 0n; + resTarget.usedCapacity.nonCurrent += usedCapacity && usedCapacity.nonCurrent ? usedCapacity.nonCurrent : 0n; + resTarget.usedCapacity._currentCold += usedCapacity && usedCapacity._currentCold ? usedCapacity._currentCold : 0n; + resTarget.usedCapacity._nonCurrentCold += usedCapacity && usedCapacity._nonCurrentCold ? usedCapacity._nonCurrentCold : 0n; + resTarget.usedCapacity._currentRestoring += usedCapacity && usedCapacity._currentRestoring ? usedCapacity._currentRestoring : 0n; + resTarget.usedCapacity._currentRestored += usedCapacity && usedCapacity._currentRestored ? usedCapacity._currentRestored : 0n; + resTarget.usedCapacity._nonCurrentRestoring += usedCapacity && usedCapacity._nonCurrentRestoring ? usedCapacity._nonCurrentRestoring : 0n; + resTarget.usedCapacity._nonCurrentRestored += usedCapacity && usedCapacity._nonCurrentRestored ? usedCapacity._nonCurrentRestored : 0n; + resTarget.usedCapacity._incompleteMPUParts += usedCapacity && usedCapacity._incompleteMPUParts ? usedCapacity._incompleteMPUParts : 0n; - resTarget.objectCount.current += objectCount && objectCount.current ? objectCount.current : BigInt(0); - resTarget.objectCount.nonCurrent += objectCount && objectCount.nonCurrent ? objectCount.nonCurrent : BigInt(0); - resTarget.objectCount.deleteMarker += objectCount && objectCount.deleteMarker ? objectCount.deleteMarker : BigInt(0); - resTarget.objectCount._currentCold += objectCount && objectCount._currentCold ? objectCount._currentCold : BigInt(0); - resTarget.objectCount._nonCurrentCold += objectCount && objectCount._nonCurrentCold ? objectCount._nonCurrentCold : BigInt(0); - resTarget.objectCount._currentRestoring += objectCount && objectCount._currentRestoring ? objectCount._currentRestoring : BigInt(0); - resTarget.objectCount._currentRestored += objectCount && objectCount._currentRestored ? objectCount._currentRestored : BigInt(0); - resTarget.objectCount._nonCurrentRestoring += objectCount && objectCount._nonCurrentRestoring ? objectCount._nonCurrentRestoring : BigInt(0); - resTarget.objectCount._nonCurrentRestored += objectCount && objectCount._nonCurrentRestored ? objectCount._nonCurrentRestored : BigInt(0); - resTarget.objectCount._incompleteMPUUploads += objectCount && objectCount._incompleteMPUUploads ? objectCount._incompleteMPUUploads : BigInt(0); + resTarget.objectCount.current += objectCount && objectCount.current ? objectCount.current : 0n; + resTarget.objectCount.nonCurrent += objectCount && objectCount.nonCurrent ? objectCount.nonCurrent : 0n; + resTarget.objectCount.deleteMarker += objectCount && objectCount.deleteMarker ? objectCount.deleteMarker : 0n; + resTarget.objectCount._currentCold += objectCount && objectCount._currentCold ? objectCount._currentCold : 0n; + resTarget.objectCount._nonCurrentCold += objectCount && objectCount._nonCurrentCold ? objectCount._nonCurrentCold : 0n; + resTarget.objectCount._currentRestoring += objectCount && objectCount._currentRestoring ? objectCount._currentRestoring : 0n; + resTarget.objectCount._currentRestored += objectCount && objectCount._currentRestored ? objectCount._currentRestored : 0n; + resTarget.objectCount._nonCurrentRestoring += objectCount && objectCount._nonCurrentRestoring ? objectCount._nonCurrentRestoring : 0n; + resTarget.objectCount._nonCurrentRestored += objectCount && objectCount._nonCurrentRestored ? objectCount._nonCurrentRestored : 0n; + resTarget.objectCount._incompleteMPUUploads += objectCount && objectCount._incompleteMPUUploads ? objectCount._incompleteMPUUploads : 0n; - resTarget.usedCapacity._inflightsPreScan += usedCapacity && usedCapacity._inflightsPreScan ? usedCapacity._inflightsPreScan : BigInt(0); + resTarget.usedCapacity._inflightsPreScan += usedCapacity && usedCapacity._inflightsPreScan ? usedCapacity._inflightsPreScan : 0n; if (accountOwnerID) { resTarget.accountOwnerID = accountOwnerID; } resTarget.usedCapacity.current += usedCapacity ? usedCapacity._currentCold + usedCapacity._currentRestored + usedCapacity._currentRestoring - + usedCapacity._incompleteMPUParts : BigInt(0); + + usedCapacity._incompleteMPUParts : 0n; resTarget.usedCapacity.nonCurrent += usedCapacity - ? usedCapacity._nonCurrentCold + usedCapacity._nonCurrentRestored + usedCapacity._nonCurrentRestoring : BigInt(0); + ? usedCapacity._nonCurrentCold + usedCapacity._nonCurrentRestored + usedCapacity._nonCurrentRestoring : 0n; resTarget.objectCount.current += objectCount ? objectCount._currentCold + objectCount._currentRestored + objectCount._currentRestoring - + objectCount._incompleteMPUUploads : BigInt(0); + + objectCount._incompleteMPUUploads : 0n; resTarget.objectCount.nonCurrent += objectCount - ? objectCount._nonCurrentCold + objectCount._nonCurrentRestored + objectCount._nonCurrentRestoring : BigInt(0); + ? objectCount._nonCurrentCold + objectCount._nonCurrentRestored + objectCount._nonCurrentRestoring : 0n; return resTarget; } diff --git a/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js b/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js index 98e9e1de..9ad4531f 100644 --- a/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js +++ b/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js @@ -35,12 +35,12 @@ function isValidBucketStorageMetrics(bucketMetric) { && bucketMetric.usedCapacity && typeof bucketMetric.usedCapacity.current === 'bigint' && typeof bucketMetric.usedCapacity.nonCurrent === 'bigint' - && bucketMetric.usedCapacity.current > BigInt(-1) - && bucketMetric.usedCapacity.nonCurrent > BigInt(-1); + && bucketMetric.usedCapacity.current > -1n + && bucketMetric.usedCapacity.nonCurrent > -1n; } function isValidCapacityValue(capacity) { - return (typeof capacity === 'bigint' && capacity >= BigInt(0)); + return (typeof capacity === 'bigint' && capacity >= 0n); } function collectBucketMetricsAndUpdateBucketCapacityInfo(mongoClient, log, callback) { @@ -74,33 +74,23 @@ function collectBucketMetricsAndUpdateBucketCapacityInfo(mongoClient, log, callb return nxt(null, doc); }), (storageMetricDoc, nxt) => { - let bucketStorageUsed = BigInt(-1); - console.log('storageMetricDoc', storageMetricDoc); + let bucketStorageUsed = -1n; if (isValidBucketStorageMetrics(storageMetricDoc)) { - console.log(' here in the isValidBucketStorageMetrics'); // Do not count the objects in cold for SOSAPI bucketStorageUsed = storageMetricDoc.usedCapacity.current + storageMetricDoc.usedCapacity.nonCurrent; - console.log('bucketStorageUsed', { bucketStorageUsed }); } // read Capacity from bucket._capabilities const { Capacity } = bucket.getCapabilities().VeeamSOSApi.CapacityInfo; - console.log('Capacity', Capacity); - let available = BigInt(-1); - let capacity = BigInt(-1); + let available = -1n; + let capacity = -1n; if (isValidCapacityValue(Capacity)) { - console.log('we are in the valid capacity value'); // is Capacity value is valid capacity = Capacity; // if bucket storage used is valid and capacity is bigger than used - if (bucketStorageUsed !== BigInt(-1) && (capacity - bucketStorageUsed) >= BigInt(0)) { - console.log('WE ARE IN THE CONDITION'); + if (bucketStorageUsed !== -1n && (capacity - bucketStorageUsed) >= 0n) { available = capacity - bucketStorageUsed; - console.log('available', available); - console.log('capacity', typeof capacity); - console.log('bucketStorageUsed', typeof bucketStorageUsed); - console.log('available', typeof available); } } return mongoClient.updateBucketCapacityInfo(bucketName, { diff --git a/bucketVersionsStats.js b/bucketVersionsStats.js index 9a3a872d..ccf2e6e9 100644 --- a/bucketVersionsStats.js +++ b/bucketVersionsStats.js @@ -132,12 +132,12 @@ const s3 = new AWS.S3(Object.assign(options, s3Options)); const stats = { current: { - count: BigInt(0), - size: BigInt(0), + count: 0n, + size: 0n, }, noncurrent: { - count: BigInt(0), - size: BigInt(0), + count: 0n, + size: 0n, }, }; @@ -199,8 +199,8 @@ function listBucket(bucket, cb) { } } const statObj = version.IsLatest ? stats.current : stats.noncurrent; - statObj.count += BigInt(1); - statObj.size += version.Size || BigInt(0); + statObj.count += 1n; + statObj.size += version.Size || 0n; if (VERBOSE) { log.info('version info', { bucket: BUCKET, diff --git a/package.json b/package.json index 5bf176af..5ffebcd2 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "dependencies": { "@senx/warp10": "^1.1.2", "JSONStream": "^1.3.5", - "arsenal": "git+https://github.com/scality/arsenal#3c8219beb3785a66d1a5d74b4dff14eda869348f", + "arsenal": "https://github.com/scality/arsenal#3c7581ef0734f6979b1525fc463253925ed6534f", "async": "^2.6.4", "aws-sdk": "^2.1005.0", "bucketclient": "git+https://github.com/scality/bucketclient#8.1.5", @@ -56,8 +56,9 @@ "eslint-config-scality": "github:scality/Guidelines#8.2.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-jest": "^23.6.0", - "jest": "^23.6.0", + "jest": "^29.7.0", "mongodb-memory-server": "^8.10.2", + "randomatic": "^3.1.1", "sinon": "^17.0.1" } } diff --git a/service-level-sidecar/report.js b/service-level-sidecar/report.js index d28ed57e..826f9038 100644 --- a/service-level-sidecar/report.js +++ b/service-level-sidecar/report.js @@ -12,8 +12,8 @@ const { getAccountIdForCanonicalId } = require('./vault'); class MetricReport { constructor(factor = 1) { this.factor = factor; - this.count = BigInt(0); - this.bytes = BigInt(0); + this.count = 0n; + this.bytes = 0n; } /** diff --git a/tests/functional/collectBucketMetricsAndUpdateBucketCapacityInfo.js b/tests/functional/collectBucketMetricsAndUpdateBucketCapacityInfo.js index b5e434ea..ec981c50 100644 --- a/tests/functional/collectBucketMetricsAndUpdateBucketCapacityInfo.js +++ b/tests/functional/collectBucketMetricsAndUpdateBucketCapacityInfo.js @@ -54,17 +54,17 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }, }, CapacityInfo: { - Capacity: BigInt(0), - Available: BigInt(0), - Used: BigInt(0), + Capacity: 0n, + Available: 0n, + Used: 0n, }, }, }; client.updateStorageConsumptionMetrics({}, { bucket: { [`${testBucketName}_${testBucketCreationDate}`]: { - usedCapacity: { current: BigInt(10), nonCurrent: BigInt(10) }, - objectCount: { current: BigInt(10), nonCurrent: BigInt(10) }, + usedCapacity: { current: 10n, nonCurrent: 10n }, + objectCount: { current: 10n, nonCurrent: 10n }, }, }, }, logger, done); @@ -126,16 +126,16 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { next => client.getBucketAttributes(testBucketName, logger, (err, bucketInfo) => { assert.equal(err, null); const { Capacity, Available, Used } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(0)); - assert.strictEqual(Available, BigInt(0)); - assert.strictEqual(Used, BigInt(0)); + assert.strictEqual(Capacity, 0n); + assert.strictEqual(Available, 0n); + assert.strictEqual(Used, 0n); next(); }), ], done); }); test('should successfully collect bucketMetrics and update bucket CapacityInfo', done => { - testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = BigInt(30); + testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = 30n; return async.series([ next => client.createBucket(testBucketName, { @@ -160,9 +160,9 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { next => client.getBucketAttributes(testBucketName, logger, (err, bucketInfo) => { assert.equal(err, null); const { Capacity, Available, Used } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(30)); - assert.strictEqual(Available, BigInt(10)); - assert.strictEqual(Used, BigInt(20)); + assert.strictEqual(Capacity, 30n); + assert.strictEqual(Available, 10n); + assert.strictEqual(Used, 20n); next(); }), ], done); @@ -194,16 +194,16 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { next => client.getBucketAttributes(testBucketName, logger, (err, bucketInfo) => { assert.equal(err, null); const { Capacity, Available, Used } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(-1)); - assert.strictEqual(Available, BigInt(-1)); - assert.strictEqual(Used, BigInt(20)); + assert.strictEqual(Capacity, -1n); + assert.strictEqual(Available, -1n); + assert.strictEqual(Used, 20n); next(); }), ], done); }); test('should update bucket Available -1 if Capacity value is smaller than Used', done => { - testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = BigInt(10); + testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = 10n; return async.series([ next => client.createBucket(testBucketName, { @@ -228,16 +228,16 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { next => client.getBucketAttributes(testBucketName, logger, (err, bucketInfo) => { assert.equal(err, null); const { Capacity, Available, Used } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(10)); - assert.strictEqual(Available, BigInt(-1)); - assert.strictEqual(Used, BigInt(20)); + assert.strictEqual(Capacity, 10n); + assert.strictEqual(Available, -1n); + assert.strictEqual(Used, 20n); next(); }), ], done); }); test('should update bucket Used and Available -1 if bucket metrics are not retrievable', done => { - testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = BigInt(30); + testBucketCapacities.VeeamSOSApi.CapacityInfo.Capacity = 30n; return async.series([ next => client.updateStorageConsumptionMetrics({}, { bucket: {} }, logger, next), @@ -263,9 +263,9 @@ describe('collectBucketMetricsAndUpdateBucketCapacityInfo', () => { next => client.getBucketAttributes(testBucketName, logger, (err, bucketInfo) => { assert.equal(err, null); const { Capacity, Available, Used } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(30)); - assert.strictEqual(Available, BigInt(-1)); - assert.strictEqual(Used, BigInt(-1)); + assert.strictEqual(Capacity, 30n); + assert.strictEqual(Available, -1n); + assert.strictEqual(Used, -1n); next(); }), ], done); diff --git a/tests/functional/countItems.js b/tests/functional/countItems.js index 4b3184bd..fdf98b02 100644 --- a/tests/functional/countItems.js +++ b/tests/functional/countItems.js @@ -19,82 +19,82 @@ const dbName = 'countItemsTest'; const USERSBUCKET = '__usersbucket'; const expectedCountItems = { - objects: BigInt(90), - versions: BigInt(60), + objects: 90n, + versions: 60n, buckets: 9, dataManaged: { - total: { curr: BigInt(15000), prev: BigInt(12000) }, + total: { curr: 15000n, prev: 12000n }, byLocation: { - 'us-east-1': { curr: BigInt(9000), prev: BigInt(6000) }, - 'secondary-location-1': { curr: BigInt(3000), prev: BigInt(3000) }, - 'secondary-location-2': { curr: BigInt(3000), prev: BigInt(3000) }, + 'us-east-1': { curr: 9000n, prev: 6000n }, + 'secondary-location-1': { curr: 3000n, prev: 3000n }, + 'secondary-location-2': { curr: 3000n, prev: 3000n }, }, }, stalled: 0, }; const expectedDataMetrics = { [`account_${testAccountCanonicalId}`]: { - objectCount: { current: BigInt(90), deleteMarker: BigInt(0), nonCurrent: BigInt(60) }, - usedCapacity: { current: BigInt(9000), nonCurrent: BigInt(6000) }, + objectCount: { current: 90n, deleteMarker: 0n, nonCurrent: 60n }, + usedCapacity: { current: 9000n, nonCurrent: 6000n }, locations: { 'secondary-location-1': { - objectCount: { current: BigInt(30), deleteMarker: BigInt(0), nonCurrent: BigInt(30) }, - usedCapacity: { current: BigInt(3000), nonCurrent: BigInt(3000) }, + objectCount: { current: 30n, deleteMarker: 0n, nonCurrent: 30n }, + usedCapacity: { current: 3000n, nonCurrent: 3000n }, }, 'secondary-location-2': { - objectCount: { current: BigInt(30), deleteMarker: BigInt(0), nonCurrent: BigInt(30) }, - usedCapacity: { current: BigInt(3000), nonCurrent: BigInt(3000) }, + objectCount: { current: 30n, deleteMarker: 0n, nonCurrent: 30n }, + usedCapacity: { current: 3000n, nonCurrent: 3000n }, }, 'us-east-1': { - objectCount: { current: BigInt(90), deleteMarker: BigInt(0), nonCurrent: BigInt(60) }, - usedCapacity: { current: BigInt(9000), nonCurrent: BigInt(6000) }, + objectCount: { current: 90n, deleteMarker: 0n, nonCurrent: 60n }, + usedCapacity: { current: 9000n, nonCurrent: 6000n }, }, }, }, [`bucket_test-bucket-0_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(0) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(0) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 0n }, + usedCapacity: { current: 1000n, nonCurrent: 0n }, }, [`bucket_test-bucket-1_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(0) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(0) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 0n }, + usedCapacity: { current: 1000n, nonCurrent: 0n }, }, [`bucket_test-bucket-2_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(0) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(0) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 0n }, + usedCapacity: { current: 1000n, nonCurrent: 0n }, }, [`bucket_test-bucket-3_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, [`bucket_test-bucket-4_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, [`bucket_test-bucket-5_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, [`bucket_test-bucket-6_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, [`bucket_test-bucket-7_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, [`bucket_test-bucket-8_${testBucketCreationDate}`]: { - objectCount: { current: BigInt(10), deleteMarker: BigInt(0), nonCurrent: BigInt(10) }, - usedCapacity: { current: BigInt(1000), nonCurrent: BigInt(1000) }, + objectCount: { current: 10n, deleteMarker: 0n, nonCurrent: 10n }, + usedCapacity: { current: 1000n, nonCurrent: 1000n }, }, 'location_secondary-location-1': { - objectCount: { current: BigInt(30), deleteMarker: BigInt(0), nonCurrent: BigInt(30) }, usedCapacity: { current: BigInt(3000), nonCurrent: BigInt(3000) }, + objectCount: { current: 30n, deleteMarker: 0n, nonCurrent: 30n }, usedCapacity: { current: 3000n, nonCurrent: 3000n }, }, 'location_secondary-location-2': { - objectCount: { current: BigInt(30), deleteMarker: BigInt(0), nonCurrent: BigInt(30) }, usedCapacity: { current: BigInt(3000), nonCurrent: BigInt(3000) }, + objectCount: { current: 30n, deleteMarker: 0n, nonCurrent: 30n }, usedCapacity: { current: 3000n, nonCurrent: 3000n }, }, 'location_us-east-1': { - objectCount: { current: BigInt(90), deleteMarker: BigInt(0), nonCurrent: BigInt(60) }, usedCapacity: { current: BigInt(9000), nonCurrent: BigInt(6000) }, + objectCount: { current: 90n, deleteMarker: 0n, nonCurrent: 60n }, usedCapacity: { current: 9000n, nonCurrent: 6000n }, }, }; diff --git a/tests/functional/utils/S3UtilsMongoClient.js b/tests/functional/utils/S3UtilsMongoClient.js index b37106a2..f3ae6c1e 100644 --- a/tests/functional/utils/S3UtilsMongoClient.js +++ b/tests/functional/utils/S3UtilsMongoClient.js @@ -26,7 +26,6 @@ const variations = [ const bucketMD = BucketInfo.fromObj(testBucketMD); const BUCKET_NAME = bucketMD.getName(); -console.log('BUCKET NAME ', BUCKET_NAME); const USERSBUCKET = '__usersbucket'; const BUCKET_CREATE_DATE = new Date(testBucketCreationDate).getTime(); @@ -134,62 +133,62 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { it(`Should get correct results ${variation.it}`, done => { const expected = { dataManaged: { - locations: { 'us-east-1': { curr: BigInt(20), prev: BigInt(0) } }, - total: { curr: BigInt(20), prev: BigInt(0) }, + locations: { 'us-east-1': { curr: 20n, prev: 0n } }, + total: { curr: 20n, prev: 0n }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -198,54 +197,54 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -299,62 +298,62 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { it(`Should get correct results ${variation.it}`, done => { const expected = { - versions: BigInt(1), - objects: BigInt(2), + versions: 1n, + objects: 2n, dataManaged: { - total: { curr: BigInt(20), prev: BigInt(10) }, - locations: { 'us-east-1': { curr: BigInt(20), prev: BigInt(10) } }, + total: { curr: 20n, prev: 10n }, + locations: { 'us-east-1': { curr: 20n, prev: 10n } }, }, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -363,54 +362,54 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -443,7 +442,6 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { next, ), // put object2 ], () => client.getBucketAttributes(BUCKET_NAME, logger, (err, bucketInfo) => { - console.log('HERE THE LOG TO DEBUG 1 ', {bucketInfo, err}); assert.deepStrictEqual(err, null); return client.getObjectMDStats( BUCKET_NAME, @@ -451,7 +449,6 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { false, logger, (err, data) => { - console.log('HERE THE LOG TO DEBUG', {data, expected}); assert.deepStrictEqual(err, null); // assert.deepStrictEqual(data, expected);\ // Compare each section separately to avoid circular reference issues @@ -482,62 +479,62 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { itOnlyInV1(`Should get correct results with deleteMarker ${variation.it}`, done => { const expected = { dataManaged: { - locations: { 'us-east-1': { curr: BigInt(0), prev: BigInt(20) } }, - total: { curr: BigInt(0), prev: BigInt(20) }, + locations: { 'us-east-1': { curr: 0n, prev: 20n } }, + total: { curr: 0n, prev: 20n }, }, - objects: BigInt(0), + objects: 0n, stalled: 0, - versions: BigInt(2), + versions: 2n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -546,54 +543,54 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -649,89 +646,89 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { const expected = { dataManaged: { locations: { - 'us-east-1': { curr: BigInt(10), prev: BigInt(0) }, - 'completed': { curr: BigInt(10), prev: BigInt(0) }, + 'us-east-1': { curr: 10n, prev: 0n }, + 'completed': { curr: 10n, prev: 0n }, }, - total: { curr: BigInt(20), prev: BigInt(0) }, + total: { curr: 20n, prev: 0n }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'completed': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -740,79 +737,79 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'completed': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -882,89 +879,89 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { const expected = { dataManaged: { locations: { - 'us-east-1': { curr: BigInt(20), prev: BigInt(0) }, - 'completed': { curr: BigInt(10), prev: BigInt(0) }, + 'us-east-1': { curr: 20n, prev: 0n }, + 'completed': { curr: 10n, prev: 0n }, }, - total: { curr: BigInt(30), prev: BigInt(0) }, + total: { curr: 30n, prev: 0n }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'completed': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -973,79 +970,79 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'completed': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1144,62 +1141,62 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { it(`Should get correct results ${variation.it}`, done => { const expected = { dataManaged: { - locations: { 'us-east-1': { curr: BigInt(20), prev: BigInt(10) } }, - total: { curr: BigInt(20), prev: BigInt(10) }, + locations: { 'us-east-1': { curr: 20n, prev: 10n } }, + total: { curr: 20n, prev: 10n }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(1), + versions: 1n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1208,54 +1205,54 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1380,17 +1377,17 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { dataManaged: { locations: { 'cold-location': { - curr: BigInt(0), - prev: BigInt(20), + curr: 0n, + prev: 20n, }, 'us-east-1': { - curr: BigInt(10), - prev: BigInt(10), + curr: 10n, + prev: 10n, }, }, total: { - curr: BigInt(10), - prev: BigInt(30), + curr: 10n, + prev: 30n, }, }, dataMetrics: { @@ -1399,163 +1396,163 @@ describe('S3UtilsMongoClient::getObjectMDStats', () => { locations: { 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(10), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 10n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(10), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 10n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, }, objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(10), - _currentRestored: BigInt(10), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 10n, + _currentRestored: 10n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, }, bucket: { [`${BUCKET_NAME}_${BUCKET_CREATE_DATE}`]: { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(10), - _currentRestored: BigInt(10), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 10n, + _currentRestored: 10n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, }, location: { 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(10), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 10n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(1), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 1n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(10), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(10), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 10n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 10n, + _incompleteMPUParts: 0n, }, }, }, }, - objects: BigInt(1), + objects: 1n, stalled: 0, - versions: BigInt(2), + versions: 2n, }; return async.series([ next => client.putObject( @@ -1636,9 +1633,9 @@ describe('S3UtilsMongoClient::updateBucketCapacityInfo', () => { it(`Should correctly update CapacityInfo attributes ${variation.it}`, done => { const startTime = new Date(); const capacityInfo = { - Capacity: BigInt(30), - Available: BigInt(10), - Used: BigInt(10), + Capacity: 30n, + Available: 10n, + Used: 10n, }; async.series([ next => client.createBucket(BUCKET_NAME, bucketMD, logger, next), @@ -1651,9 +1648,9 @@ describe('S3UtilsMongoClient::updateBucketCapacityInfo', () => { const { Capacity, Available, Used, LastModified, } = bucketInfo.getCapabilities().VeeamSOSApi.CapacityInfo; - assert.strictEqual(Capacity, BigInt(30)); - assert.strictEqual(Available, BigInt(10)); - assert.strictEqual(Used, BigInt(10)); + assert.strictEqual(Capacity, 30n); + assert.strictEqual(Available, 10n); + assert.strictEqual(Used, 10n); assert(new Date(LastModified) > startTime); assert(new Date(LastModified) < new Date()); next(); diff --git a/tests/unit/CountItems/CountManager.js b/tests/unit/CountItems/CountManager.js index f9dc70ef..688312a7 100644 --- a/tests/unit/CountItems/CountManager.js +++ b/tests/unit/CountItems/CountManager.js @@ -34,33 +34,33 @@ describe('CountItems::CountManager', () => { maxConcurrent: 1, }); expect(m.store).toEqual({ - objects: BigInt(0), - versions: BigInt(0), + objects: 0n, + versions: 0n, buckets: 0, bucketList: [], dataManaged: { - total: { curr: BigInt(0), prev: BigInt(0) }, + total: { curr: 0n, prev: 0n }, byLocation: {}, }, stalled: 0, }); m._consolidateData({ - versions: BigInt(10), - objects: BigInt(10), + versions: 10n, + objects: 10n, stalled: 10, dataManaged: { - total: { curr: BigInt(100), prev: BigInt(100) }, - locations: { location1: { curr: BigInt(100), prev: BigInt(100) } }, + total: { curr: 100n, prev: 100n }, + locations: { location1: { curr: 100n, prev: 100n } }, }, }); expect(m.store).toEqual({ - objects: BigInt(10), - versions: BigInt(10), + objects: 10n, + versions: 10n, buckets: 0, bucketList: [], dataManaged: { - total: { curr: BigInt(100), prev: BigInt(100) }, - byLocation: { location1: { curr: BigInt(100), prev: BigInt(100) } }, + total: { curr: 100n, prev: 100n }, + byLocation: { location1: { curr: 100n, prev: 100n } }, }, stalled: 10, }); @@ -83,52 +83,52 @@ describe('CountItems::CountManager', () => { account: { account1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -137,54 +137,54 @@ describe('CountItems::CountManager', () => { bucket: { bucket1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -194,54 +194,54 @@ describe('CountItems::CountManager', () => { account: { account1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -250,56 +250,56 @@ describe('CountItems::CountManager', () => { bucket: { bucket1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -323,54 +323,54 @@ describe('CountItems::CountManager', () => { account: { account1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -379,56 +379,56 @@ describe('CountItems::CountManager', () => { bucket: { bucket1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(10), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -438,54 +438,54 @@ describe('CountItems::CountManager', () => { account: { account1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -494,56 +494,56 @@ describe('CountItems::CountManager', () => { bucket: { bucket1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(11), - deleteMarker: BigInt(0), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 11n, + deleteMarker: 0n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(100), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 100n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, diff --git a/tests/unit/CountItems/utils/utils.js b/tests/unit/CountItems/utils/utils.js index 7212fe32..9283ea07 100644 --- a/tests/unit/CountItems/utils/utils.js +++ b/tests/unit/CountItems/utils/utils.js @@ -3,190 +3,190 @@ const { consolidateDataMetrics } = require('../../../../CountItems/utils/utils') describe('CountItems::utils::consolidateDataMetrics', () => { const zeroValueRes = { usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(0), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 0n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(0), - nonCurrent: BigInt(0), - deleteMarker: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + nonCurrent: 0n, + deleteMarker: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, }; const example1 = { usedCapacity: { - current: BigInt(10), - nonCurrent: BigInt(10), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 10n, + nonCurrent: 10n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(10), - nonCurrent: BigInt(10), - deleteMarker: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 10n, + nonCurrent: 10n, + deleteMarker: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, }; const example2 = { usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(20), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 20n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(20), - nonCurrent: BigInt(20), - deleteMarker: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 20n, + nonCurrent: 20n, + deleteMarker: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, }; const exampleWithInflights = { usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(20), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 20n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(20), - nonCurrent: BigInt(20), - deleteMarker: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 20n, + nonCurrent: 20n, + deleteMarker: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, }; const expectedResponseWithInflights = { usedCapacity: { - current: BigInt(40), - nonCurrent: BigInt(40), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 40n, + nonCurrent: 40n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(40), - nonCurrent: BigInt(40), - deleteMarker: BigInt(40), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 40n, + nonCurrent: 40n, + deleteMarker: 40n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, }; const exampleWithMPU = { usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(20), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(100), + current: 20n, + nonCurrent: 20n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 100n, }, objectCount: { - current: BigInt(20), - nonCurrent: BigInt(20), - deleteMarker: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(10), + current: 20n, + nonCurrent: 20n, + deleteMarker: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 10n, }, }; const expectedConsolidatedMPU = { usedCapacity: { - current: BigInt(220), - nonCurrent: BigInt(30), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(200), + current: 220n, + nonCurrent: 30n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 200n, }, objectCount: { - current: BigInt(40), - nonCurrent: BigInt(21), - deleteMarker: BigInt(21), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(20), + current: 40n, + nonCurrent: 21n, + deleteMarker: 21n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 20n, }, }; @@ -242,28 +242,28 @@ describe('CountItems::utils::consolidateDataMetrics', () => { test('should consolidate MPUs', () => { const source = { usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(10), - _inflightsPreScan: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(100), + current: 100n, + nonCurrent: 10n, + _inflightsPreScan: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 100n, }, objectCount: { - current: BigInt(10), - nonCurrent: BigInt(1), - deleteMarker: BigInt(1), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(10), + current: 10n, + nonCurrent: 1n, + deleteMarker: 1n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 10n, }, }; const res = consolidateDataMetrics(exampleWithMPU, source); diff --git a/tests/unit/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js b/tests/unit/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js index 46bb80c4..0ac55a63 100644 --- a/tests/unit/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js +++ b/tests/unit/DataReport/collectBucketMetricsAndUpdateBucketCapacityInfo.js @@ -125,9 +125,9 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }, }, CapacityInfo: { - Capacity: BigInt(0), - Available: BigInt(0), - Used: BigInt(0), + Capacity: 0n, + Available: 0n, + Used: 0n, }, }, }, @@ -149,49 +149,49 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { test('should return false if usedCapacity.current property doesn\'t exist', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { nonCurrent: BigInt(0) }, + usedCapacity: { nonCurrent: 0n }, }); expect(valid).toBeFalsy(); }); test('should return false if usedCapacity.nonCurrent property doesn\'t exist', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: BigInt(0) }, + usedCapacity: { current: 0n }, }); expect(valid).toBeFalsy(); }); test('should return false if usedCapacity.current value is negative', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: BigInt(-1), nonCurrent: BigInt(0) }, + usedCapacity: { current: -1n, nonCurrent: 0n }, }); expect(valid).toBeFalsy(); }); test('should return false if usedCapacity.nonCurrent value is negative', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: BigInt(0), nonCurrent: -1 }, + usedCapacity: { current: 0n, nonCurrent: -1 }, }); expect(valid).toBeFalsy(); }); test('should return false if usedCapacity.current value is not a number', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: 'not-a-number', nonCurrent: BigInt(0) }, + usedCapacity: { current: 'not-a-number', nonCurrent: 0n }, }); expect(valid).toBeFalsy(); }); test('should return false if usedCapacity.nonCurrent value is not a number', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: BigInt(0), nonCurrent: 'not-a-number' }, + usedCapacity: { current: 0n, nonCurrent: 'not-a-number' }, }); expect(valid).toBeFalsy(); }); test('should return true if usedCapacity.current and usedCapacity.nonCurrent value are both valid', () => { const valid = isValidBucketStorageMetrics({ - usedCapacity: { current: BigInt(0), nonCurrent: BigInt(0) }, + usedCapacity: { current: 0n, nonCurrent: 0n }, }); expect(valid).toBeTruthy(); }); @@ -209,13 +209,13 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }); test('should return false if capacity is negative', () => { - const valid = isValidCapacityValue(BigInt(-1)); + const valid = isValidCapacityValue(-1n); expect(valid).toBeFalsy(); }); test('should return true if capacity is a valid integer', () => { - const valid = isValidCapacityValue(BigInt(1)); + const valid = isValidCapacityValue(1n); expect(valid).toBeTruthy(); }); }); @@ -257,9 +257,9 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }, }, CapacityInfo: { - Capacity: BigInt(0), - Available: BigInt(0), - Used: BigInt(0), + Capacity: 0n, + Available: 0n, + Used: 0n, }, }, }, @@ -286,9 +286,9 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }, }, CapacityInfo: { - Capacity: BigInt(0), - Available: BigInt(0), - Used: BigInt(0), + Capacity: 0n, + Available: 0n, + Used: 0n, }, }, }, @@ -320,7 +320,7 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { test('should pass with SOSAPI disabled buckets', done => { mongoClient.readStorageConsumptionMetrics .mockImplementation((bucketName, log, cb) => cb(null, { - usedCapacity: { current: BigInt(0), nonCurrent: BigInt(0) }, + usedCapacity: { current: 0n, nonCurrent: 0n }, })); mongoClient.getBucketInfos .mockImplementation((log, cb) => cb(null, { @@ -338,7 +338,7 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { test('should pass with SOSAPI enabled buckets and update bucket md', done => { mongoClient.readStorageConsumptionMetrics .mockImplementation((bucketName, log, cb) => cb(null, { - usedCapacity: { current: BigInt(0), nonCurrent: BigInt(0) }, + usedCapacity: { current: 0n, nonCurrent: 0n }, })); mongoClient.getBucketInfos .mockImplementation((log, cb) => cb(null, { @@ -352,9 +352,9 @@ describe('DataReport::collectBucketMetricsAndUpdateBucketCapacityInfo', () => { }, }, CapacityInfo: { - Capacity: BigInt(0), - Available: BigInt(0), - Used: BigInt(0), + Capacity: 0n, + Available: 0n, + Used: 0n, }, }, }, diff --git a/tests/unit/utils/S3UtilsMongoClient.js b/tests/unit/utils/S3UtilsMongoClient.js index ff264215..e1c41138 100644 --- a/tests/unit/utils/S3UtilsMongoClient.js +++ b/tests/unit/utils/S3UtilsMongoClient.js @@ -27,44 +27,44 @@ describe('S3UtilsMongoClient::_handleResults', () => { const testInput = { bucket: { bucket1: { - masterCount: BigInt(2), - masterData: BigInt(20), - nullCount: BigInt(2), - nullData: BigInt(20), - versionCount: BigInt(4), - versionData: BigInt(40), - deleteMarkerCount: BigInt(2), + masterCount: 2n, + masterData: 20n, + nullCount: 2n, + nullData: 20n, + versionCount: 4n, + versionData: 40n, + deleteMarkerCount: 2n, }, }, location: { location1: { - masterCount: BigInt(1), - masterData: BigInt(10), - nullCount: BigInt(1), - nullData: BigInt(10), - versionCount: BigInt(2), - versionData: BigInt(20), - deleteMarkerCount: BigInt(1), + masterCount: 1n, + masterData: 10n, + nullCount: 1n, + nullData: 10n, + versionCount: 2n, + versionData: 20n, + deleteMarkerCount: 1n, }, location2: { - masterCount: BigInt(1), - masterData: BigInt(10), - nullCount: BigInt(1), - nullData: BigInt(10), - versionCount: BigInt(2), - versionData: BigInt(20), - deleteMarkerCount: BigInt(1), + masterCount: 1n, + masterData: 10n, + nullCount: 1n, + nullData: 10n, + versionCount: 2n, + versionData: 20n, + deleteMarkerCount: 1n, }, }, account: { account1: { - masterCount: BigInt(2), - masterData: BigInt(20), - nullCount: BigInt(2), - nullData: BigInt(20), - versionCount: BigInt(4), - versionData: BigInt(40), - deleteMarkerCount: BigInt(2), + masterCount: 2n, + masterData: 20n, + nullCount: 2n, + nullData: 20n, + versionCount: 4n, + versionData: 40n, + deleteMarkerCount: 2n, }, }, }; @@ -76,10 +76,10 @@ describe('S3UtilsMongoClient::_handleResults', () => { }; const testResults = mongoTestClient._handleResults(testInputEmpty, true); const expectedRes = { - versions: BigInt(0), - objects: BigInt(0), + versions: 0n, + objects: 0n, dataManaged: { - total: { curr: BigInt(0), prev: BigInt(0) }, + total: { curr: 0n, prev: 0n }, locations: {}, }, dataMetrics: { @@ -99,10 +99,10 @@ describe('S3UtilsMongoClient::_handleResults', () => { }; const testResults = mongoTestClient._handleResults(testInputWithInvalidMetricKeys, true); const expectedRes = { - versions: BigInt(0), - objects: BigInt(0), + versions: 0n, + objects: 0n, dataManaged: { - total: { curr: BigInt(0), prev: BigInt(0) }, + total: { curr: 0n, prev: 0n }, locations: {}, }, dataMetrics: { @@ -117,169 +117,169 @@ describe('S3UtilsMongoClient::_handleResults', () => { it('should return correct value if isVer is false', () => { const testResults = mongoTestClient._handleResults(testInput, false); const expectedRes = { - versions: BigInt(0), - objects: BigInt(4), + versions: 0n, + objects: 4n, dataManaged: { - total: { curr: BigInt(40), prev: BigInt(0) }, + total: { curr: 40n, prev: 0n }, locations: { - location1: { curr: BigInt(20), prev: BigInt(0) }, - location2: { curr: BigInt(20), prev: BigInt(0) }, + location1: { curr: 20n, prev: 0n }, + location2: { curr: 20n, prev: 0n }, }, }, dataMetrics: { bucket: { bucket1: { objectCount: { - current: BigInt(4), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 4n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(40), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 40n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, location2: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, account: { account1: { objectCount: { - current: BigInt(4), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 4n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(40), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 40n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, location2: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -293,169 +293,169 @@ describe('S3UtilsMongoClient::_handleResults', () => { it('should return correct value if isVer is true', () => { const testResults = mongoTestClient._handleResults(testInput, true); const expectedRes = { - versions: BigInt(0), - objects: BigInt(4), + versions: 0n, + objects: 4n, dataManaged: { - total: { curr: BigInt(40), prev: BigInt(20) }, + total: { curr: 40n, prev: 20n }, locations: { - location1: { curr: BigInt(20), prev: BigInt(10) }, - location2: { curr: BigInt(20), prev: BigInt(10) }, + location1: { curr: 20n, prev: 10n }, + location2: { curr: 20n, prev: 10n }, }, }, dataMetrics: { bucket: { bucket1: { objectCount: { - current: BigInt(4), - deleteMarker: BigInt(2), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 4n, + deleteMarker: 2n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(40), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 40n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { location1: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(1), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 1n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, location2: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(1), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 1n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, account: { account1: { objectCount: { - current: BigInt(4), - deleteMarker: BigInt(2), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 4n, + deleteMarker: 2n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(40), - nonCurrent: BigInt(20), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 40n, + nonCurrent: 20n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { location1: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(1), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 1n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, location2: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(1), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 1n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(20), - nonCurrent: BigInt(10), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 20n, + nonCurrent: 10n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -475,10 +475,10 @@ describe('S3UtilsMongoClient::_handleResults', () => { const testResults = mongoTestClient._handleResults(testInputOnlyContainsLocation, true); const expectedRes = { dataManaged: { - total: { curr: BigInt(40), prev: BigInt(20) }, + total: { curr: 40n, prev: 20n }, locations: { - location1: { curr: BigInt(20), prev: BigInt(10) }, - location2: { curr: BigInt(20), prev: BigInt(10) }, + location1: { curr: 20n, prev: 10n }, + location2: { curr: 20n, prev: 10n }, }, }, }; @@ -493,7 +493,7 @@ describe('S3UtilsMongoClient::_handleResults', () => { }; const testResults = mongoTestClient._handleResults(testInputOnlyContainsLocation, true); const expectedRes = { - versions: BigInt(0), objects: BigInt(4), + versions: 0n, objects: 4n, }; assert.deepStrictEqual(testResults.versions, expectedRes.versions); assert.deepStrictEqual(testResults.objects, expectedRes.objects); @@ -1112,11 +1112,11 @@ describe('S3UtilsMongoClient, tests', () => { { dataManaged: { locations: {}, - total: { curr: BigInt(0), prev: BigInt(0) }, + total: { curr: 0n, prev: 0n }, }, - objects: BigInt(0), + objects: 0n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { bucket: {}, location: {}, @@ -1169,97 +1169,97 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'rep-loc-1': { - curr: BigInt(0), - prev: BigInt(200), + curr: 0n, + prev: 200n, }, 'us-east-1': { - curr: BigInt(200), - prev: BigInt(200), + curr: 200n, + prev: 200n, }, }, total: { - curr: BigInt(200), - prev: BigInt(400), + curr: 200n, + prev: 400n, }, }, - objects: BigInt(2), + objects: 2n, stalled: 1, - versions: BigInt(2), + versions: 2n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1268,79 +1268,79 @@ describe('S3UtilsMongoClient, tests', () => { bucket: { [`test-bucket_${testBucketCreationDate}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1374,68 +1374,68 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'us-east-1': { - curr: BigInt(200), - prev: BigInt(0), + curr: 200n, + prev: 0n, }, }, total: { - curr: BigInt(200), - prev: BigInt(0), + curr: 200n, + prev: 0n, }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1444,54 +1444,54 @@ describe('S3UtilsMongoClient, tests', () => { bucket: { [`test-bucket_${testBucketCreationDate}`]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1541,97 +1541,97 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'rep-loc-1': { - curr: BigInt(0), - prev: BigInt(300), + curr: 0n, + prev: 300n, }, 'us-east-1': { - curr: BigInt(100), - prev: BigInt(300), + curr: 100n, + prev: 300n, }, }, total: { - curr: BigInt(100), - prev: BigInt(600), + curr: 100n, + prev: 600n, }, }, - objects: BigInt(1), + objects: 1n, stalled: 0, - versions: BigInt(2), + versions: 2n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1640,79 +1640,79 @@ describe('S3UtilsMongoClient, tests', () => { bucket: { [`test-bucket_${testBucketCreationDate}`]: { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + deleteMarker: 1n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - nonCurrent: BigInt(300), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + nonCurrent: 300n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1779,126 +1779,126 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'rep-loc-1': { - curr: BigInt(0), - prev: BigInt(100), + curr: 0n, + prev: 100n, }, 'us-east-1': { - curr: BigInt(300), - prev: BigInt(100), + curr: 300n, + prev: 100n, }, 'cold-location': { - curr: BigInt(200), - prev: BigInt(100), + curr: 200n, + prev: 100n, }, }, total: { - curr: BigInt(500), - prev: BigInt(300), + curr: 500n, + prev: 300n, }, }, - objects: BigInt(4), + objects: 4n, stalled: 0, - versions: BigInt(2), + versions: 2n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(1), - _currentCold: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + _currentCold: 1n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 1n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - _currentCold: BigInt(100), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(100), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + _currentCold: 100n, + nonCurrent: 100n, + _nonCurrentCold: 100n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 100n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(1), - _currentCold: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + _currentCold: 0n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - _currentCold: BigInt(0), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + _currentCold: 0n, + nonCurrent: 100n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 0n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(100), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(100), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 100n, + nonCurrent: 0n, + _nonCurrentCold: 100n, + _currentRestored: 0n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -1907,104 +1907,104 @@ describe('S3UtilsMongoClient, tests', () => { bucket: { [`test-bucket_${testBucketCreationDate}`]: { objectCount: { - current: BigInt(1), - _currentCold: BigInt(1), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + _currentCold: 1n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 1n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - _currentCold: BigInt(100), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(100), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + _currentCold: 100n, + nonCurrent: 100n, + _nonCurrentCold: 100n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 100n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(1), - _currentCold: BigInt(0), - deleteMarker: BigInt(1), - nonCurrent: BigInt(1), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 1n, + _currentCold: 0n, + deleteMarker: 1n, + nonCurrent: 1n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(100), - _currentCold: BigInt(0), - nonCurrent: BigInt(100), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 100n, + _currentCold: 0n, + nonCurrent: 100n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(1), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(1), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 1n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 1n, + _currentRestored: 0n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(100), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(100), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 100n, + nonCurrent: 0n, + _nonCurrentCold: 100n, + _currentRestored: 0n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -2033,97 +2033,97 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'us-east-1': { - curr: BigInt(200), - prev: BigInt(0), + curr: 200n, + prev: 0n, }, 'cold-location': { - curr: BigInt(100), - prev: BigInt(0), + curr: 100n, + prev: 0n, }, }, total: { - curr: BigInt(300), - prev: BigInt(0), + curr: 300n, + prev: 0n, }, }, - objects: BigInt(2), + objects: 2n, stalled: 0, - versions: BigInt(0), + versions: 0n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -2132,79 +2132,79 @@ describe('S3UtilsMongoClient, tests', () => { bucket: { [`test-bucket_${testBucketCreationDate}`]: { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'us-east-1': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(1), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 1n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(100), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 100n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'cold-location': { objectCount: { - current: BigInt(0), - _currentCold: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(1), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + _currentCold: 0n, + deleteMarker: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 1n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - _currentCold: BigInt(0), - nonCurrent: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(100), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + _currentCold: 0n, + nonCurrent: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 100n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -2217,7 +2217,7 @@ describe('S3UtilsMongoClient, tests', () => { { bucketName: 'test-bucket-inflights', isVersioned: true, - inflights: BigInt(1000), + inflights: 1000n, objectList: [ // versioned object 1, { @@ -2258,97 +2258,97 @@ describe('S3UtilsMongoClient, tests', () => { dataManaged: { locations: { 'rep-loc-1': { - curr: BigInt(0), - prev: BigInt(200), + curr: 0n, + prev: 200n, }, 'us-east-1': { - curr: BigInt(200), - prev: BigInt(200), + curr: 200n, + prev: 200n, }, }, total: { - curr: BigInt(200), - prev: BigInt(400), + curr: 200n, + prev: 400n, }, }, - objects: BigInt(2), + objects: 2n, stalled: 1, - versions: BigInt(2), + versions: 2n, dataMetrics: { account: { [testAccountCanonicalId]: { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, locations: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -2358,80 +2358,80 @@ describe('S3UtilsMongoClient, tests', () => { [`test-bucket-inflights_${testBucketCreationDate}`]: { accountOwnerID: 'd1d40abd2bd8250962f7f5774af1bbbeaec9b77a0853749d41ec46f142e66fe4', objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _inflightsPreScan: BigInt(1000), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _inflightsPreScan: 1000n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, location: { 'rep-loc-1': { objectCount: { - current: BigInt(0), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 0n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, 'us-east-1': { objectCount: { - current: BigInt(2), - deleteMarker: BigInt(0), - nonCurrent: BigInt(2), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), + current: 2n, + deleteMarker: 0n, + nonCurrent: 2n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, }, usedCapacity: { - current: BigInt(200), - nonCurrent: BigInt(200), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 200n, + nonCurrent: 200n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, }, }, @@ -2465,7 +2465,7 @@ describe('S3UtilsMongoClient, tests', () => { if (inflights) { const mock = sinon.stub(client, 'readStorageConsumptionInflights'); mock.onFirstCall().returns(Promise.resolve(inflights)); - mock.onSecondCall().returns(Promise.resolve((inflights * BigInt(3)) / BigInt(2))); + mock.onSecondCall().returns(Promise.resolve((inflights * 3n) / 2n)); } return client.getObjectMDStats( bucketName, @@ -2496,29 +2496,29 @@ describe('S3UtilsMongoClient, update inflight deltas', () => { measuredOn: '2024-05-17T16:08:04.113Z', accountOwnerID: '1234', usedCapacity: { - current: BigInt(1000), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), - _inflightsPreScan: BigInt(100), - _inflight: BigInt(100), + current: 1000n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, + _inflightsPreScan: 100n, + _inflight: 100n, }, objectCount: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }, }, { @@ -2526,57 +2526,57 @@ describe('S3UtilsMongoClient, update inflight deltas', () => { measuredOn: '2024-05-17T16:08:04.113Z', accountOwnerID: '1234', usedCapacity: { - current: BigInt(1000), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), - _inflightsPreScan: BigInt(1500), - _inflight: BigInt(1500), + current: 1000n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, + _inflightsPreScan: 1500n, + _inflight: 1500n, }, objectCount: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }, }, { _id: 'account_1234', measuredOn: '2024-05-17T16:08:04.113Z', usedCapacity: { - current: BigInt(2000), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), - _inflight: BigInt(0), + current: 2000n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, + _inflight: 0n, }, objectCount: { - current: BigInt(10), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 10n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }, }, ]; @@ -2621,13 +2621,13 @@ describe('S3UtilsMongoClient, update inflight deltas', () => { { _id: 'bucket_bucket1_1715849127256', usedCapacity: { - _inflight: BigInt(3000), + _inflight: 3000n, }, }, { _id: 'bucket_bucket2_1715849127257', usedCapacity: { - _inflight: BigInt(5000), + _inflight: 5000n, }, }, ], @@ -2638,12 +2638,12 @@ describe('S3UtilsMongoClient, update inflight deltas', () => { ...metrics, ], logger); // first bucket: 1000 current + (3000 post scan - 100 pre scan) = 3900 - assert.strictEqual(output[0].usedCapacity.current, BigInt(3900)); + assert.strictEqual(output[0].usedCapacity.current, 3900n); // second bucket: 1000 current + (5000 post scan - 1500 pre scan) = 4500 - assert.strictEqual(output[1].usedCapacity.current, BigInt(4500)); + assert.strictEqual(output[1].usedCapacity.current, 4500n); // for account, we have the current and the sum of bucket's inflight deltas // as they belong to this account: 2000 + 2900 + 3500 - assert.strictEqual(output[2].usedCapacity.current, BigInt(8400)); + assert.strictEqual(output[2].usedCapacity.current, 8400n); }); }); diff --git a/utils/S3UtilsMongoClient.js b/utils/S3UtilsMongoClient.js index 457b593a..d757fc5b 100644 --- a/utils/S3UtilsMongoClient.js +++ b/utils/S3UtilsMongoClient.js @@ -15,39 +15,37 @@ const __COUNT_ITEMS = 'countitems'; const bigIntMax = (...args) => args.reduce((m, e) => (e > m ? BigInt(e) : BigInt(m))); -BigInt.prototype.toJSON = () => this.toString(); - const baseMetricsObject = { - masterCount: BigInt(0), - masterData: BigInt(0), - nullCount: BigInt(0), - nullData: BigInt(0), - versionCount: BigInt(0), - versionData: BigInt(0), - deleteMarkerCount: BigInt(0), - masterCountCold: BigInt(0), - masterDataCold: BigInt(0), - nullCountCold: BigInt(0), - nullDataCold: BigInt(0), - versionCountCold: BigInt(0), - versionDataCold: BigInt(0), - deleteMarkerCountCold: BigInt(0), - masterCountRestoring: BigInt(0), - masterDataRestoring: BigInt(0), - nullCountRestoring: BigInt(0), - nullDataRestoring: BigInt(0), - versionCountRestoring: BigInt(0), - versionDataRestoring: BigInt(0), - deleteMarkerCountRestoring: BigInt(0), - masterCountRestored: BigInt(0), - masterDataRestored: BigInt(0), - nullCountRestored: BigInt(0), - nullDataRestored: BigInt(0), - versionCountRestored: BigInt(0), - versionDataRestored: BigInt(0), - deleteMarkerCountRestored: BigInt(0), - mpuUploadCounts: BigInt(0), - mpuPartsData: BigInt(0), + masterCount: 0n, + masterData: 0n, + nullCount: 0n, + nullData: 0n, + versionCount: 0n, + versionData: 0n, + deleteMarkerCount: 0n, + masterCountCold: 0n, + masterDataCold: 0n, + nullCountCold: 0n, + nullDataCold: 0n, + versionCountCold: 0n, + versionDataCold: 0n, + deleteMarkerCountCold: 0n, + masterCountRestoring: 0n, + masterDataRestoring: 0n, + nullCountRestoring: 0n, + nullDataRestoring: 0n, + versionCountRestoring: 0n, + versionDataRestoring: 0n, + deleteMarkerCountRestoring: 0n, + masterCountRestored: 0n, + masterDataRestored: 0n, + nullCountRestored: 0n, + nullDataRestored: 0n, + versionCountRestored: 0n, + versionDataRestored: 0n, + deleteMarkerCountRestored: 0n, + mpuUploadCounts: 0n, + mpuPartsData: 0n, }; class S3UtilsMongoClient extends MongoClientInterface { @@ -68,9 +66,7 @@ class S3UtilsMongoClient extends MongoClientInterface { const TEST = await this.getCollection(USERSBUCKET).countDocuments({}); const TEST2 = await this.getCollection(METASTORE).countDocuments({}); const TEST3 = await this.getCollection(INFOSTORE).countDocuments({}); - console.log('TEST', { TEST, TEST2, TEST3 }); const usersBucketCreationDatesArray = await cursorUsersBucketCreationDates.toArray(); - console.log('USERS BUCKET CREATION DATES ARRAY', usersBucketCreationDatesArray); return usersBucketCreationDatesArray .reduce((map, obj) => ({ ...map, [obj._id]: obj.value.creationDate }), {}); } catch (err) { @@ -87,7 +83,6 @@ class S3UtilsMongoClient extends MongoClientInterface { async updateInflightDeltas(allMetrics, log) { let cursor; - console.log('WE ARE HEEEEEEEEERE', allMetrics); try { if (!allMetrics || !Array.isArray(allMetrics) || allMetrics.length === 0) { return allMetrics; @@ -99,11 +94,10 @@ class S3UtilsMongoClient extends MongoClientInterface { }, }); - // console.log('CURSOR', cursor); const inflights = await cursor.toArray(); // convert inflights to a map with _id: usedCapacity._inflight const inflightsMap = inflights.reduce((map, obj) => { - const inflightLong = obj.usedCapacity && obj.usedCapacity._inflight ? obj.usedCapacity._inflight : BigInt(0); + const inflightLong = obj.usedCapacity && obj.usedCapacity._inflight ? obj.usedCapacity._inflight : 0n; return { ...map, [obj._id]: inflightLong, @@ -115,7 +109,7 @@ class S3UtilsMongoClient extends MongoClientInterface { const id = entry._id; if (id.startsWith('bucket_')) { const inflightDocument = inflightsMap[id]; - const inflight = inflightDocument ? bigIntMax(0, inflightDocument - entry.usedCapacity._inflightsPreScan) : BigInt(0); + const inflight = inflightDocument ? bigIntMax(0, inflightDocument - entry.usedCapacity._inflightsPreScan) : 0n; if (inflight) { const inflightLong = BigInt(inflight); // Inflights remaining after the scan are part of the "current" bytes, @@ -151,7 +145,6 @@ class S3UtilsMongoClient extends MongoClientInterface { } } }); - console.log('ALL METRICS', allMetrics); return allMetrics; } catch (err) { log.error('An error occurred', { @@ -173,10 +166,8 @@ class S3UtilsMongoClient extends MongoClientInterface { async getObjectMDStats(bucketName, bucketInfo, isTransient, log, callback) { let cursor; let cursorMpuBucket; - console.log('WE ARE HEEERE', bucketName); try { const c = this.getCollection(bucketName); - console.log('HERE C ', c); cursor = c.find({}, { projection: { '_id': 1, @@ -193,7 +184,6 @@ class S3UtilsMongoClient extends MongoClientInterface { 'value.isPHD': 1, }, }); - console.log('CURSOR', cursor); const collRes = { bucket: {}, // bucket level metrics location: {}, // location level metrics @@ -201,7 +191,7 @@ class S3UtilsMongoClient extends MongoClientInterface { }; let stalledCount = 0; let bucketKey; - let inflightsPreScan = BigInt(0); + let inflightsPreScan = 0n; let accountBucket; const cmpDate = new Date(); cmpDate.setHours(cmpDate.getHours() - 1); @@ -209,24 +199,19 @@ class S3UtilsMongoClient extends MongoClientInterface { const locationConfig = getLocationConfig(log); const usersBucketCreationDatesMap = await this._getUsersBucketCreationDates(log); - console.log('USERS BUCKET CREATION DATES MAP', usersBucketCreationDatesMap); const bucketStatus = bucketInfo.getVersioningConfiguration(); const isVer = (bucketStatus && (bucketStatus.Status === 'Enabled' || bucketStatus.Status === 'Suspended')); if (!usersBucketCreationDatesMap) { - console.log('ERRORS INTERNAL', usersBucketCreationDatesMap); return callback(errors.InternalError); } const bucketDate = usersBucketCreationDatesMap[`${bucketInfo.getOwner()}${constants.splitter}${bucketName}`]; - console.log('BUCKET DATE', bucketDate); if (bucketDate) { bucketKey = `bucket_${bucketName}_${new Date(bucketDate).getTime()}`; - console.log('BUCKET KEY', bucketKey); if (bucketKey) { inflightsPreScan = await this.readStorageConsumptionInflights(bucketKey, log); - console.log('INGLIGHTS PRE SCAN', inflightsPreScan); } } @@ -341,7 +326,7 @@ class S3UtilsMongoClient extends MongoClientInterface { if (!isMPUPart) { collRes[metricLevel][resourceName][targetCount]++; } - collRes[metricLevel][resourceName].deleteMarkerCount += entry.value.isDeleteMarker ? BigInt(1) : BigInt(0); + collRes[metricLevel][resourceName].deleteMarkerCount += entry.value.isDeleteMarker ? 1n : 0n; }); } }); @@ -360,7 +345,7 @@ class S3UtilsMongoClient extends MongoClientInterface { if (!isMPUPart) { collRes.account[account].locations[location][targetCount]++; } - collRes.account[account].locations[location].deleteMarkerCount += entry.value.isDeleteMarker ? BigInt(1) : BigInt(0); + collRes.account[account].locations[location].deleteMarkerCount += entry.value.isDeleteMarker ? 1n : 0n; }); }); // one bucket has only one account @@ -426,7 +411,7 @@ class S3UtilsMongoClient extends MongoClientInterface { const retResult = this._handleResults(collRes, isVer); retResult.stalled = stalledCount; - if (inflightsPreScan > BigInt(0) && retResult && retResult.dataMetrics) { + if (inflightsPreScan > 0n && retResult && retResult.dataMetrics) { Object.keys(retResult.dataMetrics.bucket).forEach(key => { retResult.dataMetrics.bucket[key].usedCapacity = { ...retResult.dataMetrics.bucket[key].usedCapacity, @@ -472,13 +457,10 @@ class S3UtilsMongoClient extends MongoClientInterface { isRestoring: false, isRestored: false, }) { - console.log('HEEEEEERE 2'); if (!bucketName) { return { error: new Error('no bucket name provided') }; } - console.log('bucketCreationDate', bucketCreationDate); - if (entry.value.isPHD) { // PHD are created transiently in place of a master when it is deleted, until // they get replaced with the "new" master. They may either hold no information @@ -487,8 +469,6 @@ class S3UtilsMongoClient extends MongoClientInterface { return {}; } - console.log('entry.value', entry.value); - const size = Number.parseInt(entry.value['content-length'], 10); if (Number.isNaN(size)) { return { error: new Error('invalid content length') }; @@ -551,21 +531,20 @@ class S3UtilsMongoClient extends MongoClientInterface { delete results.location[location]; } } - console.log('DATAAAAAA RESULTS', results); return { data: results }; } _handleResults(res, isVersioned) { - let totalNonCurrentCount = BigInt(0); - let totalCurrentCount = BigInt(0); - let totalNonCurrentColdCount = BigInt(0); - let totalCurrentColdCount = BigInt(0); - let totalRestoringCount = BigInt(0); - let totalRestoredCount = BigInt(0); - let totalVersionRestoringCount = BigInt(0); - let totalVerionsRestoredCount = BigInt(0); - - const totalBytes = { curr: BigInt(0), prev: BigInt(0) }; + let totalNonCurrentCount = 0n; + let totalCurrentCount = 0n; + let totalNonCurrentColdCount = 0n; + let totalCurrentColdCount = 0n; + let totalRestoringCount = 0n; + let totalRestoredCount = 0n; + let totalVersionRestoringCount = 0n; + let totalVerionsRestoredCount = 0n; + + const totalBytes = { curr: 0n, prev: 0n }; const locationBytes = {}; const dataMetrics = { bucket: {}, @@ -582,61 +561,61 @@ class S3UtilsMongoClient extends MongoClientInterface { if (!dataMetrics[metricLevel][resourceName]) { dataMetrics[metricLevel][resourceName] = { usedCapacity: { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }, objectCount: { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }, }; } const { - masterCount = BigInt(0), - masterData = BigInt(0), - nullCount = BigInt(0), - nullData = BigInt(0), - versionCount = BigInt(0), - versionData = BigInt(0), - deleteMarkerCount = BigInt(0), - masterCountCold = BigInt(0), - masterDataCold = BigInt(0), - nullCountCold = BigInt(0), - nullDataCold = BigInt(0), - versionCountCold = BigInt(0), - versionDataCold = BigInt(0), - deleteMarkerCountCold = BigInt(0), - masterCountRestoring = BigInt(0), - masterDataRestoring = BigInt(0), - nullCountRestoring = BigInt(0), - nullDataRestoring = BigInt(0), - versionCountRestoring = BigInt(0), - versionDataRestoring = BigInt(0), - deleteMarkerCountRestoring = BigInt(0), - masterCountRestored = BigInt(0), - masterDataRestored = BigInt(0), - nullCountRestored = BigInt(0), - nullDataRestored = BigInt(0), - versionCountRestored = BigInt(0), - versionDataRestored = BigInt(0), - deleteMarkerCountRestored = BigInt(0), - mpuUploadCounts = BigInt(0), - mpuPartsData = BigInt(0), + masterCount = 0n, + masterData = 0n, + nullCount = 0n, + nullData = 0n, + versionCount = 0n, + versionData = 0n, + deleteMarkerCount = 0n, + masterCountCold = 0n, + masterDataCold = 0n, + nullCountCold = 0n, + nullDataCold = 0n, + versionCountCold = 0n, + versionDataCold = 0n, + deleteMarkerCountCold = 0n, + masterCountRestoring = 0n, + masterDataRestoring = 0n, + nullCountRestoring = 0n, + nullDataRestoring = 0n, + versionCountRestoring = 0n, + versionDataRestoring = 0n, + deleteMarkerCountRestoring = 0n, + masterCountRestored = 0n, + masterDataRestored = 0n, + nullCountRestored = 0n, + nullDataRestored = 0n, + versionCountRestored = 0n, + versionDataRestored = 0n, + deleteMarkerCountRestored = 0n, + mpuUploadCounts = 0n, + mpuPartsData = 0n, } = res[metricLevel][resourceName]; dataMetrics[metricLevel][resourceName].usedCapacity.current += BigInt(nullData) + BigInt(masterData); @@ -689,7 +668,7 @@ class S3UtilsMongoClient extends MongoClientInterface { // we only count the restoring and restored for non-cold locations totalBytes.curr += BigInt(nullData) + BigInt(masterData) + BigInt(nullDataCold) + BigInt(masterDataCold) + BigInt(nullDataRestoring) + BigInt(masterDataRestoring) + BigInt(nullDataRestored) + BigInt(masterDataRestored); if (!locationBytes[resourceName]) { - locationBytes[resourceName] = { curr: BigInt(0), prev: BigInt(0) }; + locationBytes[resourceName] = { curr: 0n, prev: 0n }; } locationBytes[resourceName].curr += BigInt(nullData) + BigInt(masterData) + BigInt(nullDataCold) + BigInt(masterDataCold) + BigInt(nullDataRestoring) + BigInt(masterDataRestoring) + BigInt(nullDataRestored) + BigInt(masterDataRestored); if (isVersioned) { @@ -703,13 +682,13 @@ class S3UtilsMongoClient extends MongoClientInterface { } if (metricLevel === 'bucket') { // count objects up of all buckets totalCurrentCount += BigInt(masterCount + nullCount); - totalNonCurrentCount += isVersioned ? BigInt(versionCount - masterCount - deleteMarkerCount) : BigInt(0); + totalNonCurrentCount += isVersioned ? BigInt(versionCount - masterCount - deleteMarkerCount) : 0n; totalCurrentColdCount += BigInt(masterCountCold + nullCountCold); - totalNonCurrentColdCount += isVersioned ? BigInt(versionCountCold - masterCountCold) : BigInt(0); + totalNonCurrentColdCount += isVersioned ? BigInt(versionCountCold - masterCountCold) : 0n; totalRestoringCount += BigInt(masterCountRestoring + nullCountRestoring); totalRestoredCount += BigInt(masterCountRestored + nullCountRestored); - totalVersionRestoringCount += isVersioned ? BigInt(versionCountRestoring - masterCountRestoring) : BigInt(0); - totalVerionsRestoredCount += isVersioned ? BigInt(versionCountRestored - masterCountRestored) : BigInt(0); + totalVersionRestoringCount += isVersioned ? BigInt(versionCountRestoring - masterCountRestoring) : 0n; + totalVerionsRestoredCount += isVersioned ? BigInt(versionCountRestored - masterCountRestored) : 0n; } }); } @@ -727,29 +706,29 @@ class S3UtilsMongoClient extends MongoClientInterface { const accountLocation = dataMetrics.account[account].locations[location]; if (!accountLocation.usedCapacity) { accountLocation.usedCapacity = { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUParts: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUParts: 0n, }; } if (!accountLocation.objectCount) { accountLocation.objectCount = { - current: BigInt(0), - nonCurrent: BigInt(0), - _currentCold: BigInt(0), - _nonCurrentCold: BigInt(0), - _currentRestored: BigInt(0), - _currentRestoring: BigInt(0), - _nonCurrentRestored: BigInt(0), - _nonCurrentRestoring: BigInt(0), - _incompleteMPUUploads: BigInt(0), - deleteMarker: BigInt(0), + current: 0n, + nonCurrent: 0n, + _currentCold: 0n, + _nonCurrentCold: 0n, + _currentRestored: 0n, + _currentRestoring: 0n, + _nonCurrentRestored: 0n, + _nonCurrentRestoring: 0n, + _incompleteMPUUploads: 0n, + deleteMarker: 0n, }; } accountLocation.usedCapacity.current += dataMetrics.location[location].usedCapacity.current; @@ -827,7 +806,6 @@ class S3UtilsMongoClient extends MongoClientInterface { static convertNumberToLong(obj) { if (typeof obj !== 'object' || obj === null) { - console.log('THIS IS THE OBJ', obj); return obj; } @@ -839,7 +817,6 @@ class S3UtilsMongoClient extends MongoClientInterface { newObj[key] = S3UtilsMongoClient.convertNumberToLong(obj[key]); } } - console.log('NEW OBJ', newObj); return newObj; } @@ -860,7 +837,6 @@ class S3UtilsMongoClient extends MongoClientInterface { log.info('updateStorageConsumptionMetrics: updating storage metrics'); // update the inflights - console.log('updatedStorageMetricsList', updatedStorageMetricsList); updatedStorageMetricsList = await this.updateInflightDeltas(updatedStorageMetricsList, log); // Drop the temporary collection if it exists @@ -868,7 +844,6 @@ class S3UtilsMongoClient extends MongoClientInterface { await this.getCollection(INFOSTORE_TMP).drop(); } catch (err) { if (err.codeName !== 'NamespaceNotFound') { - console.log('we are actually heeeere'); throw err; } } @@ -925,7 +900,7 @@ class S3UtilsMongoClient extends MongoClientInterface { const i = this.getCollection(INFOSTORE); const doc = await i.findOne({ _id: entityName }); if (!doc || !doc.usedCapacity || !doc.usedCapacity._inflight) { - return BigInt(0); + return 0n; } return BigInt(doc.usedCapacity._inflight.toString()); } catch (err) { @@ -934,7 +909,7 @@ class S3UtilsMongoClient extends MongoClientInterface { errDetails: { ...err }, errorString: err.toString(), }); - return BigInt(0); + return 0n; } } diff --git a/yarn.lock b/yarn.lock index 1798cff9..b84bf6e5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,14 @@ # yarn lockfile v1 +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + "@aws-crypto/ie11-detection@^2.0.0": version "2.0.2" resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-2.0.2.tgz#9c39f4a5558196636031a933ec1b4792de959d6a" @@ -916,21 +924,268 @@ events "^3.0.0" tslib "^2.2.0" -"@babel/code-frame@^7.0.0-beta.35": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== dependencies: - "@babel/highlight" "^7.0.0" + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/compat-data@^7.26.5": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.5.tgz#df93ac37f4417854130e21d72c66ff3d4b897fc7" + integrity sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.26.0", "@babel/generator@^7.26.5", "@babel/generator@^7.7.2": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.5.tgz#e44d4ab3176bbcaf78a5725da5f1dc28802a9458" + integrity sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw== + dependencies: + "@babel/parser" "^7.26.5" + "@babel/types" "^7.26.5" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/helper-compilation-targets@^7.25.9": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8" + integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA== + dependencies: + "@babel/compat-data" "^7.26.5" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/highlight@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" - integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35" + integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg== + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.5": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.5.tgz#6fec9aebddef25ca57a935c86dbb915ae2da3e1f" + integrity sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw== + dependencies: + "@babel/types" "^7.26.5" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-import-attributes@^7.24.7": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.7.2": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" + integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/template@^7.25.9", "@babel/template@^7.3.3": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.25.9": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.5.tgz#6d0be3e772ff786456c1a37538208286f6e79021" + integrity sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.5" + "@babel/parser" "^7.26.5" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.5" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.5", "@babel/types@^7.3.3": + version "7.26.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.5.tgz#7a1e1c01d28e26d1fe7f8ec9567b3b92b9d07747" + integrity sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== "@eslint/eslintrc@^1.0.5": version "1.0.5" @@ -978,6 +1233,246 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" + integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + +"@jest/core@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" + integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== + dependencies: + "@jest/console" "^29.7.0" + "@jest/reporters" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^29.7.0" + jest-config "^29.7.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-resolve-dependencies "^29.7.0" + jest-runner "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + jest-watcher "^29.7.0" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== + dependencies: + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== + dependencies: + jest-get-type "^29.6.3" + +"@jest/expect@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" + integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== + dependencies: + expect "^29.7.0" + jest-snapshot "^29.7.0" + +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== + dependencies: + "@jest/types" "^29.6.3" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +"@jest/globals@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" + integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/types" "^29.6.3" + jest-mock "^29.7.0" + +"@jest/reporters@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" + integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^6.0.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + jest-worker "^29.7.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + v8-to-istanbul "^9.0.1" + +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + +"@jest/source-map@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" + integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.18" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" + integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== + dependencies: + "@jest/console" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" + integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + dependencies: + "@jest/test-result" "^29.7.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + slash "^3.0.0" + +"@jest/transform@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.8" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@js-sdsl/ordered-set@^4.4.2": version "4.4.2" resolved "https://registry.yarnpkg.com/@js-sdsl/ordered-set/-/ordered-set-4.4.2.tgz#ab857eb63cf358b5a0f74fdd458b4601423779b7" @@ -1035,6 +1530,11 @@ resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + "@sinonjs/commons@^1.7.0": version "1.8.3" resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" @@ -1056,6 +1556,13 @@ dependencies: type-detect "4.0.8" +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== + dependencies: + "@sinonjs/commons" "^3.0.0" + "@sinonjs/fake-timers@^11.2.2": version "11.2.2" resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz#50063cc3574f4a27bd8453180a04171c85cc9699" @@ -1104,6 +1611,39 @@ resolved "https://registry.yarnpkg.com/@types/async/-/async-3.2.15.tgz#26d4768fdda0e466f18d6c9918ca28cc89a4e1fe" integrity sha512-PAmPfzvFA31mRoqZyTVsgJMsvbynR429UTTxhmfsUCrWGh3/fxOrzqBtaTPJsn4UtzTv4Vb0+/O7CARWb69N4g== +"@types/babel__core@^7.1.14": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.20.6" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" + integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== + dependencies: + "@babel/types" "^7.20.7" + "@types/cookie@^0.4.1": version "0.4.1" resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d" @@ -1116,6 +1656,32 @@ dependencies: "@types/node" "*" +"@types/graceful-fs@^4.1.3": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + +"@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" + "@types/json-schema@^7.0.3": version "7.0.4" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" @@ -1146,6 +1712,11 @@ dependencies: undici-types "~5.25.1" +"@types/stack-utils@^2.0.0": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== + "@types/tmp@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.3.tgz#908bfb113419fd6a42273674c00994d40902c165" @@ -1176,6 +1747,18 @@ "@types/node" "*" "@types/webidl-conversions" "*" +"@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + +"@types/yargs@^17.0.8": + version "17.0.33" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d" + integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA== + dependencies: + "@types/yargs-parser" "*" + "@typescript-eslint/experimental-utils@^2.5.0": version "2.19.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.19.0.tgz#d5ca732f22c009e515ba09fcceb5f2127d841568" @@ -1206,11 +1789,6 @@ JSONStream@^1.0.0, JSONStream@^1.3.5: jsonparse "^1.2.0" through ">=2.2.7 <3" -abab@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== - abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" @@ -1281,34 +1859,11 @@ accepts@~1.3.8: mime-types "~2.1.34" negotiator "0.6.3" -acorn-globals@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" - integrity sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw== - dependencies: - acorn "^6.0.1" - acorn-walk "^6.0.1" - acorn-jsx@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-walk@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.0.tgz#c957f4a1460da46af4a0388ce28b4c99355b0cbc" - integrity sha512-ugTb7Lq7u4GfWSqqpwE0bGyoBZNMTok/zDBXxfEG0QM50jNlGhIWjRC1pPN7bvV1anhF+bs+/gNcRw+o55Evbg== - -acorn@^5.5.3: - version "5.7.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" - integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== - -acorn@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.2.tgz#6a459041c320ab17592c6317abbfdf4bbaa98ca4" - integrity sha512-GXmKIvbrN3TV7aVqAzVFaMW8F8wzVX7voEBRO3bDA64+EX37YSayggRJP5Xig6HYHBkWKpFg9W5gg6orklubhg== - acorn@^8.7.0: version "8.7.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" @@ -1369,16 +1924,6 @@ ajv@6.12.3: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^5.3.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -1389,64 +1934,37 @@ ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-escapes@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" - integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -append-transform@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" - integrity sha1-126/jKlNJ24keja61EpLdKthGZE= +anymatch@^3.0.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: - default-require-extensions "^1.0.0" - -aproba@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + normalize-path "^3.0.0" + picomatch "^2.0.4" "aproba@^1.0.3 || ^2.0.0": version "2.0.0" @@ -1461,14 +1979,6 @@ are-we-there-yet@^2.0.0: delegates "^1.0.0" readable-stream "^3.6.0" -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" @@ -1481,33 +1991,6 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -arr-diff@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" - integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= - dependencies: - arr-flatten "^1.0.1" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.0.1, arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= - array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -1524,16 +2007,6 @@ array-includes@^3.1.4: get-intrinsic "^1.1.1" is-string "^1.0.7" -array-unique@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" - integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - array.prototype.flat@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" @@ -1548,11 +2021,6 @@ arraybuffer.slice@~0.0.7: resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= - "arsenal@git+https://github.com/scality/Arsenal#8.1.62": version "8.1.62" resolved "git+https://github.com/scality/Arsenal#d92a91f0766e07c6ac8a7cfa336abc864dc128c6" @@ -1593,9 +2061,9 @@ arrify@^1.0.1: optionalDependencies: ioctl "^2.0.2" -"arsenal@git+https://github.com/scality/arsenal#3c8219beb3785a66d1a5d74b4dff14eda869348f": +"arsenal@https://github.com/scality/arsenal#3c7581ef0734f6979b1525fc463253925ed6534f": version "8.1.145" - resolved "git+https://github.com/scality/arsenal#3c8219beb3785a66d1a5d74b4dff14eda869348f" + resolved "https://github.com/scality/arsenal#3c7581ef0734f6979b1525fc463253925ed6534f" dependencies: "@azure/identity" "^3.1.1" "@azure/storage-blob" "^12.12.0" @@ -1648,21 +2116,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== - async-mutex@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/async-mutex/-/async-mutex-0.3.2.tgz#1485eda5bda1b0ec7c8df1ac2e815757ad1831df" @@ -1670,13 +2123,6 @@ async-mutex@^0.3.2: dependencies: tslib "^2.3.1" -async@^2.1.4, async@^2.5.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" - integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== - dependencies: - lodash "^4.17.10" - async@^2.6.4, async@~2.6.4: version "2.6.4" resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" @@ -1694,11 +2140,6 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -atob@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - aws-sdk@^2.1005.0: version "2.1170.0" resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1170.0.tgz#8ca2450f590409fc13ffca1b90797c642cd92b2b" @@ -1742,166 +2183,68 @@ azure-storage@~2.10.7: xml2js "~0.2.8" xmlbuilder "^9.0.7" -babel-code-frame@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - -babel-core@^6.0.0, babel-core@^6.26.0: - version "6.26.3" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" - integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== - dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.1" - debug "^2.6.9" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.8" - slash "^1.0.0" - source-map "^0.5.7" - -babel-generator@^6.18.0, babel-generator@^6.26.0: - version "6.26.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" - integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.7" - trim-right "^1.0.1" - -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-jest@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1" - integrity sha512-lqKGG6LYXYu+DQh/slrQ8nxXQkEkhugdXsU6St7GmhVS7Ilc/22ArwqXNJrf0QaOBjZB0360qZMwXqDYQHXaew== - dependencies: - babel-plugin-istanbul "^4.1.6" - babel-preset-jest "^23.2.0" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= +babel-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== dependencies: - babel-runtime "^6.22.0" - -babel-plugin-istanbul@^4.1.6: - version "4.1.6" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" - integrity sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ== - dependencies: - babel-plugin-syntax-object-rest-spread "^6.13.0" - find-up "^2.1.0" - istanbul-lib-instrument "^1.10.1" - test-exclude "^4.2.1" - -babel-plugin-jest-hoist@^23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167" - integrity sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc= - -babel-plugin-syntax-object-rest-spread@^6.13.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" - integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= - -babel-preset-jest@^23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46" - integrity sha1-jsegOhOPABoaj7HoETZSvxpV2kY= - dependencies: - babel-plugin-jest-hoist "^23.2.0" - babel-plugin-syntax-object-rest-spread "^6.13.0" - -babel-register@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" - integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= - dependencies: - babel-core "^6.26.0" - babel-runtime "^6.26.0" - core-js "^2.5.0" - home-or-tmp "^2.0.0" - lodash "^4.17.4" - mkdirp "^0.5.1" - source-map-support "^0.4.15" - -babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" + "@jest/transform" "^29.7.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.6.3" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-preset-current-node-syntax@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz#9a929eafece419612ef4ae4f60b1862ebad8ef30" + integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + +babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== + dependencies: + babel-plugin-jest-hoist "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" backo2@1.0.2: version "1.0.2" @@ -1950,19 +2293,6 @@ base64id@2.0.0, base64id@~2.0.0: resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - bcrypt-pbkdf@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" @@ -2042,31 +2372,6 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^1.8.2: - version "1.8.5" - resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" - integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= - dependencies: - expand-range "^1.8.1" - preserve "^0.2.0" - repeat-element "^1.1.2" - -braces@^2.3.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - braces@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -2074,23 +2379,28 @@ braces@^3.0.1: dependencies: fill-range "^7.0.1" -browser-process-hrtime@^0.1.2: - version "0.1.3" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== - -browser-resolve@^1.11.3: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - resolve "1.1.7" + fill-range "^7.1.1" browserify-mime@^1.2.9: version "1.2.9" resolved "https://registry.yarnpkg.com/browserify-mime/-/browserify-mime-1.2.9.tgz#aeb1af28de6c0d7a6a2ce40adb68ff18422af31f" integrity sha512-uz+ItyJXBLb6wgon1ELEiVowJBEsy03PUWGRQU7cxxx9S+DW2hujPp+DaMYEOClRPzsn7NB99NtJ6pGnt8y+CQ== +browserslist@^4.24.0: + version "4.24.4" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.4.tgz#c6b2865a3f08bcb860a0e827389003b9fe686e4b" + integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A== + dependencies: + caniuse-lite "^1.0.30001688" + electron-to-chromium "^1.5.73" + node-releases "^2.0.19" + update-browserslist-db "^1.1.1" + bser@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" @@ -2171,11 +2481,6 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" -builtin-modules@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= - bytes@3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" @@ -2220,21 +2525,6 @@ cacache@^15.2.0: tar "^6.0.2" unique-filename "^1.1.1" -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -2243,32 +2533,25 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" -callsites@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -camelcase@^6.3.0: +camelcase@^6.2.0, camelcase@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -capture-exit@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" - integrity sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28= - dependencies: - rsvp "^3.3.3" +caniuse-lite@^1.0.30001688: + version "1.0.30001695" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz#39dfedd8f94851132795fdf9b79d29659ad9c4d4" + integrity sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw== caseless@~0.12.0: version "0.12.0" @@ -2280,26 +2563,6 @@ catering@^2.0.0, catering@^2.1.0: resolved "https://registry.yarnpkg.com/catering/-/catering-2.1.1.tgz#66acba06ed5ee28d5286133982a927de9a04b510" integrity sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w== -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.0.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" - integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - chalk@^4.0.0: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" @@ -2308,44 +2571,39 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chownr@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" - integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== chownr@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== -ci-info@^1.5.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" - integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== +ci-info@^3.2.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" +cjs-module-lexer@^1.0.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz#707413784dbb3a72aa11c2f2b042a0bef4004170" + integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA== clean-stack@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cliui@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" - integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - wrap-ansi "^2.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" cluster-key-slot@^1.1.0: version "1.1.0" @@ -2357,25 +2615,10 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" +collect-v8-coverage@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== color-convert@^2.0.1: version "2.0.1" @@ -2384,11 +2627,6 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" @@ -2430,11 +2668,6 @@ commander@5.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-5.0.0.tgz#dbf1909b49e5044f8fdaf0adc809f0c0722bdfd0" integrity sha512-JrDGPAKjMGSP1G0DUoaceEJ3DZgAfr/q6X7FVk4+U5KxUSKviYGM2k6zWkfyyBHy5rAtzgYJFa1ro2O9PtoxwQ== -commander@~2.17.1: - version "2.17.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== - commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -2445,7 +2678,7 @@ component-bind@1.0.0: resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= -component-emitter@1.2.1, component-emitter@^1.2.1: +component-emitter@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= @@ -2470,7 +2703,7 @@ confusing-browser-globals@^1.0.10: resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== -console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: +console-control-strings@^1.0.0, console-control-strings@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= @@ -2487,12 +2720,10 @@ content-type@~1.0.4: resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== -convert-source-map@^1.4.0, convert-source-map@^1.5.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== - dependencies: - safe-buffer "~5.1.1" +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== cookie-signature@1.0.6: version "1.0.6" @@ -2509,16 +2740,6 @@ cookie@~0.4.1: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-js@^2.4.0, core-js@^2.5.0: - version "2.5.7" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" - integrity sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw== - core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -2532,7 +2753,20 @@ cors@~2.8.5: object-assign "^4" vary "^1" -cron-parser@^2.18.0: +create-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-config "^29.7.0" + jest-util "^29.7.0" + prompts "^2.0.1" + +cron-parser@^2.18.0: version "2.18.0" resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-2.18.0.tgz#de1bb0ad528c815548371993f81a54e5a089edcf" integrity sha512-s4odpheTyydAbTBQepsqd2rNWGa2iV3cyo8g7zbI2QQYGLVsfbhmwukayS1XHppe02Oy1fg7mg6xoaraVJeEcg== @@ -2540,15 +2774,6 @@ cron-parser@^2.18.0: is-nan "^1.3.0" moment-timezone "^0.5.31" -cross-spawn@^5.0.1: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - cross-spawn@^7.0.2: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -2558,17 +2783,14 @@ cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" -cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": - version "0.3.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" - integrity sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog== - -cssstyle@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb" - integrity sha512-364AI1l/M5TYcFH83JnOH/pSqgaNnKmYgKrm0didZMGKWjQB60dymwWy1rKUgL3J1ffdq9xVi2yGLHdSjjSNog== +cross-spawn@^7.0.3: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: - cssom "0.3.x" + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" dashdash@^1.12.0: version "1.14.1" @@ -2577,21 +2799,12 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -data-urls@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.1.tgz#d416ac3896918f29ca84d81085bc3705834da579" - integrity sha512-0HdcMZzK6ubMUnsMmQmG0AcLQPvbvb47R0+7CCZQCYgcd8OUWG91CG7sM6GoXgjz+WLl4ArFzHtBMy/QqSF4eg== - dependencies: - abab "^2.0.0" - whatwg-mimetype "^2.1.0" - whatwg-url "^7.0.0" - dayjs@^1.10.5: version "1.11.6" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.6.tgz#2e79a226314ec3ec904e3ee1dd5a4f5e5b1c7afb" integrity sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ== -debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: +debug@2.6.9, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -2640,37 +2853,20 @@ debug@~3.1.0: dependencies: ms "2.0.0" -decamelize@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== +dedent@^1.0.0: + version "1.5.3" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" + integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== deep-is@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -default-require-extensions@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" - integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg= - dependencies: - strip-bom "^2.0.0" +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== deferred-leveldown@^7.0.0: version "7.0.0" @@ -2700,35 +2896,13 @@ define-lazy-prop@^2.0.0: resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.2, define-properties@^1.1.3: +define-properties@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -2764,27 +2938,15 @@ destroy@1.2.0: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= - dependencies: - repeating "^2.0.0" - -detect-libc@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - -detect-newline@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" - integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -diff@^3.2.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== diff@^5.1.0: version "5.2.0" @@ -2813,13 +2975,6 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -domexception@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== - dependencies: - webidl-conversions "^4.0.2" - ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -2840,6 +2995,16 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== +electron-to-chromium@^1.5.73: + version "1.5.87" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.87.tgz#3a89bec85e43a8b32445ec938228e4ec982e0f79" + integrity sha512-mPFwmEWmRivw2F8x3w3l2m6htAUN97Gy0kwpO++2m9iT1Gt8RCFVUfv9U/sIbHJ6rY4P6/ooqFL/eL7ock+pPg== + +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -2978,7 +3143,7 @@ errno@~0.1.1: dependencies: prr "~1.0.1" -error-ex@^1.2.0: +error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== @@ -3011,26 +3176,6 @@ es-abstract@^1.19.0, es-abstract@^1.19.1: string.prototype.trimstart "^1.0.4" unbox-primitive "^1.0.1" -es-abstract@^1.5.1: - version "1.12.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" - integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== - dependencies: - es-to-primitive "^1.1.1" - function-bind "^1.1.1" - has "^1.0.1" - is-callable "^1.1.3" - is-regex "^1.0.4" - -es-to-primitive@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -3052,33 +3197,26 @@ es6-promisify@^5.0.0: dependencies: es6-promise "^4.0.3" +escalade@^3.1.1, escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@^1.9.1: - version "1.11.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" - integrity sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw== - dependencies: - esprima "^3.1.3" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - eslint-config-airbnb-base@^15.0.0: version "15.0.0" resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz#6b09add90ac79c2f8d723a2580e07f3925afd236" @@ -3236,11 +3374,6 @@ espree@^9.2.0, espree@^9.3.0: acorn-jsx "^5.3.1" eslint-visitor-keys "^3.1.0" -esprima@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= - esprima@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" @@ -3267,7 +3400,7 @@ esrecurse@^4.3.0: dependencies: estraverse "^5.2.0" -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.1.0, estraverse@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= @@ -3297,69 +3430,36 @@ events@^3.0.0: resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -exec-sh@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" - integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw== - dependencies: - merge "^1.2.0" - -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= -expand-brackets@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" - integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= - dependencies: - is-posix-bracket "^0.1.0" - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expand-range@^1.8.1: - version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= +expect@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== dependencies: - fill-range "^2.1.0" - -expect@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98" - integrity sha512-dgSoOHgmtn/aDGRVFWclQyPDKl2CQRq0hmIEoUAuQs/2rn2NcvCWcSCovm6BLeuB/7EZuLGu2QfnR+qRt5OM4w== - dependencies: - ansi-styles "^3.2.0" - jest-diff "^23.6.0" - jest-get-type "^22.1.0" - jest-matcher-utils "^23.6.0" - jest-message-util "^23.4.0" - jest-regex-util "^23.3.0" + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" express@^4.18.2: version "4.18.2" @@ -3398,47 +3498,11 @@ express@^4.18.2: utils-merge "1.0.1" vary "~1.1.2" -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - extend@^3.0.2, extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== -extglob@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" - integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= - dependencies: - is-extglob "^1.0.0" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -3449,11 +3513,6 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -3464,7 +3523,12 @@ fast-json-stable-stringify@^2.0.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.4: +fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= @@ -3523,40 +3587,6 @@ file-uri-to-path@1.0.0: resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== -filename-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" - integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= - -fileset@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" - integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA= - dependencies: - glob "^7.0.3" - minimatch "^3.0.3" - -fill-range@^2.1.0: - version "2.2.4" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" - integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== - dependencies: - is-number "^2.1.0" - isobject "^2.0.0" - randomatic "^3.0.0" - repeat-element "^1.1.2" - repeat-string "^1.5.2" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -3564,6 +3594,13 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + finalhandler@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" @@ -3586,14 +3623,6 @@ find-cache-dir@^3.3.2: make-dir "^3.0.2" pkg-dir "^4.1.0" -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -3601,7 +3630,7 @@ find-up@^2.1.0: dependencies: locate-path "^2.0.0" -find-up@^4.0.0: +find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -3622,18 +3651,6 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== -for-in@^1.0.1, for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -for-own@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= - dependencies: - for-in "^1.0.1" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -3671,13 +3688,6 @@ forwarded@0.2.0: resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" @@ -3688,13 +3698,6 @@ fs-constants@^1.0.0: resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== -fs-minipass@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" - integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== - dependencies: - minipass "^2.2.1" - fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -3707,13 +3710,10 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -fsevents@^1.2.3: - version "1.2.4" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" - integrity sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg== - dependencies: - nan "^2.9.2" - node-pre-gyp "^0.10.0" +fsevents@^2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.1: version "1.1.1" @@ -3740,24 +3740,15 @@ gauge@^4.0.0: strip-ansi "^6.0.1" wide-align "^1.1.2" -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: version "1.1.1" @@ -3768,15 +3759,20 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.1" +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + get-port@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== get-symbol-description@^1.0.0: version "1.0.0" @@ -3786,11 +3782,6 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" @@ -3798,21 +3789,6 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -glob-base@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" - integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= - dependencies: - glob-parent "^2.0.0" - is-glob "^2.0.0" - -glob-parent@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" - integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= - dependencies: - is-glob "^2.0.0" - glob-parent@^6.0.1: version "6.0.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" @@ -3820,7 +3796,7 @@ glob-parent@^6.0.1: dependencies: is-glob "^4.0.3" -glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: +glob@^7.1.2: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== @@ -3856,6 +3832,11 @@ glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + globals@^13.6.0, globals@^13.9.0: version "13.12.1" resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.1.tgz#ec206be932e6c77236677127577aa8e50bf1c5cb" @@ -3863,50 +3844,21 @@ globals@^13.6.0, globals@^13.9.0: dependencies: type-fest "^0.20.2" -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" - integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== - -graceful-fs@^4.1.11, graceful-fs@^4.1.2: - version "4.1.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" - integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg= - graceful-fs@^4.2.6: version "4.2.9" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96" integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -handlebars@^4.0.3: - version "4.0.12" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5" - integrity sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA== - dependencies: - async "^2.5.0" - optimist "^0.6.1" - source-map "^0.6.1" - optionalDependencies: - uglify-js "^3.1.4" +graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= -har-validator@~5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" - integrity sha512-+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA== - dependencies: - ajv "^5.3.0" - har-schema "^2.0.0" - har-validator@~5.1.3: version "5.1.5" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" @@ -3915,13 +3867,6 @@ har-validator@~5.1.3: ajv "^6.12.3" har-schema "^2.0.0" -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - has-bigints@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" @@ -3939,16 +3884,6 @@ has-cors@1.1.0: resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -3971,43 +3906,12 @@ has-tostringtag@^1.0.0: dependencies: has-symbols "^1.0.2" -has-unicode@^2.0.0, has-unicode@^2.0.1: +has-unicode@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.1, has@^1.0.3: +has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== @@ -4043,25 +3947,10 @@ heapdump@^0.3.15: dependencies: nan "^2.13.2" -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -hosted-git-info@^2.1.4: - version "2.7.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== - -html-encoding-sniffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== - dependencies: - whatwg-encoding "^1.0.1" +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== http-cache-semantics@^4.1.0: version "4.1.0" @@ -4143,6 +4032,11 @@ https-proxy-agent@^5.0.1: agent-base "6" debug "4" +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + humanize-ms@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" @@ -4150,7 +4044,7 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" -iconv-lite@0.4.24, iconv-lite@^0.4.4: +iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -4179,13 +4073,6 @@ ieee754@^1.1.4: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" integrity sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA== -ignore-walk@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== - dependencies: - minimatch "^3.0.4" - ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" @@ -4214,13 +4101,13 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" -import-local@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" - integrity sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ== +import-local@^3.0.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" + integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== dependencies: - pkg-dir "^2.0.0" - resolve-cwd "^2.0.0" + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" imurmurhash@^0.1.4: version "0.1.4" @@ -4260,11 +4147,6 @@ inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.4, inherits@~2.0.1: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -ini@~1.3.0: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - internal-slot@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" @@ -4274,18 +4156,6 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" -invariant@^2.2.2, invariant@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - ioctl@2.0.2, ioctl@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/ioctl/-/ioctl-2.0.2.tgz#21543f661cb1b044761cbf721f5dde6be08ed060" @@ -4326,20 +4196,6 @@ ipaddr.js@1.9.1: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -4360,24 +4216,12 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - is-buffer@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= - dependencies: - builtin-modules "^1.0.0" - -is-callable@^1.1.3, is-callable@^1.1.4: +is-callable@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== @@ -4387,13 +4231,6 @@ is-callable@^1.2.4: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== -is-ci@^1.0.10: - version "1.2.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" - integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== - dependencies: - ci-info "^1.5.0" - is-core-module@^2.8.0, is-core-module@^2.8.1: version "2.8.1" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" @@ -4401,117 +4238,30 @@ is-core-module@^2.8.0, is-core-module@^2.8.1: dependencies: has "^1.0.3" -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-dotfile@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" - integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= - -is-equal-shallow@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" - integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= - dependencies: - is-primitive "^2.0.0" - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= - is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-fn@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" - integrity sha1-lp1J4bszKfa7fwkIm+JleLLd1Go= - -is-glob@^2.0.0, is-glob@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= - dependencies: - is-extglob "^1.0.0" +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-glob@^4.0.0, is-glob@^4.0.3: version "4.0.3" @@ -4552,20 +4302,6 @@ is-number-object@^1.0.4: dependencies: has-tostringtag "^1.0.0" -is-number@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= - dependencies: - kind-of "^3.0.2" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - is-number@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" @@ -4576,34 +4312,10 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-posix-bracket@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" - integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= - -is-primitive@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" - integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= - -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= - dependencies: - has "^1.0.1" - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" has-tostringtag "^1.0.0" @@ -4613,10 +4325,10 @@ is-shared-array-buffer@^1.0.1: resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" @@ -4644,11 +4356,6 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - is-weakref@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -4656,11 +4363,6 @@ is-weakref@^1.0.1: dependencies: call-bind "^1.0.2" -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" @@ -4673,424 +4375,436 @@ isarray@0.0.1: resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - isarray@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= +isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= -istanbul-api@^1.3.1: - version "1.3.7" - resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa" - integrity sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA== - dependencies: - async "^2.1.4" - fileset "^2.0.2" - istanbul-lib-coverage "^1.2.1" - istanbul-lib-hook "^1.2.2" - istanbul-lib-instrument "^1.10.2" - istanbul-lib-report "^1.1.5" - istanbul-lib-source-maps "^1.2.6" - istanbul-reports "^1.5.1" - js-yaml "^3.7.0" - mkdirp "^0.5.1" - once "^1.4.0" +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== -istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" - integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ== - -istanbul-lib-hook@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" - integrity sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw== - dependencies: - append-transform "^0.4.0" - -istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" - integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A== - dependencies: - babel-generator "^6.18.0" - babel-template "^6.16.0" - babel-traverse "^6.18.0" - babel-types "^6.18.0" - babylon "^6.18.0" - istanbul-lib-coverage "^1.2.1" - semver "^5.3.0" - -istanbul-lib-report@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" - integrity sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw== +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== dependencies: - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - path-parse "^1.0.5" - supports-color "^3.1.2" + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" -istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" - integrity sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg== +istanbul-lib-instrument@^6.0.0: + version "6.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" + integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== dependencies: - debug "^3.1.0" - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - rimraf "^2.6.1" - source-map "^0.5.3" + "@babel/core" "^7.23.9" + "@babel/parser" "^7.23.9" + "@istanbuljs/schema" "^0.1.3" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" -istanbul-reports@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" - integrity sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw== +istanbul-lib-report@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: - handlebars "^4.0.3" + istanbul-lib-coverage "^3.0.0" + make-dir "^4.0.0" + supports-color "^7.1.0" -jest-changed-files@^23.4.2: - version "23.4.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83" - integrity sha512-EyNhTAUWEfwnK0Is/09LxoqNDOn7mU7S3EHskG52djOFS/z+IT0jT3h3Ql61+dklcG7bJJitIWEMB4Sp1piHmA== +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== dependencies: - throat "^4.0.0" + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" -jest-cli@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4" - integrity sha512-hgeD1zRUp1E1zsiyOXjEn4LzRLWdJBV//ukAHGlx6s5mfCNJTbhbHjgxnDUXA8fsKWN/HqFFF6X5XcCwC/IvYQ== +istanbul-reports@^3.1.3: + version "3.1.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" + integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.1" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.1.11" - import-local "^1.0.0" - is-ci "^1.0.10" - istanbul-api "^1.3.1" - istanbul-lib-coverage "^1.2.0" - istanbul-lib-instrument "^1.10.1" - istanbul-lib-source-maps "^1.2.4" - jest-changed-files "^23.4.2" - jest-config "^23.6.0" - jest-environment-jsdom "^23.4.0" - jest-get-type "^22.1.0" - jest-haste-map "^23.6.0" - jest-message-util "^23.4.0" - jest-regex-util "^23.3.0" - jest-resolve-dependencies "^23.6.0" - jest-runner "^23.6.0" - jest-runtime "^23.6.0" - jest-snapshot "^23.6.0" - jest-util "^23.4.0" - jest-validate "^23.6.0" - jest-watcher "^23.4.0" - jest-worker "^23.2.0" - micromatch "^2.3.11" - node-notifier "^5.2.1" - prompts "^0.1.9" - realpath-native "^1.0.0" - rimraf "^2.5.4" - slash "^1.0.0" - string-length "^2.0.0" - strip-ansi "^4.0.0" - which "^1.2.12" - yargs "^11.0.0" - -jest-config@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d" - integrity sha512-i8V7z9BeDXab1+VNo78WM0AtWpBRXJLnkT+lyT+Slx/cbP5sZJ0+NDuLcmBE5hXAoK0aUp7vI+MOxR+R4d8SRQ== - dependencies: - babel-core "^6.0.0" - babel-jest "^23.6.0" - chalk "^2.0.1" - glob "^7.1.1" - jest-environment-jsdom "^23.4.0" - jest-environment-node "^23.4.0" - jest-get-type "^22.1.0" - jest-jasmine2 "^23.6.0" - jest-regex-util "^23.3.0" - jest-resolve "^23.6.0" - jest-util "^23.4.0" - jest-validate "^23.6.0" - micromatch "^2.3.11" - pretty-format "^23.6.0" - -jest-diff@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d" - integrity sha512-Gz9l5Ov+X3aL5L37IT+8hoCUsof1CVYBb2QEkOupK64XyRR3h+uRpYIm97K7sY8diFxowR8pIGEdyfMKTixo3g== + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jest-changed-files@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== dependencies: - chalk "^2.0.1" - diff "^3.2.0" - jest-get-type "^22.1.0" - pretty-format "^23.6.0" + execa "^5.0.0" + jest-util "^29.7.0" + p-limit "^3.1.0" -jest-docblock@^23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" - integrity sha1-8IXh8YVI2Z/dabICB+b9VdkTg6c= +jest-circus@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== dependencies: - detect-newline "^2.1.0" + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^1.0.0" + is-generator-fn "^2.0.0" + jest-each "^29.7.0" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + p-limit "^3.1.0" + pretty-format "^29.7.0" + pure-rand "^6.0.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-cli@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== + dependencies: + "@jest/core" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + chalk "^4.0.0" + create-jest "^29.7.0" + exit "^0.1.2" + import-local "^3.0.2" + jest-config "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + yargs "^17.3.1" + +jest-config@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^29.7.0" + "@jest/types" "^29.6.3" + babel-jest "^29.7.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^29.7.0" + jest-environment-node "^29.7.0" + jest-get-type "^29.6.3" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-runner "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^29.7.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" -jest-each@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575" - integrity sha512-x7V6M/WGJo6/kLoissORuvLIeAoyo2YqLOoCDkohgJ4XOXSqOtyvr8FbInlAWS77ojBsZrafbozWoKVRdtxFCg== +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: - chalk "^2.0.1" - pretty-format "^23.6.0" + chalk "^4.0.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-environment-jsdom@^23.4.0: - version "23.4.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023" - integrity sha1-BWp5UrP+pROsYqFAosNox52eYCM= +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== dependencies: - jest-mock "^23.2.0" - jest-util "^23.4.0" - jsdom "^11.5.1" + detect-newline "^3.0.0" -jest-environment-node@^23.4.0: - version "23.4.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10" - integrity sha1-V+gO0IQd6jAxZ8zozXlSHeuv3hA= +jest-each@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== dependencies: - jest-mock "^23.2.0" - jest-util "^23.4.0" + "@jest/types" "^29.6.3" + chalk "^4.0.0" + jest-get-type "^29.6.3" + jest-util "^29.7.0" + pretty-format "^29.7.0" + +jest-environment-node@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + jest-util "^29.7.0" -jest-get-type@^22.1.0: - version "22.4.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" - integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w== +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== -jest-haste-map@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16" - integrity sha512-uyNhMyl6dr6HaXGHp8VF7cK6KpC6G9z9LiMNsst+rJIZ8l7wY0tk8qwjPmEghczojZ2/ZhtEdIabZ0OQRJSGGg== +jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== dependencies: + "@jest/types" "^29.6.3" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" fb-watchman "^2.0.0" - graceful-fs "^4.1.11" - invariant "^2.2.4" - jest-docblock "^23.2.0" - jest-serializer "^23.0.1" - jest-worker "^23.2.0" - micromatch "^2.3.11" - sane "^2.0.0" - -jest-jasmine2@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0" - integrity sha512-pe2Ytgs1nyCs8IvsEJRiRTPC0eVYd8L/dXJGU08GFuBwZ4sYH/lmFDdOL3ZmvJR8QKqV9MFuwlsAi/EWkFUbsQ== - dependencies: - babel-traverse "^6.0.0" - chalk "^2.0.1" - co "^4.6.0" - expect "^23.6.0" - is-generator-fn "^1.0.0" - jest-diff "^23.6.0" - jest-each "^23.6.0" - jest-matcher-utils "^23.6.0" - jest-message-util "^23.4.0" - jest-snapshot "^23.6.0" - jest-util "^23.4.0" - pretty-format "^23.6.0" - -jest-leak-detector@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de" - integrity sha512-f/8zA04rsl1Nzj10HIyEsXvYlMpMPcy0QkQilVZDFOaPbv2ur71X5u2+C4ZQJGyV/xvVXtCCZ3wQ99IgQxftCg== - dependencies: - pretty-format "^23.6.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" -jest-matcher-utils@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80" - integrity sha512-rosyCHQfBcol4NsckTn01cdelzWLU9Cq7aaigDf8VwwpIRvWE/9zLgX2bON+FkEW69/0UuYslUe22SOdEf2nog== - dependencies: - chalk "^2.0.1" - jest-get-type "^22.1.0" - pretty-format "^23.6.0" - -jest-message-util@^23.4.0: - version "23.4.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f" - integrity sha1-F2EMUJQjSVCNAaPR4L2iwHkIap8= - dependencies: - "@babel/code-frame" "^7.0.0-beta.35" - chalk "^2.0.1" - micromatch "^2.3.11" - slash "^1.0.0" - stack-utils "^1.0.1" - -jest-mock@^23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" - integrity sha1-rRxg8p6HGdR8JuETgJi20YsmETQ= - -jest-regex-util@^23.3.0: - version "23.3.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" - integrity sha1-X4ZylUfCeFxAAs6qj4Sf6MpHG8U= - -jest-resolve-dependencies@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d" - integrity sha512-EkQWkFWjGKwRtRyIwRwI6rtPAEyPWlUC2MpzHissYnzJeHcyCn1Hc8j7Nn1xUVrS5C6W5+ZL37XTem4D4pLZdA== +jest-leak-detector@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== dependencies: - jest-regex-util "^23.3.0" - jest-snapshot "^23.6.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-resolve@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae" - integrity sha512-XyoRxNtO7YGpQDmtQCmZjum1MljDqUCob7XlZ6jy9gsMugHdN2hY4+Acz9Qvjz2mSsOnPSH7skBmDYCHXVZqkA== +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== dependencies: - browser-resolve "^1.11.3" - chalk "^2.0.1" - realpath-native "^1.0.0" + chalk "^4.0.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.6.3" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-util "^29.7.0" -jest-runner@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38" - integrity sha512-kw0+uj710dzSJKU6ygri851CObtCD9cN8aNkg8jWJf4ewFyEa6kwmiH/r/M1Ec5IL/6VFa0wnAk6w+gzUtjJzA== +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== + +jest-resolve-dependencies@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== dependencies: - exit "^0.1.2" - graceful-fs "^4.1.11" - jest-config "^23.6.0" - jest-docblock "^23.2.0" - jest-haste-map "^23.6.0" - jest-jasmine2 "^23.6.0" - jest-leak-detector "^23.6.0" - jest-message-util "^23.4.0" - jest-runtime "^23.6.0" - jest-util "^23.4.0" - jest-worker "^23.2.0" - source-map-support "^0.5.6" - throat "^4.0.0" - -jest-runtime@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082" - integrity sha512-ycnLTNPT2Gv+TRhnAYAQ0B3SryEXhhRj1kA6hBPSeZaNQkJ7GbZsxOLUkwg6YmvWGdX3BB3PYKFLDQCAE1zNOw== + jest-regex-util "^29.6.3" + jest-snapshot "^29.7.0" + +jest-resolve@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== dependencies: - babel-core "^6.0.0" - babel-plugin-istanbul "^4.1.6" - chalk "^2.0.1" - convert-source-map "^1.4.0" - exit "^0.1.2" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.1.11" - jest-config "^23.6.0" - jest-haste-map "^23.6.0" - jest-message-util "^23.4.0" - jest-regex-util "^23.3.0" - jest-resolve "^23.6.0" - jest-snapshot "^23.6.0" - jest-util "^23.4.0" - jest-validate "^23.6.0" - micromatch "^2.3.11" - realpath-native "^1.0.0" - slash "^1.0.0" - strip-bom "3.0.0" - write-file-atomic "^2.1.0" - yargs "^11.0.0" - -jest-serializer@^23.0.1: - version "23.0.1" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" - integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU= - -jest-snapshot@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a" - integrity sha512-tM7/Bprftun6Cvj2Awh/ikS7zV3pVwjRYU2qNYS51VZHgaAMBs5l4o/69AiDHhQrj5+LA2Lq4VIvK7zYk/bswg== - dependencies: - babel-types "^6.0.0" - chalk "^2.0.1" - jest-diff "^23.6.0" - jest-matcher-utils "^23.6.0" - jest-message-util "^23.4.0" - jest-resolve "^23.6.0" - mkdirp "^0.5.1" + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-pnp-resolver "^1.2.2" + jest-util "^29.7.0" + jest-validate "^29.7.0" + resolve "^1.20.0" + resolve.exports "^2.0.0" + slash "^3.0.0" + +jest-runner@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== + dependencies: + "@jest/console" "^29.7.0" + "@jest/environment" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.13.1" + graceful-fs "^4.2.9" + jest-docblock "^29.7.0" + jest-environment-node "^29.7.0" + jest-haste-map "^29.7.0" + jest-leak-detector "^29.7.0" + jest-message-util "^29.7.0" + jest-resolve "^29.7.0" + jest-runtime "^29.7.0" + jest-util "^29.7.0" + jest-watcher "^29.7.0" + jest-worker "^29.7.0" + p-limit "^3.1.0" + source-map-support "0.5.13" + +jest-runtime@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/globals" "^29.7.0" + "@jest/source-map" "^29.6.3" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^29.7.0" + graceful-fs "^4.2.9" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" natural-compare "^1.4.0" - pretty-format "^23.6.0" - semver "^5.5.0" - -jest-util@^23.4.0: - version "23.4.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561" - integrity sha1-TQY8uSe68KI4Mf9hvsLLv0l5NWE= - dependencies: - callsites "^2.0.0" - chalk "^2.0.1" - graceful-fs "^4.1.11" - is-ci "^1.0.10" - jest-message-util "^23.4.0" - mkdirp "^0.5.1" - slash "^1.0.0" - source-map "^0.6.0" + pretty-format "^29.7.0" + semver "^7.5.3" -jest-validate@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474" - integrity sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A== +jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== dependencies: - chalk "^2.0.1" - jest-get-type "^22.1.0" - leven "^2.1.0" - pretty-format "^23.6.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" -jest-watcher@^23.4.0: - version "23.4.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c" - integrity sha1-0uKM50+NrWxq/JIrksq+9u0FyRw= +jest-validate@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.1" - string-length "^2.0.0" + "@jest/types" "^29.6.3" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.6.3" + leven "^3.1.0" + pretty-format "^29.7.0" -jest-worker@^23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9" - integrity sha1-+vcGqNo2+uYOsmlXJX+ntdjqArk= +jest-watcher@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== dependencies: - merge-stream "^1.0.1" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.13.1" + jest-util "^29.7.0" + string-length "^4.0.1" -jest@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d" - integrity sha512-lWzcd+HSiqeuxyhG+EnZds6iO3Y3ZEnMrfZq/OTGvF/C+Z4fPMCdhWTGSAiO2Oym9rbEXfwddHhh6jqrTF3+Lw== +jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: - import-local "^1.0.0" - jest-cli "^23.6.0" + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== + dependencies: + "@jest/core" "^29.7.0" + "@jest/types" "^29.6.3" + import-local "^3.0.2" + jest-cli "^29.7.0" jmespath@0.16.0: version "0.16.0" @@ -5108,20 +4822,15 @@ joi@^17.6.0: "@sideway/formula" "^3.0.0" "@sideway/pinpoint" "^2.0.0" -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: +js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= - -js-yaml@^3.7.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" - integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -5138,42 +4847,10 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^11.5.1: - version "11.12.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" - integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== - dependencies: - abab "^2.0.0" - acorn "^5.5.3" - acorn-globals "^4.1.0" - array-equal "^1.0.0" - cssom ">= 0.3.2 < 0.4.0" - cssstyle "^1.0.0" - data-urls "^1.0.0" - domexception "^1.0.1" - escodegen "^1.9.1" - html-encoding-sniffer "^1.0.2" - left-pad "^1.3.0" - nwsapi "^2.0.7" - parse5 "4.0.0" - pn "^1.1.0" - request "^2.87.0" - request-promise-native "^1.0.5" - sax "^1.2.4" - symbol-tree "^3.2.2" - tough-cookie "^2.3.4" - w3c-hr-time "^1.0.1" - webidl-conversions "^4.0.2" - whatwg-encoding "^1.0.3" - whatwg-mimetype "^2.1.0" - whatwg-url "^6.4.1" - ws "^5.2.0" - xml-name-validator "^3.0.0" - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== json-edm-parser@~0.1.2: version "0.1.2" @@ -5182,10 +4859,10 @@ json-edm-parser@~0.1.2: dependencies: jsonparse "~1.2.0" -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" @@ -5207,11 +4884,6 @@ json-stringify-safe@~5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= - json5@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" @@ -5219,6 +4891,11 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonparse@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" @@ -5294,46 +4971,15 @@ jws@^4.0.0: jwa "^2.0.0" safe-buffer "^5.0.1" -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== - -kleur@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300" - integrity sha512-77XF9iTllATmG9lSlIv0qdQ2BQ/h9t0bJllHlbvsQ0zUWfU7Yi0S8L5JXzPZgkefIiajLmBJJ4BsMJmqcf7oxQ== - -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" +kind-of@^6.0.0: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== -left-pad@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" - integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== level-codec@^10.0.0: version "10.0.0" @@ -5534,10 +5180,10 @@ levelup@~0.19.0: semver "~5.1.0" xtend "~3.0.0" -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== levn@^0.4.1: version "0.4.1" @@ -5547,13 +5193,10 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== linkify-it@^2.0.0: version "2.2.0" @@ -5562,17 +5205,6 @@ linkify-it@^2.0.0: dependencies: uc.micro "^1.0.1" -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -5653,21 +5285,11 @@ lodash.once@^4.0.0: resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - lodash.union@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= -lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4: - version "4.17.11" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" - integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== - lodash@^4.17.14: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" @@ -5698,20 +5320,12 @@ looper@^3.0.0: resolved "https://registry.yarnpkg.com/looper/-/looper-3.0.0.tgz#2efa54c3b1cbaba9b94aee2e5914b0be57fbb749" integrity sha1-LvpUw7HLq6m5Su4uWRSwvlf7t0k= -loose-envify@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lru-cache@^4.0.1: - version "4.1.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" - integrity sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" + yallist "^3.0.2" lru-cache@^6.0.0: version "6.0.0" @@ -5737,6 +5351,13 @@ make-dir@^3.0.2: dependencies: semver "^6.0.0" +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + dependencies: + semver "^7.5.3" + make-fetch-happen@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" @@ -5759,24 +5380,12 @@ make-fetch-happen@^9.1.0: socks-proxy-agent "^6.0.0" ssri "^8.0.0" -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== dependencies: - object-visit "^1.0.0" + tmpl "1.0.5" markdown-it@10.0.0: version "10.0.0" @@ -5797,9 +5406,9 @@ markdownlint@^0.19.0: markdown-it "10.0.0" math-random@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" - integrity sha1-izqsWIuKZuSXXjzepn97sylgH6w= + version "1.0.4" + resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" + integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== md5-file@^5.0.0: version "5.0.0" @@ -5825,13 +5434,6 @@ media-typer@0.3.0: resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== -mem@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" - integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= - dependencies: - mimic-fn "^1.0.0" - memory-pager@^1.0.2: version "1.5.0" resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" @@ -5842,61 +5444,16 @@ merge-descriptors@1.0.1: resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== -merge-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= - dependencies: - readable-stream "^2.0.1" - -merge@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" - integrity sha1-dTHjnUlJwoGma4xabgJl6LBYlNo= +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromatch@^2.3.11: - version "2.3.11" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" - integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= - dependencies: - arr-diff "^2.0.0" - array-unique "^0.2.1" - braces "^1.8.2" - expand-brackets "^0.1.4" - extglob "^0.3.1" - filename-regex "^2.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.1" - kind-of "^3.0.2" - normalize-path "^2.0.1" - object.omit "^2.0.0" - parse-glob "^3.0.4" - regex-cache "^0.4.2" - -micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - micromatch@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" @@ -5905,6 +5462,14 @@ micromatch@^4.0.2: braces "^3.0.1" picomatch "^2.0.5" +micromatch@^4.0.4: + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + mime-db@1.51.0: version "1.51.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" @@ -5946,33 +5511,23 @@ mime@1.6.0: resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimatch@^3.0.3, minimatch@^3.0.4: +minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= - -minimist@^1.1.1, minimist@^1.2.0: +minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= - minipass-collect@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" @@ -6012,14 +5567,6 @@ minipass-sized@^1.0.3: dependencies: minipass "^3.0.0" -minipass@^2.2.1, minipass@^2.3.3: - version "2.3.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" - integrity sha512-mlouk1OHlaUE8Odt1drMtG1bAJA4ZA6B/ehysgV0LUIrDHdKgo1KorZq3pK0b/7Z7LJIQ12MNM6aC+Tn6lUZ5w== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: version "3.1.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.6.tgz#3b8150aa688a711a1521af5e8779c1d3bb4f45ee" @@ -6027,13 +5574,6 @@ minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3: dependencies: yallist "^4.0.0" -minizlib@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.1.tgz#6734acc045a46e61d596a43bb9d9cd326e19cc42" - integrity sha512-TrfjCjk4jLhcJyGMYymBH6oTXcWjYbUAXTHDbtnWHjZC25h0cdajHuPE1zxb4DVmu8crfh+HwH/WMuyLG0nHBg== - dependencies: - minipass "^2.2.1" - minizlib@^2.0.0, minizlib@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -6042,21 +5582,6 @@ minizlib@^2.0.0, minizlib@^2.1.1: minipass "^3.0.0" yallist "^4.0.0" -mixin-deep@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" - integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mkdirp@^0.5.0, mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - dependencies: - minimist "0.0.8" - mkdirp@^1.0.3, mkdirp@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" @@ -6184,28 +5709,6 @@ nan@^2.3.2: resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== -nan@^2.9.2: - version "2.11.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" - integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - napi-macros@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/napi-macros/-/napi-macros-2.0.0.tgz#2b6bae421e7b96eb687aa6c77a7858640670001b" @@ -6216,15 +5719,6 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= -needle@^2.2.1: - version "2.2.4" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" - integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== - dependencies: - debug "^2.1.2" - iconv-lite "^0.4.4" - sax "^1.2.4" - needle@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/needle/-/needle-3.2.0.tgz#07d240ebcabfd65c76c03afae7f6defe6469df44" @@ -6305,32 +5799,6 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= -node-notifier@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" - integrity sha512-MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg== - dependencies: - growly "^1.3.0" - semver "^5.4.1" - shellwords "^0.1.1" - which "^1.3.0" - -node-pre-gyp@^0.10.0: - version "0.10.3" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" - integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - node-rdkafka@2.12.0: version "2.12.0" resolved "https://registry.yarnpkg.com/node-rdkafka/-/node-rdkafka-2.12.0.tgz#c21a81b3025a8798a911a90dc77f25d29b2849ec" @@ -6339,6 +5807,11 @@ node-rdkafka@2.12.0: bindings "^1.3.1" nan "^2.14.0" +node-releases@^2.0.19: + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== + node-schedule@^1.3.2: version "1.3.3" resolved "https://registry.yarnpkg.com/node-schedule/-/node-schedule-1.3.3.tgz#f8e01c5fb9597f09ecf9c4c25d6938e5e7a06f48" @@ -6353,14 +5826,6 @@ node-uuid@^1.4.8: resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" integrity sha1-sEDrCSOWivq/jTL7HxfxFn/auQc= -nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= - dependencies: - abbrev "1" - osenv "^0.1.4" - nopt@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" @@ -6368,52 +5833,17 @@ nopt@^5.0.0: dependencies: abbrev "1" -normalize-package-data@^2.3.2: - version "2.4.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" - integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== - dependencies: - hosted-git-info "^2.1.4" - is-builtin-module "^1.0.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.0.1, normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -npm-bundled@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" - integrity sha512-m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g== - -npm-packlist@^1.1.6: - version "1.1.12" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" - integrity sha512-WJKFOVMeAlsU/pjXuqVdzU0WfgtIBCupkEVwn+1Y0ERAbUfWw8R4GjgVbaKnUjRoD2FoQbHOCbOyT5Mbs9Lw4g== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" +normalize-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -npmlog@^4.0.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" + path-key "^3.0.0" npmlog@^6.0.0: version "6.0.0" @@ -6425,35 +5855,16 @@ npmlog@^6.0.0: gauge "^4.0.0" set-blocking "^2.0.0" -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - -nwsapi@^2.0.7: - version "2.0.9" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz#77ac0cdfdcad52b6a1151a84e73254edc33ed016" - integrity sha512-nlWFSCTYQcHk/6A9FFnfhKc14c3aFhfdNBXgo8Qgi9QTBu/qg3Ww+Uiz9wMzXd1T8GFxPc2QIHB6Qtf2XFryFQ== - oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -object-assign@^4, object-assign@^4.1.0: +object-assign@^4: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - object-inspect@^1.11.0, object-inspect@^1.9.0: version "1.12.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" @@ -6469,13 +5880,6 @@ object-keys@^1.1.1: resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" @@ -6495,29 +5899,6 @@ object.entries@^1.1.5: define-properties "^1.1.3" es-abstract "^1.19.1" -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= - dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" - -object.omit@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" - integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= - dependencies: - for-own "^0.1.4" - is-extendable "^0.1.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - object.values@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" @@ -6541,6 +5922,13 @@ once@^1.3.0, once@^1.4.0: dependencies: wrappy "1" +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + open@^8.0.0: version "8.4.0" resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" @@ -6555,14 +5943,6 @@ opencollective-postinstall@^2.0.0: resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== -optimist@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - optional-require@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/optional-require/-/optional-require-1.1.8.tgz#16364d76261b75d964c482b2406cb824d8ec44b7" @@ -6570,18 +5950,6 @@ optional-require@^1.1.8: dependencies: require-at "^1.0.6" -optionator@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -6594,44 +5962,12 @@ optionator@^0.9.1: type-check "^0.4.0" word-wrap "^1.2.3" -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - -os-locale@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" - integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== dependencies: - execa "^0.7.0" - lcid "^1.0.0" - mem "^1.1.0" - -os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" + p-try "^1.0.0" p-limit@^2.2.0: version "2.3.0" @@ -6640,6 +5976,13 @@ p-limit@^2.2.0: dependencies: p-try "^2.0.0" +p-limit@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -6683,27 +6026,15 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-glob@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" - integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= - dependencies: - glob-base "^0.3.0" - is-dotfile "^1.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.0" - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: - error-ex "^1.2.0" - -parse5@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" parseqs@0.0.6: version "0.0.6" @@ -6720,18 +6051,6 @@ parseurl@~1.3.3: resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" - path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -6742,26 +6061,16 @@ path-exists@^4.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: +path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-key@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" @@ -6777,15 +6086,6 @@ path-to-regexp@^6.2.1: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.2.tgz#324377a83e5049cbecadc5554d6a63a9a4866b36" integrity sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw== -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -6796,79 +6096,46 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= +picocolors@^1.0.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + picomatch@^2.0.5: version "2.2.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a" integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= - -pkg-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" - integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= - dependencies: - find-up "^2.1.0" +pirates@^4.0.4: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-dir@^4.1.0: +pkg-dir@^4.1.0, pkg-dir@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" -pn@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -preserve@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" - integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= - -pretty-format@^23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760" - integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw== +pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: - ansi-regex "^3.0.0" - ansi-styles "^3.2.0" - -private@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + "@jest/schemas" "^29.6.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" process-nextick-args@~2.0.0: version "2.0.0" @@ -6907,13 +6174,13 @@ promise-retry@^2.0.1: err-code "^2.0.2" retry "^0.12.0" -prompts@^0.1.9: - version "0.1.14" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2" - integrity sha512-rxkyiE9YH6zAz/rZpywySLKkpaj0NMVyNw1qhsubdbjjSgcayjTShDreZGlFMcGSu5sab3bAKPfFk78PB90+8w== +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: - kleur "^2.0.1" - sisteransi "^0.1.1" + kleur "^3.0.3" + sisteransi "^1.0.5" proxy-addr@~2.0.7: version "2.0.7" @@ -6933,16 +6200,6 @@ prr@~1.0.1: resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -psl@^1.1.24: - version "1.1.29" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" - integrity sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ== - psl@^1.1.28: version "1.8.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" @@ -7006,16 +6263,16 @@ punycode@1.3.2: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= -punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= - punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +pure-rand@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" + integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== + qs@6.11.0: version "6.11.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" @@ -7043,10 +6300,10 @@ queue-microtask@^1.2.2, queue-microtask@^1.2.3: resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -randomatic@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" - integrity sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ== +randomatic@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== dependencies: is-number "^4.0.0" kind-of "^6.0.0" @@ -7067,32 +6324,10 @@ raw-body@2.5.1: iconv-lite "0.4.24" unpipe "1.0.0" -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" +react-is@^18.0.0: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== readable-stream@^2.0.0, readable-stream@^2.3.5: version "2.3.7" @@ -7107,19 +6342,6 @@ readable-stream@^2.0.0, readable-stream@^2.3.5: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^2.0.1, readable-stream@^2.0.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" @@ -7139,13 +6361,6 @@ readable-stream@~1.0.26: isarray "0.0.1" string_decoder "~0.10.x" -realpath-native@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560" - integrity sha512-+S3zTvVt9yTntFrBpm7TQmQ3tzpCrnA1a/y+3cUHAc9ZR6aIjG0WNLR+Rj79QpJktY+VeW/TQtFlQ1bzsehI8g== - dependencies: - util.promisify "^1.0.0" - redis-commands@1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.7.0.tgz#15a6fea2d58281e27b1cd1acfb4b293e278c3a89" @@ -7163,69 +6378,11 @@ redis-parser@^3.0.0: dependencies: redis-errors "^1.0.0" -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regex-cache@^0.4.2: - version "0.4.4" - resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" - integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== - dependencies: - is-equal-shallow "^0.1.3" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - regexpp@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.5.2, repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - dependencies: - is-finite "^1.0.0" - -request-promise-core@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" - integrity sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY= - dependencies: - lodash "^4.13.1" - -request-promise-native@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" - integrity sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU= - dependencies: - request-promise-core "1.1.1" - stealthy-require "^1.1.0" - tough-cookie ">=2.3.3" - request@^2.86.0: version "2.88.2" resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" @@ -7252,32 +6409,6 @@ request@^2.86.0: tunnel-agent "^0.6.0" uuid "^3.3.2" -request@^2.87.0: - version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.0" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.4.3" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - require-at@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/require-at/-/require-at-1.0.6.tgz#9eb7e3c5e00727f5a4744070a7f560d4de4f6e6a" @@ -7288,42 +6419,32 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= - requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -resolve-cwd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= - dependencies: - resolve-from "^3.0.0" - -resolve-from@^3.0.0: +resolve-cwd@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= +resolve.exports@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f" + integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== resolve@^1.20.0: version "1.22.0" @@ -7334,23 +6455,11 @@ resolve@^1.20.0: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= -rimraf@^2.5.4, rimraf@^2.6.1: - version "2.6.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" - integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== - dependencies: - glob "^7.0.5" - rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -7358,11 +6467,6 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rsvp@^3.3.3: - version "3.6.2" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" - integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw== - run-parallel-limit@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz#be80e936f5768623a38a963262d6bef8ff11e7ba" @@ -7390,34 +6494,11 @@ safe-json-stringify@^1.0.3, safe-json-stringify@^1.2.0: resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd" integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg== -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sane@^2.0.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" - integrity sha1-tNwYYcIbQn6SlQej51HiosuKs/o= - dependencies: - anymatch "^2.0.0" - capture-exit "^1.2.0" - exec-sh "^0.2.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" - watch "~0.18.0" - optionalDependencies: - fsevents "^1.2.3" - saslprep@^1.0.0, saslprep@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.3.tgz#4c02f946b56cf54297e347ba1093e7acac4cf226" @@ -7440,11 +6521,6 @@ sax@>=0.6.0, sax@^1.2.4: resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" - integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== - semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -7455,6 +6531,11 @@ semver@^6.0.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" @@ -7469,6 +6550,11 @@ semver@^7.3.8: dependencies: lru-cache "^6.0.0" +semver@^7.5.3, semver@^7.5.4: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + semver@~5.1.0: version "5.1.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19" @@ -7503,43 +6589,16 @@ serve-static@1.15.0: parseurl "~1.3.3" send "0.18.0" -set-blocking@^2.0.0, set-blocking@~2.0.0: +set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= -set-value@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" - integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.1" - to-object-path "^0.3.0" - -set-value@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" - integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - setprototypeof@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -7547,21 +6606,11 @@ shebang-command@^2.0.0: dependencies: shebang-regex "^3.0.0" -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -7571,11 +6620,16 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -signal-exit@^3.0.0, signal-exit@^3.0.2: +signal-exit@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + simple-glob@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/simple-glob/-/simple-glob-0.2.0.tgz#95cf6a5fb5d84843a52a58529cba31b0f5c3478c" @@ -7598,51 +6652,21 @@ sinon@^17.0.1: nise "^5.1.5" supports-color "^7.2.0" -sisteransi@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" - integrity sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g== +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== smart-buffer@^4.1.0, smart-buffer@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - socket.io-adapter@~1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" @@ -7762,43 +6786,15 @@ sorted-array-functions@^1.3.0: resolved "https://registry.yarnpkg.com/sorted-array-functions/-/sorted-array-functions-1.3.0.tgz#8605695563294dffb2c9796d602bd8459f7a0dd5" integrity sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA== -source-map-resolve@^0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== - dependencies: - atob "^2.1.1" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.4.15: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== - dependencies: - source-map "^0.5.6" - -source-map-support@^0.5.6: - version "0.5.9" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" - integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@^0.6.0, source-map@^0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -7810,39 +6806,6 @@ sparse-bitfield@^3.0.3: dependencies: memory-pager "^1.0.2" -spdx-correct@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" - integrity sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== - -spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz#e2a303236cac54b04031fa7a5a79c7e701df852f" - integrity sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" @@ -7885,34 +6848,23 @@ ssri@^8.0.0, ssri@^8.0.1: dependencies: minipass "^3.1.1" -stack-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" - integrity sha1-1PM6tU6OOHeLDKXP07OvsS22hiA= +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" standard-as-callback@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/standard-as-callback/-/standard-as-callback-2.1.0.tgz#8953fc05359868a77b5b9739a665c5977bb7df45" integrity sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A== -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== -stealthy-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - stoppable@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/stoppable/-/stoppable-1.1.0.tgz#32da568e83ea488b08e4d7ea2c3bcc9d75015d5b" @@ -7926,32 +6878,15 @@ stream-to-pull-stream@^1.7.1: looper "^3.0.0" pull-stream "^3.2.3" -string-length@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" - integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= - dependencies: - astral-regex "^1.0.0" - strip-ansi "^4.0.0" - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" + char-regex "^1.0.2" + strip-ansi "^6.0.0" -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3: +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -7995,78 +6930,38 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^6.0.1: +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" -strip-bom@3.0.0, strip-bom@^3.0.0: +strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - strnum@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^3.1.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= - dependencies: - has-flag "^1.0.0" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - supports-color@^7.1.0, supports-color@^7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -8074,16 +6969,18 @@ supports-color@^7.1.0, supports-color@^7.2.0: dependencies: has-flag "^4.0.0" +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -symbol-tree@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" - integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= - tar-stream@^2.1.4: version "2.2.0" resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" @@ -8095,19 +6992,6 @@ tar-stream@^2.1.4: inherits "^2.0.3" readable-stream "^3.1.1" -tar@^4: - version "4.4.6" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" - integrity sha512-tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg== - dependencies: - chownr "^1.0.1" - fs-minipass "^1.2.5" - minipass "^2.3.3" - minizlib "^1.1.0" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.2" - tar@^6.0.2, tar@^6.1.2: version "6.1.11" resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" @@ -8127,27 +7011,20 @@ tdigest@^0.1.1: dependencies: bintrees "1.0.1" -test-exclude@^4.2.1: - version "4.2.3" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" - integrity sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA== +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== dependencies: - arrify "^1.0.1" - micromatch "^2.3.11" - object-assign "^4.1.0" - read-pkg-up "^1.0.1" - require-main-filename "^1.0.1" + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -throat@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" - integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= - "through@>=2.2.7 <3": version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -8160,36 +7037,16 @@ tmp@^0.2.1: dependencies: rimraf "^3.0.0" -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== to-array@0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -8197,29 +7054,11 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - toidentifier@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== -tough-cookie@>=2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== - dependencies: - psl "^1.1.24" - punycode "^1.4.1" - tough-cookie@^4.0.0: version "4.1.2" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874" @@ -8238,13 +7077,6 @@ tough-cookie@~2.5.0: psl "^1.1.28" punycode "^2.1.1" -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - tr46@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" @@ -8257,11 +7089,6 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= - tsconfig-paths@^3.12.0: version "3.12.0" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz#19769aca6ee8f6a1a341e38c8fa45dd9fb18899b" @@ -8318,13 +7145,6 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - type-detect@4.0.8, type-detect@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" @@ -8335,6 +7155,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -8377,14 +7202,6 @@ uc.micro@^1.0.5: resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== -uglify-js@^3.1.4: - version "3.4.9" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" - integrity sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q== - dependencies: - commander "~2.17.1" - source-map "~0.6.1" - unbox-primitive@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" @@ -8405,16 +7222,6 @@ undici-types@~5.25.1: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3" integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA== -union-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" - integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^0.4.3" - unique-filename@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" @@ -8439,13 +7246,13 @@ unpipe@1.0.0, unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= +update-browserslist-db@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz#97e9c96ab0ae7bcac08e9ae5151d26e6bc6b5580" + integrity sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg== dependencies: - has-value "^0.3.1" - isobject "^3.0.0" + escalade "^3.2.0" + picocolors "^1.1.1" uri-js@^4.2.2: version "4.4.1" @@ -8454,11 +7261,6 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" @@ -8475,11 +7277,6 @@ url@0.10.3: punycode "1.3.2" querystring "0.2.0" -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - utf8@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/utf8/-/utf8-3.0.0.tgz#f052eed1364d696e769ef058b183df88c87f69d1" @@ -8490,14 +7287,6 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= -util.promisify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" - integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== - dependencies: - define-properties "^1.1.2" - object.getownpropertydescriptors "^2.0.3" - utils-merge@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" @@ -8528,13 +7317,14 @@ v8-compile-cache@^2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== +v8-to-istanbul@^9.0.1: + version "9.3.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" + integrity sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^2.0.0" validator@^13.7.0: version "13.7.0" @@ -8565,38 +7355,18 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -w3c-hr-time@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= - dependencies: - browser-process-hrtime "^0.1.2" - -walker@~1.0.5: - version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= - dependencies: - makeerror "1.0.x" - -watch@~0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" - integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY= +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== dependencies: - exec-sh "^0.2.0" - minimist "^1.2.0" + makeerror "1.0.12" webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - webidl-conversions@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" @@ -8641,18 +7411,6 @@ werelogs@scality/werelogs#GA7.2.0.5: dependencies: safe-json-stringify "^1.0.3" -whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: - version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-mimetype@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.2.0.tgz#a3d58ef10b76009b042d03e25591ece89b88d171" - integrity sha512-5YSO1nMd5D1hY3WzAQV3PzZL83W3YeyR1yW9PcH26Weh1t+Vzh9B6XkDh7aXm83HBZ4nSMvkjvN2H2ySWIvBgw== - whatwg-url@^11.0.0: version "11.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" @@ -8669,24 +7427,6 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" -whatwg-url@^6.4.1: - version "6.5.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" - integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - -whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - which-boxed-primitive@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" @@ -8698,18 +7438,6 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which@^1.2.12, which@^1.2.9, which@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - which@^2.0.1, which@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -8717,13 +7445,6 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - wide-align@^1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" @@ -8736,44 +7457,27 @@ word-wrap@^1.2.3: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -write-file-atomic@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" - integrity sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA== +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== dependencies: - graceful-fs "^4.1.11" imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -ws@^5.2.0: - version "5.2.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" - integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== - dependencies: - async-limiter "~1.0.0" + signal-exit "^3.0.7" ws@~7.4.2: version "7.4.6" @@ -8785,11 +7489,6 @@ ws@~8.11.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - xml2js@0.4.19: version "0.4.19" resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" @@ -8851,17 +7550,12 @@ xtend@~3.0.0: resolved "https://registry.yarnpkg.com/xtend/-/xtend-3.0.0.tgz#5cce7407baf642cba7becda568111c493f59665a" integrity sha1-XM50B7r2Qsunvs2laBEcST9ZZlo= -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@^3.0.0, yallist@^3.0.2: +yallist@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" integrity sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k= @@ -8871,30 +7565,23 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yargs-parser@^9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" - integrity sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc= - dependencies: - camelcase "^4.1.0" +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^11.0.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" - integrity sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A== +yargs@^17.3.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: - cliui "^4.0.0" - decamelize "^1.1.1" - find-up "^2.1.0" - get-caller-file "^1.0.1" - os-locale "^2.0.0" + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^9.0.2" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" yauzl@^2.10.0: version "2.10.0" @@ -8909,6 +7596,11 @@ yeast@0.1.2: resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + zenkoclient@scality/zenkoclient#1.2.1: version "1.2.1" resolved "https://codeload.github.com/scality/zenkoclient/tar.gz/da298747e292eb2d0058d9e070e8fe93dd897bdc"