diff --git a/packages/contentstack-auth/package.json b/packages/contentstack-auth/package.json index 12c8fdcdda..a59cae698d 100644 --- a/packages/contentstack-auth/package.json +++ b/packages/contentstack-auth/package.json @@ -1,7 +1,7 @@ { "name": "@contentstack/cli-auth", "description": "Contentstack CLI plugin for authentication activities", - "version": "2.0.0", + "version": "2.0.1", "author": "Contentstack", "bugs": "https://github.com/contentstack/cli/issues", "scripts": { @@ -15,14 +15,14 @@ "lint": "eslint src/**/*.ts" }, "dependencies": { - "@contentstack/cli-command": "~2.0.0", - "@contentstack/cli-utilities": "~2.0.0", + "@contentstack/cli-command": "~2.0.1", + "@contentstack/cli-utilities": "~2.0.1", "@oclif/core": "^4.11.14", "otplib": "^12.0.1" }, "overrides": { "@oclif/core": { - "picomatch": "^4.0.4" + "picomatch": "^4.0.7" } }, "devDependencies": { diff --git a/packages/contentstack-command/package.json b/packages/contentstack-command/package.json index 209f336a15..586bd9b7d8 100644 --- a/packages/contentstack-command/package.json +++ b/packages/contentstack-command/package.json @@ -1,7 +1,7 @@ { "name": "@contentstack/cli-command", "description": "Contentstack CLI plugin for configuration", - "version": "2.0.0", + "version": "2.0.1", "author": "Contentstack", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -14,13 +14,13 @@ "lint": "eslint src/**/*.ts" }, "dependencies": { - "@contentstack/cli-utilities": "~2.0.0", + "@contentstack/cli-utilities": "~2.0.1", "contentstack": "^3.27.0", "@oclif/core": "^4.11.14" }, "overrides": { "@oclif/core": { - "picomatch": "^4.0.4" + "picomatch": "^4.0.7" } }, "devDependencies": { diff --git a/packages/contentstack-config/package.json b/packages/contentstack-config/package.json index 0fb227deda..20e9e54e1b 100644 --- a/packages/contentstack-config/package.json +++ b/packages/contentstack-config/package.json @@ -1,7 +1,7 @@ { "name": "@contentstack/cli-config", "description": "Contentstack CLI plugin for configuration", - "version": "2.0.0", + "version": "2.0.1", "author": "Contentstack", "scripts": { "build": "pnpm compile && oclif manifest && oclif readme", @@ -14,14 +14,14 @@ "lint": "eslint src/**/*.ts" }, "dependencies": { - "@contentstack/cli-command": "~2.0.0", - "@contentstack/cli-utilities": "~2.0.0", + "@contentstack/cli-command": "~2.0.1", + "@contentstack/cli-utilities": "~2.0.1", "@contentstack/utils": "~1.9.1", "@oclif/core": "^4.11.14" }, "overrides": { "@oclif/core": { - "picomatch": "^4.0.4" + "picomatch": "^4.0.7" } }, "devDependencies": { diff --git a/packages/contentstack-utilities/package.json b/packages/contentstack-utilities/package.json index dc4b533988..c3838528c3 100644 --- a/packages/contentstack-utilities/package.json +++ b/packages/contentstack-utilities/package.json @@ -1,6 +1,6 @@ { "name": "@contentstack/cli-utilities", - "version": "2.0.0", + "version": "2.0.1", "description": "Utilities for contentstack projects", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -28,11 +28,11 @@ "author": "contentstack", "license": "MIT", "dependencies": { - "@contentstack/management": "~1.30.3", - "@contentstack/marketplace-sdk": "^1.5.2", + "@contentstack/management": "~1.31.1", + "@contentstack/marketplace-sdk": "^1.5.4", "@contentstack/utils": "~1.9.1", "@oclif/core": "^4.11.14", - "axios": "^1.18.1", + "axios": "^1.20.0", "chalk": "^5.6.2", "cli-cursor": "^3.1.0", "cli-progress": "^3.12.0", @@ -43,7 +43,7 @@ "inquirer": "12.11.1", "inquirer-search-checkbox": "^1.0.0", "inquirer-search-list": "^1.2.6", - "js-yaml": "^4.3.0", + "js-yaml": "^4.3.2", "klona": "^2.0.6", "lodash": "^4.18.1", "mkdirp": "^1.0.4", @@ -62,7 +62,7 @@ }, "overrides": { "@oclif/core": { - "picomatch": "^4.0.4" + "picomatch": "^4.0.7" } }, "devDependencies": { diff --git a/packages/contentstack-utilities/src/auth-handler.ts b/packages/contentstack-utilities/src/auth-handler.ts index 1b6ddaea5e..930838eda7 100644 --- a/packages/contentstack-utilities/src/auth-handler.ts +++ b/packages/contentstack-utilities/src/auth-handler.ts @@ -113,7 +113,9 @@ class AuthHandler { async initSDK() { // Ensure we have a valid host for the SDK initialization const host = this._host || this.getCmaHost(); - this.managementAPIClient = await managementSDKClient({ host }); + // skipTokenValidity: true avoids calling compareOAuthExpiry here, which would deadlock + // when initSDK is itself called from inside a compareOAuthExpiry refresh cycle. + this.managementAPIClient = await managementSDKClient({ host, skipTokenValidity: true }); this.oauthHandler = this.managementAPIClient.oauth({ appId: this.OAuthAppId, clientId: this.OAuthClientId, @@ -397,7 +399,17 @@ class AuthHandler { } this.isRefreshingToken = true; - this.oauthRefreshInFlight = (async () => { + // Set the guard promise BEFORE starting the async work so re-entrant synchronous + // callers (e.g. compareOAuthExpiry invoked again via refreshToken → initSDK → + // managementSDKClient → createAPIClient) see a non-null oauthRefreshInFlight and + // return early instead of starting another recursive refresh cycle. + let _resolve: () => void; + let _reject: (err: unknown) => void; + this.oauthRefreshInFlight = new Promise((res, rej) => { + _resolve = res; + _reject = rej; + }); + (async () => { try { if (force) { cliux.print('Forcing token refresh...'); @@ -405,9 +417,10 @@ class AuthHandler { cliux.print('Token expired, refreshing the token'); } await this.refreshToken(); + _resolve(); } catch (error) { cliux.error('Error refreshing token'); - throw error; + _reject(error); } finally { this.isRefreshingToken = false; this.oauthRefreshInFlight = null; diff --git a/packages/contentstack-utilities/src/authentication-handler.ts b/packages/contentstack-utilities/src/authentication-handler.ts index 14a9736a90..2c8ba5b079 100644 --- a/packages/contentstack-utilities/src/authentication-handler.ts +++ b/packages/contentstack-utilities/src/authentication-handler.ts @@ -56,6 +56,11 @@ class AuthenticationHandler { if (error.response && error.response.status) { switch (error.response.status) { case 401: + if (maxRetryCount >= 2) { + const errorDetails = formatError(error); + ux.print(`Authentication failed after token refresh: ${errorDetails}`, { color: 'red' }); + return; + } // NOTE: Refresh the token if the type is OAuth. const region: { cma: string; name: string; cda: string } = configHandler.get('region') || {}; if (region?.cma) { @@ -67,12 +72,11 @@ class AuthenticationHandler { hostName = hostName || region.cma; const refreshed = await this.refreshToken(hostName); if (refreshed) { - return this.refreshAccessToken(error, maxRetryCount); // Retry after refreshing the token + return this.refreshAccessToken(error, maxRetryCount + 1); } const errorDetails = formatError(error); ux.print(`Authentication failed: ${errorDetails}`, { color: 'red' }); - // For Basic Auth, exit immediately without retrying return; } break; diff --git a/packages/contentstack-utilities/test/unit/auth-handler.test.ts b/packages/contentstack-utilities/test/unit/auth-handler.test.ts index d99b2459f0..cf7474f70e 100644 --- a/packages/contentstack-utilities/test/unit/auth-handler.test.ts +++ b/packages/contentstack-utilities/test/unit/auth-handler.test.ts @@ -543,5 +543,35 @@ describe('Auth Handler', () => { expect(refreshTokenStub.callCount).to.equal(1); }); + + it('should not recurse when compareOAuthExpiry is re-entered synchronously during refreshToken (DX-10477)', async () => { + // Regression test for the synchronous re-entrant recursion bug. + // Root cause: managementSDKClient → createAPIClient → compareOAuthExpiry is called + // synchronously from inside refreshToken → initSDK, before the oauthRefreshInFlight + // guard was assigned. This caused an unbounded recursive loop and RangeError stack overflow. + // Fix: oauthRefreshInFlight is now set via new Promise() BEFORE the async IIFE starts, + // so any synchronous re-entrant call sees the guard and returns the existing promise. + const expectedOAuthDateTime = new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString(); + const expectedAuthorisationType = 'OAUTH'; + + configHandlerGetStub.withArgs(authHandler.oauthDateTimeKeyName).returns(expectedOAuthDateTime); + configHandlerGetStub.withArgs(authHandler.authorisationTypeKeyName).returns(expectedAuthorisationType); + + refreshTokenStub.callsFake(function () { + // Simulate the synchronous re-entrant call from initSDK → managementSDKClient → createAPIClient. + // With the old code, oauthRefreshInFlight was null here → new IIFE → infinite recursion. + // With the fix, oauthRefreshInFlight is already set → returns the same in-flight promise. + const reentrantPromise = authHandler.compareOAuthExpiry(false); + expect(reentrantPromise).to.equal((authHandler as any).oauthRefreshInFlight); + return Promise.resolve(); + }); + + await authHandler.compareOAuthExpiry(false); + + // "Token expired, refreshing the token" must print exactly once — not on every recursive frame. + expect(cliuxPrintStub.calledOnceWithExactly('Token expired, refreshing the token')).to.be.true; + // refreshToken must be called exactly once — not infinitely. + expect(refreshTokenStub.callCount).to.equal(1); + }); }); }); diff --git a/packages/contentstack/package.json b/packages/contentstack/package.json index 7a06a25865..78a0b904e9 100755 --- a/packages/contentstack/package.json +++ b/packages/contentstack/package.json @@ -22,7 +22,7 @@ "@contentstack/cli-audit": "~2.0.0", "@contentstack/cli-cm-export": "~2.0.0", "@contentstack/cli-cm-import": "~2.0.0", - "@contentstack/cli-auth": "~2.0.0", + "@contentstack/cli-auth": "~2.0.1", "@contentstack/cli-bulk-operations": "^2.0.0", "@contentstack/cli-cm-bootstrap": "~2.0.0", "@contentstack/cli-cm-branches": "~2.0.0", @@ -30,10 +30,10 @@ "@contentstack/cli-cm-export-to-csv": "~2.0.0", "@contentstack/cli-cm-import-setup": "~2.0.0", "@contentstack/cli-cm-seed": "~2.0.0", - "@contentstack/cli-command": "~2.0.0", - "@contentstack/cli-config": "~2.0.0", + "@contentstack/cli-command": "~2.0.1", + "@contentstack/cli-config": "~2.0.1", "@contentstack/cli-migration": "~2.0.0", - "@contentstack/cli-utilities": "~2.0.0", + "@contentstack/cli-utilities": "~2.0.1", "@contentstack/cli-variants": "~2.0.0", "@contentstack/management": "~1.30.4", "@contentstack/utils": "~1.9.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2ed486e6a5..0917b933d9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,11 +6,11 @@ settings: overrides: tmp: 0.2.7 - uuid: 14.0.1 + uuid: 14.0.2 lodash: 4.18.1 brace-expansion: 5.0.9 - js-yaml: 5.2.3 - fast-uri: 4.1.2 + js-yaml: 5.4.1 + fast-uri: 4.1.3 importers: @@ -29,7 +29,7 @@ importers: specifier: ~2.0.0 version: 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-auth': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-auth '@contentstack/cli-bulk-operations': specifier: ^2.0.0 @@ -59,16 +59,16 @@ importers: specifier: ~2.0.0 version: 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-command': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-command '@contentstack/cli-config': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-config '@contentstack/cli-migration': specifier: ~2.0.0 version: 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-utilities '@contentstack/cli-variants': specifier: ~2.0.0 @@ -81,16 +81,16 @@ importers: version: 1.9.1 '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@oclif/plugin-not-found': specifier: ^3.2.88 - version: 3.2.93(@types/node@18.19.130) + version: 3.3.0(@types/node@18.19.130) '@oclif/plugin-plugins': specifier: ^5.4.84 - version: 5.4.86 + version: 5.5.2 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -127,7 +127,7 @@ importers: devDependencies: '@oclif/test': specifier: ^4.1.20 - version: 4.1.22(@oclif/core@4.13.3) + version: 4.2.0(@oclif/core@4.14.0) '@types/chai': specifier: ^4.3.20 version: 4.3.20 @@ -148,13 +148,13 @@ importers: version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 eslint-config-oclif: specifier: ^6.0.175 - version: 6.0.179(eslint@10.8.1)(typescript@5.9.3) + version: 6.0.179(eslint@10.9.1)(typescript@5.9.3) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@5.9.3) + version: 3.1.14(eslint@10.9.1)(typescript@5.9.3) mocha: specifier: 10.8.2 version: 10.8.2 @@ -166,7 +166,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@18.19.130) + version: 4.24.0(@types/node@18.19.130) rimraf: specifier: ^5.0.10 version: 5.0.10 @@ -192,21 +192,21 @@ importers: packages/contentstack-auth: dependencies: '@contentstack/cli-command': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-command '@contentstack/cli-utilities': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-utilities '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 otplib: specifier: ^12.0.1 version: 12.0.1 devDependencies: '@oclif/test': specifier: ^4.1.20 - version: 4.1.22(@oclif/core@4.13.3) + version: 4.2.0(@oclif/core@4.14.0) '@types/chai': specifier: ^4.3.20 version: 4.3.20 @@ -227,13 +227,13 @@ importers: version: 16.6.1 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 eslint-config-oclif: specifier: ^5.2.2 - version: 5.2.2(eslint@10.8.1) + version: 5.2.2(eslint@10.9.1) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@4.9.5) + version: 3.1.14(eslint@10.9.1)(typescript@4.9.5) mocha: specifier: 10.8.2 version: 10.8.2 @@ -245,7 +245,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@14.18.63) + version: 4.24.0(@types/node@14.18.63) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -259,18 +259,18 @@ importers: packages/contentstack-command: dependencies: '@contentstack/cli-utilities': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-utilities '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 contentstack: specifier: ^3.27.0 version: 3.27.1 devDependencies: '@oclif/test': specifier: ^4.1.20 - version: 4.1.22(@oclif/core@4.13.3) + version: 4.2.0(@oclif/core@4.14.0) '@types/mocha': specifier: ^8.2.3 version: 8.2.3 @@ -279,13 +279,13 @@ importers: version: 14.18.63 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 eslint-config-oclif: specifier: ^6.0.175 - version: 6.0.179(eslint@10.8.1)(typescript@4.9.5) + version: 6.0.179(eslint@10.9.1)(typescript@4.9.5) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@4.9.5) + version: 3.1.14(eslint@10.9.1)(typescript@4.9.5) mocha: specifier: 10.8.2 version: 10.8.2 @@ -302,21 +302,21 @@ importers: packages/contentstack-config: dependencies: '@contentstack/cli-command': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-command '@contentstack/cli-utilities': - specifier: ~2.0.0 + specifier: ~2.0.1 version: link:../contentstack-utilities '@contentstack/utils': specifier: ~1.9.1 version: 1.9.1 '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 devDependencies: '@oclif/test': specifier: ^4.1.20 - version: 4.1.22(@oclif/core@4.13.3) + version: 4.2.0(@oclif/core@4.14.0) '@types/chai': specifier: ^4.3.20 version: 4.3.20 @@ -334,13 +334,13 @@ importers: version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 eslint-config-oclif: specifier: ^6.0.175 - version: 6.0.179(eslint@10.8.1)(typescript@4.9.5) + version: 6.0.179(eslint@10.9.1)(typescript@4.9.5) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@4.9.5) + version: 3.1.14(eslint@10.9.1)(typescript@4.9.5) mocha: specifier: 10.8.2 version: 10.8.2 @@ -349,7 +349,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@14.18.63) + version: 4.24.0(@types/node@14.18.63) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -363,20 +363,20 @@ importers: packages/contentstack-utilities: dependencies: '@contentstack/management': - specifier: ~1.30.3 - version: 1.30.4(debug@4.4.3) + specifier: ~1.31.1 + version: 1.31.1 '@contentstack/marketplace-sdk': - specifier: ^1.5.2 + specifier: ^1.5.4 version: 1.5.4(debug@4.4.3) '@contentstack/utils': specifier: ~1.9.1 version: 1.9.1 '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 axios: - specifier: ^1.18.1 - version: 1.19.0(debug@4.4.3) + specifier: ^1.20.0 + version: 1.20.0(debug@4.4.3) chalk: specifier: ^5.6.2 version: 5.6.2 @@ -408,8 +408,8 @@ importers: specifier: ^1.2.6 version: 1.2.6 js-yaml: - specifier: 5.2.3 - version: 5.2.3 + specifier: 5.4.1 + version: 5.4.1 klona: specifier: ^2.0.6 version: 2.0.6 @@ -427,7 +427,7 @@ importers: version: 5.4.1 papaparse: specifier: ^5.5.4 - version: 5.5.4 + version: 5.7.0 recheck: specifier: ~4.5.0 version: 4.5.0 @@ -447,8 +447,8 @@ importers: specifier: ^2.0.0 version: 2.0.0 uuid: - specifier: 14.0.1 - version: 14.0.1 + specifier: 14.0.2 + version: 14.0.2 winston: specifier: ^3.19.0 version: 3.19.0 @@ -482,13 +482,13 @@ importers: version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 eslint-config-oclif: specifier: ^6.0.175 - version: 6.0.179(eslint@10.8.1)(typescript@5.9.3) + version: 6.0.179(eslint@10.9.1)(typescript@5.9.3) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@5.9.3) + version: 3.1.14(eslint@10.9.1)(typescript@5.9.3) fancy-test: specifier: ^2.0.42 version: 2.0.42 @@ -510,76 +510,76 @@ importers: packages: - '@aws-sdk/checksums@3.1000.27': - resolution: {integrity: sha512-insWOqKKNUrbN/dohEG7BJ0U5GkyqhjbMb/NHNaLUtq+7my2M8C4EnZZZoxMmXRqCC+P9dEr+KyJA2JGGzoKLg==} + '@aws-sdk/checksums@3.1000.29': + resolution: {integrity: sha512-Dtu0gr4dnATZAPwEYbpCsG+MpLM7OAliy2gTepEFQwl1vZ6DL3QMH2FveMa3HLvPsOdhJsPRB3KtxVhph9T75A==} engines: {node: '>=20.0.0'} - '@aws-sdk/client-cloudfront@3.1108.0': - resolution: {integrity: sha512-rbW3qdSpY5hSMQvfOp8E6wfl2ZonTdvQ2tl9lTnS1YfcoNgagvWhgapIwFbrdV9bMnhJEvOtsKHLJ8ioI5xHrQ==} + '@aws-sdk/client-cloudfront@3.1124.0': + resolution: {integrity: sha512-eCTPtU83/AkZK51LnUG4mMTiog6ojkdhQCT7Ilc76rowtREPAZJem2AIUS2r3Qrm2+mhWWvU1kF3j1l1UoDt4A==} engines: {node: '>=20.0.0'} - '@aws-sdk/client-s3@3.1108.0': - resolution: {integrity: sha512-prdothEAFE1G8H0s0+zFGuNZdSj+Acg/siB1dFxPS181op9+hJ1GLr+b2anJch4B9a/xbWy7k8eG/enH3cNSjQ==} + '@aws-sdk/client-s3@3.1124.0': + resolution: {integrity: sha512-f20BksgVlXufcf/mijde1LAjwM/iSDdG3mGtN3yRFOUzXtlFEOjxNi1Rf2Kb+rSgoiOSpO0hUOna9Bs+J1gX2A==} engines: {node: '>=20.0.0'} - '@aws-sdk/core@3.977.7': - resolution: {integrity: sha512-I88Iov89NVmjSmJLKSv7Cn9M2J+a2942OkA8nZCbz+sl4ZeY4zEOcoLOrbt1GRfQ8zEQKnjAJdXixA3J/p1fDQ==} + '@aws-sdk/core@3.977.9': + resolution: {integrity: sha512-reqPFEQrZxDZpeGj4PFMepBeR5LGYHRqq/L0motTzgFkCRBA4rFdaVXDSLYyGHhxVz7sT2PDnPN9CluGSfgyJA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-env@3.972.68': - resolution: {integrity: sha512-2a20A/IdNOwUvaDq91iqqS7BA0XlNMfW3iLGZGZLJv0EbUqhSxB0PIx4rQQqssvWj1uXImb3/UCCdHz/+1dOiA==} + '@aws-sdk/credential-provider-env@3.972.70': + resolution: {integrity: sha512-H404B7dJl2mCrBqahDEYsanB0xhdDp6tXnXcTUnXmmpy2Q3J0Ho0bUajZ2jr/RdwzCyS59Gi8xXIFwPLGBl6Uw==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-http@3.972.70': - resolution: {integrity: sha512-0yRem2Fs52r/Nn6UAqIlpjexfaYj8ziEozOe9tamtAVT/5bzFLKx8O2r7MaRqgS3hGKHIa1Jij9nKHSsNnb04A==} + '@aws-sdk/credential-provider-http@3.972.72': + resolution: {integrity: sha512-X98zYOrVOeuosCX+6ktf29FC2N2GHPLia7qv6mzPzTc+RPAuHWCDS++Z6JK7eGYqb/v6uaW7bAXaOvDBfol+0w==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-ini@3.973.13': - resolution: {integrity: sha512-2M39DE02XpYYaSWYk/4AsImXYUU/1L2xmTMLUpMMWq7DfLv191/vCRy3baKtdr45AkJQyVgSjmuVOLm15SwrRQ==} + '@aws-sdk/credential-provider-ini@3.973.15': + resolution: {integrity: sha512-Rykg6s5ceBuynMOGWgoowO4N+27JfnqXAnVaSunZl0hOO1XodSrxGNz6sCEbnmS0lAfQZDKyb3fbr46gSuv6Sg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-login@3.972.75': - resolution: {integrity: sha512-jaTESuJlQsoUZ44f/i2puyPt8VlF/dMMJ9HM3cStYtk7eKX4N9UWi83OLixUkoOJH3BwWlPLCq9YIK9nfWhVBg==} + '@aws-sdk/credential-provider-login@3.972.77': + resolution: {integrity: sha512-Jb59xfEISoN5mmbnA+HYqdtrSX3CgCtJoof+V5D8/TgUI56W63GEEd5Y58WijU3Ou6+WEgaLD1feVzaRXV5IDQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-node@3.972.79': - resolution: {integrity: sha512-RIw5dof1EHkWubrZzPC941CDtnFG1iAXsxbFgLkhdYZXHc4icU13c/uxSMI0J5eUx9bxa7LjfpdjfClBB1QsDA==} + '@aws-sdk/credential-provider-node@3.972.82': + resolution: {integrity: sha512-znDkEOGXB8W3kG1LJUKP3foBZY/9qLM0eil/DxWXSp37XsdsRLQHE/d/OaCGGVgKpA6znR38h/+INk8do1FjiA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-process@3.972.68': - resolution: {integrity: sha512-nLP3Pda2MQTFJ25hKBMmUuB9Uv+bTZQNlufbeCwklP549Vwnkd8bRLJoCKp5k6xjmdyptrPrOfGOhN0mKuca8A==} + '@aws-sdk/credential-provider-process@3.972.70': + resolution: {integrity: sha512-2ry03fGRJr4sV3jI+ocjj5JqALnFD6ymM5KiNCDZMvq8bX2GSbE0vji4aM43TVCl2nXqqLRZaUxdq/KeWRAY4Q==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-sso@3.973.12': - resolution: {integrity: sha512-EmgyyHn+f9WCcelp3L/vci+LGbX8GigWaVphRArjVo5Pktkr9YnLy/mQ6VDkDyBD72dtfRNTgHmD2ts4rTDXKQ==} + '@aws-sdk/credential-provider-sso@3.973.14': + resolution: {integrity: sha512-jkhg/8ocAAoc0RFyLMhCw+/zZh7gystQgd4F4hznNa8P4Cc501PQmxd+jGLiMHodPJ+7Zv/3znM62gZojyasmA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-web-identity@3.972.74': - resolution: {integrity: sha512-0YfczxGXF3RjGj8z7QG/Ho2HnLGKDHfPSHiTs47UU1U/+mmwISDN+rvGKt2zh+3FX8NdT4xd95LGBGyhQw2dgQ==} + '@aws-sdk/credential-provider-web-identity@3.972.76': + resolution: {integrity: sha512-d3AGyVu759PGr35mEB2s22xxlNEA5rpdxtSPJthfPFJvoQ8dt357iVPECqWfUxXp1toJAvKmbtcIYVGigaGsCA==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-sdk-s3@3.972.73': - resolution: {integrity: sha512-oy7sRA5HvHcAvkcKX6F8RI240jcOf3c8y/Gqjs9qemIibdKQqGBIi0uwa+47ZRYqGLpdEO28TQU4G73yUzo06Q==} + '@aws-sdk/middleware-sdk-s3@3.972.75': + resolution: {integrity: sha512-wMIsNumRVKaNMKhvU/s9VrdEwE8S6gSzXp4RygFG5BEMnGkkXf8cjh8zf7cKJBpUDpqTWqwbz5isEgp9rH6Lng==} engines: {node: '>=20.0.0'} - '@aws-sdk/nested-clients@3.997.42': - resolution: {integrity: sha512-XWRyon2MTHXD/zMoo0Mbge6Vwf+iE0qQaM/RyGO6NfZ9WukCFiQL27nQVZjYy2JwSIg+iXZxKOX95OBXqlSM4w==} + '@aws-sdk/nested-clients@3.997.44': + resolution: {integrity: sha512-NhEgryjlBF9w38ZXqGymQV28IhkYa1mKhlbYnqIis57AYwWGVYfUPgg/qC2rLRqOUfblxx++irvju10kVTa8Vw==} engines: {node: '>=20.0.0'} - '@aws-sdk/signature-v4-multi-region@3.996.44': - resolution: {integrity: sha512-ZSfQ35Qn4MhSY+A0Whyr+KBx+wJKZUyBsOrjB2pSHOafRzbFe47T8XcXM8hZqUAC69qnqIy0C9ArxTuud0CC2w==} + '@aws-sdk/signature-v4-multi-region@3.996.46': + resolution: {integrity: sha512-L+2xZTye/2T96f3lwCws0Zw6GG2JHZW9e8FpVgGBeeExSKyeoZ6CWRpBml/7DNiK/O26jrgPM9F+Ay8VkgzUWQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/token-providers@3.1108.0': - resolution: {integrity: sha512-rI80zxDxGJ6904eC/YbjkdjY6JdaZvQ01kOmrMvw7cFQGIHo27fhnIVbMSVDS4T6foQImjxYSRoOu/uSJscXDw==} + '@aws-sdk/token-providers@3.1116.0': + resolution: {integrity: sha512-ygIivKqh8aHzNkucOCXHyIBgBpLPfrSI0mCqXF+vLBsPTUKqj0VSqAY0GFPe7lQl4HntjOcQ+KSyS7oUV2C54Q==} engines: {node: '>=20.0.0'} - '@aws-sdk/types@3.974.3': - resolution: {integrity: sha512-ECAqfpNsef+7MO8qtR0h9KcFIBAygaE7Cm6UOiQl+ft+uVap+1G7bNEjs4mdJE2OnA4m6k7i8peH8uGIAsOMGw==} + '@aws-sdk/types@3.974.5': + resolution: {integrity: sha512-LkwLL2BLbC6wNNm4JaH9mbEqBMdOZCct6VAYqhdN4U1xrWM+fUJQEfbHwQgDypapOWTRtlk25akb5afM0P8CIQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/xml-builder@3.972.38': - resolution: {integrity: sha512-grf7mzfVxBS5AlsuTvBN7uDpzqohFww9fRPCO+EBSUdvtsYMcPSKdz54h/7XiscqNcUM1Ae1MF7JLHmiYYuzbQ==} + '@aws-sdk/xml-builder@3.972.40': + resolution: {integrity: sha512-wlFmCIGUlwF4zx/kncw+bmxTQh1HeSJq4mYV/V5cZUSJadDP3kXvGW8Rn21cimj/7y9ju+47oYWXi97vF7czaA==} engines: {node: '>=20.0.0'} '@aws/lambda-invoke-store@0.3.0': @@ -735,6 +735,10 @@ packages: resolution: {integrity: sha512-wFmHxf2WfPVXD8uvFpaxdY882ELqYhdPu1aQM9VM/UYUtJg+7uCj9k785ujYfgbSKgxfY6APgwI++n59v3Entg==} engines: {node: '>=8.0.0'} + '@contentstack/management@1.31.1': + resolution: {integrity: sha512-tl0Egw40B7DC+rpPDpGM4CU79m9lQKDtkHxtqEfwdC86K4b0xOUt2ZYwOlrwyr9ShE/QB8Q33abC1a9+1823uQ==} + engines: {node: '>=8.0.0'} + '@contentstack/marketplace-sdk@1.5.4': resolution: {integrity: sha512-rqsL/FvYTqF1a1MK/AZLdWCGf7WY48f4pT/iLkwt6wxh7apxaAwWSWy9ZWRtDu7EIV9FDDTHZ33iYWKH41fnlw==} @@ -812,8 +816,8 @@ packages: resolution: {integrity: sha512-pHoYRWS08oeU0qVez1pZCcbqHzoJnM5VMtrxH2nWDJ0ukq9DkwWV1BTY+PWK+eWBbndN9W0O9WjJTyAHsDoPOg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/eslintrc@3.3.6': - resolution: {integrity: sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==} + '@eslint/eslintrc@3.3.7': + resolution: {integrity: sha512-F42g89Qd5oAWtp0k0nnSrjziAKza7w8SVT4mStc18LZMaRb4J1HQAHLCalEtDCxrTuksx7NU9qsmeLwpOfPqWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/js@9.39.5': @@ -858,8 +862,8 @@ packages: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - '@humanwhocodes/momoa@3.3.10': - resolution: {integrity: sha512-KWiFQpSAqEIyrTXko3hFNLeQvSK8zXlJQzhhxsyVn58WFRYXST99b3Nqnu+ttOtjds2Pl2grUHGpe2NzhPynuQ==} + '@humanwhocodes/momoa@3.3.12': + resolution: {integrity: sha512-xS9xl4ieqTqhSZfKV3YXj/htwJCUxbgvkTVaK1fkESgrOzvoVSOTRQeQ8tTLOZUS0Csi2xqtJQXgVTRH5OEbHQ==} engines: {node: '>=18'} '@humanwhocodes/retry@0.4.3': @@ -1050,8 +1054,8 @@ packages: resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.5.5': - resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/sourcemap-codec@1.6.0': + resolution: {integrity: sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==} '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} @@ -1082,28 +1086,28 @@ packages: resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} engines: {node: '>=12.4.0'} - '@oclif/core@4.13.3': - resolution: {integrity: sha512-wBp2igI2KVwq2ZmpnfmGtOROo7aXZIr3OEtAS16g1wHFBqyEuswL+9K50NJWJvlpAmxd+4dVj/ycawXESU3wQQ==} + '@oclif/core@4.14.0': + resolution: {integrity: sha512-QCJIZoVJxV7jywgVAUlsQwl3dr3Sa21kfi5z9KrYolbexWJUtFSEtMoNiBWojD05mYycLnB50gp/VxlGdaOCRA==} engines: {node: '>=18.0.0'} - '@oclif/plugin-help@6.2.58': - resolution: {integrity: sha512-DAYMXZrTWRMLTbpX+rT+ibAmKrZ6IVNGn+fgAGjMoeNlqlSY94eJHocgmqChMwsdWp3H3x+jFmPJiYQt/ifr3Q==} + '@oclif/plugin-help@6.3.0': + resolution: {integrity: sha512-cpSRv7tyHHFPv39HrV22eNmu8ylrwjmPvqdlNo3URp79+p5319p+a8PI/3ez6A6GZmjwBj1EWUdVz1aPUAsSmw==} engines: {node: '>=18.0.0'} - '@oclif/plugin-not-found@3.2.93': - resolution: {integrity: sha512-KBizxn+kgTPWLUCo/vDz/oDdEA5Ll5H6x0jJhl05B56yHwgQp46ZxwXmtBsxvvgrmMqJEtFUw2Qrq+nTHWWv4g==} + '@oclif/plugin-not-found@3.3.0': + resolution: {integrity: sha512-GbdWJOmmBO3xmrVjDXeWG7tXl4vzeGZ+af9ztCfAmhOPEkd/+eeAAadzQPeZoygedqCvsdux3QLq9/MAxusPKg==} engines: {node: '>=18.0.0'} - '@oclif/plugin-plugins@5.4.86': - resolution: {integrity: sha512-znwK8zjnhg/ECQwLW8hhmPd/FBTcg+XhesxZfhpBohfIK934YokoiHJ4qwGb5ccaxQ6xV7ihpfJBy9tcNlkK4Q==} + '@oclif/plugin-plugins@5.5.2': + resolution: {integrity: sha512-Nyz6XBKcWRvjHCihPUCP0ubOj/k9pWwldzW39yK36t17RVYf+nVcYMLV+Kd1otB4qHKrsmt8pZI/nry6Fg5+Tg==} engines: {node: '>=18.0.0'} - '@oclif/plugin-warn-if-update-available@3.1.73': - resolution: {integrity: sha512-rEJmChy3THx7hHF0kkmFoDnrWq7tk4RCI8kBspD7HonCRFGvyVkUO6oY+sn1tgPXqbGUqHD3baFItNKKAJcAiQ==} + '@oclif/plugin-warn-if-update-available@3.2.0': + resolution: {integrity: sha512-E7l+/NTjddOi32Q9G1CWzEtuh0EwNylVHfTRlFxlZD50v1oBqBpziWh+Dzz6oAIe4ee5U7EUc7lP22aLxpW3vA==} engines: {node: '>=18.0.0'} - '@oclif/test@4.1.22': - resolution: {integrity: sha512-szaFr78p60axV6ECky9U2SMABE0g1JQpV3qyRjuPCt0pyAlgEzXodLnk99coqE1mny2qYlOU440dd37Xd/AQUA==} + '@oclif/test@4.2.0': + resolution: {integrity: sha512-CPNWjgtRnvLs9R2lKggIWg3wZM7TcV5LEymgnF6y9N7NkgiTF/YLo9sZR+FeIsn7b/6iffHcsdwuue0g1CGebQ==} engines: {node: '>=18.0.0'} peerDependencies: '@oclif/core': '>= 3.0.0' @@ -1174,28 +1178,28 @@ packages: '@sinonjs/samsam@10.0.2': resolution: {integrity: sha512-8lVwD1Df1BmzoaOLhMcGGcz/Jyr5QY2KSB75/YK1QgKzoabTeLdIVyhXNZK9ojfSKSdirbXqdbsXXqP9/Ve8+A==} - '@smithy/core@3.32.0': - resolution: {integrity: sha512-NAiCSC78fzbNIEWoheoF74Ob5ZorLijCHpMY26Fqvqg/+9LuyIqMfHDg2p8Yk1rqOyowtiL3y7WX0AW+teL6zw==} + '@smithy/core@3.33.3': + resolution: {integrity: sha512-CsOeKq/9kA3y6VJHt+/+VTCtBaxJ4OTFpgrjIUhPpDIKxBci1k2bJaQASF2h/ELWrulGp+t97DZ0mevfAD8idg==} engines: {node: '>=18.0.0'} - '@smithy/credential-provider-imds@4.5.0': - resolution: {integrity: sha512-2jsPi+7Zv2hSzD9IXR9D7DTqSn7mv4XalzRm+bESh53jiaUS3NKEUbpQFTJP0HhQy9qzZvluxQ3yS24zdRrqsA==} + '@smithy/credential-provider-imds@4.5.2': + resolution: {integrity: sha512-A9uSdn72ozbRUSit0eib0TW7nXuNPlaeM0zcGkJ+nE6tFcSDbnmtwoxbTCFBukVQcszDAyvsd7+rTduPTXpygg==} engines: {node: '>=18.0.0'} - '@smithy/fetch-http-handler@5.7.0': - resolution: {integrity: sha512-W/exA8T0LEzCQtJ02w4IzaEQPIspgarqZprb7W8FwnYiDowgCrjl2fTQ6FvuSSUnJORuepBF81abmBJwqh+0XQ==} + '@smithy/fetch-http-handler@5.7.2': + resolution: {integrity: sha512-nZyWTmSpJEXl6VtWVMBJve/7x12DZu6sIX1z1a+ZMaHlQQRs9Zpu6NbTe/gmxYXVRpkjxyDYpZ5gx2IM6f/Wkw==} engines: {node: '>=18.0.0'} - '@smithy/node-http-handler@4.10.0': - resolution: {integrity: sha512-nrh7VxqzPQS/ip1hS293aI/OAWDWARQvjUxCfuKhyrfHa2gTdk28066RNeWLI1uuoHXaKAkOF8IcSAHuOp0+SA==} + '@smithy/node-http-handler@4.12.0': + resolution: {integrity: sha512-0mq1pHadfyXCYCqm2cNpbjNIT+fbaUpNxewZb/YNr2L0IrEVMOb8gM/Fl4K6XvHCW3uSNDFwPl/+iKm0bx9jYg==} engines: {node: '>=18.0.0'} - '@smithy/signature-v4@5.7.0': - resolution: {integrity: sha512-hCynhm22wMJ8wTF9crcwu8mxggtUrSLLJgDcGUvYFBqpofxycYJCGKOMYg4xtPPFtgNiDJSYmhsWLTrcU/g59Q==} + '@smithy/signature-v4@5.7.3': + resolution: {integrity: sha512-7ImGm+FkHRLcBaRttIAMZ6bzJZWb2cJGoYjq46F2UjycujWzrL9GEN9h4w7eQyXJYnltrUhxbbieBAIRrdqpow==} engines: {node: '>=18.0.0'} - '@smithy/types@4.17.0': - resolution: {integrity: sha512-Aw4joiM0ZdErpo39lCj8phT2lxoiKZV+KZzBxnnQhWVtU2Is/WffQSL04uUWRcXUse9Ln8vXZK6V/FwqRVnQpg==} + '@smithy/types@4.17.2': + resolution: {integrity: sha512-FOKpVZob9MPTn2znRzGrnsMHv7BOsKVw3XiP/cOyYLDVZ9qKp4nifIiSCuUU/fIj5Vu0UOAxCFr+qRAtG0NUkA==} engines: {node: '>=18.0.0'} '@so-ric/colorspace@1.1.6': @@ -1217,8 +1221,8 @@ packages: resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} engines: {node: '>=14.16'} - '@tsconfig/node10@1.0.12': - resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==} + '@tsconfig/node10@1.0.13': + resolution: {integrity: sha512-gcLdvR9HO1ZJBypsOGqaP6TFEzb6vIta0KSTLt9NAQ6pXQO3cRgSVyCN6pzYqI9DlJgY71XKO0dpDhCf08b3pg==} '@tsconfig/node12@1.0.11': resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} @@ -1312,11 +1316,11 @@ packages: typescript: optional: true - '@typescript-eslint/eslint-plugin@8.67.0': - resolution: {integrity: sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==} + '@typescript-eslint/eslint-plugin@8.69.0': + resolution: {integrity: sha512-t5jQTKPIgVW1PE6dR6H6Qz5gm8zjMlX5/2gRaOGd9eO6V7J+tQc6iWKukEe7dY8u9HyYasQ0yfF0/FSSTEO2gA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.67.0 + '@typescript-eslint/parser': ^8.69.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' @@ -1330,15 +1334,15 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.67.0': - resolution: {integrity: sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==} + '@typescript-eslint/parser@8.69.0': + resolution: {integrity: sha512-l4b0DhWioGg6Gt2ebGlvfkFMOjRsauxtsnDRwUSRX1qHq3HdTfQHV8wW9zEXeciai6HfeaKOedQn2Zoofx3WBw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/project-service@8.67.0': - resolution: {integrity: sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==} + '@typescript-eslint/project-service@8.69.0': + resolution: {integrity: sha512-yi4obFrHMmnsesWehHbkg9zMA7Jt8cXT+mKM08G999pH1yT6nqgsHx7MYm0uY1wAj8CqiBXYRJ7WAT0QdQHQXg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -1351,12 +1355,12 @@ packages: resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/scope-manager@8.67.0': - resolution: {integrity: sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==} + '@typescript-eslint/scope-manager@8.69.0': + resolution: {integrity: sha512-ewfspqWvSxKSOaplqAUNbaSFO0eB6w1EtQ+esfYFRm3614Ty4uNtExkcbgd6nWsXphbqKyf9ZYdbZdv2xEoWEQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.67.0': - resolution: {integrity: sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==} + '@typescript-eslint/tsconfig-utils@8.69.0': + resolution: {integrity: sha512-xNqK7YTDZsLniQMV/4rpFR8Z5JlqeRvVjuG1YgF/mdPVH84HSD19L8CczMA0qg2RfwEV231GHH3VnToJDo4MfQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -1371,8 +1375,8 @@ packages: typescript: optional: true - '@typescript-eslint/type-utils@8.67.0': - resolution: {integrity: sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==} + '@typescript-eslint/type-utils@8.69.0': + resolution: {integrity: sha512-ZfoJAVg3JZndQEpEl9petVlxau3lRuElc4HRMuAlLCf8to04/iHz692RUSNmXKDjEuJmIL+KZ2/BsOcBc16dsA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -1386,8 +1390,8 @@ packages: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/types@8.67.0': - resolution: {integrity: sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==} + '@typescript-eslint/types@8.69.0': + resolution: {integrity: sha512-K3VrubUPhlo9VDBS6QdI8YB5j7ClpqLRdefcz6PFrhnwicehBweqQ9Evhl4l+FYz0HdDmMqIiSX0aldGRYtDCA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@6.21.0': @@ -1408,8 +1412,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.67.0': - resolution: {integrity: sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==} + '@typescript-eslint/typescript-estree@8.69.0': + resolution: {integrity: sha512-AdFkgqck3Vudb/kWnxlyafU/4aBhHrbQ9locP2N4psXTy5mOBg0SHJumnLvx7r6g1gV4DKvUFwV2nJZBoqOD8w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -1426,8 +1430,8 @@ packages: peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/utils@8.67.0': - resolution: {integrity: sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==} + '@typescript-eslint/utils@8.69.0': + resolution: {integrity: sha512-tUbx60BBqQa31kXF5MCsOOLL5E/WzUuxIn7YpAvq+eaUlqvk8/NXnXMBNAdLCr0icjkzem7iUA5QqWHe/hJ1aw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -1441,8 +1445,8 @@ packages: resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/visitor-keys@8.67.0': - resolution: {integrity: sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==} + '@typescript-eslint/visitor-keys@8.69.0': + resolution: {integrity: sha512-+rmdgPA+EXkNgKYvHvFfhrs35utXbwaC5PGpDquSXcoXQDKUA5UjV0LmTucG/4JXkM31BTu4TilHtrN8IVBe8w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@unrs/resolver-binding-android-arm-eabi@1.12.2': @@ -1619,8 +1623,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.2.2: - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + ansi-regex@6.3.0: + resolution: {integrity: sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==} engines: {node: '>=12'} ansi-styles@2.2.1: @@ -1752,8 +1756,8 @@ packages: peerDependencies: axios: '>= 0.17.0' - axios@1.19.0: - resolution: {integrity: sha512-ht/iuYZXEjFxLH/Hkezgd7m6JKlHHXEUSneaDz8uZe1Gj5QZtCnpyDsckvAiEnT89OEbCLmnte4R4sn7P0EKFw==} + axios@1.20.0: + resolution: {integrity: sha512-r8aOh8j9cGKpgQAqpzrUHnSIc6a59Y3Xf/cv8sy1DrHCkZHzQGEuoq1tARk6qSyDdtQGSDgpb9kFlruzPvrgwg==} balanced-match@4.0.4: resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} @@ -1762,8 +1766,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.11.13: - resolution: {integrity: sha512-k9HNuUVMlqVjQ9UHzfPjIqiDbWw7WqT1AoT7GL8VwvF3r0ZfArtgiSPAlmupyNquNgOJHTuH4CKYf8ttMTWBTQ==} + baseline-browser-mapping@2.11.20: + resolution: {integrity: sha512-H0ulySigv6icDJ1F7SjtdCD6PrhTpdYCmP0CactWy1+ekh0AFd0o1Wn5T8b+hnTmdBx19u9yhL6wvCylXMY7zw==} engines: {node: '>=6.0.0'} hasBin: true @@ -1857,8 +1861,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001809: - resolution: {integrity: sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==} + caniuse-lite@1.0.30001810: + resolution: {integrity: sha512-TITQPUkaz+aVk5GL6NhOdwk1aEaNTSDPsGFWrTuhKGtjTF70jL/Oht2W4c6rXUe5fu7Ie19VIahAXHIIiWWNeg==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -2219,8 +2223,13 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.405: - resolution: {integrity: sha512-bNglH7lPH5l+yHOes7Zr4VqxhOy4BQ9ZBUX4VdoFgxMpzJk7W1ZoO3Vgd9Pxa9PyjQ76sfm2aKH/nzEcCNRlew==} + ejs@6.0.1: + resolution: {integrity: sha512-UaaM14yby8U3k02ihS1Bmj5Kz2d7CCQM1scxpgs4Mhkq8F1wR2gl3+Ts4h5Ne4Mnt7M9m4Dw7jsuMr3+xO4vZA==} + engines: {node: '>=0.12.18'} + hasBin: true + + electron-to-chromium@1.5.420: + resolution: {integrity: sha512-2yD6XreGusOfNV+dUcvipJEXc3n/n7fgr7996aszTG+YY5E4mqM4tOq/3uhP129cazL9YHbVWSpc79ePotWtPA==} elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} @@ -2489,8 +2498,8 @@ packages: resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} - eslint@10.8.1: - resolution: {integrity: sha512-wqA7W2jbsC/BnV9Iv1UZpKVFkO1AdNoSmYW8NWG4HNOBbkAMvIqDZ27pI2f07dqn583NcIC44ckjAcOXDL1QbQ==} + eslint@10.9.1: + resolution: {integrity: sha512-9VaAkDURekixUQJy0oJYl2DcN6oKMfxay7XzaGYAWQwsb6qfKf+x76R2k1L8kb1boc+FyCAaTA9GmiKaaiaF+A==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} hasBin: true peerDependencies: @@ -2565,15 +2574,15 @@ packages: fast-levenshtein@3.0.0: resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==} - fast-uri@4.1.2: - resolution: {integrity: sha512-TyGmBcbDTZXcb2cj5MV89DrF42DKvb3y5DDUNh95iO+IMeAzMkVSxK1PZRrRIpc9yg8U2GhGdbofNa0LS/a4Bw==} + fast-uri@4.1.3: + resolution: {integrity: sha512-7+72G6vLt7jjNas8SmSATx2qeyRIjxeqO3i4IkmDTxlqYZRKANhOe1bnovcp4WZmvsYrp60WyqPyHqgRiX0yXw==} fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} - fastq@1.20.1: - resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} + fastq@1.20.3: + resolution: {integrity: sha512-XKv5nnLs6nLF71NgiKJLIZFLkPyIEuOselLG7ujZnGrRfQK8HpvY+WqKhAJUAdLomwVHErVS4LfxFlPq0/FTAw==} fdir@6.5.0: resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} @@ -2752,8 +2761,8 @@ packages: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} - get-tsconfig@4.14.1: - resolution: {integrity: sha512-Dz/6HxkrxgNehhxLVeyv8sad9UzF2xBVeaKBQNDfJ5XiSXmp2gTR0eO0RWiT2NCKS5aGP9jjkOMggTN90qU50A==} + get-tsconfig@4.14.3: + resolution: {integrity: sha512-++QEw4DIY7WGoukz+/+A/8dGYPT9l9yIadnmSgZ8Rjr3YVSVDipQSO9CdnJo9ePqFqUUqh+wk9uIaoiAwsiPkA==} github-slugger@2.0.0: resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} @@ -2929,8 +2938,8 @@ packages: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} - ignore@7.0.6: - resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==} + ignore@7.0.8: + resolution: {integrity: sha512-YYNsSlXBjMk92SKnkwvB5LOVSa6OznlFUGcsvrFgNJbJCd0M1XKeFVRc8ZByeCqz32FivYNHJVooLmdqrmvp/Q==} engines: {node: '>= 4'} import-fresh@3.3.1: @@ -3044,6 +3053,11 @@ packages: engines: {node: '>=8'} hasBin: true + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + is-document.all@1.0.0: resolution: {integrity: sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==} engines: {node: '>= 0.4'} @@ -3076,6 +3090,11 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -3190,6 +3209,10 @@ packages: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} + is-wsl@3.1.1: + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} + engines: {node: '>=16'} + isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} @@ -3245,8 +3268,8 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@5.2.3: - resolution: {integrity: sha512-n+mUVyUX5bVv7G/G2zyIHOhdxfuU1dY2NOFzTQUWiMUbFss8b57NFlgCCaggU78wSw5KVS9cllzeLyzyR+n5nw==} + js-yaml@5.4.1: + resolution: {integrity: sha512-28R/k+NAjeuf7+CKlTxWZVExJGwVVLwY06DgEnOMz2gEpfNkDcD7QvyiVPT0xy0XXhU8vHsd4Ot42OOPdJG7dQ==} hasBin: true jsdoc-type-pratt-parser@4.1.0: @@ -3616,8 +3639,8 @@ packages: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} - node-releases@2.0.53: - resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==} + node-releases@2.0.54: + resolution: {integrity: sha512-YHs7BmmcsdAI5Ozuf8JZo6PT0mv2GIWC9vMfvUC3dp65M8hn7Ux8CPL+2oBI7juNuj9d0ndhTcznq2ODBps9cQ==} engines: {node: '>=18'} normalize-package-data@2.5.0: @@ -3647,8 +3670,8 @@ packages: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - npm@11.19.0: - resolution: {integrity: sha512-SDd/hHg3KqHE5Ht2NHWxNYNtqCQ2pXAPLl6OtQhPyED5PHsRfrOtO199MZTIG2cQoQ1ZRI9t28shrD+2cr3AAw==} + npm@11.19.1: + resolution: {integrity: sha512-ztsxKxt/kkIaAs+2i0GU6I+DRmUdrNasxTZKJe9TCdSjKxlhah/4r/hl5ygMD6XAg1qZ9c2TNomR4qgOydp10g==} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true bundledDependencies: @@ -3767,8 +3790,8 @@ packages: resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} engines: {node: '>= 0.4'} - oclif@4.23.30: - resolution: {integrity: sha512-x8sMRv606XqZAWEfGh981PP2JM4G2CKt4/z2KDntoNHljD8slfJ5sHaDFUQya9w6W8xOJDMFF3UaLAFFYHo13w==} + oclif@4.24.0: + resolution: {integrity: sha512-qBSOMDV7T9G7QkJM1XXeC08jVnGjXK/EQaol6MpkXN1ELEOzi/9SeuwElH3zQuCRVEE+MlJLME6nQzNlwN5zVw==} engines: {node: '>=18.0.0'} hasBin: true @@ -3860,8 +3883,8 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - papaparse@5.5.4: - resolution: {integrity: sha512-SwzWD9gl/ElwYLCI0nUja1mFJzjq2D8ziShfNBa7zCHzkOozeOGDwHWQ+tvCzEZcewecWZ5U7kUopDnG+DFYEQ==} + papaparse@5.7.0: + resolution: {integrity: sha512-qBGxg/7Q3Kl9Wfhrz2Z74UnvnHTXLNG6jmKJFeBvP2+y4lV7So+7SR62+Zd47JvdrCkX+nDcnr0ObPzek/+6RA==} param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} @@ -3935,8 +3958,8 @@ packages: resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} engines: {node: '>=8.6'} - picomatch@4.0.5: - resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} + picomatch@4.0.7: + resolution: {integrity: sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==} engines: {node: '>=12'} pkg-dir@4.2.0: @@ -3960,6 +3983,10 @@ packages: resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} engines: {node: '>= 0.4'} + powershell-utils@0.1.0: + resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} + engines: {node: '>=20'} + prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -4004,6 +4031,10 @@ packages: resolution: {integrity: sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==} engines: {node: '>=0.6'} + qs@6.16.0: + resolution: {integrity: sha512-h6fhOIaRrID2CbEY2fqs+7t+UXZo+MLAnU5gRIq85uFtdiUPCdsApMlHhXogKVM4HM2DVbIjGNTTYH2OcmP1vA==} + engines: {node: '>=0.6'} + queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -4635,8 +4666,8 @@ packages: typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript-eslint@8.67.0: - resolution: {integrity: sha512-S2udFs8tCKEKffuJ4TB1idGUZiXdCPGi3IPBGWXarbLQ5UPXORV8QEVzJ4gCRduURMb5EkpNCdjbk0eDIuI8Yg==} + typescript-eslint@8.69.0: + resolution: {integrity: sha512-B3MltX0VqjUBNEe3b3sSuiRbfa6XrfHFtBiPamjT5AsW/dfq+y+bc0wyuS9DxAS1LyzCxRp2+rxzpLUvqM2BvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -4677,8 +4708,8 @@ packages: unrs-resolver@1.12.2: resolution: {integrity: sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==} - update-browserslist-db@1.3.1: - resolution: {integrity: sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==} + update-browserslist-db@1.3.2: + resolution: {integrity: sha512-UQ+MSxlhRm1bzjhU+DcuXfjFO1FzNtqhK5+9Yvlp90ItDLk5vT932A0rFu619nf7RVS+Y/VeaUW1jaRDqZ8VJw==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -4698,8 +4729,8 @@ packages: util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - uuid@14.0.1: - resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==} + uuid@14.0.2: + resolution: {integrity: sha512-xZe/16rV4aa+HGSOCiY2YeLT1OybRLrrkL/Rqaq7p7GMVXjFh+6wN4oMYgjFmnSnhY8t6Xpdl2l9qmnHYuMHwQ==} hasBin: true v8-compile-cache-lib@3.0.1: @@ -4792,6 +4823,10 @@ packages: write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + wsl-utils@0.4.0: + resolution: {integrity: sha512-9YmF+2sFEd+T7TkwlmE337F0IVzfDvDknhtpBQxxXzEOfgPphGlFYpyx0cTuCIFj8/p+sqwBYAeGxOMNSzPPDA==} + engines: {node: '>=20'} + xdg-basedir@4.0.0: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} @@ -4861,178 +4896,178 @@ packages: snapshots: - '@aws-sdk/checksums@3.1000.27': + '@aws-sdk/checksums@3.1000.29': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/client-cloudfront@3.1108.0': + '@aws-sdk/client-cloudfront@3.1124.0': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/credential-provider-node': 3.972.79 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/fetch-http-handler': 5.7.0 - '@smithy/node-http-handler': 4.10.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/credential-provider-node': 3.972.82 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/fetch-http-handler': 5.7.2 + '@smithy/node-http-handler': 4.12.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/client-s3@3.1108.0': - dependencies: - '@aws-sdk/checksums': 3.1000.27 - '@aws-sdk/core': 3.977.7 - '@aws-sdk/credential-provider-node': 3.972.79 - '@aws-sdk/middleware-sdk-s3': 3.972.73 - '@aws-sdk/signature-v4-multi-region': 3.996.44 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/fetch-http-handler': 5.7.0 - '@smithy/node-http-handler': 4.10.0 - '@smithy/types': 4.17.0 + '@aws-sdk/client-s3@3.1124.0': + dependencies: + '@aws-sdk/checksums': 3.1000.29 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/credential-provider-node': 3.972.82 + '@aws-sdk/middleware-sdk-s3': 3.972.75 + '@aws-sdk/signature-v4-multi-region': 3.996.46 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/fetch-http-handler': 5.7.2 + '@smithy/node-http-handler': 4.12.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/core@3.977.7': + '@aws-sdk/core@3.977.9': dependencies: - '@aws-sdk/types': 3.974.3 - '@aws-sdk/xml-builder': 3.972.38 + '@aws-sdk/types': 3.974.5 + '@aws-sdk/xml-builder': 3.972.40 '@aws/lambda-invoke-store': 0.3.0 - '@smithy/core': 3.32.0 - '@smithy/signature-v4': 5.7.0 - '@smithy/types': 4.17.0 + '@smithy/core': 3.33.3 + '@smithy/signature-v4': 5.7.3 + '@smithy/types': 4.17.2 bowser: 2.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.972.68': + '@aws-sdk/credential-provider-env@3.972.70': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-http@3.972.70': + '@aws-sdk/credential-provider-http@3.972.72': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/fetch-http-handler': 5.7.0 - '@smithy/node-http-handler': 4.10.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/fetch-http-handler': 5.7.2 + '@smithy/node-http-handler': 4.12.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-ini@3.973.13': - dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/credential-provider-env': 3.972.68 - '@aws-sdk/credential-provider-http': 3.972.70 - '@aws-sdk/credential-provider-login': 3.972.75 - '@aws-sdk/credential-provider-process': 3.972.68 - '@aws-sdk/credential-provider-sso': 3.973.12 - '@aws-sdk/credential-provider-web-identity': 3.972.74 - '@aws-sdk/nested-clients': 3.997.42 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/credential-provider-imds': 4.5.0 - '@smithy/types': 4.17.0 + '@aws-sdk/credential-provider-ini@3.973.15': + dependencies: + '@aws-sdk/core': 3.977.9 + '@aws-sdk/credential-provider-env': 3.972.70 + '@aws-sdk/credential-provider-http': 3.972.72 + '@aws-sdk/credential-provider-login': 3.972.77 + '@aws-sdk/credential-provider-process': 3.972.70 + '@aws-sdk/credential-provider-sso': 3.973.14 + '@aws-sdk/credential-provider-web-identity': 3.972.76 + '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/credential-provider-imds': 4.5.2 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-login@3.972.75': + '@aws-sdk/credential-provider-login@3.972.77': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/nested-clients': 3.997.42 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-node@3.972.79': - dependencies: - '@aws-sdk/credential-provider-env': 3.972.68 - '@aws-sdk/credential-provider-http': 3.972.70 - '@aws-sdk/credential-provider-ini': 3.973.13 - '@aws-sdk/credential-provider-process': 3.972.68 - '@aws-sdk/credential-provider-sso': 3.973.12 - '@aws-sdk/credential-provider-web-identity': 3.972.74 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/credential-provider-imds': 4.5.0 - '@smithy/types': 4.17.0 + '@aws-sdk/credential-provider-node@3.972.82': + dependencies: + '@aws-sdk/credential-provider-env': 3.972.70 + '@aws-sdk/credential-provider-http': 3.972.72 + '@aws-sdk/credential-provider-ini': 3.973.15 + '@aws-sdk/credential-provider-process': 3.972.70 + '@aws-sdk/credential-provider-sso': 3.973.14 + '@aws-sdk/credential-provider-web-identity': 3.972.76 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/credential-provider-imds': 4.5.2 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-process@3.972.68': + '@aws-sdk/credential-provider-process@3.972.70': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.973.12': + '@aws-sdk/credential-provider-sso@3.973.14': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/nested-clients': 3.997.42 - '@aws-sdk/token-providers': 3.1108.0 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/token-providers': 3.1116.0 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-web-identity@3.972.74': + '@aws-sdk/credential-provider-web-identity@3.972.76': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/nested-clients': 3.997.42 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.972.73': + '@aws-sdk/middleware-sdk-s3@3.972.75': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/signature-v4-multi-region': 3.996.44 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/signature-v4-multi-region': 3.996.46 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/nested-clients@3.997.42': + '@aws-sdk/nested-clients@3.997.44': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/signature-v4-multi-region': 3.996.44 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/fetch-http-handler': 5.7.0 - '@smithy/node-http-handler': 4.10.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/signature-v4-multi-region': 3.996.46 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/fetch-http-handler': 5.7.2 + '@smithy/node-http-handler': 4.12.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/signature-v4-multi-region@3.996.44': + '@aws-sdk/signature-v4-multi-region@3.996.46': dependencies: - '@aws-sdk/types': 3.974.3 - '@smithy/signature-v4': 5.7.0 - '@smithy/types': 4.17.0 + '@aws-sdk/types': 3.974.5 + '@smithy/signature-v4': 5.7.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/token-providers@3.1108.0': + '@aws-sdk/token-providers@3.1116.0': dependencies: - '@aws-sdk/core': 3.977.7 - '@aws-sdk/nested-clients': 3.997.42 - '@aws-sdk/types': 3.974.3 - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/types@3.974.3': + '@aws-sdk/types@3.974.5': dependencies: - '@smithy/types': 4.17.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/xml-builder@3.972.38': + '@aws-sdk/xml-builder@3.972.40': dependencies: - '@smithy/types': 4.17.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 '@aws/lambda-invoke-store@0.3.0': {} @@ -5154,7 +5189,7 @@ snapshots: dependencies: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 chalk: 5.6.2 fast-csv: 4.3.6 fs-extra: 11.4.0 @@ -5173,7 +5208,7 @@ snapshots: '@contentstack/delivery-sdk': 5.6.0(debug@4.4.3) '@contentstack/management': 1.30.4(debug@4.4.3) lodash: 4.18.1 - uuid: 14.0.1 + uuid: 14.0.2 transitivePeerDependencies: - '@types/node' - debug @@ -5185,7 +5220,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-config': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 inquirer: 12.11.1(@types/node@18.19.130) mkdirp: 2.1.6 tar: 7.5.22 @@ -5198,7 +5233,7 @@ snapshots: dependencies: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 chalk: 5.6.2 just-diff: 6.0.2 lodash: 4.18.1 @@ -5214,7 +5249,7 @@ snapshots: '@contentstack/cli-cm-import': 2.0.0(@types/node@18.19.130) '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 chalk: 5.6.2 inquirer: 12.11.1(@types/node@18.19.130) lodash: 4.18.1 @@ -5232,7 +5267,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@inquirer/prompts': 7.10.1(@types/node@18.19.130) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 fast-csv: 4.3.6 transitivePeerDependencies: - '@types/node' @@ -5245,7 +5280,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-variants': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 async: 3.2.6 big-json: 3.2.0 bluebird: 3.7.2 @@ -5266,7 +5301,7 @@ snapshots: '@contentstack/cli-asset-management': 1.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 big-json: 3.2.0 chalk: 5.6.2 fs-extra: 11.4.0 @@ -5286,7 +5321,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-variants': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 big-json: 3.2.0 bluebird: 3.7.2 chalk: 5.6.2 @@ -5319,7 +5354,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@18.19.130)(debug@4.4.3)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -5331,7 +5366,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/utils': 1.9.1 - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 transitivePeerDependencies: - '@types/node' - debug @@ -5341,7 +5376,7 @@ snapshots: dependencies: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 async: 3.2.6 callsites: 3.1.0 cardinal: 2.1.1 @@ -5362,8 +5397,8 @@ snapshots: '@contentstack/management': 1.30.4(debug@4.4.3) '@contentstack/marketplace-sdk': 1.5.4(debug@4.4.3) '@contentstack/utils': 1.9.1 - '@oclif/core': 4.13.3 - axios: 1.19.0(debug@4.4.3) + '@oclif/core': 4.14.0 + axios: 1.20.0(debug@4.4.3) chalk: 5.6.2 cli-cursor: 3.1.0 cli-progress: 3.12.0 @@ -5374,20 +5409,20 @@ snapshots: inquirer: 12.11.1(@types/node@18.19.130) inquirer-search-checkbox: 1.0.0 inquirer-search-list: 1.2.6 - js-yaml: 5.2.3 + js-yaml: 5.4.1 klona: 2.0.6 lodash: 4.18.1 mkdirp: 1.0.4 open: 8.4.2 ora: 5.4.1 - papaparse: 5.5.4 + papaparse: 5.7.0 recheck: 4.5.0 rxjs: 6.6.7 short-uuid: 6.0.3 traverse: 0.6.11 tty-table: 4.2.3 unique-string: 2.0.0 - uuid: 14.0.1 + uuid: 14.0.2 winston: 3.19.0 xdg-basedir: 4.0.0 transitivePeerDependencies: @@ -5398,7 +5433,7 @@ snapshots: '@contentstack/cli-variants@2.0.0(@types/node@18.19.130)(debug@4.4.3)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 lodash: 4.18.1 mkdirp: 1.0.4 winston: 3.19.0 @@ -5409,8 +5444,8 @@ snapshots: '@contentstack/core@1.5.2(debug@4.4.3)': dependencies: - axios: 1.19.0(debug@4.4.3) - axios-mock-adapter: 2.1.0(axios@1.19.0(debug@4.4.3)) + axios: 1.20.0(debug@4.4.3) + axios-mock-adapter: 2.1.0(axios@1.20.0(debug@4.4.3)) lodash: 4.18.1 qs: 6.15.3 tslib: 2.8.1 @@ -5422,7 +5457,7 @@ snapshots: dependencies: '@contentstack/core': 1.5.2(debug@4.4.3) '@contentstack/utils': 1.9.1 - axios: 1.19.0(debug@4.4.3) + axios: 1.20.0(debug@4.4.3) humps: 2.0.1 transitivePeerDependencies: - debug @@ -5432,13 +5467,29 @@ snapshots: dependencies: '@contentstack/utils': 1.9.1 assert: 2.1.0 - axios: 1.19.0(debug@4.4.3) + axios: 1.20.0(debug@4.4.3) buffer: 6.0.3 form-data: 4.0.6 husky: 9.1.7 lodash: 4.18.1 otplib: 12.0.1 - qs: 6.15.3 + qs: 6.16.0 + stream-browserify: 3.0.0 + transitivePeerDependencies: + - debug + - supports-color + + '@contentstack/management@1.31.1': + dependencies: + '@contentstack/utils': 1.9.1 + assert: 2.1.0 + axios: 1.20.0(debug@4.4.3) + buffer: 6.0.3 + form-data: 4.0.6 + husky: 9.1.7 + lodash: 4.18.1 + otplib: 12.0.1 + qs: 6.16.0 stream-browserify: 3.0.0 transitivePeerDependencies: - debug @@ -5447,7 +5498,7 @@ snapshots: '@contentstack/marketplace-sdk@1.5.4(debug@4.4.3)': dependencies: '@contentstack/utils': 1.9.1 - axios: 1.19.0(debug@4.4.3) + axios: 1.20.0(debug@4.4.3) transitivePeerDependencies: - debug - supports-color @@ -5483,23 +5534,23 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.9 - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/types': 8.69.0 comment-parser: 1.4.1 esquery: 1.7.0 jsdoc-type-pratt-parser: 4.1.0 - '@eslint-community/eslint-utils@4.10.1(eslint@10.8.1)': + '@eslint-community/eslint-utils@4.10.1(eslint@10.9.1)': dependencies: - eslint: 10.8.1 + eslint: 10.9.1 eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} - '@eslint/compat@1.4.1(eslint@10.8.1)': + '@eslint/compat@1.4.1(eslint@10.9.1)': dependencies: '@eslint/core': 0.17.0 optionalDependencies: - eslint: 10.8.1 + eslint: 10.9.1 '@eslint/config-array@0.23.5': dependencies: @@ -5540,7 +5591,7 @@ snapshots: '@eslint/css-tree': 3.6.9 '@eslint/plugin-kit': 0.3.5 - '@eslint/eslintrc@3.3.6': + '@eslint/eslintrc@3.3.7': dependencies: ajv: 6.15.0 debug: 4.4.3(supports-color@8.1.1) @@ -5548,7 +5599,7 @@ snapshots: globals: 14.0.0 ignore: 5.3.2 import-fresh: 3.3.1 - js-yaml: 5.2.3 + js-yaml: 5.4.1 minimatch: 3.1.5 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -5560,7 +5611,7 @@ snapshots: dependencies: '@eslint/core': 0.15.2 '@eslint/plugin-kit': 0.3.5 - '@humanwhocodes/momoa': 3.3.10 + '@humanwhocodes/momoa': 3.3.12 natural-compare: 1.4.0 '@eslint/object-schema@3.0.5': {} @@ -5608,7 +5659,7 @@ snapshots: '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/momoa@3.3.10': {} + '@humanwhocodes/momoa@3.3.12': {} '@humanwhocodes/retry@0.4.3': {} @@ -5917,14 +5968,14 @@ snapshots: camelcase: 5.3.1 find-up: 4.1.0 get-package-type: 0.1.0 - js-yaml: 5.2.3 + js-yaml: 5.4.1 resolve-from: 5.0.0 '@istanbuljs/schema@0.1.6': {} '@jridgewell/gen-mapping@0.3.13': dependencies: - '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/sourcemap-codec': 1.6.0 '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/remapping@2.3.5': @@ -5934,17 +5985,17 @@ snapshots: '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/sourcemap-codec@1.6.0': {} '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/sourcemap-codec': 1.6.0 '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/sourcemap-codec': 1.6.0 '@napi-rs/wasm-runtime@1.2.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': dependencies: @@ -5963,21 +6014,20 @@ snapshots: '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.20.1 + fastq: 1.20.3 '@nolyfill/is-core-module@1.0.39': {} - '@oclif/core@4.13.3': + '@oclif/core@4.14.0': dependencies: ansi-escapes: 4.3.2 ansis: 3.17.0 clean-stack: 3.0.1 cli-spinners: 2.9.2 debug: 4.4.3(supports-color@8.1.1) - ejs: 3.1.10 + ejs: 6.0.1 get-package-type: 0.1.0 indent-string: 4.0.0 - is-wsl: 2.2.0 lilconfig: 3.1.3 minimatch: 10.2.6 semver: 7.8.5 @@ -5987,35 +6037,36 @@ snapshots: widest-line: 3.1.0 wordwrap: 1.0.0 wrap-ansi: 7.0.0 + wsl-utils: 0.4.0 - '@oclif/plugin-help@6.2.58': + '@oclif/plugin-help@6.3.0': dependencies: - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 - '@oclif/plugin-not-found@3.2.93(@types/node@14.18.63)': + '@oclif/plugin-not-found@3.3.0(@types/node@14.18.63)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@14.18.63) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@types/node' - '@oclif/plugin-not-found@3.2.93(@types/node@18.19.130)': + '@oclif/plugin-not-found@3.3.0(@types/node@18.19.130)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@18.19.130) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@types/node' - '@oclif/plugin-plugins@5.4.86': + '@oclif/plugin-plugins@5.5.2': dependencies: - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 debug: 4.4.3(supports-color@8.1.1) - npm: 11.19.0 + npm: 11.19.1 npm-package-arg: 11.0.3 npm-run-path: 5.3.0 object-treeify: 4.0.1 @@ -6026,9 +6077,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@oclif/plugin-warn-if-update-available@3.1.73': + '@oclif/plugin-warn-if-update-available@3.2.0': dependencies: - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 debug: 4.4.3(supports-color@8.1.1) http-call: 5.3.0 @@ -6037,9 +6088,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@oclif/test@4.1.22(@oclif/core@4.13.3)': + '@oclif/test@4.2.0(@oclif/core@4.14.0)': dependencies: - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: @@ -6110,36 +6161,36 @@ snapshots: '@sinonjs/commons': 3.0.1 type-detect: 4.1.0 - '@smithy/core@3.32.0': + '@smithy/core@3.33.3': dependencies: - '@smithy/types': 4.17.0 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@smithy/credential-provider-imds@4.5.0': + '@smithy/credential-provider-imds@4.5.2': dependencies: - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@smithy/fetch-http-handler@5.7.0': + '@smithy/fetch-http-handler@5.7.2': dependencies: - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@smithy/node-http-handler@4.10.0': + '@smithy/node-http-handler@4.12.0': dependencies: - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@smithy/signature-v4@5.7.0': + '@smithy/signature-v4@5.7.3': dependencies: - '@smithy/core': 3.32.0 - '@smithy/types': 4.17.0 + '@smithy/core': 3.33.3 + '@smithy/types': 4.17.2 tslib: 2.8.1 - '@smithy/types@4.17.0': + '@smithy/types@4.17.2': dependencies: tslib: 2.8.1 @@ -6148,45 +6199,45 @@ snapshots: color: 5.0.3 text-hex: 1.0.0 - '@stylistic/eslint-plugin@3.1.0(eslint@10.8.1)(typescript@4.9.5)': + '@stylistic/eslint-plugin@3.1.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 - picomatch: 4.0.5 + picomatch: 4.0.7 transitivePeerDependencies: - supports-color - typescript - '@stylistic/eslint-plugin@3.1.0(eslint@10.8.1)(typescript@5.9.3)': + '@stylistic/eslint-plugin@3.1.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 - picomatch: 4.0.5 + picomatch: 4.0.7 transitivePeerDependencies: - supports-color - typescript - '@stylistic/eslint-plugin@5.10.0(eslint@10.8.1)': + '@stylistic/eslint-plugin@5.10.0(eslint@10.9.1)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) - '@typescript-eslint/types': 8.67.0 - eslint: 10.8.1 + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) + '@typescript-eslint/types': 8.69.0 + eslint: 10.9.1 eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 - picomatch: 4.0.5 + picomatch: 4.0.7 '@szmarczak/http-timer@5.0.1': dependencies: defer-to-connect: 2.0.1 - '@tsconfig/node10@1.0.12': {} + '@tsconfig/node10@1.0.13': {} '@tsconfig/node12@1.0.11': {} @@ -6260,16 +6311,16 @@ snapshots: '@types/wrap-ansi@3.0.0': {} - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@4.9.5) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/type-utils': 6.21.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -6280,16 +6331,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@5.9.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/type-utils': 6.21.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@5.9.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -6300,101 +6351,101 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/eslint-plugin@8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 8.67.0 - eslint: 10.8.1 - ignore: 7.0.6 + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/type-utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.69.0 + eslint: 10.9.1 + ignore: 7.0.8 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.67.0 - eslint: 10.8.1 - ignore: 7.0.6 + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/type-utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.69.0 + eslint: 10.9.1 + ignore: 7.0.8 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.69.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.69.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.67.0(typescript@4.9.5)': + '@typescript-eslint/project-service@8.69.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@4.9.5) - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@4.9.5) + '@typescript-eslint/types': 8.69.0 debug: 4.4.3(supports-color@8.1.1) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.67.0(typescript@5.9.3)': + '@typescript-eslint/project-service@8.69.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@5.9.3) - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@5.9.3) + '@typescript-eslint/types': 8.69.0 debug: 4.4.3(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: @@ -6410,62 +6461,62 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/scope-manager@8.67.0': + '@typescript-eslint/scope-manager@8.69.0': dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/visitor-keys': 8.69.0 - '@typescript-eslint/tsconfig-utils@8.67.0(typescript@4.9.5)': + '@typescript-eslint/tsconfig-utils@8.69.0(typescript@4.9.5)': dependencies: typescript: 4.9.5 - '@typescript-eslint/tsconfig-utils@8.67.0(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.69.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@6.21.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/type-utils@6.21.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.9.5) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@4.9.5) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 ts-api-utils: 1.4.3(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@6.21.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/type-utils@6.21.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 ts-api-utils: 1.4.3(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/type-utils@8.69.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@4.9.5) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 ts-api-utils: 2.5.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.69.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -6475,7 +6526,7 @@ snapshots: '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/types@8.67.0': {} + '@typescript-eslint/types@8.69.0': {} '@typescript-eslint/typescript-estree@6.21.0(typescript@4.9.5)': dependencies: @@ -6537,12 +6588,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.67.0(typescript@4.9.5)': + '@typescript-eslint/typescript-estree@8.69.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/project-service': 8.67.0(typescript@4.9.5) - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@4.9.5) - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/project-service': 8.69.0(typescript@4.9.5) + '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@4.9.5) + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/visitor-keys': 8.69.0 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.6 semver: 7.8.5 @@ -6552,12 +6603,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.67.0(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.69.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.67.0(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@5.9.3) - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/project-service': 8.69.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@5.9.3) + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/visitor-keys': 8.69.0 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.6 semver: 7.8.5 @@ -6567,74 +6618,74 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@6.21.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/utils@6.21.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@types/json-schema': 7.0.15 '@types/semver': 7.8.0 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.9.5) - eslint: 10.8.1 + eslint: 10.9.1 semver: 7.8.5 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/utils@6.21.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@types/json-schema': 7.0.15 '@types/semver': 7.8.0 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) - eslint: 10.8.1 + eslint: 10.9.1 semver: 7.8.5 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/utils@7.18.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@4.9.5) - eslint: 10.8.1 + eslint: 10.9.1 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/utils@7.18.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) - eslint: 10.8.1 + eslint: 10.9.1 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/utils@8.69.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@4.9.5) - eslint: 10.8.1 + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@4.9.5) + eslint: 10.9.1 typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/utils@8.69.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@5.9.3) - eslint: 10.8.1 + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) + '@typescript-eslint/scope-manager': 8.69.0 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) + eslint: 10.9.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -6649,9 +6700,9 @@ snapshots: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.67.0': + '@typescript-eslint/visitor-keys@8.69.0': dependencies: - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/types': 8.69.0 eslint-visitor-keys: 5.0.1 '@unrs/resolver-binding-android-arm-eabi@1.12.2': @@ -6764,7 +6815,7 @@ snapshots: ajv@8.20.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 4.1.2 + fast-uri: 4.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -6782,7 +6833,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.2.2: {} + ansi-regex@6.3.0: {} ansi-styles@2.2.1: {} @@ -6909,13 +6960,13 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 - axios-mock-adapter@2.1.0(axios@1.19.0(debug@4.4.3)): + axios-mock-adapter@2.1.0(axios@1.20.0(debug@4.4.3)): dependencies: - axios: 1.19.0(debug@4.4.3) + axios: 1.20.0(debug@4.4.3) fast-deep-equal: 3.1.3 is-buffer: 2.0.5 - axios@1.19.0(debug@4.4.3): + axios@1.20.0(debug@4.4.3): dependencies: follow-redirects: 1.16.0(debug@4.4.3) form-data: 4.0.6 @@ -6929,7 +6980,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.11.13: {} + baseline-browser-mapping@2.11.20: {} big-json@3.2.0: dependencies: @@ -6968,11 +7019,11 @@ snapshots: browserslist@4.28.8: dependencies: - baseline-browser-mapping: 2.11.13 - caniuse-lite: 1.0.30001809 - electron-to-chromium: 1.5.405 - node-releases: 2.0.53 - update-browserslist-db: 1.3.1(browserslist@4.28.8) + baseline-browser-mapping: 2.11.20 + caniuse-lite: 1.0.30001810 + electron-to-chromium: 1.5.420 + node-releases: 2.0.54 + update-browserslist-db: 1.3.2(browserslist@4.28.8) buffer-from@1.1.2: {} @@ -7039,7 +7090,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001809: {} + caniuse-lite@1.0.30001810: {} capital-case@1.0.4: dependencies: @@ -7414,7 +7465,9 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.405: {} + ejs@6.0.1: {} + + electron-to-chromium@1.5.420: {} elegant-spinner@1.0.1: {} @@ -7539,21 +7592,21 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-compat-utils@0.5.1(eslint@10.8.1): + eslint-compat-utils@0.5.1(eslint@10.9.1): dependencies: - eslint: 10.8.1 + eslint: 10.9.1 semver: 7.8.5 - eslint-config-oclif-typescript@3.1.14(eslint@10.8.1)(typescript@4.9.5): + eslint-config-oclif-typescript@3.1.14(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@4.9.5) - eslint-config-xo-space: 0.35.0(eslint@10.8.1) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) - eslint-plugin-mocha: 10.5.0(eslint@10.8.1) - eslint-plugin-n: 15.7.0(eslint@10.8.1) - eslint-plugin-perfectionist: 2.11.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@4.9.5) + eslint-config-xo-space: 0.35.0(eslint@10.9.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1) + eslint-plugin-mocha: 10.5.0(eslint@10.9.1) + eslint-plugin-n: 15.7.0(eslint@10.9.1) + eslint-plugin-perfectionist: 2.11.0(eslint@10.9.1)(typescript@4.9.5) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -7565,16 +7618,16 @@ snapshots: - typescript - vue-eslint-parser - eslint-config-oclif-typescript@3.1.14(eslint@10.8.1)(typescript@5.9.3): + eslint-config-oclif-typescript@3.1.14(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@5.9.3) - eslint-config-xo-space: 0.35.0(eslint@10.8.1) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) - eslint-plugin-mocha: 10.5.0(eslint@10.8.1) - eslint-plugin-n: 15.7.0(eslint@10.8.1) - eslint-plugin-perfectionist: 2.11.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@5.9.3) + eslint-config-xo-space: 0.35.0(eslint@10.9.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1) + eslint-plugin-mocha: 10.5.0(eslint@10.9.1) + eslint-plugin-n: 15.7.0(eslint@10.9.1) + eslint-plugin-perfectionist: 2.11.0(eslint@10.9.1)(typescript@5.9.3) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -7586,33 +7639,33 @@ snapshots: - typescript - vue-eslint-parser - eslint-config-oclif@5.2.2(eslint@10.8.1): + eslint-config-oclif@5.2.2(eslint@10.9.1): dependencies: - eslint-config-xo-space: 0.35.0(eslint@10.8.1) - eslint-plugin-mocha: 10.5.0(eslint@10.8.1) - eslint-plugin-n: 15.7.0(eslint@10.8.1) - eslint-plugin-unicorn: 48.0.1(eslint@10.8.1) + eslint-config-xo-space: 0.35.0(eslint@10.9.1) + eslint-plugin-mocha: 10.5.0(eslint@10.9.1) + eslint-plugin-n: 15.7.0(eslint@10.9.1) + eslint-plugin-unicorn: 48.0.1(eslint@10.9.1) transitivePeerDependencies: - eslint - eslint-config-oclif@6.0.179(eslint@10.8.1)(typescript@4.9.5): + eslint-config-oclif@6.0.179(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@eslint/compat': 1.4.1(eslint@10.8.1) - '@eslint/eslintrc': 3.3.6 + '@eslint/compat': 1.4.1(eslint@10.9.1) + '@eslint/eslintrc': 3.3.7 '@eslint/js': 9.39.5 - '@stylistic/eslint-plugin': 3.1.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - eslint-config-xo: 0.49.0(eslint@10.8.1) - eslint-config-xo-space: 0.35.0(eslint@10.8.1) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) - eslint-plugin-jsdoc: 50.8.0(eslint@10.8.1) - eslint-plugin-mocha: 10.5.0(eslint@10.8.1) - eslint-plugin-n: 17.24.0(eslint@10.8.1)(typescript@4.9.5) - eslint-plugin-perfectionist: 4.15.1(eslint@10.8.1)(typescript@4.9.5) - eslint-plugin-unicorn: 56.0.1(eslint@10.8.1) - typescript-eslint: 8.67.0(eslint@10.8.1)(typescript@4.9.5) + '@stylistic/eslint-plugin': 3.1.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + eslint-config-xo: 0.49.0(eslint@10.9.1) + eslint-config-xo-space: 0.35.0(eslint@10.9.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1) + eslint-plugin-jsdoc: 50.8.0(eslint@10.9.1) + eslint-plugin-mocha: 10.5.0(eslint@10.9.1) + eslint-plugin-n: 17.24.0(eslint@10.9.1)(typescript@4.9.5) + eslint-plugin-perfectionist: 4.15.1(eslint@10.9.1)(typescript@4.9.5) + eslint-plugin-unicorn: 56.0.1(eslint@10.9.1) + typescript-eslint: 8.69.0(eslint@10.9.1)(typescript@4.9.5) transitivePeerDependencies: - eslint - eslint-import-resolver-webpack @@ -7620,24 +7673,24 @@ snapshots: - supports-color - typescript - eslint-config-oclif@6.0.179(eslint@10.8.1)(typescript@5.9.3): + eslint-config-oclif@6.0.179(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@eslint/compat': 1.4.1(eslint@10.8.1) - '@eslint/eslintrc': 3.3.6 + '@eslint/compat': 1.4.1(eslint@10.9.1) + '@eslint/eslintrc': 3.3.7 '@eslint/js': 9.39.5 - '@stylistic/eslint-plugin': 3.1.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - eslint-config-xo: 0.49.0(eslint@10.8.1) - eslint-config-xo-space: 0.35.0(eslint@10.8.1) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) - eslint-plugin-jsdoc: 50.8.0(eslint@10.8.1) - eslint-plugin-mocha: 10.5.0(eslint@10.8.1) - eslint-plugin-n: 17.24.0(eslint@10.8.1)(typescript@5.9.3) - eslint-plugin-perfectionist: 4.15.1(eslint@10.8.1)(typescript@5.9.3) - eslint-plugin-unicorn: 56.0.1(eslint@10.8.1) - typescript-eslint: 8.67.0(eslint@10.8.1)(typescript@5.9.3) + '@stylistic/eslint-plugin': 3.1.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + eslint-config-xo: 0.49.0(eslint@10.9.1) + eslint-config-xo-space: 0.35.0(eslint@10.9.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1) + eslint-plugin-jsdoc: 50.8.0(eslint@10.9.1) + eslint-plugin-mocha: 10.5.0(eslint@10.9.1) + eslint-plugin-n: 17.24.0(eslint@10.9.1)(typescript@5.9.3) + eslint-plugin-perfectionist: 4.15.1(eslint@10.9.1)(typescript@5.9.3) + eslint-plugin-unicorn: 56.0.1(eslint@10.9.1) + typescript-eslint: 8.69.0(eslint@10.9.1)(typescript@5.9.3) transitivePeerDependencies: - eslint - eslint-import-resolver-webpack @@ -7645,23 +7698,23 @@ snapshots: - supports-color - typescript - eslint-config-xo-space@0.35.0(eslint@10.8.1): + eslint-config-xo-space@0.35.0(eslint@10.9.1): dependencies: - eslint: 10.8.1 - eslint-config-xo: 0.44.0(eslint@10.8.1) + eslint: 10.9.1 + eslint-config-xo: 0.44.0(eslint@10.9.1) - eslint-config-xo@0.44.0(eslint@10.8.1): + eslint-config-xo@0.44.0(eslint@10.9.1): dependencies: confusing-browser-globals: 1.0.11 - eslint: 10.8.1 + eslint: 10.9.1 - eslint-config-xo@0.49.0(eslint@10.8.1): + eslint-config-xo@0.49.0(eslint@10.9.1): dependencies: '@eslint/css': 0.10.0 '@eslint/json': 0.13.2 - '@stylistic/eslint-plugin': 5.10.0(eslint@10.8.1) + '@stylistic/eslint-plugin': 5.10.0(eslint@10.9.1) confusing-browser-globals: 1.0.11 - eslint: 10.8.1 + eslint: 10.9.1 globals: 16.5.0 eslint-import-resolver-node@0.3.10: @@ -7672,94 +7725,94 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 - get-tsconfig: 4.14.1 + eslint: 10.9.1 + get-tsconfig: 4.14.3 is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.17 unrs-resolver: 1.12.2 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.1): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@10.9.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 - get-tsconfig: 4.14.1 + eslint: 10.9.1 + get-tsconfig: 4.14.3 is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.17 unrs-resolver: 1.12.2 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1))(eslint@10.8.1): + eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-module-utils@2.14.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1))(eslint@10.8.1): + eslint-module-utils@2.14.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1) transitivePeerDependencies: - supports-color - eslint-plugin-es-x@7.8.0(eslint@10.8.1): + eslint-plugin-es-x@7.8.0(eslint@10.9.1): dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@eslint-community/regexpp': 4.12.2 - eslint: 10.8.1 - eslint-compat-utils: 0.5.1(eslint@10.8.1) + eslint: 10.9.1 + eslint-compat-utils: 0.5.1(eslint@10.9.1) - eslint-plugin-es@4.1.0(eslint@10.8.1): + eslint-plugin-es@4.1.0(eslint@10.9.1): dependencies: - eslint: 10.8.1 + eslint: 10.9.1 eslint-utils: 2.1.0 regexpp: 3.2.0 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -7768,9 +7821,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 10.8.1 + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -7782,13 +7835,13 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -7797,9 +7850,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 10.8.1 + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1))(eslint@10.8.1) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -7811,13 +7864,13 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -7826,9 +7879,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 10.8.1 + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -7840,13 +7893,13 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -7855,9 +7908,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 10.8.1 + eslint: 10.9.1 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1))(eslint@10.8.1))(eslint@10.8.1) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1))(eslint@10.9.1))(eslint@10.9.1) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -7869,20 +7922,20 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jsdoc@50.8.0(eslint@10.8.1): + eslint-plugin-jsdoc@50.8.0(eslint@10.9.1): dependencies: '@es-joy/jsdoccomment': 0.50.2 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3(supports-color@8.1.1) escape-string-regexp: 4.0.0 - eslint: 10.8.1 + eslint: 10.9.1 espree: 10.4.0 esquery: 1.7.0 parse-imports-exports: 0.2.4 @@ -7891,32 +7944,32 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-mocha@10.5.0(eslint@10.8.1): + eslint-plugin-mocha@10.5.0(eslint@10.9.1): dependencies: - eslint: 10.8.1 - eslint-utils: 3.0.0(eslint@10.8.1) + eslint: 10.9.1 + eslint-utils: 3.0.0(eslint@10.9.1) globals: 13.24.0 rambda: 7.5.0 - eslint-plugin-n@15.7.0(eslint@10.8.1): + eslint-plugin-n@15.7.0(eslint@10.9.1): dependencies: builtins: 5.1.0 - eslint: 10.8.1 - eslint-plugin-es: 4.1.0(eslint@10.8.1) - eslint-utils: 3.0.0(eslint@10.8.1) + eslint: 10.9.1 + eslint-plugin-es: 4.1.0(eslint@10.9.1) + eslint-utils: 3.0.0(eslint@10.9.1) ignore: 5.3.2 is-core-module: 2.16.2 minimatch: 3.1.5 resolve: 1.22.12 semver: 7.8.5 - eslint-plugin-n@17.24.0(eslint@10.8.1)(typescript@4.9.5): + eslint-plugin-n@17.24.0(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) enhanced-resolve: 5.24.5 - eslint: 10.8.1 - eslint-plugin-es-x: 7.8.0(eslint@10.8.1) - get-tsconfig: 4.14.1 + eslint: 10.9.1 + eslint-plugin-es-x: 7.8.0(eslint@10.9.1) + get-tsconfig: 4.14.3 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 @@ -7925,13 +7978,13 @@ snapshots: transitivePeerDependencies: - typescript - eslint-plugin-n@17.24.0(eslint@10.8.1)(typescript@5.9.3): + eslint-plugin-n@17.24.0(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) enhanced-resolve: 5.24.5 - eslint: 10.8.1 - eslint-plugin-es-x: 7.8.0(eslint@10.8.1) - get-tsconfig: 4.14.1 + eslint: 10.9.1 + eslint-plugin-es-x: 7.8.0(eslint@10.9.1) + get-tsconfig: 4.14.3 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 @@ -7940,53 +7993,53 @@ snapshots: transitivePeerDependencies: - typescript - eslint-plugin-perfectionist@2.11.0(eslint@10.8.1)(typescript@4.9.5): + eslint-plugin-perfectionist@2.11.0(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/utils': 7.18.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 minimatch: 9.0.9 natural-compare-lite: 1.4.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-perfectionist@2.11.0(eslint@10.8.1)(typescript@5.9.3): + eslint-plugin-perfectionist@2.11.0(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/utils': 7.18.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 minimatch: 9.0.9 natural-compare-lite: 1.4.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-perfectionist@4.15.1(eslint@10.8.1)(typescript@4.9.5): + eslint-plugin-perfectionist@4.15.1(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-perfectionist@4.15.1(eslint@10.8.1)(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-unicorn@48.0.1(eslint@10.8.1): + eslint-plugin-unicorn@48.0.1(eslint@10.9.1): dependencies: '@babel/helper-validator-identifier': 7.29.7 - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) ci-info: 3.9.0 clean-regexp: 1.0.0 - eslint: 10.8.1 + eslint: 10.9.1 esquery: 1.7.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -7999,14 +8052,14 @@ snapshots: semver: 7.8.5 strip-indent: 3.0.0 - eslint-plugin-unicorn@56.0.1(eslint@10.8.1): + eslint-plugin-unicorn@56.0.1(eslint@10.9.1): dependencies: '@babel/helper-validator-identifier': 7.29.7 - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) ci-info: 4.4.0 clean-regexp: 1.0.0 core-js-compat: 3.50.0 - eslint: 10.8.1 + eslint: 10.9.1 esquery: 1.7.0 globals: 15.15.0 indent-string: 4.0.0 @@ -8030,9 +8083,9 @@ snapshots: dependencies: eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@10.8.1): + eslint-utils@3.0.0(eslint@10.9.1): dependencies: - eslint: 10.8.1 + eslint: 10.9.1 eslint-visitor-keys: 2.1.0 eslint-visitor-keys@1.3.0: {} @@ -8045,9 +8098,9 @@ snapshots: eslint-visitor-keys@5.0.1: {} - eslint@10.8.1: + eslint@10.9.1: dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.23.5 '@eslint/config-helpers': 0.7.0 @@ -8162,17 +8215,17 @@ snapshots: dependencies: fastest-levenshtein: 1.0.16 - fast-uri@4.1.2: {} + fast-uri@4.1.3: {} fastest-levenshtein@1.0.16: {} - fastq@1.20.1: + fastq@1.20.3: dependencies: reusify: 1.1.0 - fdir@6.5.0(picomatch@4.0.5): + fdir@6.5.0(picomatch@4.0.7): optionalDependencies: - picomatch: 4.0.5 + picomatch: 4.0.7 fecha@4.2.3: {} @@ -8348,7 +8401,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 - get-tsconfig@4.14.1: + get-tsconfig@4.14.3: dependencies: resolve-pkg-maps: 1.0.0 @@ -8535,7 +8588,7 @@ snapshots: ignore@5.3.2: {} - ignore@7.0.6: {} + ignore@7.0.8: {} import-fresh@3.3.1: dependencies: @@ -8674,6 +8727,8 @@ snapshots: is-docker@2.2.1: {} + is-docker@3.0.0: {} + is-document.all@1.0.0: dependencies: call-bound: 1.0.4 @@ -8704,6 +8759,10 @@ snapshots: dependencies: is-extglob: 2.1.1 + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + is-interactive@1.0.0: {} is-interactive@2.0.0: {} @@ -8793,6 +8852,10 @@ snapshots: dependencies: is-docker: 2.2.1 + is-wsl@3.1.1: + dependencies: + is-inside-container: 1.0.0 + isarray@1.0.0: {} isarray@2.0.5: {} @@ -8825,7 +8888,7 @@ snapshots: istanbul-lib-coverage: 3.2.2 p-map: 3.0.0 rimraf: 3.0.2 - uuid: 14.0.1 + uuid: 14.0.2 istanbul-lib-report@3.0.1: dependencies: @@ -8860,7 +8923,7 @@ snapshots: js-tokens@4.0.0: {} - js-yaml@5.2.3: + js-yaml@5.4.1: dependencies: argparse: 2.0.1 @@ -9137,7 +9200,7 @@ snapshots: find-up: 5.0.0 glob: 8.1.0 he: 1.2.0 - js-yaml: 5.2.3 + js-yaml: 5.4.1 log-symbols: 4.1.0 minimatch: 5.1.9 ms: 2.1.3 @@ -9195,7 +9258,7 @@ snapshots: dependencies: process-on-spawn: 1.1.0 - node-releases@2.0.53: {} + node-releases@2.0.54: {} normalize-package-data@2.5.0: dependencies: @@ -9229,7 +9292,7 @@ snapshots: dependencies: path-key: 4.0.0 - npm@11.19.0: {} + npm@11.19.1: {} number-is-nan@1.0.1: {} @@ -9314,17 +9377,17 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.1.2 - oclif@4.23.30(@types/node@14.18.63): + oclif@4.24.0(@types/node@14.18.63): dependencies: - '@aws-sdk/client-cloudfront': 3.1108.0 - '@aws-sdk/client-s3': 3.1108.0 + '@aws-sdk/client-cloudfront': 3.1124.0 + '@aws-sdk/client-s3': 3.1124.0 '@inquirer/confirm': 3.2.0 '@inquirer/input': 2.3.0 '@inquirer/select': 2.5.0 - '@oclif/core': 4.13.3 - '@oclif/plugin-help': 6.2.58 - '@oclif/plugin-not-found': 3.2.93(@types/node@14.18.63) - '@oclif/plugin-warn-if-update-available': 3.1.73 + '@oclif/core': 4.14.0 + '@oclif/plugin-help': 6.3.0 + '@oclif/plugin-not-found': 3.3.0(@types/node@14.18.63) + '@oclif/plugin-warn-if-update-available': 3.2.0 ansis: 3.17.0 async-retry: 1.3.3 change-case: 4.1.2 @@ -9343,17 +9406,17 @@ snapshots: - '@types/node' - supports-color - oclif@4.23.30(@types/node@18.19.130): + oclif@4.24.0(@types/node@18.19.130): dependencies: - '@aws-sdk/client-cloudfront': 3.1108.0 - '@aws-sdk/client-s3': 3.1108.0 + '@aws-sdk/client-cloudfront': 3.1124.0 + '@aws-sdk/client-s3': 3.1124.0 '@inquirer/confirm': 3.2.0 '@inquirer/input': 2.3.0 '@inquirer/select': 2.5.0 - '@oclif/core': 4.13.3 - '@oclif/plugin-help': 6.2.58 - '@oclif/plugin-not-found': 3.2.93(@types/node@18.19.130) - '@oclif/plugin-warn-if-update-available': 3.1.73 + '@oclif/core': 4.14.0 + '@oclif/plugin-help': 6.3.0 + '@oclif/plugin-not-found': 3.3.0(@types/node@18.19.130) + '@oclif/plugin-warn-if-update-available': 3.2.0 ansis: 3.17.0 async-retry: 1.3.3 change-case: 4.1.2 @@ -9485,7 +9548,7 @@ snapshots: package-json-from-dist@1.0.1: {} - papaparse@5.5.4: {} + papaparse@5.7.0: {} param-case@3.0.4: dependencies: @@ -9554,7 +9617,7 @@ snapshots: picomatch@2.3.2: {} - picomatch@4.0.5: {} + picomatch@4.0.7: {} pkg-dir@4.2.0: dependencies: @@ -9570,6 +9633,8 @@ snapshots: possible-typed-array-names@1.1.0: {} + powershell-utils@0.1.0: {} + prelude-ls@1.2.1: {} proc-log@4.2.0: {} @@ -9608,6 +9673,11 @@ snapshots: es-define-property: 1.0.1 side-channel: 1.1.1 + qs@6.16.0: + dependencies: + es-define-property: 1.0.1 + side-channel: 1.1.1 + queue-microtask@1.2.3: {} quick-lru@5.1.1: {} @@ -10090,7 +10160,7 @@ snapshots: strip-ansi@7.2.0: dependencies: - ansi-regex: 6.2.2 + ansi-regex: 6.3.0 strip-bom@3.0.0: {} @@ -10163,8 +10233,8 @@ snapshots: tinyglobby@0.2.17: dependencies: - fdir: 6.5.0(picomatch@4.0.5) - picomatch: 4.0.5 + fdir: 6.5.0(picomatch@4.0.7) + picomatch: 4.0.7 tmp@0.2.7: {} @@ -10198,18 +10268,18 @@ snapshots: ts-declaration-location@1.0.7(typescript@4.9.5): dependencies: - picomatch: 4.0.5 + picomatch: 4.0.7 typescript: 4.9.5 ts-declaration-location@1.0.7(typescript@5.9.3): dependencies: - picomatch: 4.0.5 + picomatch: 4.0.7 typescript: 5.9.3 ts-node@10.9.2(@types/node@14.18.63)(typescript@4.9.5): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.12 + '@tsconfig/node10': 1.0.13 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 @@ -10227,7 +10297,7 @@ snapshots: ts-node@10.9.2(@types/node@18.19.130)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.12 + '@tsconfig/node10': 1.0.13 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 @@ -10342,24 +10412,24 @@ snapshots: typedarray@0.0.6: {} - typescript-eslint@8.67.0(eslint@10.8.1)(typescript@4.9.5): + typescript-eslint@8.69.0(eslint@10.9.1)(typescript@4.9.5): dependencies: - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/typescript-estree': 8.67.0(typescript@4.9.5) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@4.9.5) - eslint: 10.8.1 + '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.69.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@4.9.5) + eslint: 10.9.1 typescript: 4.9.5 transitivePeerDependencies: - supports-color - typescript-eslint@8.67.0(eslint@10.8.1)(typescript@5.9.3): + typescript-eslint@8.69.0(eslint@10.9.1)(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.67.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.69.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -10414,7 +10484,7 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.12.2 '@unrs/resolver-binding-win32-x64-msvc': 1.12.2 - update-browserslist-db@1.3.1(browserslist@4.28.8): + update-browserslist-db@1.3.2(browserslist@4.28.8): dependencies: browserslist: 4.28.8 escalade: 3.2.0 @@ -10442,7 +10512,7 @@ snapshots: is-typed-array: 1.1.15 which-typed-array: 1.1.22 - uuid@14.0.1: {} + uuid@14.0.2: {} v8-compile-cache-lib@3.0.1: {} @@ -10579,6 +10649,11 @@ snapshots: signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 + wsl-utils@0.4.0: + dependencies: + is-wsl: 3.1.1 + powershell-utils: 0.1.0 + xdg-basedir@4.0.0: {} xtend@4.0.2: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 52b71579df..460c169605 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -2,8 +2,8 @@ packages: - 'packages/*' overrides: tmp: 0.2.7 - uuid: 14.0.1 + uuid: 14.0.2 lodash: 4.18.1 brace-expansion: 5.0.9 - js-yaml: 5.2.3 - fast-uri: 4.1.2 + js-yaml: 5.4.1 + fast-uri: 4.1.3