diff --git a/.talismanrc b/.talismanrc index c26457492..2add3355b 100644 --- a/.talismanrc +++ b/.talismanrc @@ -1,17 +1,18 @@ fileignoreconfig: - -- filename: pnpm-lock.yaml - checksum: 98236e2588d5cffcbdda3464179d91e9540fd8ddb4d4fb5251cf0f7379876f42 - filename: packages/contentstack-bulk-operations/src/utils/backup-dir-asset-fetcher.ts checksum: fbf1ef882bf4ea8f06a7a28b9248a07e01f5a5d2d4da98dbb9ee52bc16ce318a - filename: packages/contentstack-bulk-operations/test/unit/utils/backup-dir-asset-fetcher.test.ts checksum: b905524c952aff0f089fa5347e0db18479b75a438cd9ae77e2dfe1cb203d7e59 -- filename: packages/contentstack-import/src/import/modules/assets.ts - checksum: 014f612c3e8db21c891da0c17a1a3b4cd340c026c58034791d86cd5f73aa9f90 +- filename: pnpm-lock.yaml + checksum: 65d0adc160e75d17f5c8de732d554d352fefdc30751509b9ec4c8b2d250e3e2e - filename: packages/contentstack-bulk-operations/test/unit/utils/revert-retry-handler.test.ts checksum: 142e7b67a06bc13b6b4191b17f2ea8ae31a3bce20086ea35a92f3e3671eb603d -- filename: packages/contentstack-bulk-operations/src/commands/cm/stacks/bulk-assets.ts - checksum: 9392511b337c361b86c36eb2431d8fea9129a61f6b7d70dcb4a633fea339ca61 - filename: packages/contentstack-bulk-operations/src/utils/batch-helper.ts checksum: ddcd8ef7c56d1122df88075883a2768a28813147e8fdef5b8e72a1ec118c045a - version: "" +- filename: packages/contentstack-import/src/import/modules/assets.ts + checksum: 014f612c3e8db21c891da0c17a1a3b4cd340c026c58034791d86cd5f73aa9f90 +- filename: packages/contentstack-cli-tsgen/src/lib/helper.ts + checksum: cc2f88294ca026c29ca44ee7f9994ebc64e56d9a7a015c64070aaf271f1c3ba2 +- filename: packages/contentstack-bulk-operations/src/commands/cm/stacks/bulk-assets.ts + checksum: 9392511b337c361b86c36eb2431d8fea9129a61f6b7d70dcb4a633fea339ca61 +version: "" \ No newline at end of file diff --git a/packages/contentstack-bootstrap/messages/index.json b/packages/contentstack-bootstrap/messages/index.json index 3a56ee430..b4370e9e4 100644 --- a/packages/contentstack-bootstrap/messages/index.json +++ b/packages/contentstack-bootstrap/messages/index.json @@ -4,6 +4,8 @@ "CLI_BOOTSTRAP_GITHUB_ACCESS_NOT_FOUND": "No Github access token found", "CLI_BOOTSTRAP_START_CLONE_APP": "Cloning the selected app", "CLI_BOOTSTRAP_REPO_NOT_FOUND": "Unable to find a repo for \"%s\"", + "CLI_BOOTSTRAP_APP_UNAVAILABLE": "Unable to download \"%s\": the repository or branch \"cli-use\" was not found. Ensure both exist on GitHub.", + "CLI_BOOTSTRAP_GITHUB_SERVER_ERROR": "Failed to download \"%s\": GitHub returned HTTP %s. Please try again later.", "CLI_BOOTSTRAP_NO_API_KEY_FOUND": "No API key generated for the stack", "CLI_BOOTSTRAP_STACK_CREATION_FAILED": "Unable to create stack for content \"%s\"", "CLI_BOOTSTRAP_APP_SELECTION_ENQUIRY": "Select an App", diff --git a/packages/contentstack-bootstrap/package.json b/packages/contentstack-bootstrap/package.json index 3cf2ae16d..d12951123 100644 --- a/packages/contentstack-bootstrap/package.json +++ b/packages/contentstack-bootstrap/package.json @@ -37,6 +37,7 @@ "mocha": "10.8.2", "nyc": "^15.1.0", "oclif": "^4.23.27", + "sinon": "^21.1.2", "tmp": "^0.2.7", "ts-node": "^8.10.2", "typescript": "^5.9.3" diff --git a/packages/contentstack-bootstrap/src/bootstrap/github/client.ts b/packages/contentstack-bootstrap/src/bootstrap/github/client.ts index bf300bc04..5d1d489e3 100644 --- a/packages/contentstack-bootstrap/src/bootstrap/github/client.ts +++ b/packages/contentstack-bootstrap/src/bootstrap/github/client.ts @@ -74,13 +74,24 @@ export default class GitHubClient { } const response = await HttpClient.create().options(options).get(url); + + if (response.status < 200 || response.status >= 300) { + const message = response.status === 404 + ? messageHandler.parse('CLI_BOOTSTRAP_REPO_NOT_FOUND', `${this.repo.user}/${this.repo.name}`) + : messageHandler.parse('CLI_BOOTSTRAP_GITHUB_SERVER_ERROR', `${this.repo.user}/${this.repo.name}`, response.status); + throw new GithubError(message, response.status); + } + return response.data as Stream; } async extract(destination: string, stream: Stream): Promise { return new Promise((resolve, reject) => { + const unzip = zlib.createUnzip(); + stream.on('error', reject); + unzip.on('error', reject); stream - .pipe(zlib.createUnzip()) + .pipe(unzip) .pipe( tar.extract({ cwd: destination, diff --git a/packages/contentstack-bootstrap/src/bootstrap/index.ts b/packages/contentstack-bootstrap/src/bootstrap/index.ts index c68bcdcaa..90f056bbd 100644 --- a/packages/contentstack-bootstrap/src/bootstrap/index.ts +++ b/packages/contentstack-bootstrap/src/bootstrap/index.ts @@ -71,15 +71,13 @@ export default class Bootstrap { try { await this.ghClient.getLatest(this.cloneDirectory); + cliux.loader(); } catch (error) { - if (error instanceof GithubError) { - if (error.status === 404) { - cliux.error(messageHandler.parse('CLI_BOOTSTRAP_REPO_NOT_FOUND', this.appConfig.source)); - } + cliux.loader(); + if (error instanceof GithubError && error.status === 404) { + throw new Error(messageHandler.parse('CLI_BOOTSTRAP_APP_UNAVAILABLE', this.appConfig.source)); } throw error; - } finally { - cliux.loader(); } // seed plugin start diff --git a/packages/contentstack-bootstrap/test/github.test.js b/packages/contentstack-bootstrap/test/github.test.js index 8af88949a..df9774d6a 100644 --- a/packages/contentstack-bootstrap/test/github.test.js +++ b/packages/contentstack-bootstrap/test/github.test.js @@ -1,5 +1,9 @@ const { expect } = require('chai'); +const sinon = require('sinon'); +const { Readable } = require('stream'); +const { HttpClient } = require('@contentstack/cli-utilities'); const GitHubClient = require('../lib/bootstrap/github/client').default; +const GithubError = require('../lib/bootstrap/github/github-error').default; describe('Github Client', function () { it('Parse github url', () => { @@ -16,4 +20,124 @@ describe('Github Client', function () { 'https://api.github.com/repos/contentstack/contentstack-nextjs-react-universal-demo/tarball/cli-use', ); }); + + describe('streamRelease', function () { + let sandbox; + + beforeEach(() => { + sandbox = sinon.createSandbox(); + }); + + afterEach(() => { + sandbox.restore(); + }); + + it('should throw GithubError with status 404 when the branch does not exist', async () => { + const notFoundStream = new Readable({ read() {} }); + notFoundStream.push(Buffer.from('404: Not Found')); + notFoundStream.push(null); + + const httpStub = { get: sandbox.stub().resolves({ status: 404, data: notFoundStream }), options: sandbox.stub().returnsThis() }; + sandbox.stub(HttpClient, 'create').returns(httpStub); + + const client = new GitHubClient(GitHubClient.parsePath('contentstack/kickstart-next')); + + try { + await client.streamRelease(client.gitTarBallUrl); + throw new Error('Expected GithubError to be thrown'); + } catch (err) { + expect(err).to.be.instanceOf(GithubError); + expect(err.status).to.equal(404); + } + }); + + it('should throw GithubError with status 500 on server error', async () => { + const errStream = new Readable({ read() {} }); + errStream.push(Buffer.from('Internal Server Error')); + errStream.push(null); + + const httpStub = { get: sandbox.stub().resolves({ status: 500, data: errStream }), options: sandbox.stub().returnsThis() }; + sandbox.stub(HttpClient, 'create').returns(httpStub); + + const client = new GitHubClient(GitHubClient.parsePath('contentstack/kickstart-next')); + + try { + await client.streamRelease(client.gitTarBallUrl); + throw new Error('Expected GithubError to be thrown'); + } catch (err) { + expect(err).to.be.instanceOf(GithubError); + expect(err.status).to.equal(500); + } + }); + + it('should throw GithubError with status 302 on unexpected redirect', async () => { + const redirectStream = new Readable({ read() {} }); + redirectStream.push(null); + + const httpStub = { get: sandbox.stub().resolves({ status: 302, data: redirectStream }), options: sandbox.stub().returnsThis() }; + sandbox.stub(HttpClient, 'create').returns(httpStub); + + const client = new GitHubClient(GitHubClient.parsePath('contentstack/kickstart-next')); + + try { + await client.streamRelease(client.gitTarBallUrl); + throw new Error('Expected GithubError to be thrown'); + } catch (err) { + expect(err).to.be.instanceOf(GithubError); + expect(err.status).to.equal(302); + } + }); + + it('should return the response stream when status is 200', async () => { + const mockStream = new Readable({ read() {} }); + const httpStub = { get: sandbox.stub().resolves({ status: 200, data: mockStream }), options: sandbox.stub().returnsThis() }; + sandbox.stub(HttpClient, 'create').returns(httpStub); + + const client = new GitHubClient(GitHubClient.parsePath('contentstack/kickstart-next')); + const result = await client.streamRelease(client.gitTarBallUrl); + + expect(result).to.equal(mockStream); + }); + + it('should pass Authorization header for private repos', async () => { + const mockStream = new Readable({ read() {} }); + const httpStub = { get: sandbox.stub().resolves({ status: 200, data: mockStream }), options: sandbox.stub().returnsThis() }; + sandbox.stub(HttpClient, 'create').returns(httpStub); + + const client = new GitHubClient(GitHubClient.parsePath('contentstack/private-repo'), true, 'my-token'); + await client.streamRelease(client.gitTarBallUrl); + + const callOptions = httpStub.options.firstCall.args[0]; + expect(callOptions.headers).to.deep.equal({ Authorization: 'token my-token' }); + }); + + it('should throw GithubError immediately for private repos with no access token', async () => { + const client = new GitHubClient(GitHubClient.parsePath('contentstack/private-repo'), true, undefined); + + try { + await client.streamRelease(client.gitTarBallUrl); + throw new Error('Expected GithubError to be thrown'); + } catch (err) { + expect(err).to.be.instanceOf(GithubError); + expect(err.status).to.equal(1); + } + }); + }); + + describe('extract', function () { + it('should reject (not crash the process) when the stream contains invalid gzip data', async () => { + const client = new GitHubClient(GitHubClient.parsePath('contentstack/kickstart-next')); + + const badStream = new Readable({ read() {} }); + badStream.push(Buffer.from('404: Not Found')); + badStream.push(null); + + try { + await client.extract('/tmp', badStream); + throw new Error('Expected extraction error to be thrown'); + } catch (err) { + expect(err.code).to.equal('Z_DATA_ERROR'); + } + }); + }); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bf474a9c5..f6287f2cf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -60,7 +60,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/adm-zip': specifier: ^0.5.8 version: 0.5.8 @@ -84,13 +84,13 @@ importers: version: 0.2.6 '@typescript-eslint/eslint-plugin': specifier: ^8.58.2 - version: 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) + version: 8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) '@typescript-eslint/parser': specifier: ^8.58.2 - version: 8.67.0(eslint@10.8.1)(typescript@5.9.3) + version: 8.68.0(eslint@10.9.1)(typescript@5.9.3) axios: specifier: ^1.18.1 - version: 1.19.0(debug@4.4.3) + version: 1.20.0(debug@4.4.3) chai: specifier: ^4.5.0 version: 4.5.0 @@ -99,13 +99,13 @@ importers: version: 16.6.1 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 @@ -114,7 +114,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) shx: specifier: ^0.4.0 version: 0.4.0 @@ -157,10 +157,10 @@ 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) mocha: specifier: ^10.8.2 version: 10.8.2 @@ -169,7 +169,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) sinon: specifier: ^17.0.2 version: 17.0.2 @@ -193,7 +193,7 @@ importers: version: 2.0.0(@types/node@20.19.43) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -212,7 +212,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 @@ -230,13 +230,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.0 version: 2.0.42 @@ -248,7 +248,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) shx: specifier: ^0.4.0 version: 0.4.0 @@ -278,7 +278,7 @@ importers: version: 2.0.0(@types/node@18.19.130) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 inquirer: specifier: 12.11.1 version: 12.11.1(@types/node@18.19.130) @@ -291,7 +291,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/inquirer': specifier: ^9.0.10 version: 9.0.10 @@ -309,7 +309,7 @@ importers: version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 mocha: specifier: 10.8.2 version: 10.8.2 @@ -318,7 +318,10 @@ 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) + sinon: + specifier: ^21.1.2 + version: 21.1.2 tmp: specifier: 0.2.7 version: 0.2.7 @@ -339,7 +342,7 @@ importers: version: 2.0.0(@types/node@22.20.1) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -361,10 +364,10 @@ importers: version: 9.0.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) mocha: specifier: 10.8.2 version: 10.8.2 @@ -373,7 +376,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@22.20.1) + version: 4.24.0(@types/node@22.20.1) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -428,10 +431,10 @@ importers: version: 21.0.1 '@typescript-eslint/eslint-plugin': specifier: ^8.59.2 - version: 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3) + version: 8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3) '@typescript-eslint/parser': specifier: ^8.59.2 - version: 8.67.0(eslint@10.8.1)(typescript@6.0.3) + version: 8.68.0(eslint@10.9.1)(typescript@6.0.3) chai: specifier: ^6.2.2 version: 6.2.2 @@ -443,19 +446,19 @@ importers: version: 17.4.2 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@6.0.3) + version: 6.0.179(eslint@10.9.1)(typescript@6.0.3) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.1)(typescript@6.0.3) + version: 3.1.14(eslint@10.9.1)(typescript@6.0.3) eslint-config-prettier: specifier: ^10.1.8 - version: 10.1.8(eslint@10.8.1) + version: 10.1.8(eslint@10.9.1) eslint-plugin-prettier: specifier: ^5.5.6 - version: 5.5.6(eslint-config-prettier@10.1.8(eslint@10.8.1))(eslint@10.8.1)(prettier@3.9.6) + version: 5.5.6(eslint-config-prettier@10.1.8(eslint@10.9.1))(eslint@10.9.1)(prettier@3.9.6) husky: specifier: ^9.1.7 version: 9.1.7 @@ -470,7 +473,7 @@ importers: version: 18.0.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) prettier: specifier: ^3.9.4 version: 3.9.6 @@ -519,10 +522,10 @@ importers: devDependencies: '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@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 @@ -549,13 +552,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) globby: specifier: ^11.1.0 version: 11.1.0 @@ -570,7 +573,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) proxyquire: specifier: ^2.1.3 version: 2.1.3 @@ -594,14 +597,14 @@ importers: version: 2.0.0(@types/node@22.20.1) '@contentstack/types-generator': specifier: ^3.10.2 - version: 3.10.2(graphql@16.14.2) + version: 3.10.4(graphql@16.14.2) devDependencies: '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@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/jest': specifier: ^29.5.14 version: 29.5.14 @@ -610,28 +613,28 @@ importers: version: 22.20.1 '@typescript-eslint/eslint-plugin': specifier: ^8.59.3 - version: 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) + version: 8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) '@typescript-eslint/parser': specifier: ^8.59.3 - version: 8.67.0(eslint@10.8.1)(typescript@5.9.3) + version: 8.68.0(eslint@10.9.1)(typescript@5.9.3) dotenv: specifier: ^16.6.1 version: 16.6.1 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) jest: specifier: ^29.7.0 version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.9.3)) oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@22.20.1) + version: 4.24.0(@types/node@22.20.1) ts-jest: specifier: ^29.4.9 version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.9.3)))(typescript@5.9.3) @@ -658,7 +661,7 @@ importers: version: 2.0.0(@types/node@18.19.130) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -683,7 +686,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 @@ -698,16 +701,16 @@ importers: version: 21.0.1 '@typescript-eslint/eslint-plugin': specifier: ^5.62.0 - version: 5.62.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3) + version: 5.62.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) chai: specifier: ^4.5.0 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) mocha: specifier: ^10.8.2 version: 10.8.2 @@ -716,7 +719,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) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -743,7 +746,7 @@ importers: version: 3.0.5 axios: specifier: ^1.18.1 - version: 1.19.0(debug@4.4.3) + version: 1.20.0(debug@4.4.3) diff2html: specifier: ^3.4.56 version: 3.4.56 @@ -771,7 +774,7 @@ importers: devDependencies: '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@types/diff2html': specifier: ^3.0.3 version: 3.0.3 @@ -789,19 +792,19 @@ importers: version: 0.2.6 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) jest: specifier: ^29.7.0 version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.9.3)) oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@22.20.1) + version: 4.24.0(@types/node@22.20.1) ts-jest: specifier: ^29.4.10 version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.9.3)))(typescript@5.9.3) @@ -828,7 +831,7 @@ importers: version: link:../contentstack-variants '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 async: specifier: ^3.2.6 version: 3.2.6 @@ -868,10 +871,10 @@ importers: version: 2.0.0(@types/node@22.20.1) '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@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/big-json': specifier: ^3.2.5 version: 3.2.5 @@ -901,7 +904,7 @@ importers: version: 9.0.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 mocha: specifier: 10.8.2 version: 10.8.2 @@ -910,7 +913,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@22.20.1) + version: 4.24.0(@types/node@22.20.1) sinon: specifier: ^17.0.1 version: 17.0.2 @@ -937,14 +940,14 @@ importers: version: 7.10.1(@types/node@20.19.43) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 fast-csv: specifier: ^4.3.6 version: 4.3.6 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 @@ -962,13 +965,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 @@ -977,7 +980,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -1004,10 +1007,10 @@ importers: version: 1.5.4(debug@4.4.3) '@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) + version: 1.20.0(debug@4.4.3) chalk: specifier: ^4.1.2 version: 4.1.2 @@ -1056,16 +1059,16 @@ importers: version: 10.0.0 '@typescript-eslint/eslint-plugin': specifier: ^6.19.0 - version: 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) + version: 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': specifier: ^6.19.0 - version: 6.21.0(eslint@10.8.1)(typescript@5.9.3) + version: 6.21.0(eslint@10.9.1)(typescript@5.9.3) chai: specifier: ^4.5.0 version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 mocha: specifier: ^10.8.2 version: 10.8.2 @@ -1074,7 +1077,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -1104,7 +1107,7 @@ importers: version: link:../contentstack-variants '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 big-json: specifier: ^3.2.0 version: 3.2.0 @@ -1141,7 +1144,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/big-json': specifier: ^3.2.5 version: 3.2.5 @@ -1162,13 +1165,13 @@ importers: version: 14.18.63 '@typescript-eslint/eslint-plugin': specifier: ^5.62.0 - version: 5.62.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5))(eslint@10.8.1)(typescript@4.9.5) + version: 5.62.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) 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) fancy-test: specifier: ^2.0.0 version: 2.0.42 @@ -1180,7 +1183,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) ts-node: specifier: ^10.9.2 version: 10.9.2(@types/node@14.18.63)(typescript@4.9.5) @@ -1201,7 +1204,7 @@ importers: version: 2.0.0(@types/node@14.18.63)(debug@4.4.3) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 big-json: specifier: ^3.2.0 version: 3.2.0 @@ -1256,13 +1259,13 @@ importers: version: 9.0.8 '@typescript-eslint/eslint-plugin': specifier: ^5.62.0 - version: 5.62.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@5.9.3))(eslint@10.8.1)(typescript@5.9.3) + version: 5.62.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) chai: specifier: ^4.5.0 version: 4.5.0 eslint: specifier: ^10.6.0 - version: 10.8.1 + version: 10.9.1 mocha: specifier: ^10.8.2 version: 10.8.2 @@ -1271,7 +1274,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) rewire: specifier: ^9.0.1 version: 9.0.1 @@ -1298,10 +1301,10 @@ importers: version: 2.1.0 '@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 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -1323,16 +1326,16 @@ 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) chai: specifier: ^4.5.0 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@6.0.3) + version: 6.0.179(eslint@10.9.1)(typescript@6.0.3) fancy-test: specifier: ^2.0.0 version: 2.0.42 @@ -1350,7 +1353,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@22.20.1) + version: 4.24.0(@types/node@22.20.1) querystring: specifier: ^0.2.1 version: 0.2.1 @@ -1368,7 +1371,7 @@ importers: version: 2.0.0(@types/node@14.18.63)(debug@4.4.3) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 async: specifier: ^3.2.6 version: 3.2.6 @@ -1396,7 +1399,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/mocha': specifier: ^8.2.3 version: 8.2.3 @@ -1408,10 +1411,10 @@ 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) jsdoc-to-markdown: specifier: ^8.0.3 version: 8.0.3 @@ -1426,7 +1429,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 @@ -1459,7 +1462,7 @@ importers: version: link:../contentstack-variants '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 async: specifier: ^3.2.6 version: 3.2.6 @@ -1493,10 +1496,10 @@ importers: devDependencies: '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@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/big-json': specifier: ^3.2.5 version: 3.2.5 @@ -1529,10 +1532,10 @@ importers: version: 9.0.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) husky: specifier: ^9.1.7 version: 9.1.7 @@ -1544,7 +1547,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@20.19.43) + version: 4.24.0(@types/node@20.19.43) sinon: specifier: ^17.0.2 version: 17.0.2 @@ -1584,7 +1587,7 @@ importers: version: 7.29.7(@babel/core@7.29.7) '@oclif/plugin-help': specifier: ^6.2.53 - version: 6.2.58 + version: 6.3.0 '@types/inquirer': specifier: ^9.0.10 version: 9.0.10 @@ -1605,19 +1608,19 @@ importers: version: 0.2.6 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) jest: specifier: ^29.7.0 version: 29.7.0(@types/node@18.19.130)(ts-node@8.10.2(typescript@5.9.3)) oclif: specifier: ^4.23.27 - version: 4.23.30(@types/node@18.19.130) + version: 4.24.0(@types/node@18.19.130) ts-jest: specifier: ^29.4.6 version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest-util@29.7.0)(jest@29.7.0(@types/node@18.19.130)(ts-node@8.10.2(typescript@5.9.3)))(typescript@5.9.3) @@ -1635,7 +1638,7 @@ importers: version: 2.0.0(@types/node@20.19.43) '@oclif/core': specifier: ^4.11.14 - version: 4.13.3 + version: 4.14.0 lodash: specifier: 4.18.1 version: 4.18.1 @@ -1648,7 +1651,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/node': specifier: ^20.19.39 version: 20.19.43 @@ -1691,76 +1694,76 @@ packages: '@asamuzakjp/dom-selector@2.0.2': resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==} - '@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.1119.0': + resolution: {integrity: sha512-SnNXK1b5zBuF+TZzOcwV3YpC52HqAsVPUCMR8Gg1FBUyPcc0A9dC8988CePnnxuHdZn0SCjzy2waHEn2gyScdQ==} 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.1119.0': + resolution: {integrity: sha512-8+UH1uBWwjbRu0ugTBhJ/cu3rL/vzf1tm9/3+xZGf1uybIO3HTF2xLJJaTKkRPvzxz8/n/w+YrwoHGZ2Q/a2Zg==} 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.81': + resolution: {integrity: sha512-Rml+WitoFvXmv6JZ18U/xGdGDGGvB/mOin0ya0lTnTrdC0Z1lrVxTYh7iNklZBcvcRMrs4DoEf6xy1KWyrLQQw==} 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': @@ -2364,8 +2367,8 @@ packages: resolution: {integrity: sha512-aThNQNywgSUcACCc1gC8Ab8QVshrYgA25w2ZeoNHx2t1TTPoQaWHp8KpVUe/VVGmwoaIdMo1sBxcJWos09+Kng==} engines: {node: '>=22.0.0'} - '@contentstack/cli-command@1.8.6': - resolution: {integrity: sha512-GlkxqptxgzHPlpyS0yOKWTNDGNom4UpSlwqZgkWe5tWZJLqmml52u6GgzAvB6byDuzdwbaUzIO8+uwnfYuPmkQ==} + '@contentstack/cli-command@1.8.7': + resolution: {integrity: sha512-j5DvrZG8nPFsaTBceoTogz7QzIifySTmgw28SjmcMcP/5qJphxXiDUSO9yGH0VXxolqpR17XL6I0RznBjsd6ZA==} engines: {node: '>=22.0.0'} '@contentstack/cli-command@2.0.0': @@ -2381,8 +2384,8 @@ packages: engines: {node: '>=22.0.0'} hasBin: true - '@contentstack/cli-utilities@1.19.1': - resolution: {integrity: sha512-gf7nWljHzsEIV+sOZra4pY3M5wojad2Iy3gPDFKl/F2VeH6GynGERVyz7hKjQgefBBitV6MGZKNIN+TVtR4gVA==} + '@contentstack/cli-utilities@1.19.2': + resolution: {integrity: sha512-njkv8GFbZLaMm4j0RZLalnnb8dH58Sj+JjYQyBaSUplEzuLBy6rcOmLazBC/4zgxKwj+N/0SlmU2kgEc4negOw==} '@contentstack/cli-utilities@2.0.0': resolution: {integrity: sha512-RDDE+e1wHAG3NoYAHpvEnqwpNeMqkWCBHzYlxzgttyRpmFRXxdX6dMn1NBaqidTtLqtjk38irs24w8fm+WoFqw==} @@ -2408,8 +2411,8 @@ packages: '@contentstack/marketplace-sdk@1.5.4': resolution: {integrity: sha512-rqsL/FvYTqF1a1MK/AZLdWCGf7WY48f4pT/iLkwt6wxh7apxaAwWSWy9ZWRtDu7EIV9FDDTHZ33iYWKH41fnlw==} - '@contentstack/types-generator@3.10.2': - resolution: {integrity: sha512-UAzJH8SMX9xVrQOPyiaq/4jBvqy9a5sRbnBlTCEZBnUcMsGI8TyVjvVp+IlD0M5MsMJmPjygrKKOrIgLHSu+VQ==} + '@contentstack/types-generator@3.10.4': + resolution: {integrity: sha512-+ntE79jW/qDSGW34/NVNL6GdZ0S51FAftFJzPYs8lBGyhMqOF9qwyG03zX4PTg4nDrwdzapF483puW3AO8j2dQ==} '@contentstack/utils@1.9.1': resolution: {integrity: sha512-THZM0rNuq0uOSKkKnvzp8lsPDvvdKIvJIcMa9JBv4foL9rC8RWkWffa2yMyb+9m/5HZrdAmpEWdubkGwARa8WQ==} @@ -2605,8 +2608,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': @@ -2917,28 +2920,28 @@ packages: resolution: {integrity: sha512-Fg93aNFvXzBq5L7ztVHFP2nYwWU1oTCq48G0TjF/qC1UN36KWa2H5Hsm72kERd5x/sjy2M2Tn4kDEorUlpXOlw==} engines: {node: '>=18.0.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-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@3.2.15': resolution: {integrity: sha512-XqG3RosozNqySkxSXInU12Xec2sPSOkqYHJDfdFZiWG3a8Cxu4dnPiAQvms+BJsOlLQmfEQlSHqiyVUKOMHhXA==} 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' @@ -3038,128 +3041,128 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.62.4': - resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==} + '@rollup/rollup-android-arm-eabi@4.63.0': + resolution: {integrity: sha512-70TeIFezKKy65LgAVyQh+w94/gjWhvPWaLaGGeMEgVrPkQhuj/M5bAYYZzIFUj9Y69oHyTm5Um/R6gcLh4A8JA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.62.4': - resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==} + '@rollup/rollup-android-arm64@4.63.0': + resolution: {integrity: sha512-YC86tYIHK6M1IV+wbzO+Bxk8RCBr6ZyWYgWxUCzaZD8mc8rrFoIJDNzDrkHBYRc/wKdrsIXmm6/F7NzrAO+OrA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.62.4': - resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==} + '@rollup/rollup-darwin-arm64@4.63.0': + resolution: {integrity: sha512-oI+ECtUcli0y0fi4xpW82GdPIXdTkI8G8DSjG2LRuw09fPAGykaWYH/hXxiKuTxiAjiPSTIIuYUqof5Z2hShWw==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.62.4': - resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==} + '@rollup/rollup-darwin-x64@4.63.0': + resolution: {integrity: sha512-NwV+1s7TiKrMe4owHyKB/dTLD7ZJD0YEBEhIz+hvav1Cu1GReJjF+rsdNwjzENQeIAbE/CoNiaAc5Vz2h5DPAA==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.62.4': - resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==} + '@rollup/rollup-freebsd-arm64@4.63.0': + resolution: {integrity: sha512-tWtHBTu5gOPK4u4Urtk4qAHW3zZ9rQAmbssO8gp7ELvGTGI3aCiq6NqyTQ0PCIg7KbHJF2UkGDDs77YZGxfjCA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.62.4': - resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==} + '@rollup/rollup-freebsd-x64@4.63.0': + resolution: {integrity: sha512-2qPoJiwTvtHQ27NnYvTnsgk8laXWYuVmNESG8WFZBcEPKLfZ3I27qBJarjVRQtwGeYyRfq5ZowHXih9lm2BItw==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.62.4': - resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==} + '@rollup/rollup-linux-arm-gnueabihf@4.63.0': + resolution: {integrity: sha512-FQwsTRvLNuHoTdICABJQfbPUSEueISGmnpT06tXTMpfprf5NiKLSXKA0A+w45wJnCmZAnzgqBwbt6ARFuyOi5w==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.62.4': - resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==} + '@rollup/rollup-linux-arm-musleabihf@4.63.0': + resolution: {integrity: sha512-BBVTXziw8mY1a4ZbWME9tZyfzqXCDPqaC7Z3heQ29p5dkvXzwL0NwelO8zLa8c3RBKvl3YTuSnBgsBhYBtwjIw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.62.4': - resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==} + '@rollup/rollup-linux-arm64-gnu@4.63.0': + resolution: {integrity: sha512-w2Iyy9+RqKwx3d9qWMKsJg0FfRBsY0/pXNv0mCQ3ueRvJI6+QAScfD4nrMlzFLs2HNVW6Ew+mtZfDl9b7Ew5/Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.62.4': - resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==} + '@rollup/rollup-linux-arm64-musl@4.63.0': + resolution: {integrity: sha512-YK++KtrFRHYE0P6/RtYEAy9t8F37znP+K03RrIuLPYOL6SVlObRumf/0OE4V/h63xL9DwkWbNssZfmA9hawuDA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loong64-gnu@4.62.4': - resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==} + '@rollup/rollup-linux-loong64-gnu@4.63.0': + resolution: {integrity: sha512-aBfOG6fP7YkkPmTqPwufRJeFyz7WPpECv9XNbnsk9+vg7rxdih0lbtEel7jcRng4LZrrmU3FfitCFyEj4BWDWg==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-loong64-musl@4.62.4': - resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==} + '@rollup/rollup-linux-loong64-musl@4.63.0': + resolution: {integrity: sha512-LGaHEOeHNAag9VuS1Crs5DFg4RrU9MPi2nVnNJk9DTePx/B6RRYKVmrIXt2h7YOJlwjaFJ6lwtFDliZxScTLrQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-ppc64-gnu@4.62.4': - resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==} + '@rollup/rollup-linux-ppc64-gnu@4.63.0': + resolution: {integrity: sha512-jClvk+J0FC3b7Udvegiw5/4hErbHtmsNsQgENnKXDWtNCJXsJYZH5WURvu7imDOO38xYml24eeh5x3A04ppwCw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-ppc64-musl@4.62.4': - resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==} + '@rollup/rollup-linux-ppc64-musl@4.63.0': + resolution: {integrity: sha512-0OJlaGK+8+B777Ql5okIpD7ua5Ro9+VB9Ve0OKa28OQJZ1RbuUBVNHK/e3pr4BROqsyPl1JrPO1ZxJseCNffcA==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.62.4': - resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==} + '@rollup/rollup-linux-riscv64-gnu@4.63.0': + resolution: {integrity: sha512-Ygsx+HoNH7afwi1bTIXbnTvVnsO+zurPLSYxybV1hHFVU72OWOCl6v05ql/z0hkpAPx+DK7Kn9Bi7MayCcjLTA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.62.4': - resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==} + '@rollup/rollup-linux-riscv64-musl@4.63.0': + resolution: {integrity: sha512-pDQxtMGb+OvG3fLwR2OkZlSd47hW+kWg4BYMG/++sR6RqorQccwPTDsxda5hPwiIeIErAnCF9ma3SAU06bdQtQ==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.62.4': - resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==} + '@rollup/rollup-linux-s390x-gnu@4.63.0': + resolution: {integrity: sha512-0BnUG9mS8I4SSHr3XsxVhuCMEiu+rX61xxZF5vujso4LaiAGFZFxvDjg6Xn6tLPNTUAfuCvQYas4LMQMVsKRSQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.62.4': - resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==} + '@rollup/rollup-linux-x64-gnu@4.63.0': + resolution: {integrity: sha512-Adu/VttB1dpPNW+FEacrZ+xVm9tFty84+RrFzsqlFaPxoJB+9XXyDGtp5dCOoBwGBIEVH0To7lExFXEx0BIF4A==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.62.4': - resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==} + '@rollup/rollup-linux-x64-musl@4.63.0': + resolution: {integrity: sha512-NQ3bDvjUbFKmP23671xUlXtKmqVsUBd6M4PQCvbmNtOy06hnQIdKHy8oG/6S3R/S6He1JgPk6A5VT+prAJMYEw==} cpu: [x64] os: [linux] - '@rollup/rollup-openbsd-x64@4.62.4': - resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==} + '@rollup/rollup-openbsd-x64@4.63.0': + resolution: {integrity: sha512-u2eDAl4+0aFvA13GxlGBtTI3SS3sdgwgtV0HyjZ0QaQVCgNE+jqNGey+GtxWiq+wxr/UycAx/OnfJzApCFamvA==} cpu: [x64] os: [openbsd] - '@rollup/rollup-openharmony-arm64@4.62.4': - resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==} + '@rollup/rollup-openharmony-arm64@4.63.0': + resolution: {integrity: sha512-XvRb5vfW3wAZQ+ZUG21AnHHDKtNcw99eigzEhjr//NZ3u7SoBaPP0seSc7FgP7p1epAEdAoZckMW9WY/+4w70w==} cpu: [arm64] os: [openharmony] - '@rollup/rollup-win32-arm64-msvc@4.62.4': - resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==} + '@rollup/rollup-win32-arm64-msvc@4.63.0': + resolution: {integrity: sha512-iZPmniy4kNBf5yo2RezbkYNNK5HPbXE9+g+twnbqSng7dtLEJy1SKoxiE/ni4FDacjyuZpEeb9U054N4EoKHYw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.62.4': - resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==} + '@rollup/rollup-win32-ia32-msvc@4.63.0': + resolution: {integrity: sha512-mFBBd+LF37fnE8JnYUOH+imj0aPFPK30vpar4ehJkgnLj9sZn8ZxiRENmLtgIwxK7TC8klF6N57fxdNBwQoqOA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-gnu@4.62.4': - resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==} + '@rollup/rollup-win32-x64-gnu@4.63.0': + resolution: {integrity: sha512-ujeqEY3B+zbGn3Z4Q03cUBG/LGWnBJncVT36WER31LcOsQk9+1dmINKKtvmmfChUvRbK1G0R8OhMWFgHgaZtAw==} cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.62.4': - resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==} + '@rollup/rollup-win32-x64-msvc@4.63.0': + resolution: {integrity: sha512-hncn90N4sOky0L2LKE5oESKLbxCPeVo4eLA2LSMoDzM+879ml4WSr+Rr4DWknNIVVvS1Hirkc9hx02W6YxS8rQ==} cpu: [x64] os: [win32] @@ -3217,28 +3220,28 @@ packages: Deprecated: no longer maintained and no longer used by Sinon packages. See https://github.com/sinonjs/nise/issues/243 for replacement details. - '@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.11.3': + resolution: {integrity: sha512-2jY1tSpERfPfWqyBV2pH+iGFaghVsIJszJNsT7hxtQYhVJpWDyc0LqOWI+nXOxOAHaEfZ4PXXtp1wW1TGpHhkA==} 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': @@ -3260,8 +3263,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==} @@ -3387,8 +3390,8 @@ packages: '@types/lodash@4.17.25': resolution: {integrity: sha512-+K1NIO8I+F9/wNulfVvu23QYd0Pe9/OCqRrim4NoYIf1VoEDL90Ve4ClzpyqBLc7NpGGWRvYNCKZ1BE/Jpf8dQ==} - '@types/markdown-it@14.1.2': - resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} + '@types/markdown-it@14.2.0': + resolution: {integrity: sha512-NoQ2yGlLWj4wpxMs+TYmRKk3thDrQ97agr7sFqfLsAlvoS8SNQuTrlObhFqG9iugdTtgOE9jpJ6FNM4ZGsa5xQ==} '@types/mdurl@2.0.0': resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} @@ -3534,11 +3537,11 @@ packages: typescript: optional: true - '@typescript-eslint/eslint-plugin@8.67.0': - resolution: {integrity: sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==} + '@typescript-eslint/eslint-plugin@8.68.0': + resolution: {integrity: sha512-WASHDpCm6qO5jj9g1a+8NiW5+GCkAyLReR56/4VruYmNgfUmqpxOfZ2Yfb8xGfJPWv5Qi6LSD8sXdces3vbp/Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.67.0 + '@typescript-eslint/parser': ^8.68.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' @@ -3552,15 +3555,15 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.67.0': - resolution: {integrity: sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==} + '@typescript-eslint/parser@8.68.0': + resolution: {integrity: sha512-fHq2VC1kpyYfvEcbiMjOpySY4WS7voEp89yAThrHRX5sm9j2lzYppCb2umFMEed4fWcyeLjHxrz0mpjNBaBxMQ==} 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.68.0': + resolution: {integrity: sha512-5GQtWZCXFcFYux955pvoS02WLc49pXNlvIxocKjS0clvwo3in1RdlzVKyiqQH9vE5AKWFLTaUgeQkOrTS+0Qxw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -3577,12 +3580,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.68.0': + resolution: {integrity: sha512-T5eXpcaJNg8bhjHJ8Rjp68Vq/QBteYtTKY8TZqVNPaUbuz0f6jI9t6aDkylwvalpAB9XTTFeFOjrjXAZ3YvmVA==} 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.68.0': + resolution: {integrity: sha512-F7zrGQfiJHojPwi8vhxZQC1tWtJzvL74cK/nqri2lk8YUXvYaYwl263xOJ69jDWPUk1hmcdoayFwk9lX09npVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -3607,8 +3610,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.68.0': + resolution: {integrity: sha512-X77zqoY1EjeWGs/0JNxeaMfp5C5lIz4Tw8y66F1Ne8Faq6g424sBNYM6xBAqElfGZPLpWS+CZAp0DXyKDzWiHg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -3626,8 +3629,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.68.0': + resolution: {integrity: sha512-9RnpsGJjrAllCMefGVVsImJM24YurhC0Q1h4UbvivtvOqXmR/vEJge2OoE++z9m6hyg8T1Q8t5SNT6tHSbrxcg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@5.62.0': @@ -3657,8 +3660,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.67.0': - resolution: {integrity: sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==} + '@typescript-eslint/typescript-estree@8.68.0': + resolution: {integrity: sha512-OKKsD0tYmoNiU5PW2zehO1yO56jYOm1ShYlxon/Z0SJNidAkdVg86eg9ruRuoXf8xfnuWZGbwDsStkoXbZtIIA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' @@ -3681,8 +3684,8 @@ packages: peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/utils@8.67.0': - resolution: {integrity: sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==} + '@typescript-eslint/utils@8.68.0': + resolution: {integrity: sha512-PB5gJMMOg0Q5P1tsgWtEAqQacJXq0qEqRHDX/YJ4FaTMLfZPpHB3gjl2EJuiZyPABxmj4ZQYiY9m1bdAJ5y7tQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -3700,8 +3703,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.68.0': + resolution: {integrity: sha512-YR65gGdGvTUAWLldC3xLOvOzamdGzB4A5/N8rehEaHs3Zvoe39BhgY+u0SPch1OvrVTfLcc55wsSgK2NcnTS/A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@unrs/resolver-binding-android-arm-eabi@1.12.2': @@ -3920,8 +3923,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: @@ -4099,12 +4102,12 @@ packages: peerDependencies: axios: '>= 0.17.0' - axios@1.18.0: - resolution: {integrity: sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==} - axios@1.19.0: resolution: {integrity: sha512-ht/iuYZXEjFxLH/Hkezgd7m6JKlHHXEUSneaDz8uZe1Gj5QZtCnpyDsckvAiEnT89OEbCLmnte4R4sn7P0EKFw==} + axios@1.20.0: + resolution: {integrity: sha512-r8aOh8j9cGKpgQAqpzrUHnSIc6a59Y3Xf/cv8sy1DrHCkZHzQGEuoq1tARk6qSyDdtQGSDgpb9kFlruzPvrgwg==} + babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4152,8 +4155,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.19: + resolution: {integrity: sha512-Grytf1xOxOEMTGRwx6rLGKkTabd4vMg3VrKdj/7joCmV0qgh4QwMMO6xh34YEXQqirAuUdgQGa5orJQQ+69RBw==} engines: {node: '>=6.0.0'} hasBin: true @@ -4272,8 +4275,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==} @@ -4888,8 +4891,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.415: + resolution: {integrity: sha512-958V+Kbhtgz+SxXeEVKBjrlKRBIDAYvUJfwhjxMZ5S6ut9jAl7l9ZKBkBrvjyjZE36PabLUo2L8kEeV5O4vgJg==} elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} @@ -5199,8 +5207,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: @@ -5212,6 +5220,7 @@ packages: eslint@9.39.5: resolution: {integrity: sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true peerDependencies: jiti: '*' @@ -5547,8 +5556,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==} git-raw-commits@5.0.1: resolution: {integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ==} @@ -5928,6 +5937,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'} @@ -5964,6 +5978,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'} @@ -6010,8 +6029,8 @@ packages: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + is-plain-object@5.1.0: + resolution: {integrity: sha512-bUi/yjmtKYcRVUtWRGr0UA6xEFh2I6zWUwMrUXB3s7bmYCaZ8a+0ZsTRkrawh/mzlSD1Y0Ph8bp/U+TvBpWDNw==} engines: {node: '>=0.10.0'} is-potential-custom-element-name@1.0.1: @@ -6086,6 +6105,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==} @@ -6931,8 +6954,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 @@ -7031,8 +7054,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==} @@ -7126,8 +7149,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'} pirates@4.0.7: @@ -7155,6 +7178,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'} @@ -7527,8 +7554,8 @@ packages: engines: {node: 20 || >=22} hasBin: true - rollup@4.62.4: - resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==} + rollup@4.63.0: + resolution: {integrity: sha512-T5vnZ2y4QqC3/4P+w2+JO+Q/OVdnPsv4XcSYJYMEn0R9/jjl5AgLwO9LAZMzP2lN71O6pypn91rB7lDstUkfrQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -8212,8 +8239,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.68.0: + resolution: {integrity: sha512-MHy0Y0ynqeEbx/S45+i/bBssdy3X6KNBfmJAP35GrgtNxu2TQ5K5xsFDhAnmsq1jvpdoZOPG1LGtJo0HWqYCrQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -8511,6 +8538,10 @@ packages: utf-8-validate: optional: true + 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'} @@ -8629,178 +8660,178 @@ snapshots: css-tree: 2.3.1 is-potential-custom-element-name: 1.0.1 - '@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.1119.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.81 + '@aws-sdk/types': 3.974.5 + '@smithy/core': 3.33.3 + '@smithy/fetch-http-handler': 5.7.2 + '@smithy/node-http-handler': 4.11.3 + '@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.1119.0': + dependencies: + '@aws-sdk/checksums': 3.1000.29 + '@aws-sdk/core': 3.977.9 + '@aws-sdk/credential-provider-node': 3.972.81 + '@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.11.3 + '@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.11.3 + '@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.81': + 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.11.3 + '@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': {} @@ -9556,17 +9587,17 @@ snapshots: dependencies: '@contentstack/cli-command': 2.0.0(@types/node@22.20.1) '@contentstack/cli-utilities': 2.0.0(@types/node@22.20.1) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 otplib: 12.0.1 transitivePeerDependencies: - '@types/node' - debug - supports-color - '@contentstack/cli-command@1.8.6(@types/node@20.19.43)': + '@contentstack/cli-command@1.8.7(@types/node@20.19.43)': dependencies: - '@contentstack/cli-utilities': 1.19.1(@types/node@20.19.43) - '@oclif/core': 4.13.3 + '@contentstack/cli-utilities': 1.19.2(@types/node@20.19.43) + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9576,7 +9607,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@14.18.63)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@14.18.63) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9586,7 +9617,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@14.18.63)(debug@4.4.3)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@14.18.63)(debug@4.4.3) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9596,7 +9627,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@18.19.130)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9606,7 +9637,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@20.19.43)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@20.19.43) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9616,7 +9647,7 @@ snapshots: '@contentstack/cli-command@2.0.0(@types/node@22.20.1)': dependencies: '@contentstack/cli-utilities': 2.0.0(@types/node@22.20.1) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 contentstack: 3.27.1 transitivePeerDependencies: - '@types/node' @@ -9628,7 +9659,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@18.19.130) '@contentstack/cli-utilities': 2.0.0(@types/node@18.19.130) '@contentstack/utils': 1.9.1 - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 transitivePeerDependencies: - '@types/node' - debug @@ -9639,7 +9670,7 @@ snapshots: '@contentstack/cli-command': 2.0.0(@types/node@22.20.1) '@contentstack/cli-utilities': 2.0.0(@types/node@22.20.1) '@contentstack/utils': 1.9.1 - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 transitivePeerDependencies: - '@types/node' - debug @@ -9648,14 +9679,14 @@ snapshots: '@contentstack/cli-launch@1.11.2(@types/node@20.19.43)(tslib@2.8.1)(typescript@5.9.3)': dependencies: '@apollo/client': 3.14.1(graphql@16.14.2) - '@contentstack/cli-command': 1.8.6(@types/node@20.19.43) - '@contentstack/cli-utilities': 1.19.1(@types/node@20.19.43) - '@oclif/core': 4.13.3 - '@oclif/plugin-help': 6.2.58 - '@rollup/plugin-commonjs': 28.0.9(rollup@4.62.4) - '@rollup/plugin-json': 6.1.0(rollup@4.62.4) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.4) - '@rollup/plugin-typescript': 12.3.0(rollup@4.62.4)(tslib@2.8.1)(typescript@5.9.3) + '@contentstack/cli-command': 1.8.7(@types/node@20.19.43) + '@contentstack/cli-utilities': 1.19.2(@types/node@20.19.43) + '@oclif/core': 4.14.0 + '@oclif/plugin-help': 6.3.0 + '@rollup/plugin-commonjs': 28.0.9(rollup@4.63.0) + '@rollup/plugin-json': 6.1.0(rollup@4.63.0) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.63.0) + '@rollup/plugin-typescript': 12.3.0(rollup@4.63.0)(tslib@2.8.1)(typescript@5.9.3) '@types/express': 4.17.25 '@types/express-serve-static-core': 4.19.9 adm-zip: 0.5.18 @@ -9668,7 +9699,7 @@ snapshots: ini: 3.0.1 lodash: 4.18.1 open: 8.4.2 - rollup: 4.62.4 + rollup: 4.63.0 winston: 3.19.0 transitivePeerDependencies: - '@types/node' @@ -9683,13 +9714,13 @@ snapshots: - tslib - typescript - '@contentstack/cli-utilities@1.19.1(@types/node@20.19.43)': + '@contentstack/cli-utilities@1.19.2(@types/node@20.19.43)': dependencies: '@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: 4.1.2 cli-cursor: 3.1.0 cli-progress: 3.12.0 @@ -9706,7 +9737,7 @@ snapshots: mkdirp: 1.0.4 open: 8.4.2 ora: 5.4.1 - papaparse: 5.5.4 + papaparse: 5.7.0 recheck: 4.4.5 rxjs: 6.6.7 short-uuid: 6.0.3 @@ -9726,8 +9757,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 @@ -9744,7 +9775,7 @@ snapshots: 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 @@ -9764,8 +9795,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 @@ -9782,7 +9813,7 @@ snapshots: 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 @@ -9802,8 +9833,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 @@ -9820,7 +9851,7 @@ snapshots: 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 @@ -9840,8 +9871,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 @@ -9858,7 +9889,7 @@ snapshots: 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 @@ -9878,8 +9909,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 @@ -9896,7 +9927,7 @@ snapshots: 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 @@ -9913,8 +9944,8 @@ snapshots: '@contentstack/core@1.5.2': dependencies: - axios: 1.19.0(debug@4.4.3) - axios-mock-adapter: 2.1.0(axios@1.19.0) + axios: 1.20.0(debug@4.4.3) + axios-mock-adapter: 2.1.0(axios@1.20.0) lodash: 4.18.1 qs: 6.15.3 tslib: 2.8.1 @@ -9926,7 +9957,7 @@ snapshots: dependencies: '@contentstack/core': 1.5.2 '@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 @@ -9951,7 +9982,7 @@ 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 @@ -9967,7 +9998,7 @@ 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 @@ -9982,17 +10013,17 @@ 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 - '@contentstack/types-generator@3.10.2(graphql@16.14.2)': + '@contentstack/types-generator@3.10.4(graphql@16.14.2)': dependencies: '@contentstack/delivery-sdk': 5.6.0 '@gql2ts/from-schema': 2.0.0-4(graphql@16.14.2) async: 3.2.6 - axios: 1.18.0 + axios: 1.19.0 lodash: 4.18.1 prettier: 3.9.6 transitivePeerDependencies: @@ -10060,14 +10091,14 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.9 - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/types': 8.68.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/eslint-utils@4.10.1(eslint@9.39.5)': @@ -10077,11 +10108,11 @@ snapshots: '@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.21.2': dependencies: @@ -10154,7 +10185,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@2.1.7': {} @@ -10231,7 +10262,7 @@ snapshots: '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/momoa@3.3.10': {} + '@humanwhocodes/momoa@3.3.12': {} '@humanwhocodes/retry@0.4.3': {} @@ -11077,17 +11108,16 @@ snapshots: wordwrap: 1.0.0 wrap-ansi: 7.0.0 - '@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 @@ -11097,50 +11127,51 @@ 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-not-found@3.2.93(@types/node@20.19.43)': + '@oclif/plugin-not-found@3.3.0(@types/node@20.19.43)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@20.19.43) - '@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@22.20.1)': + '@oclif/plugin-not-found@3.3.0(@types/node@22.20.1)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@22.20.1) - '@oclif/core': 4.13.3 + '@oclif/core': 4.14.0 ansis: 3.17.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@types/node' - '@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 @@ -11157,9 +11188,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: @@ -11211,124 +11242,124 @@ snapshots: dependencies: nopt: 1.0.10 - '@rollup/plugin-commonjs@28.0.9(rollup@4.62.4)': + '@rollup/plugin-commonjs@28.0.9(rollup@4.63.0)': dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) + '@rollup/pluginutils': 5.4.0(rollup@4.63.0) commondir: 1.0.1 estree-walker: 2.0.2 - fdir: 6.5.0(picomatch@4.0.5) + fdir: 6.5.0(picomatch@4.0.7) is-reference: 1.2.1 magic-string: 0.30.21 - picomatch: 4.0.5 + picomatch: 4.0.7 optionalDependencies: - rollup: 4.62.4 + rollup: 4.63.0 - '@rollup/plugin-json@6.1.0(rollup@4.62.4)': + '@rollup/plugin-json@6.1.0(rollup@4.63.0)': dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) + '@rollup/pluginutils': 5.4.0(rollup@4.63.0) optionalDependencies: - rollup: 4.62.4 + rollup: 4.63.0 - '@rollup/plugin-node-resolve@16.0.3(rollup@4.62.4)': + '@rollup/plugin-node-resolve@16.0.3(rollup@4.63.0)': dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) + '@rollup/pluginutils': 5.4.0(rollup@4.63.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.12 optionalDependencies: - rollup: 4.62.4 + rollup: 4.63.0 - '@rollup/plugin-typescript@12.3.0(rollup@4.62.4)(tslib@2.8.1)(typescript@5.9.3)': + '@rollup/plugin-typescript@12.3.0(rollup@4.63.0)(tslib@2.8.1)(typescript@5.9.3)': dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) + '@rollup/pluginutils': 5.4.0(rollup@4.63.0) resolve: 1.22.12 typescript: 5.9.3 optionalDependencies: - rollup: 4.62.4 + rollup: 4.63.0 tslib: 2.8.1 - '@rollup/pluginutils@5.4.0(rollup@4.62.4)': + '@rollup/pluginutils@5.4.0(rollup@4.63.0)': dependencies: '@types/estree': 1.0.9 estree-walker: 2.0.2 - picomatch: 4.0.5 + picomatch: 4.0.7 optionalDependencies: - rollup: 4.62.4 + rollup: 4.63.0 - '@rollup/rollup-android-arm-eabi@4.62.4': + '@rollup/rollup-android-arm-eabi@4.63.0': optional: true - '@rollup/rollup-android-arm64@4.62.4': + '@rollup/rollup-android-arm64@4.63.0': optional: true - '@rollup/rollup-darwin-arm64@4.62.4': + '@rollup/rollup-darwin-arm64@4.63.0': optional: true - '@rollup/rollup-darwin-x64@4.62.4': + '@rollup/rollup-darwin-x64@4.63.0': optional: true - '@rollup/rollup-freebsd-arm64@4.62.4': + '@rollup/rollup-freebsd-arm64@4.63.0': optional: true - '@rollup/rollup-freebsd-x64@4.62.4': + '@rollup/rollup-freebsd-x64@4.63.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + '@rollup/rollup-linux-arm-gnueabihf@4.63.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.62.4': + '@rollup/rollup-linux-arm-musleabihf@4.63.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.62.4': + '@rollup/rollup-linux-arm64-gnu@4.63.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.62.4': + '@rollup/rollup-linux-arm64-musl@4.63.0': optional: true - '@rollup/rollup-linux-loong64-gnu@4.62.4': + '@rollup/rollup-linux-loong64-gnu@4.63.0': optional: true - '@rollup/rollup-linux-loong64-musl@4.62.4': + '@rollup/rollup-linux-loong64-musl@4.63.0': optional: true - '@rollup/rollup-linux-ppc64-gnu@4.62.4': + '@rollup/rollup-linux-ppc64-gnu@4.63.0': optional: true - '@rollup/rollup-linux-ppc64-musl@4.62.4': + '@rollup/rollup-linux-ppc64-musl@4.63.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.62.4': + '@rollup/rollup-linux-riscv64-gnu@4.63.0': optional: true - '@rollup/rollup-linux-riscv64-musl@4.62.4': + '@rollup/rollup-linux-riscv64-musl@4.63.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.62.4': + '@rollup/rollup-linux-s390x-gnu@4.63.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.62.4': + '@rollup/rollup-linux-x64-gnu@4.63.0': optional: true - '@rollup/rollup-linux-x64-musl@4.62.4': + '@rollup/rollup-linux-x64-musl@4.63.0': optional: true - '@rollup/rollup-openbsd-x64@4.62.4': + '@rollup/rollup-openbsd-x64@4.63.0': optional: true - '@rollup/rollup-openharmony-arm64@4.62.4': + '@rollup/rollup-openharmony-arm64@4.63.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.62.4': + '@rollup/rollup-win32-arm64-msvc@4.63.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.62.4': + '@rollup/rollup-win32-ia32-msvc@4.63.0': optional: true - '@rollup/rollup-win32-x64-gnu@4.62.4': + '@rollup/rollup-win32-x64-gnu@4.63.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.62.4': + '@rollup/rollup-win32-x64-msvc@4.63.0': optional: true '@rtsao/scc@1.1.0': {} @@ -11379,36 +11410,36 @@ snapshots: '@sinonjs/text-encoding@0.7.3': {} - '@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.11.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/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 @@ -11417,57 +11448,57 @@ 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.68.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.68.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@3.1.0(eslint@10.8.1)(typescript@6.0.3)': + '@stylistic/eslint-plugin@3.1.0(eslint@10.9.1)(typescript@6.0.3)': dependencies: - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@6.0.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.68.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': {} @@ -11619,7 +11650,7 @@ snapshots: '@types/lodash@4.17.25': {} - '@types/markdown-it@14.1.2': + '@types/markdown-it@14.2.0': dependencies: '@types/linkify-it': 5.0.0 '@types/mdurl': 2.0.0 @@ -11745,15 +11776,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@5.62.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@5.62.0(@typescript-eslint/parser@8.68.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/parser': 8.68.0(eslint@10.9.1)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@10.8.1)(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/type-utils': 5.62.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.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 graphemer: 1.4.0 ignore: 5.3.2 natural-compare-lite: 1.4.0 @@ -11764,15 +11795,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.62.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@5.62.0(@typescript-eslint/parser@8.68.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/parser': 8.68.0(eslint@10.9.1)(typescript@5.9.3) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@10.8.1)(typescript@5.9.3) - '@typescript-eslint/utils': 5.62.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/type-utils': 5.62.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/utils': 5.62.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 graphemer: 1.4.0 ignore: 5.3.2 natural-compare-lite: 1.4.0 @@ -11783,16 +11814,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 @@ -11803,16 +11834,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@6.0.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@6.0.3) + '@typescript-eslint/type-utils': 6.21.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@6.0.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 @@ -11823,15 +11854,15 @@ 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.68.0(@typescript-eslint/parser@8.68.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 + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 8.68.0 + '@typescript-eslint/type-utils': 8.68.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.68.0 + eslint: 10.9.1 ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@4.9.5) @@ -11839,15 +11870,15 @@ snapshots: 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.68.0(@typescript-eslint/parser@8.68.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 + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.68.0 + '@typescript-eslint/type-utils': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.68.0 + eslint: 10.9.1 ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@5.9.3) @@ -11855,15 +11886,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.67.0 - eslint: 10.8.1 + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.68.0 + '@typescript-eslint/type-utils': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.68.0 + eslint: 10.9.1 ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@6.0.3) @@ -11871,90 +11902,90 @@ snapshots: 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@6.21.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@6.0.3)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.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: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/parser@8.68.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.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.68.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.68.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.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.68.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/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3)': dependencies: - '@typescript-eslint/scope-manager': 8.67.0 - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/scope-manager': 8.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.68.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.8.1 + eslint: 10.9.1 typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.67.0(typescript@4.9.5)': + '@typescript-eslint/project-service@8.68.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.68.0(typescript@4.9.5) + '@typescript-eslint/types': 8.68.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.68.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.68.0(typescript@5.9.3) + '@typescript-eslint/types': 8.68.0 debug: 4.4.3(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.67.0(typescript@6.0.3)': + '@typescript-eslint/project-service@8.68.0(typescript@6.0.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3) - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/tsconfig-utils': 8.68.0(typescript@6.0.3) + '@typescript-eslint/types': 8.68.0 debug: 4.4.3(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: @@ -11975,102 +12006,102 @@ 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.68.0': dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/visitor-keys': 8.68.0 - '@typescript-eslint/tsconfig-utils@8.67.0(typescript@4.9.5)': + '@typescript-eslint/tsconfig-utils@8.68.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.68.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/tsconfig-utils@8.67.0(typescript@6.0.3)': + '@typescript-eslint/tsconfig-utils@8.68.0(typescript@6.0.3)': dependencies: typescript: 6.0.3 - '@typescript-eslint/type-utils@5.62.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/type-utils@5.62.0(eslint@10.9.1)(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.62.0(eslint@10.8.1)(typescript@4.9.5) + '@typescript-eslint/utils': 5.62.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 tsutils: 3.21.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.62.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/type-utils@5.62.0(eslint@10.9.1)(typescript@5.9.3)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3) - '@typescript-eslint/utils': 5.62.0(eslint@10.8.1)(typescript@5.9.3) + '@typescript-eslint/utils': 5.62.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 tsutils: 3.21.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 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@6.21.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/type-utils@6.21.0(eslint@10.9.1)(typescript@6.0.3)': dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) - '@typescript-eslint/utils': 6.21.0(eslint@10.8.1)(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.9.1)(typescript@6.0.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@6.0.3) optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/type-utils@8.68.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.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.68.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.68.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.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.68.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: - supports-color - '@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/type-utils@8.68.0(eslint@10.9.1)(typescript@6.0.3)': dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@6.0.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@6.0.3) typescript: 6.0.3 transitivePeerDependencies: @@ -12082,7 +12113,7 @@ snapshots: '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/types@8.67.0': {} + '@typescript-eslint/types@8.68.0': {} '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': dependencies: @@ -12172,12 +12203,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.67.0(typescript@4.9.5)': + '@typescript-eslint/typescript-estree@8.68.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.68.0(typescript@4.9.5) + '@typescript-eslint/tsconfig-utils': 8.68.0(typescript@4.9.5) + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/visitor-keys': 8.68.0 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.6 semver: 7.8.5 @@ -12187,12 +12218,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.67.0(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.68.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.68.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.68.0(typescript@5.9.3) + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/visitor-keys': 8.68.0 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.6 semver: 7.8.5 @@ -12202,12 +12233,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.67.0(typescript@6.0.3)': + '@typescript-eslint/typescript-estree@8.68.0(typescript@6.0.3)': dependencies: - '@typescript-eslint/project-service': 8.67.0(typescript@6.0.3) - '@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3) - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/visitor-keys': 8.67.0 + '@typescript-eslint/project-service': 8.68.0(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.68.0(typescript@6.0.3) + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/visitor-keys': 8.68.0 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.6 semver: 7.8.5 @@ -12217,115 +12248,115 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@10.8.1)(typescript@4.9.5)': + '@typescript-eslint/utils@5.62.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': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - eslint: 10.8.1 + eslint: 10.9.1 eslint-scope: 5.1.1 semver: 7.8.5 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@10.8.1)(typescript@5.9.3)': + '@typescript-eslint/utils@5.62.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': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3) - eslint: 10.8.1 + eslint: 10.9.1 eslint-scope: 5.1.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@6.21.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/utils@6.21.0(eslint@10.9.1)(typescript@6.0.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@6.0.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@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@7.18.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/utils@7.18.0(eslint@10.9.1)(typescript@6.0.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@6.0.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.68.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.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.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.68.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.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3) + eslint: 10.9.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)': + '@typescript-eslint/utils@8.68.0(eslint@10.9.1)(typescript@6.0.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@6.0.3) - eslint: 10.8.1 + '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1) + '@typescript-eslint/scope-manager': 8.68.0 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/typescript-estree': 8.68.0(typescript@6.0.3) + eslint: 10.9.1 typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -12345,9 +12376,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.68.0': dependencies: - '@typescript-eslint/types': 8.67.0 + '@typescript-eslint/types': 8.68.0 eslint-visitor-keys: 5.0.1 '@unrs/resolver-binding-android-arm-eabi@1.12.2': @@ -12513,7 +12544,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.2.2: {} + ansi-regex@6.3.0: {} ansi-styles@2.2.1: {} @@ -12668,13 +12699,13 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 - axios-mock-adapter@2.1.0(axios@1.19.0): + axios-mock-adapter@2.1.0(axios@1.20.0): 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.18.0: + axios@1.19.0: dependencies: follow-redirects: 1.16.0(debug@4.4.3) form-data: 4.0.6 @@ -12684,7 +12715,7 @@ snapshots: - debug - supports-color - 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 @@ -12777,7 +12808,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.11.13: {} + baseline-browser-mapping@2.11.19: {} bidi-js@1.0.3: dependencies: @@ -12839,9 +12870,9 @@ snapshots: browserslist@4.28.8: dependencies: - baseline-browser-mapping: 2.11.13 - caniuse-lite: 1.0.30001809 - electron-to-chromium: 1.5.405 + baseline-browser-mapping: 2.11.19 + caniuse-lite: 1.0.30001810 + electron-to-chromium: 1.5.415 node-releases: 2.0.53 update-browserslist-db: 1.3.1(browserslist@4.28.8) @@ -12926,7 +12957,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001809: {} + caniuse-lite@1.0.30001810: {} capital-case@1.0.4: dependencies: @@ -13584,7 +13615,9 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.405: {} + ejs@6.0.1: {} + + electron-to-chromium@1.5.415: {} elegant-spinner@1.0.1: {} @@ -13723,21 +13756,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@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)(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-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)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(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@5.9.3) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -13749,16 +13782,16 @@ snapshots: - typescript - vue-eslint-parser - eslint-config-oclif-typescript@3.1.14(eslint@10.8.1)(typescript@6.0.3): + eslint-config-oclif-typescript@3.1.14(eslint@10.9.1)(typescript@6.0.3): dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/parser': 6.21.0(eslint@10.8.1)(typescript@6.0.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)(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.1)(typescript@6.0.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@6.0.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@6.0.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)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.9.1)(typescript@6.0.3))(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@6.0.3) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -13770,24 +13803,24 @@ snapshots: - typescript - vue-eslint-parser - 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/compat': 1.4.1(eslint@10.9.1) '@eslint/eslintrc': 3.3.6 '@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.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/parser': 8.68.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.68.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.68.0(eslint@10.9.1)(typescript@4.9.5) transitivePeerDependencies: - eslint - eslint-import-resolver-webpack @@ -13795,24 +13828,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/compat': 1.4.1(eslint@10.9.1) '@eslint/eslintrc': 3.3.6 '@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)(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.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.68.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)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(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@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.68.0(eslint@10.9.1)(typescript@5.9.3) transitivePeerDependencies: - eslint - eslint-import-resolver-webpack @@ -13820,24 +13853,24 @@ snapshots: - supports-color - typescript - eslint-config-oclif@6.0.179(eslint@10.8.1)(typescript@6.0.3): + eslint-config-oclif@6.0.179(eslint@10.9.1)(typescript@6.0.3): dependencies: - '@eslint/compat': 1.4.1(eslint@10.8.1) + '@eslint/compat': 1.4.1(eslint@10.9.1) '@eslint/eslintrc': 3.3.6 '@eslint/js': 9.39.5 - '@stylistic/eslint-plugin': 3.1.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.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)(eslint@10.8.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.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@6.0.3) - eslint-plugin-perfectionist: 4.15.1(eslint@10.8.1)(typescript@6.0.3) - eslint-plugin-unicorn: 56.0.1(eslint@10.8.1) - typescript-eslint: 8.67.0(eslint@10.8.1)(typescript@6.0.3) + '@stylistic/eslint-plugin': 3.1.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@6.0.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)(eslint@10.9.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(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@6.0.3) + eslint-plugin-perfectionist: 4.15.1(eslint@10.9.1)(typescript@6.0.3) + eslint-plugin-unicorn: 56.0.1(eslint@10.9.1) + typescript-eslint: 8.68.0(eslint@10.9.1)(typescript@6.0.3) transitivePeerDependencies: - eslint - eslint-import-resolver-webpack @@ -13845,27 +13878,27 @@ snapshots: - supports-color - typescript - eslint-config-prettier@10.1.8(eslint@10.8.1): + eslint-config-prettier@10.1.8(eslint@10.9.1): dependencies: - eslint: 10.8.1 + eslint: 10.9.1 - 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: @@ -13876,79 +13909,79 @@ snapshots: 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@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.68.0(eslint@10.9.1)(typescript@5.9.3))(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@6.0.3))(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@6.0.3))(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@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@6.0.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)(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@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.68.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.68.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@10.8.1): + eslint-module-utils@2.14.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(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@5.9.3) - eslint: 10.8.1 + '@typescript-eslint/parser': 8.68.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)(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@6.0.3))(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.68.0(eslint@10.9.1)(typescript@6.0.3))(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@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@6.0.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)(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-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@6.0.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@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -13957,9 +13990,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@6.0.3))(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@6.0.3))(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 @@ -13971,13 +14004,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@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.9.1)(typescript@6.0.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.68.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 @@ -13986,9 +14019,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.68.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 @@ -14000,13 +14033,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.68.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.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -14015,9 +14048,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@10.8.1) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(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 @@ -14029,13 +14062,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@5.9.3) + '@typescript-eslint/parser': 8.68.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@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.9.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -14044,9 +14077,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@6.0.3))(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.68.0(eslint@10.9.1)(typescript@6.0.3))(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 @@ -14058,20 +14091,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@6.0.3) + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@6.0.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 @@ -14080,32 +14113,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 @@ -14114,13 +14147,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 @@ -14129,13 +14162,13 @@ snapshots: transitivePeerDependencies: - typescript - eslint-plugin-n@17.24.0(eslint@10.8.1)(typescript@6.0.3): + eslint-plugin-n@17.24.0(eslint@10.9.1)(typescript@6.0.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 @@ -14144,73 +14177,73 @@ snapshots: transitivePeerDependencies: - 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@2.11.0(eslint@10.8.1)(typescript@6.0.3): + eslint-plugin-perfectionist@2.11.0(eslint@10.9.1)(typescript@6.0.3): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@10.8.1)(typescript@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/utils': 7.18.0(eslint@10.9.1)(typescript@6.0.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.68.0 + '@typescript-eslint/utils': 8.68.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.68.0 + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-perfectionist@4.15.1(eslint@10.8.1)(typescript@6.0.3): + eslint-plugin-perfectionist@4.15.1(eslint@10.9.1)(typescript@6.0.3): dependencies: - '@typescript-eslint/types': 8.67.0 - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/types': 8.68.0 + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + eslint: 10.9.1 natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-prettier@5.5.6(eslint-config-prettier@10.1.8(eslint@10.8.1))(eslint@10.8.1)(prettier@3.9.6): + eslint-plugin-prettier@5.5.6(eslint-config-prettier@10.1.8(eslint@10.9.1))(eslint@10.9.1)(prettier@3.9.6): dependencies: - eslint: 10.8.1 + eslint: 10.9.1 prettier: 3.9.6 prettier-linter-helpers: 1.0.1 synckit: 0.11.13 optionalDependencies: - eslint-config-prettier: 10.1.8(eslint@10.8.1) + eslint-config-prettier: 10.1.8(eslint@10.9.1) - 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 @@ -14244,9 +14277,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: {} @@ -14259,9 +14292,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 @@ -14505,9 +14538,9 @@ snapshots: dependencies: bser: 2.1.1 - 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: {} @@ -14717,7 +14750,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 @@ -15187,6 +15220,8 @@ snapshots: is-docker@2.2.1: {} + is-docker@3.0.0: {} + is-document.all@1.0.0: dependencies: call-bound: 1.0.4 @@ -15219,6 +15254,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-map@2.0.3: {} @@ -15251,7 +15290,7 @@ snapshots: is-plain-obj@2.1.0: {} - is-plain-object@5.0.0: {} + is-plain-object@5.1.0: {} is-potential-custom-element-name@1.0.1: {} @@ -15316,6 +15355,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: {} @@ -15899,14 +15942,14 @@ snapshots: dependencies: '@babel/parser': 7.29.8 '@jsdoc/salty': 0.2.12 - '@types/markdown-it': 14.1.2 + '@types/markdown-it': 14.2.0 bluebird: 3.7.2 catharsis: 0.9.0 escape-string-regexp: 2.0.0 js2xmlparser: 4.0.2 klaw: 3.0.0 markdown-it: 14.3.0 - markdown-it-anchor: 8.6.7(@types/markdown-it@14.1.2)(markdown-it@14.3.0) + markdown-it-anchor: 8.6.7(@types/markdown-it@14.2.0)(markdown-it@14.3.0) marked: 4.3.0 mkdirp: 1.0.4 requizzle: 0.2.4 @@ -16022,7 +16065,7 @@ snapshots: lint-staged@17.3.0: dependencies: - picomatch: 4.0.5 + picomatch: 4.0.7 string-argv: 0.3.2 tinyexec: 1.3.0 optionalDependencies: @@ -16187,9 +16230,9 @@ snapshots: dependencies: tmpl: 1.0.5 - markdown-it-anchor@8.6.7(@types/markdown-it@14.1.2)(markdown-it@14.3.0): + markdown-it-anchor@8.6.7(@types/markdown-it@14.2.0)(markdown-it@14.3.0): dependencies: - '@types/markdown-it': 14.1.2 + '@types/markdown-it': 14.2.0 markdown-it: 14.3.0 markdown-it@14.3.0: @@ -16559,17 +16602,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.1119.0 + '@aws-sdk/client-s3': 3.1119.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 @@ -16588,17 +16631,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.1119.0 + '@aws-sdk/client-s3': 3.1119.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 @@ -16617,17 +16660,17 @@ snapshots: - '@types/node' - supports-color - oclif@4.23.30(@types/node@20.19.43): + oclif@4.24.0(@types/node@20.19.43): dependencies: - '@aws-sdk/client-cloudfront': 3.1108.0 - '@aws-sdk/client-s3': 3.1108.0 + '@aws-sdk/client-cloudfront': 3.1119.0 + '@aws-sdk/client-s3': 3.1119.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@20.19.43) - '@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@20.19.43) + '@oclif/plugin-warn-if-update-available': 3.2.0 ansis: 3.17.0 async-retry: 1.3.3 change-case: 4.1.2 @@ -16646,17 +16689,17 @@ snapshots: - '@types/node' - supports-color - oclif@4.23.30(@types/node@22.20.1): + oclif@4.24.0(@types/node@22.20.1): dependencies: - '@aws-sdk/client-cloudfront': 3.1108.0 - '@aws-sdk/client-s3': 3.1108.0 + '@aws-sdk/client-cloudfront': 3.1119.0 + '@aws-sdk/client-s3': 3.1119.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@22.20.1) - '@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@22.20.1) + '@oclif/plugin-warn-if-update-available': 3.2.0 ansis: 3.17.0 async-retry: 1.3.3 change-case: 4.1.2 @@ -16789,7 +16832,7 @@ snapshots: package-json-from-dist@1.0.1: {} - papaparse@5.5.4: {} + papaparse@5.7.0: {} param-case@3.0.4: dependencies: @@ -16879,7 +16922,7 @@ snapshots: picomatch@2.3.2: {} - picomatch@4.0.5: {} + picomatch@4.0.7: {} pirates@4.0.7: {} @@ -16897,6 +16940,8 @@ snapshots: possible-typed-array-names@1.1.0: {} + powershell-utils@0.1.0: {} + prelude-ls@1.2.1: {} prettier-linter-helpers@1.0.1: @@ -17269,36 +17314,36 @@ snapshots: glob: 13.0.6 package-json-from-dist: 1.0.1 - rollup@4.62.4: + rollup@4.63.0: dependencies: '@types/estree': 1.0.9 optionalDependencies: '@napi-rs/lzma-linux-x64-gnu': 1.5.1 - '@rollup/rollup-android-arm-eabi': 4.62.4 - '@rollup/rollup-android-arm64': 4.62.4 - '@rollup/rollup-darwin-arm64': 4.62.4 - '@rollup/rollup-darwin-x64': 4.62.4 - '@rollup/rollup-freebsd-arm64': 4.62.4 - '@rollup/rollup-freebsd-x64': 4.62.4 - '@rollup/rollup-linux-arm-gnueabihf': 4.62.4 - '@rollup/rollup-linux-arm-musleabihf': 4.62.4 - '@rollup/rollup-linux-arm64-gnu': 4.62.4 - '@rollup/rollup-linux-arm64-musl': 4.62.4 - '@rollup/rollup-linux-loong64-gnu': 4.62.4 - '@rollup/rollup-linux-loong64-musl': 4.62.4 - '@rollup/rollup-linux-ppc64-gnu': 4.62.4 - '@rollup/rollup-linux-ppc64-musl': 4.62.4 - '@rollup/rollup-linux-riscv64-gnu': 4.62.4 - '@rollup/rollup-linux-riscv64-musl': 4.62.4 - '@rollup/rollup-linux-s390x-gnu': 4.62.4 - '@rollup/rollup-linux-x64-gnu': 4.62.4 - '@rollup/rollup-linux-x64-musl': 4.62.4 - '@rollup/rollup-openbsd-x64': 4.62.4 - '@rollup/rollup-openharmony-arm64': 4.62.4 - '@rollup/rollup-win32-arm64-msvc': 4.62.4 - '@rollup/rollup-win32-ia32-msvc': 4.62.4 - '@rollup/rollup-win32-x64-gnu': 4.62.4 - '@rollup/rollup-win32-x64-msvc': 4.62.4 + '@rollup/rollup-android-arm-eabi': 4.63.0 + '@rollup/rollup-android-arm64': 4.63.0 + '@rollup/rollup-darwin-arm64': 4.63.0 + '@rollup/rollup-darwin-x64': 4.63.0 + '@rollup/rollup-freebsd-arm64': 4.63.0 + '@rollup/rollup-freebsd-x64': 4.63.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.63.0 + '@rollup/rollup-linux-arm-musleabihf': 4.63.0 + '@rollup/rollup-linux-arm64-gnu': 4.63.0 + '@rollup/rollup-linux-arm64-musl': 4.63.0 + '@rollup/rollup-linux-loong64-gnu': 4.63.0 + '@rollup/rollup-linux-loong64-musl': 4.63.0 + '@rollup/rollup-linux-ppc64-gnu': 4.63.0 + '@rollup/rollup-linux-ppc64-musl': 4.63.0 + '@rollup/rollup-linux-riscv64-gnu': 4.63.0 + '@rollup/rollup-linux-riscv64-musl': 4.63.0 + '@rollup/rollup-linux-s390x-gnu': 4.63.0 + '@rollup/rollup-linux-x64-gnu': 4.63.0 + '@rollup/rollup-linux-x64-musl': 4.63.0 + '@rollup/rollup-openbsd-x64': 4.63.0 + '@rollup/rollup-openharmony-arm64': 4.63.0 + '@rollup/rollup-win32-arm64-msvc': 4.63.0 + '@rollup/rollup-win32-ia32-msvc': 4.63.0 + '@rollup/rollup-win32-x64-gnu': 4.63.0 + '@rollup/rollup-win32-x64-msvc': 4.63.0 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} @@ -17539,7 +17584,7 @@ snapshots: slate@0.103.0: dependencies: immer: 10.2.0 - is-plain-object: 5.0.0 + is-plain-object: 5.1.0 tiny-warning: 1.0.3 slice-ansi@0.0.4: {} @@ -17736,7 +17781,7 @@ snapshots: strip-ansi@7.2.0: dependencies: - ansi-regex: 6.2.2 + ansi-regex: 6.3.0 strip-bom@3.0.0: {} @@ -17868,8 +17913,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: {} @@ -17924,17 +17969,17 @@ 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-declaration-location@1.0.7(typescript@6.0.3): dependencies: - picomatch: 4.0.5 + picomatch: 4.0.7 typescript: 6.0.3 ts-invariant@0.10.3: @@ -17984,7 +18029,7 @@ snapshots: 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 @@ -18002,7 +18047,7 @@ snapshots: ts-node@10.9.2(@types/node@14.18.63)(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 @@ -18020,7 +18065,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 @@ -18038,7 +18083,7 @@ snapshots: ts-node@10.9.2(@types/node@20.19.43)(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 @@ -18056,7 +18101,7 @@ snapshots: ts-node@10.9.2(@types/node@20.19.43)(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 @@ -18074,7 +18119,7 @@ snapshots: ts-node@10.9.2(@types/node@20.19.43)(typescript@6.0.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 @@ -18092,7 +18137,7 @@ snapshots: ts-node@10.9.2(@types/node@22.20.1)(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 @@ -18110,7 +18155,7 @@ snapshots: ts-node@10.9.2(@types/node@22.20.1)(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 @@ -18242,35 +18287,35 @@ snapshots: typedarray@0.0.6: {} - typescript-eslint@8.67.0(eslint@10.8.1)(typescript@4.9.5): + typescript-eslint@8.68.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.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@4.9.5))(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.68.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.68.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.68.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.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@5.9.3))(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@5.9.3) + eslint: 10.9.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color - typescript-eslint@8.67.0(eslint@10.8.1)(typescript@6.0.3): + typescript-eslint@8.68.0(eslint@10.9.1)(typescript@6.0.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3) - '@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3) - eslint: 10.8.1 + '@typescript-eslint/eslint-plugin': 8.68.0(@typescript-eslint/parser@8.68.0(eslint@10.9.1)(typescript@6.0.3))(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/parser': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.68.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.68.0(eslint@10.9.1)(typescript@6.0.3) + eslint: 10.9.1 typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -18587,6 +18632,11 @@ snapshots: ws@8.21.2: {} + wsl-utils@0.4.0: + dependencies: + is-wsl: 3.1.1 + powershell-utils: 0.1.0 + xdg-basedir@4.0.0: {} xml-name-validator@5.0.0: {}