diff --git a/.talismanrc b/.talismanrc index debdcdd349..9c0dd432e3 100644 --- a/.talismanrc +++ b/.talismanrc @@ -1,5 +1,9 @@ fileignoreconfig: - filename: pnpm-lock.yaml - checksum: 3d5920821aca485d93dc90dc2006bb81b077344b5f5fd6487002d8b4222cff09 + checksum: 98cc0f62b09ea6768f3a20152860a327722a92efaa372acfc7d37bdd2afd014e +- filename: packages/contentstack/README.md + checksum: df0892cbcf3f04972161b30a1a0ef8844a2682ce8a3270f2911909e7789ad8d7 +- filename: packages/contentstack-utilities/src/logger/logger.ts + checksum: 8c960b88f59f2efd233e7e00fb69dfb90e6eccf52e7253d144d4e20ff72a6906 version: '1.0' diff --git a/packages/contentstack-auth/README.md b/packages/contentstack-auth/README.md index cc0276384a..684b162cd3 100644 --- a/packages/contentstack-auth/README.md +++ b/packages/contentstack-auth/README.md @@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-auth $ csdx COMMAND running command... $ csdx (--version) -@contentstack/cli-auth/2.0.0-beta.17 darwin-arm64 node-v24.18.0 +@contentstack/cli-auth/2.0.0-beta.17 darwin-arm64 node-v22.13.1 $ csdx --help [COMMAND] USAGE $ csdx COMMAND diff --git a/packages/contentstack-config/README.md b/packages/contentstack-config/README.md index 45d9ceaa62..0777eee901 100644 --- a/packages/contentstack-config/README.md +++ b/packages/contentstack-config/README.md @@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-config $ csdx COMMAND running command... $ csdx (--version) -@contentstack/cli-config/2.0.0-beta.15 darwin-arm64 node-v24.18.0 +@contentstack/cli-config/2.0.0-beta.15 darwin-arm64 node-v22.13.1 $ csdx --help [COMMAND] USAGE $ csdx COMMAND diff --git a/packages/contentstack-utilities/src/logger/logger.ts b/packages/contentstack-utilities/src/logger/logger.ts index 02d14640c7..b8be997e07 100644 --- a/packages/contentstack-utilities/src/logger/logger.ts +++ b/packages/contentstack-utilities/src/logger/logger.ts @@ -63,7 +63,7 @@ export default class Logger { winston.format.printf((info) => { // Apply minimal redaction for files (debugging info preserved) const redactedInfo = this.redact(info, false); - return JSON.stringify(redactedInfo); + return this.safeStringify(redactedInfo); }), ), }), @@ -75,7 +75,7 @@ export default class Logger { const logConfig = configHandler.get('log') || {}; const currentModule = logConfig.progressSupportedModule; const hasProgressSupport = currentModule && PROGRESS_SUPPORTED_MODULES.includes(currentModule); - + if (hasProgressSupport) { // Plugin has progress bars - respect user's explicit setting, or default to false (show progress bars) showConsoleLogs = logConfig.showConsoleLogs ?? false; @@ -146,6 +146,26 @@ export default class Logger { } } + /** + * Stringifies a log entry without throwing on circular references. + * `redact()` can fall back to the original (still-circular) object when + * cloning fails, so this must never assume the input is cycle-free. + */ + private safeStringify(value: any): string { + const seen = new WeakSet(); + try { + return JSON.stringify(value, (_key, val) => { + if (typeof val === 'object' && val !== null) { + if (seen.has(val)) return '[Circular]'; + seen.add(val); + } + return val; + }); + } catch { + return JSON.stringify({ level: value?.level, message: value?.message ?? '[Unserializable log entry]' }); + } + } + private shouldLog(level: LogType, target: 'console' | 'file'): boolean { // If console logging is disabled, don't log to console if (target === 'console' && this.config.consoleLoggingEnabled === false) { @@ -215,9 +235,12 @@ export default class Logger { this.loggers.error.error(logPayload); } - // For console, use debug level if hidden, otherwise error level + // For console, use debug level if hidden, otherwise error level. Each level's + // winston logger instance bundles both the file and console transports, so only + // write again here when the target differs from the one already written above — + // otherwise this would duplicate both the console line and the file entry. const consoleLevel: LogType = params.hidden ? 'debug' : 'error'; - if (this.shouldLog(consoleLevel, 'console')) { + if (consoleLevel !== 'error' && this.shouldLog(consoleLevel, 'console')) { this.loggers[consoleLevel].error(logPayload); } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a82b9b551a..20e167bae0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,71 +26,80 @@ importers: packages/contentstack: dependencies: '@contentstack/cli-audit': - specifier: ~1.20.0 - version: 1.20.0(@types/node@14.18.63)(debug@4.4.3) + specifier: ~2.0.0-beta.16 + version: 2.0.0-beta.16(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-auth': - specifier: ~1.8.5 + specifier: ~2.0.0-beta.17 version: link:../contentstack-auth '@contentstack/cli-bulk-operations': specifier: ^2.0.0-beta.5 version: 2.0.0-beta.5(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-bootstrap': - specifier: ~1.19.8 - version: 1.19.8(@types/node@14.18.63) + specifier: ~2.0.0-beta.25 + version: 2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-branches': - specifier: ~1.8.4 - version: 1.8.4(@types/node@14.18.63) - '@contentstack/cli-cm-bulk-publish': - specifier: ~1.12.2 - version: 1.12.2(@types/node@14.18.63) + specifier: ~2.0.0-beta.11 + version: 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-clone': - specifier: ~1.21.10 - version: 1.21.10(@types/node@14.18.63) + specifier: ~2.0.0-beta.26 + version: 2.0.0-beta.26(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-export': - specifier: ~1.26.0 - version: 1.26.0(@types/node@14.18.63) + specifier: ~2.0.0-beta.25 + version: 2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-export-to-csv': - specifier: ~1.12.7 - version: 1.12.7(@types/node@14.18.63) + specifier: ~2.0.0-beta.12 + version: 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-import': - specifier: ~1.34.0 - version: 1.34.0(@types/node@14.18.63) + specifier: ~2.0.0-beta.25 + version: 2.0.0-beta.25(@types/node@18.19.130) '@contentstack/cli-cm-import-setup': - specifier: ~1.8.7 - version: 1.8.7(@types/node@14.18.63) - '@contentstack/cli-cm-migrate-rte': - specifier: ~1.7.3 - version: 1.7.3(@types/node@14.18.63) + specifier: ~2.0.0-beta.19 + version: 2.0.0-beta.19(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-cm-seed': - specifier: ~1.15.9 - version: 1.15.9(@types/node@14.18.63) + specifier: ~2.0.0-beta.25 + version: 2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-command': - specifier: ~1.8.5 + specifier: ~2.0.0-beta.11 version: link:../contentstack-command '@contentstack/cli-config': - specifier: ~1.21.0 + specifier: ~2.0.0-beta.15 version: link:../contentstack-config '@contentstack/cli-migration': - specifier: ~1.12.5 - version: 1.12.5(@types/node@14.18.63) + specifier: ~2.0.0-beta.17 + version: 2.0.0-beta.17(@types/node@18.19.130)(debug@4.4.3) '@contentstack/cli-utilities': - specifier: ~1.19.0 + specifier: ~2.0.0-beta.12 version: link:../contentstack-utilities '@contentstack/cli-variants': - specifier: ~1.6.1 - version: 1.6.1(@types/node@14.18.63)(debug@4.4.3) + specifier: ~2.0.0-beta.20 + version: 2.0.0-beta.20(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/management': + specifier: ~1.30.4 + version: 1.30.4(debug@4.4.3) + '@contentstack/utils': + specifier: ~1.9.1 + version: 1.9.1 '@oclif/core': - specifier: ^4.11.4 + specifier: ^4.11.14 version: 4.13.3 '@oclif/plugin-help': - specifier: ^6.2.28 + specifier: ^6.2.53 version: 6.2.56 '@oclif/plugin-not-found': - specifier: ^3.2.53 - version: 3.2.91(@types/node@14.18.63) + specifier: ^3.2.88 + version: 3.2.92(@types/node@18.19.130) '@oclif/plugin-plugins': - specifier: ^5.4.54 + specifier: ^5.4.84 version: 5.4.86 + chalk: + specifier: ^5.6.2 + version: 5.6.2 + cli-progress: + specifier: ^3.12.0 + version: 3.12.0 + debug: + specifier: ^4.4.3 + version: 4.4.3(supports-color@8.1.1) figlet: specifier: 1.11.0 version: 1.11.0 @@ -129,7 +138,7 @@ importers: specifier: ^18.19.130 version: 18.19.130 '@types/semver': - specifier: ^7.7.0 + specifier: ^7.7.1 version: 7.8.0 '@types/sinon': specifier: ^21.0.0 @@ -142,13 +151,10 @@ importers: version: 10.8.0 eslint-config-oclif: specifier: ^6.0.137 - version: 6.0.179(eslint@10.8.0)(typescript@4.9.5) + version: 6.0.179(eslint@10.8.0)(typescript@5.9.3) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.0)(typescript@4.9.5) - globby: - specifier: ^11.1.0 - version: 11.1.0 + version: 3.1.14(eslint@10.8.0)(typescript@5.9.3) mocha: specifier: 10.8.2 version: 10.8.2 @@ -159,8 +165,8 @@ importers: specifier: ^15.1.0 version: 15.1.0 oclif: - specifier: ^4.23.8 - version: 4.23.29(@types/node@14.18.63) + specifier: ^4.23.0 + version: 4.23.30(@types/node@18.19.130) rimraf: specifier: ^5.0.10 version: 5.0.10 @@ -186,10 +192,10 @@ importers: packages/contentstack-auth: dependencies: '@contentstack/cli-command': - specifier: ~1.8.5 + specifier: ~2.0.0-beta.11 version: link:../contentstack-command '@contentstack/cli-utilities': - specifier: ~1.19.0 + specifier: ~2.0.0-beta.12 version: link:../contentstack-utilities '@oclif/core': specifier: ^4.11.4 @@ -239,7 +245,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.8 - version: 4.23.29(@types/node@14.18.63) + version: 4.23.30(@types/node@14.18.63) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -253,7 +259,7 @@ importers: packages/contentstack-command: dependencies: '@contentstack/cli-utilities': - specifier: ~1.19.0 + specifier: ~2.0.0-beta.12 version: link:../contentstack-utilities '@oclif/core': specifier: ^4.11.4 @@ -278,7 +284,7 @@ importers: specifier: ^6.0.15 version: 6.0.179(eslint@10.8.0)(typescript@4.9.5) eslint-config-oclif-typescript: - specifier: ^3.1.13 + specifier: ^3.1.14 version: 3.1.14(eslint@10.8.0)(typescript@4.9.5) mocha: specifier: 10.8.2 @@ -296,10 +302,10 @@ importers: packages/contentstack-config: dependencies: '@contentstack/cli-command': - specifier: ~1.8.5 + specifier: ~2.0.0-beta.11 version: link:../contentstack-command '@contentstack/cli-utilities': - specifier: ~1.19.0 + specifier: ~2.0.0-beta.12 version: link:../contentstack-utilities '@contentstack/utils': specifier: ~1.9.1 @@ -330,7 +336,7 @@ importers: specifier: ^10.5.0 version: 10.8.0 eslint-config-oclif: - specifier: ^6.0.62 + specifier: ^6.0.166 version: 6.0.179(eslint@10.8.0)(typescript@4.9.5) eslint-config-oclif-typescript: specifier: ^3.1.14 @@ -343,7 +349,7 @@ importers: version: 15.1.0 oclif: specifier: ^4.23.8 - version: 4.23.29(@types/node@14.18.63) + version: 4.23.30(@types/node@14.18.63) sinon: specifier: ^21.1.2 version: 21.1.2 @@ -369,7 +375,7 @@ importers: specifier: ^4.11.4 version: 4.13.3 axios: - specifier: ^1.16.1 + specifier: ^1.18.1 version: 1.19.0(debug@4.4.3) chalk: specifier: ^5.6.2 @@ -479,10 +485,10 @@ importers: version: 10.8.0 eslint-config-oclif: specifier: ^6.0.62 - version: 6.0.179(eslint@10.8.0)(typescript@4.9.5) + version: 6.0.179(eslint@10.8.0)(typescript@5.9.3) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(eslint@10.8.0)(typescript@4.9.5) + version: 3.1.14(eslint@10.8.0)(typescript@5.9.3) fancy-test: specifier: ^2.0.42 version: 2.0.42 @@ -504,92 +510,68 @@ importers: packages: - '@apollo/client@3.14.1': - resolution: {integrity: sha512-SgGX6E23JsZhUdG2anxiyHvEvvN6CUaI4ZfMsndZFeuHPXL3H0IsaiNAhLITSISbeyeYd+CBd9oERXQDdjXWZw==} - peerDependencies: - graphql: ^15.0.0 || ^16.0.0 - graphql-ws: ^5.5.5 || ^6.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc - subscriptions-transport-ws: ^0.9.0 || ^0.11.0 - peerDependenciesMeta: - graphql-ws: - optional: true - react: - optional: true - react-dom: - optional: true - subscriptions-transport-ws: - optional: true - - '@asamuzakjp/css-color@3.2.0': - resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} - - '@asamuzakjp/dom-selector@2.0.2': - resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==} - - '@aws-sdk/checksums@3.1000.25': - resolution: {integrity: sha512-zUjEceMw6vhAxMayAlF/vkkKqP9gHbENqvz11t4FbfDlxB/WtW/Az1orJAQ00Pc/yORLQJXKE24w11Ktu/XBcg==} + '@aws-sdk/checksums@3.1000.26': + resolution: {integrity: sha512-CGznePoL+1oWCSzqmkvlYMpWQEZohPR3LntjKXXfVH+oh6Kd8d+yHLkjpiAGwPIHAxFe4OAq3aKfRnv/wqWIyA==} engines: {node: '>=20.0.0'} - '@aws-sdk/client-cloudfront@3.1102.0': - resolution: {integrity: sha512-CYuujR/3k0Y3+tCG3yscYi49gIGJjl10HyUzIMiIYrTrsJHBgGLzCk+t5sR+uJrvWTHavtM513kgyhmrNKT0kA==} + '@aws-sdk/client-cloudfront@3.1104.0': + resolution: {integrity: sha512-dMUB4lCDuiceexvrEivTJAm8Pat6QuIorlLO3IwC2h8TRX/X460LDIosfduFXoIegv1HJ6XbrdVjmMBvO2v/xQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/client-s3@3.1102.0': - resolution: {integrity: sha512-VQL/oWlt0+Rj2QZcAnp3+hMHW/T01EmkPQXf9ise2gz6d95U82eVE1dPBpMlnv4aDiz99TrMR0DHmceCjCkCmA==} + '@aws-sdk/client-s3@3.1104.0': + resolution: {integrity: sha512-YCAVqUokR7KwpU8EZaciZhM7M3f2SirT8NJ/BgAy5qfycIuqRTXGXVbeJEdMg+Zk8BZscOHaiDoED2s/4SO8mA==} engines: {node: '>=20.0.0'} - '@aws-sdk/core@3.977.5': - resolution: {integrity: sha512-O5otOc1c6UZh5HsHAaPdYBcUUR9HL6mtnKqvc8nxN/CKDGUBUpsdh0q8K04Uz/dd1i0TaGyIQuQNqoO7+ad2TQ==} + '@aws-sdk/core@3.977.6': + resolution: {integrity: sha512-QiaJV4/zDrB4ZY2mfeSXSzSTc36W16sZXcGz+SPFk0CJ26gziO0cS+4LjJUMAbdeeBOvS0k0Aq1cZpfGdUXxSw==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-env@3.972.66': - resolution: {integrity: sha512-bOzP2+zdJ0XrghywB4FaJXtGZCx9yS0AGps+VJ5yEgg30wVyHNmVDBwVDXcRypzQY5iLGCS3NSn0nsuISqjFCQ==} + '@aws-sdk/credential-provider-env@3.972.67': + resolution: {integrity: sha512-rcIpk5kxUqDaaNa6Xk23pQ6ViY7jlqzmfFWCahQcBT97ddXaXYYwzCen9Tz1Jvo6aJft6wDl5bN44/Jw5B4oLA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-http@3.972.68': - resolution: {integrity: sha512-lkunS8X+H6V76WE+t/uGQm/U8v0JXK5mLfNFTUAMlE1kqaCjwlmqKJrgCVtqjK/vqnlrSWsLK4Lr4NANBWlfTQ==} + '@aws-sdk/credential-provider-http@3.972.69': + resolution: {integrity: sha512-nggwJtZ4eeNsUw5IeWBMXsi1ryct5idi0K+/SCRF3kybLubOMaNTb3XCihXpWMiVpyzyPeIrl0zTkzhBH9porA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-ini@3.973.11': - resolution: {integrity: sha512-KoDEolYtLHG/8C+IiZpXbJWyBOMkrHV+j66Kb9PBXmLv5euGb7aELvuCmLenoGAV6gBW2wM7TsG/1e5iulH4kA==} + '@aws-sdk/credential-provider-ini@3.973.12': + resolution: {integrity: sha512-pNEf/OeyN5X3VmLKlgSO6TqaWmW10CvI3TfwL1XhsuhYjSLT2VDaxFnCPHnOeQXSaFisMX4jNhpETriqN8DOmg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-login@3.972.73': - resolution: {integrity: sha512-tjsxMkTAFkmiV9ycmymapb9nLECWVOwFs0bZMQ9gB9bnbY8/HwfukHZlWbXZZp7qkPU6EXAfOcMm3DioFFEywA==} + '@aws-sdk/credential-provider-login@3.972.74': + resolution: {integrity: sha512-0AQfDcf99TNmqVKv0owHrw/TQs6i4ZE5t9qmz6NvO53bE/sA/tpXhXL9AAcEP1qHc6Zzjd1UMb69+/9zdhvY3g==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-node@3.972.77': - resolution: {integrity: sha512-l4nitYCN/Ls57vtUfdextCjTjW41JD7lQiAnuR0RTbdByFc/6OmEAzwGd+lrp6CUtiXGQL1FCaYiamfHASrwBw==} + '@aws-sdk/credential-provider-node@3.972.78': + resolution: {integrity: sha512-OgPAnfvbGAMWac6yvxJ1ihslrvDpPVwR68D2csospdNCCyPvHk9JLzYKwz48SNiS1T2znDwHauywRKRFfpyYng==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-process@3.972.66': - resolution: {integrity: sha512-YOnX6bIhdjx0QfaENu2PB0eFm5MEc9ft8XNGQ+NxMfeLSq9aE+XjWCwDupEnV4UWv5ZFpBLJbTREIx7KNOoqpQ==} + '@aws-sdk/credential-provider-process@3.972.67': + resolution: {integrity: sha512-IlUEejorGTWKb4/Dm7K5Yw4QxUmXLThLhrvBmzVBqZFTbW72cv9LTcITmo1dsnYriALE4h68mOq4LB99x6sQ7Q==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-sso@3.973.10': - resolution: {integrity: sha512-IsXnQ35j5VE+3ZK6aIhT5ypB+Jim3zRwVz0nYuVwyBKZyu/SYx+O2/LQpng8c2EiuwyqceabsDlYrICHDlJPsA==} + '@aws-sdk/credential-provider-sso@3.973.11': + resolution: {integrity: sha512-gAQBkBZxUB84d71+pPcI9L+jh2ujhuAVxc/4FgGiWFDjkPBlMKxzd5XDtkSXTFX8Ro7ansnT88+XadasxMeCRw==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-web-identity@3.972.72': - resolution: {integrity: sha512-nj9Zlsy7ya+fy+jhWTJwgfr7YdtDM4xHyZvgKuftuny0UgROVx9lxwvsWJSLvpKk4lig0m0tHng3k1fEnt0LeA==} + '@aws-sdk/credential-provider-web-identity@3.972.73': + resolution: {integrity: sha512-SnlEmQa6SjOgs6iOPLUQl1Eyq4AKiAdPQlkOhFhqNfDtDCwibMGvL6QlkSmf3o6vAUSImzdPCxowT5dfQUZP1A==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-sdk-s3@3.972.71': - resolution: {integrity: sha512-5fpExT7JOIZSIWExXCgJVbZzbaOlNrS/rE5Eoesnp0ONMbnCtiyYsCkahNIdlXtKrO6XHqXI6ceqssVWMYKmWQ==} + '@aws-sdk/middleware-sdk-s3@3.972.72': + resolution: {integrity: sha512-lSAoVPvQxX1d8TOM6waKDBQrvvZcm4w6pCldFAsRUffEaXq6lYY0pPyew3KlLu6Xqb74DXI42hGvSsbGBLljlw==} engines: {node: '>=20.0.0'} - '@aws-sdk/nested-clients@3.997.40': - resolution: {integrity: sha512-hEdHT0PBR4fkGxWhwKG5EtEYKnAM7HKkp0vD10ufk4YcXejH4r4q6G/XhPzjUc6Yxo5kBS2vHg7llj4ViR9VTQ==} + '@aws-sdk/nested-clients@3.997.41': + resolution: {integrity: sha512-RDHqPGQWlF6tatA/Tp3rg6oIwtgN9IVderxE+9av2Y93Dfyu+mO1hZ5Bu2jpfZg2rwdNbsssnwM+sLafIczMlQ==} engines: {node: '>=20.0.0'} '@aws-sdk/signature-v4-multi-region@3.996.43': resolution: {integrity: sha512-lKekx8bLBXSv4O+cslk9Zfnw2XKSkWBs3uWL5QGhH2ZAQfNS7FE0vcSSN2vD/AhxX54ZTywWxR4STThoeOXlBA==} engines: {node: '>=20.0.0'} - '@aws-sdk/token-providers@3.1102.0': - resolution: {integrity: sha512-Ua700vVvM1q105yABSUQWkCK6FeTrNfU6ORGetJe5BzkZWY7QhkF7SVTOlmDGWRDNd6jbyY0Dv5e+E4bMBEmLg==} + '@aws-sdk/token-providers@3.1103.0': + resolution: {integrity: sha512-N4wy26MNn31ItGVHYHPrEuCIFY4MBBjC+C5v1lJKqIUSA7OZBdhleCY53zCCrXn27hsk7YNOaTuhQu807S4AfQ==} engines: {node: '>=20.0.0'} '@aws-sdk/types@3.974.2': @@ -679,74 +661,31 @@ packages: resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} engines: {node: '>=0.1.90'} - '@contentstack/cli-audit@1.20.0': - resolution: {integrity: sha512-kpKF1DipEOKkkX3FYynrhcAnfvh7tp+qkDi+hW/3C1NjgNK8qOypDdRjZyf3wOhRPR22ANgo5y7fyDjNTqbaYA==} - engines: {node: '>=22.0.0'} - hasBin: true - - '@contentstack/cli-cm-bootstrap@1.19.8': - resolution: {integrity: sha512-5TljveOcp76NbaE29Lgcjkk1wuRW4TB2iy90xhtUob7wHrg7o8FD9q4FT5myReP4EO0HmZRakJfnCuS8Dsrk7w==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-branches@1.8.4': - resolution: {integrity: sha512-/YF6DO0GzkVILZfKWnA7y+Fdz7UQMwpw32eOF4CH291y6Z28XkRq9z75KDzxJIK9fI01xi8ENuQfuWych7z8pA==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-bulk-publish@1.12.2': - resolution: {integrity: sha512-5u/7r8V2V8pxNSOyGHmcn2bj3RHRwaVUgFnS4JHlN61HYj6rs/TssUAExx1Pn0JnkWePqmH5nqtc1NdDd0nb4Q==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-clone@1.21.10': - resolution: {integrity: sha512-pkoeD3YjiQSZaYbh2bv+zMEx4s6pNYTXHFyQ63F8lzo+ib+TYdvqnVDExKAg9VSL/4XGxn2kRhfFjk1OVp4myw==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-export-to-csv@1.12.7': - resolution: {integrity: sha512-xDyukBJ4YIPfGJSVHOZhYlOJfbQxjFmrtMVOYTyKkql7KmsZ8RQqxM0QzBaF7NLWc9Vl0T46Z8dCueIwc6xEsQ==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-export@1.26.0': - resolution: {integrity: sha512-bkZN/XHadjouhMzENGhKQ5ENV8AxrMv0coRGWZ3i+j1UaC5UvT3tcaLLZbo7VHegmU1drf/iMk/WYmeVfg0jmA==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-import-setup@1.8.7': - resolution: {integrity: sha512-ABLquD6sMtFgma24iBW7mekwJxZgh9Vz8WYWfiB9Y0xfEqjeQ/n5LgUnTuV6HAockpfps3T3Bj1ZB30GmkMsGw==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-import@1.34.0': - resolution: {integrity: sha512-LI0PRqV/gHQKlggSSm/AzrdNKcdaVLx1M6p9DScTsGgAJxxwFiZ9dYQ9vOnVXMaCBJnsDshZhbO4VXp58d66rw==} - engines: {node: '>=22.0.0'} - - '@contentstack/cli-cm-migrate-rte@1.7.3': - resolution: {integrity: sha512-+FjbiboG8c4B7LgspNnjQGxhtqL7v1lArYRWLfAi+yxDqp4e6ya1j4s2V5NB8TymaLlbdkrhbjcjO5OIQFfChg==} - engines: {node: '>=22.0.0'} + '@contentstack/cli-asset-management@1.0.0-beta.8': + resolution: {integrity: sha512-cyctsnQjGNiZov4rs/j6S+aTYf/N8wFBW6G77tiL1FC7Xmiwo1YBWaJU1wHd+MOudWz7RwerFwt6Cp85gIHnPw==} - '@contentstack/cli-cm-seed@1.15.9': - resolution: {integrity: sha512-lEj5RuQr7PAv2a7eJ5eHtOCAtqbH69mmIoUnMbaJOl2hW8XCJICVfTQc/XnXw80JNPEtRAv9xijiLjlbN7BNyw==} + '@contentstack/cli-audit@2.0.0-beta.16': + resolution: {integrity: sha512-CjCKerDDv95Kdre8wtrnp0nhtfMDlzCZJBQxeh7n1r+3rwhezpE3Qhyzhd0azk8hj24fnVzXf9Tl6g1IvASaJw==} engines: {node: '>=22.0.0'} + hasBin: true - '@contentstack/cli-command@1.8.5': - resolution: {integrity: sha512-gwg04KOYZUDdr5vgjRfGSdIVIPZ/Qfnyv0tG+9ihpZwVl7JxsJ9Rpg8olAtw1oy+LqjYZzc6cx0uaCFO3c/Skg==} + '@contentstack/cli-bulk-operations@2.0.0-beta.5': + resolution: {integrity: sha512-sMZhf5DPl4utazdzqLYPd/zyEn/Xi85GUcGhCnct0ufQvxNROuHyvSRTrcwiT/I72Y2c8KIfULdGQu3DcBxlww==} engines: {node: '>=22.0.0'} + hasBin: true - '@contentstack/cli-config@1.21.0': - resolution: {integrity: sha512-vxSuMf7qjAzxrAIkdsYX4YGDOxq1dlX0RMFwLbzMuEBINOuxGr6WsryXxeR/5QCkD1kb07qh2puq4FxBjPn4HQ==} + '@contentstack/cli-cm-bootstrap@2.0.0-beta.25': + resolution: {integrity: sha512-ux90V/ASVxrvXZFlcPIB93WqjFTTJ87KcvGCLm1tjijxvYLTwGJHkFuEpddaUlxNzsP3XaCFmRKFJvwgep0tzg==} engines: {node: '>=22.0.0'} - '@contentstack/cli-launch@1.11.1': - resolution: {integrity: sha512-sInkejRj3BQY2P4EsAzkSy9OIWBFS5rFwP7v9sC9mMMo7UGuasF7hZUJHiIDCcwEnRTIRPQ41qX6NBlIr3steA==} + '@contentstack/cli-cm-branches@2.0.0-beta.11': + resolution: {integrity: sha512-3TmF++JWA8Y4dcKIrpFqqp6O60KJLEdWPx/rZcviVznsjRitWrdHkUsp2Aqr6EEhEg7BuBmmkKzDhvuGAPi3rQ==} engines: {node: '>=22.0.0'} - hasBin: true - '@contentstack/cli-migration@1.12.5': - resolution: {integrity: sha512-+nAgHTxd4BRFDoeh4/nmkgb+Ef3oLySdSCSeU77eLLRUOhxSQaDdrDmD6qJQ+7bYRmJFx2u6CAS/KCw/AuAHbQ==} + '@contentstack/cli-cm-clone@2.0.0-beta.26': + resolution: {integrity: sha512-46JEgBzEXmVuIb9COqFsQZGHBVzCUpXOls9/Ty/lvwoNspQH2dLt+cmrH7S3n2QZv+QRzCfyTpOoqa46Mzr4pg==} engines: {node: '>=22.0.0'} - '@contentstack/cli-utilities@1.19.0': - resolution: {integrity: sha512-QkQ2KakgMLYt2oa7bov1RHb4N1YjJqGqGDkh3oiTfgN+c5FvqoyaRUrngQCjefat3GLd2MY2SOmgILcBCghTpw==} - - '@contentstack/cli-variants@1.6.1': - resolution: {integrity: sha512-gYVq/RwKeiQ+fA05J0ajw+kHl14WtYLIWvZ2D9ftW2At5yMeeWCmE5pChEhGF8sD7vv7p97wjyjcCt1w1tvHjQ==} - '@contentstack/cli-cm-export-to-csv@2.0.0-beta.12': resolution: {integrity: sha512-/Vebu9+pp/k+xakeB1BZtjtH/vb27KaQOeTZD8wPpkZlVGz2GBGf8gIYkE+MQibPM7uO+WR7yWE6hIYHS1bmKA==} engines: {node: '>=22.0.0'} @@ -785,11 +724,11 @@ packages: '@contentstack/cli-variants@2.0.0-beta.20': resolution: {integrity: sha512-DoYJI9yUcVd81n8XnRPjjFfszxfmRkP6RmP40iAtWdUvlLIMPX7ajp8n/bBwdalB2q/NAWEtNo71I8y+fenItQ==} - '@contentstack/core@1.4.1': - resolution: {integrity: sha512-QfLa8WUwquWSwvF8EltLyzQTkeNE2I9b9PBkPe21w0d5PnHOagxFzDNCYN4VO/zuJ52sNtKLFIFUcvLsOPk9ww==} + '@contentstack/core@1.5.1': + resolution: {integrity: sha512-sz07yKU+NI3zo8WDtYfJO23cqhglChxbE+CQt5smpTLCHv3hU30vX1nFGLI9tPAuBOCg3pJJDeDohgUNesJGeQ==} - '@contentstack/delivery-sdk@5.5.0': - resolution: {integrity: sha512-X6inqsDh0Bcz6YO3QhN+H7TPiZ9PNx31DsVOWP+w4T5ohPqM2EYh53rbl6gOXQG9JJ9ihpDzdoQRcM4ld2Vglw==} + '@contentstack/delivery-sdk@5.5.2': + resolution: {integrity: sha512-RLLpgnPxGsWOzI0qwbFEEuESO2GecmUaTBCeiav8c9FerExdOu0t+bAecy3ulAKpFqLqaIV3L+Vm/1/dW3B2vA==} engines: {node: '>=18'} '@contentstack/management@1.30.4': @@ -1120,12 +1059,6 @@ packages: '@jridgewell/trace-mapping@0.3.9': resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - '@napi-rs/lzma-linux-x64-gnu@1.5.1': - resolution: {integrity: sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==} - engines: {node: ^22.20 || ^24.12 || >=25} - cpu: [x64] - os: [linux] - '@napi-rs/wasm-runtime@1.2.2': resolution: {integrity: sha512-JfB4kuJQjaoHuCTseIINHtHWeJnvgEcxjwA5t/Y00ZgaOO1Crz3fjT/p8kT28zA/Caz7oiUMn3d6H2yOVCVwuw==} engines: {node: ^20.19.0 || ^22.13.0 || >=23.5.0} @@ -1157,8 +1090,8 @@ packages: resolution: {integrity: sha512-0LkCjFGRGY7AaZb5p8gDcSPNkFrn+vNLKvGe1f7j/Z6U9Uy1cV6R2eWVsjuZTGQ3RvBvjquFPwLy1jTgR5l87w==} engines: {node: '>=18.0.0'} - '@oclif/plugin-not-found@3.2.91': - resolution: {integrity: sha512-ICFrUeotKD3gsBOZR5mrgz2y1QDPM/C6hcu1i2tFjfW7AVnKINvsgANFou0ObLJGkslNS+6uX+1qcny37vJcyg==} + '@oclif/plugin-not-found@3.2.92': + resolution: {integrity: sha512-Fgamrm4o1lgH101mRHNwe6lw8VYZZ+E8frfqHq6hnSZME832/F0zCHv84MlOpw8ec9ub8dztg21OHi2jaMvE/g==} engines: {node: '>=18.0.0'} '@oclif/plugin-plugins@5.4.86': @@ -1213,180 +1146,6 @@ packages: resolution: {integrity: sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA==} engines: {node: '>=12'} - '@rollup/plugin-commonjs@28.0.9': - resolution: {integrity: sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA==} - engines: {node: '>=16.0.0 || 14 >= 14.17'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-json@6.1.0': - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-node-resolve@16.0.3': - resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-typescript@12.3.0': - resolution: {integrity: sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - - '@rollup/pluginutils@5.4.0': - resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/rollup-android-arm-eabi@4.62.4': - resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.62.4': - resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.62.4': - resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.62.4': - resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-freebsd-arm64@4.62.4': - resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-x64@4.62.4': - resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-linux-arm-gnueabihf@4.62.4': - resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-musleabihf@4.62.4': - resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.62.4': - resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.62.4': - resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-loong64-gnu@4.62.4': - resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-loong64-musl@4.62.4': - resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-ppc64-gnu@4.62.4': - resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-ppc64-musl@4.62.4': - resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.62.4': - resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-musl@4.62.4': - resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.62.4': - resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.62.4': - resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.62.4': - resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-openbsd-x64@4.62.4': - resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==} - cpu: [x64] - os: [openbsd] - - '@rollup/rollup-openharmony-arm64@4.62.4': - resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==} - cpu: [arm64] - os: [openharmony] - - '@rollup/rollup-win32-arm64-msvc@4.62.4': - resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.62.4': - resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-gnu@4.62.4': - resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==} - cpu: [x64] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.62.4': - resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==} - cpu: [x64] - os: [win32] - '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -1521,15 +1280,6 @@ packages: '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/qs@6.15.1': - resolution: {integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/semver@7.8.0': resolution: {integrity: sha512-1mAINjtQCXXeLkJ9ehXkwOcBpqtLxiVtKhpUf83DdRNdQKV0iXZpaHYqRr7nj+wvxuJzoAmAwXI+sCNMv1CzLQ==} @@ -1997,6 +1747,11 @@ packages: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} + axios-mock-adapter@2.1.0: + resolution: {integrity: sha512-AZUe4OjECGCNNssH8SOdtneiQELsqTsat3SQQCWLPjN436/H+L9AjWfV7bF+Zg/YL9cgbhrz5671hoh+Tbn98w==} + peerDependencies: + axios: '>= 0.17.0' + axios@1.19.0: resolution: {integrity: sha512-ht/iuYZXEjFxLH/Hkezgd7m6JKlHHXEUSneaDz8uZe1Gj5QZtCnpyDsckvAiEnT89OEbCLmnte4R4sn7P0EKFw==} @@ -2304,8 +2059,9 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.49.0: - resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==} + core-js-compat@3.50.0: + resolution: {integrity: sha512-XGpFGbMLHwSt74YLTKho7Ib242qi6O8MSX+sRokV4oz7iKXvQWGYZthjIhjRGMxjzVkAubBO512dKGYcefmX3Q==} + engines: {node: '>=6.4.0'} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -2463,8 +2219,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.400: - resolution: {integrity: sha512-96EWDNjM59SYflgeV5Ylsf4EMiq1a25YjCnJH7cxn/AF2H3pILRweaUnoLax0yKHWdpOzY6JKEu45e8irqZIHA==} + electron-to-chromium@1.5.402: + resolution: {integrity: sha512-/oOpMaPT6Yg+6/1XQhyIPlzgj7Ye9zf+nNM2Uh6OcE2G2oNptWazFa+qB2Pdqqbsc9KnIDzgAntoYN0dbwOXwA==} elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} @@ -2482,10 +2238,6 @@ packages: enabled@2.0.0: resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} - encodeurl@2.0.0: - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} - engines: {node: '>= 0.8'} - enhanced-resolve@5.24.5: resolution: {integrity: sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==} engines: {node: '>=10.13.0'} @@ -3864,8 +3616,8 @@ packages: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} - node-releases@2.0.52: - resolution: {integrity: sha512-MRlTqhAfoMx/4mhEbPo3Hi02g9LJZaJkka69V6h67Cb1gjrAG0jsTE4CZX1eptNx+VCAwJmfpnDIF4P0Nh1A7A==} + node-releases@2.0.53: + resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==} engines: {node: '>=18'} normalize-package-data@2.5.0: @@ -4015,8 +3767,8 @@ packages: resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} engines: {node: '>= 0.4'} - oclif@4.23.29: - resolution: {integrity: sha512-pUekmMh+wwIbFq3xX1EfkgZ7RuYuuSbdhJiB+20zqSfGE8Tt9T+K9br1/vmsaIOxfDo0Dw3jxLBk4JZOMFEMeQ==} + oclif@4.23.30: + resolution: {integrity: sha512-x8sMRv606XqZAWEfGh981PP2JM4G2CKt4/z2KDntoNHljD8slfJ5sHaDFUQya9w6W8xOJDMFF3UaLAFFYHo13w==} engines: {node: '>=18.0.0'} hasBin: true @@ -4427,17 +4179,6 @@ packages: engines: {node: 20 || >=22} hasBin: true - rollup@4.62.4: - resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - - rrweb-cssom@0.8.0: - resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} - run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -4961,10 +4702,6 @@ packages: util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - uuid@14.0.1: resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==} hasBin: true @@ -5059,18 +4796,6 @@ packages: write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - ws@8.21.2: - resolution: {integrity: sha512-54dMVAo4WIe6SKy3vBgN+9bJZqqQ8IMRevAkOLQALhi49qkkQDQfWdAZ8KQlXiEabw88ARXXdUrlvtbKQX+aKw==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - xdg-basedir@4.0.0: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} @@ -5140,51 +4865,18 @@ packages: snapshots: - '@aws-sdk/checksums@3.1000.22': - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2) - '@wry/caches': 1.0.1 - '@wry/equality': 0.5.7 - '@wry/trie': 0.5.0 - graphql: 16.14.2 - graphql-tag: 2.12.7(graphql@16.14.2) - hoist-non-react-statics: 3.3.2 - optimism: 0.18.1 - prop-types: 15.8.1 - rehackt: 0.1.0 - symbol-observable: 4.0.0 - ts-invariant: 0.10.3 - tslib: 2.8.1 - zen-observable-ts: 1.2.5 - transitivePeerDependencies: - - '@types/react' - - '@asamuzakjp/css-color@3.2.0': - dependencies: - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) - '@csstools/css-tokenizer': 3.0.4 - lru-cache: 10.4.3 - - '@asamuzakjp/dom-selector@2.0.2': - dependencies: - bidi-js: 1.0.3 - css-tree: 2.3.1 - is-potential-custom-element-name: 1.0.1 - - '@aws-sdk/checksums@3.1000.25': + '@aws-sdk/checksums@3.1000.26': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/client-cloudfront@3.1102.0': + '@aws-sdk/client-cloudfront@3.1104.0': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/credential-provider-node': 3.972.77 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/credential-provider-node': 3.972.78 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/fetch-http-handler': 5.6.13 @@ -5192,12 +4884,12 @@ snapshots: '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/client-s3@3.1102.0': + '@aws-sdk/client-s3@3.1104.0': dependencies: - '@aws-sdk/checksums': 3.1000.25 - '@aws-sdk/core': 3.977.5 - '@aws-sdk/credential-provider-node': 3.972.77 - '@aws-sdk/middleware-sdk-s3': 3.972.71 + '@aws-sdk/checksums': 3.1000.26 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/credential-provider-node': 3.972.78 + '@aws-sdk/middleware-sdk-s3': 3.972.72 '@aws-sdk/signature-v4-multi-region': 3.996.43 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 @@ -5206,7 +4898,7 @@ snapshots: '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/core@3.977.5': + '@aws-sdk/core@3.977.6': dependencies: '@aws-sdk/types': 3.974.2 '@aws-sdk/xml-builder': 3.972.37 @@ -5217,17 +4909,17 @@ snapshots: bowser: 2.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.972.66': + '@aws-sdk/credential-provider-env@3.972.67': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-http@3.972.68': + '@aws-sdk/credential-provider-http@3.972.69': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/fetch-http-handler': 5.6.13 @@ -5235,84 +4927,84 @@ snapshots: '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-ini@3.973.11': + '@aws-sdk/credential-provider-ini@3.973.12': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/credential-provider-env': 3.972.66 - '@aws-sdk/credential-provider-http': 3.972.68 - '@aws-sdk/credential-provider-login': 3.972.73 - '@aws-sdk/credential-provider-process': 3.972.66 - '@aws-sdk/credential-provider-sso': 3.973.10 - '@aws-sdk/credential-provider-web-identity': 3.972.72 - '@aws-sdk/nested-clients': 3.997.40 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/credential-provider-env': 3.972.67 + '@aws-sdk/credential-provider-http': 3.972.69 + '@aws-sdk/credential-provider-login': 3.972.74 + '@aws-sdk/credential-provider-process': 3.972.67 + '@aws-sdk/credential-provider-sso': 3.973.11 + '@aws-sdk/credential-provider-web-identity': 3.972.73 + '@aws-sdk/nested-clients': 3.997.41 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/credential-provider-imds': 4.4.16 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-login@3.972.73': + '@aws-sdk/credential-provider-login@3.972.74': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/nested-clients': 3.997.40 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/nested-clients': 3.997.41 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-node@3.972.77': + '@aws-sdk/credential-provider-node@3.972.78': dependencies: - '@aws-sdk/credential-provider-env': 3.972.66 - '@aws-sdk/credential-provider-http': 3.972.68 - '@aws-sdk/credential-provider-ini': 3.973.11 - '@aws-sdk/credential-provider-process': 3.972.66 - '@aws-sdk/credential-provider-sso': 3.973.10 - '@aws-sdk/credential-provider-web-identity': 3.972.72 + '@aws-sdk/credential-provider-env': 3.972.67 + '@aws-sdk/credential-provider-http': 3.972.69 + '@aws-sdk/credential-provider-ini': 3.973.12 + '@aws-sdk/credential-provider-process': 3.972.67 + '@aws-sdk/credential-provider-sso': 3.973.11 + '@aws-sdk/credential-provider-web-identity': 3.972.73 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/credential-provider-imds': 4.4.16 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-process@3.972.66': + '@aws-sdk/credential-provider-process@3.972.67': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.973.10': + '@aws-sdk/credential-provider-sso@3.973.11': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/nested-clients': 3.997.40 - '@aws-sdk/token-providers': 3.1102.0 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/nested-clients': 3.997.41 + '@aws-sdk/token-providers': 3.1103.0 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-web-identity@3.972.72': + '@aws-sdk/credential-provider-web-identity@3.972.73': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/nested-clients': 3.997.40 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/nested-clients': 3.997.41 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.972.71': + '@aws-sdk/middleware-sdk-s3@3.972.72': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/signature-v4-multi-region': 3.996.43 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/nested-clients@3.997.40': + '@aws-sdk/nested-clients@3.997.41': dependencies: - '@aws-sdk/core': 3.977.5 + '@aws-sdk/core': 3.977.6 '@aws-sdk/signature-v4-multi-region': 3.996.43 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 @@ -5328,10 +5020,10 @@ snapshots: '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/token-providers@3.1102.0': + '@aws-sdk/token-providers@3.1103.0': dependencies: - '@aws-sdk/core': 3.977.5 - '@aws-sdk/nested-clients': 3.997.40 + '@aws-sdk/core': 3.977.6 + '@aws-sdk/nested-clients': 3.997.41 '@aws-sdk/types': 3.974.2 '@smithy/core': 3.31.1 '@smithy/types': 4.16.1 @@ -5453,12 +5145,21 @@ snapshots: '@colors/colors@1.6.0': {} - '@contentstack/cli-audit@1.20.0(@types/node@14.18.63)(debug@4.4.3)': + '@contentstack/cli-asset-management@1.0.0-beta.8(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + lodash: 4.18.1 + transitivePeerDependencies: + - '@types/node' + - debug + - supports-color + + '@contentstack/cli-audit@2.0.0-beta.16(@types/node@18.19.130)(debug@4.4.3)': + dependencies: + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 - chalk: 4.1.2 + chalk: 5.6.2 fast-csv: 4.3.6 fs-extra: 11.4.0 lodash: 4.18.1 @@ -5468,60 +5169,58 @@ snapshots: - debug - supports-color - '@contentstack/cli-cm-bootstrap@1.19.8(@types/node@14.18.63)': + '@contentstack/cli-bulk-operations@2.0.0-beta.5(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-cm-seed': 1.15.9(@types/node@14.18.63) - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-config': 1.21.0(@types/node@14.18.63) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - '@oclif/core': 4.13.3 - inquirer: 8.2.7(@types/node@14.18.63) - mkdirp: 2.1.6 - tar: 7.5.22 + '@contentstack/cli-asset-management': 1.0.0-beta.8(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/delivery-sdk': 5.5.2(debug@4.4.3) + '@contentstack/management': 1.30.4(debug@4.4.3) + lodash: 4.18.1 + uuid: 14.0.1 transitivePeerDependencies: - '@types/node' - debug - supports-color - '@contentstack/cli-cm-branches@1.8.4(@types/node@14.18.63)': + '@contentstack/cli-cm-bootstrap@2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-cm-seed': 2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-config': 2.0.0-beta.15(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 - chalk: 4.1.2 - just-diff: 6.0.2 - lodash: 4.18.1 + inquirer: 12.11.1(@types/node@18.19.130) + mkdirp: 2.1.6 + tar: 7.5.22 transitivePeerDependencies: - '@types/node' - debug - supports-color - '@contentstack/cli-cm-bulk-publish@1.12.2(@types/node@14.18.63)': + '@contentstack/cli-cm-branches@2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-config': 1.21.0(@types/node@14.18.63) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 - chalk: 4.1.2 - dotenv: 16.6.1 - inquirer: 8.2.7(@types/node@14.18.63) + chalk: 5.6.2 + just-diff: 6.0.2 lodash: 4.18.1 - winston: 3.19.0 transitivePeerDependencies: - '@types/node' - debug - supports-color - '@contentstack/cli-cm-clone@1.21.10(@types/node@14.18.63)': + '@contentstack/cli-cm-clone@2.0.0-beta.26(@types/node@18.19.130)(debug@4.4.3)': dependencies: '@colors/colors': 1.6.0 - '@contentstack/cli-cm-export': 1.26.0(@types/node@14.18.63) - '@contentstack/cli-cm-import': 1.34.0(@types/node@14.18.63) - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-cm-export': 2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-cm-import': 2.0.0-beta.25(@types/node@18.19.130) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 - chalk: 4.1.2 - inquirer: 8.2.7(@types/node@14.18.63) + chalk: 5.6.2 + inquirer: 12.11.1(@types/node@18.19.130) lodash: 4.18.1 merge: 2.1.1 ora: 5.4.1 @@ -5532,10 +5231,11 @@ snapshots: - debug - supports-color - '@contentstack/cli-cm-export-to-csv@1.12.7(@types/node@14.18.63)': + '@contentstack/cli-cm-export-to-csv@2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + '@inquirer/prompts': 7.10.1(@types/node@18.19.130) '@oclif/core': 4.13.3 fast-csv: 4.3.6 transitivePeerDependencies: @@ -5543,11 +5243,12 @@ snapshots: - debug - supports-color - '@contentstack/cli-cm-export@1.26.0(@types/node@14.18.63)': + '@contentstack/cli-cm-export@2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-variants': 1.6.1(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-asset-management': 1.0.0-beta.8(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-variants': 2.0.0-beta.20(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 async: 3.2.6 big-json: 3.2.0 @@ -5564,13 +5265,14 @@ snapshots: - debug - supports-color - '@contentstack/cli-cm-import-setup@1.8.7(@types/node@14.18.63)': + '@contentstack/cli-cm-import-setup@2.0.0-beta.19(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-asset-management': 1.0.0-beta.8(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 big-json: 3.2.0 - chalk: 4.1.2 + chalk: 5.6.2 fs-extra: 11.4.0 lodash: 4.18.1 merge: 2.1.1 @@ -5581,12 +5283,13 @@ snapshots: - debug - supports-color - '@contentstack/cli-cm-import@1.34.0(@types/node@14.18.63)': + '@contentstack/cli-cm-import@2.0.0-beta.25(@types/node@18.19.130)': dependencies: - '@contentstack/cli-audit': 1.20.0(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-variants': 1.6.1(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-asset-management': 1.0.0-beta.8(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-audit': 2.0.0-beta.16(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-variants': 2.0.0-beta.20(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 big-json: 3.2.0 bluebird: 3.7.2 @@ -5603,33 +5306,12 @@ snapshots: - '@types/node' - supports-color - '@contentstack/cli-cm-migrate-rte@1.7.3(@types/node@14.18.63)': - dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/json-rte-serializer': 2.1.0 - '@oclif/core': 4.13.3 - '@oclif/plugin-help': 6.2.56 - chalk: 4.1.2 - collapse-whitespace: 1.1.7 - jsdom: 23.2.0 - jsonschema: 1.5.0 - lodash: 4.18.1 - omit-deep-lodash: 1.1.7 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - canvas - - debug - - supports-color - - utf-8-validate - - '@contentstack/cli-cm-seed@1.15.9(@types/node@14.18.63)': + '@contentstack/cli-cm-seed@2.0.0-beta.25(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-cm-import': 1.34.0(@types/node@14.18.63) - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - inquirer: 8.2.7(@types/node@14.18.63) + '@contentstack/cli-cm-import': 2.0.0-beta.25(@types/node@18.19.130) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) + inquirer: 12.11.1(@types/node@18.19.130) mkdirp: 1.0.4 tar: 7.5.22 tmp: 0.2.7 @@ -5638,9 +5320,9 @@ snapshots: - debug - supports-color - '@contentstack/cli-command@1.8.5(@types/node@14.18.63)(debug@4.4.3)': + '@contentstack/cli-command@2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 contentstack: 3.27.1 transitivePeerDependencies: @@ -5648,10 +5330,10 @@ snapshots: - debug - supports-color - '@contentstack/cli-config@1.21.0(@types/node@14.18.63)': + '@contentstack/cli-config@2.0.0-beta.15(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@contentstack/utils': 1.9.1 '@oclif/core': 4.13.3 transitivePeerDependencies: @@ -5661,46 +5343,8 @@ snapshots: '@contentstack/cli-migration@2.0.0-beta.17(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@apollo/client': 3.14.1(graphql@16.14.2) - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) - '@oclif/core': 4.13.3 - '@oclif/plugin-help': 6.2.56 - '@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@4.9.5) - '@types/express': 4.17.25 - '@types/express-serve-static-core': 4.19.9 - adm-zip: 0.5.18 - chalk: 4.1.2 - cross-fetch: 4.1.0 - dotenv: 16.6.1 - express: 4.22.2 - form-data: 4.0.6 - graphql: 16.14.2 - ini: 3.0.1 - lodash: 4.18.1 - open: 8.4.2 - rollup: 4.62.4 - winston: 3.19.0 - transitivePeerDependencies: - - '@types/node' - - '@types/react' - - debug - - encoding - - graphql-ws - - react - - react-dom - - subscriptions-transport-ws - - supports-color - - tslib - - typescript - - '@contentstack/cli-migration@1.12.5(@types/node@14.18.63)': - dependencies: - '@contentstack/cli-command': 1.8.5(@types/node@14.18.63)(debug@4.4.3) - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-command': 2.0.0-beta.11(@types/node@18.19.130)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 async: 3.2.6 callsites: 3.1.0 @@ -5717,14 +5361,14 @@ snapshots: - zen-observable - zenObservable - '@contentstack/cli-utilities@1.19.0(@types/node@14.18.63)(debug@4.4.3)': + '@contentstack/cli-utilities@2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3)': 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) - chalk: 4.1.2 + chalk: 5.6.2 cli-cursor: 3.1.0 cli-progress: 3.12.0 cli-table: 0.3.11 @@ -5755,9 +5399,9 @@ snapshots: - debug - supports-color - '@contentstack/cli-variants@1.6.1(@types/node@14.18.63)(debug@4.4.3)': + '@contentstack/cli-variants@2.0.0-beta.20(@types/node@18.19.130)(debug@4.4.3)': dependencies: - '@contentstack/cli-utilities': 1.19.0(@types/node@14.18.63)(debug@4.4.3) + '@contentstack/cli-utilities': 2.0.0-beta.12(@types/node@18.19.130)(debug@4.4.3) '@oclif/core': 4.13.3 lodash: 4.18.1 mkdirp: 1.0.4 @@ -5767,29 +5411,34 @@ snapshots: - debug - supports-color - '@contentstack/core@1.4.1(debug@4.4.3)': + '@contentstack/core@1.5.1(debug@4.4.3)': dependencies: - axios: 1.18.1(debug@4.4.3) - axios-mock-adapter: 2.1.0(axios@1.18.1(debug@4.4.3)) + axios: 1.19.0(debug@4.4.3) + axios-mock-adapter: 2.1.0(axios@1.19.0(debug@4.4.3)) lodash: 4.18.1 - lodash.clonedeep: 4.5.0 - lodash.flatten: 4.4.0 - lodash.isempty: 4.4.0 - lodash.isequal: 4.5.0 - lodash.isobject: 3.0.2 - lodash.isplainobject: 4.0.6 - lodash.isundefined: 3.0.1 - lodash.kebabcase: 4.1.1 - slate: 0.103.0 - uuid: 14.0.1 + qs: 6.15.2 + tslib: 2.8.1 + transitivePeerDependencies: + - debug + - supports-color - '@contentstack/management@1.30.4(debug@4.4.3)': + '@contentstack/delivery-sdk@5.5.2(debug@4.4.3)': dependencies: + '@contentstack/core': 1.5.1(debug@4.4.3) '@contentstack/utils': 1.9.1 - assert: 2.1.0 axios: 1.19.0(debug@4.4.3) - buffer: 6.0.3 - form-data: 4.0.6 + humps: 2.0.1 + transitivePeerDependencies: + - debug + - supports-color + + '@contentstack/management@1.30.4(debug@4.4.3)': + dependencies: + '@contentstack/utils': 1.9.1 + assert: 2.1.0 + axios: 1.19.0(debug@4.4.3) + buffer: 6.0.3 + form-data: 4.0.6 husky: 9.1.7 lodash: 4.18.1 otplib: 12.0.1 @@ -6301,9 +5950,6 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - '@napi-rs/lzma-linux-x64-gnu@1.5.1': - optional: true - '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': dependencies: '@emnapi/core': 1.10.0 @@ -6350,7 +5996,7 @@ snapshots: dependencies: '@oclif/core': 4.13.3 - '@oclif/plugin-not-found@3.2.91(@types/node@14.18.63)': + '@oclif/plugin-not-found@3.2.92(@types/node@14.18.63)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@14.18.63) '@oclif/core': 4.13.3 @@ -6359,6 +6005,15 @@ snapshots: transitivePeerDependencies: - '@types/node' + '@oclif/plugin-not-found@3.2.92(@types/node@18.19.130)': + dependencies: + '@inquirer/prompts': 7.10.1(@types/node@18.19.130) + '@oclif/core': 4.13.3 + ansis: 3.17.0 + fast-levenshtein: 3.0.0 + transitivePeerDependencies: + - '@types/node' + '@oclif/plugin-plugins@5.4.86': dependencies: '@oclif/core': 4.13.3 @@ -6434,126 +6089,6 @@ snapshots: '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - '@rollup/plugin-commonjs@28.0.9(rollup@4.62.4)': - dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) - commondir: 1.0.1 - estree-walker: 2.0.2 - fdir: 6.5.0(picomatch@4.0.5) - is-reference: 1.2.1 - magic-string: 0.30.21 - picomatch: 4.0.5 - optionalDependencies: - rollup: 4.62.4 - - '@rollup/plugin-json@6.1.0(rollup@4.62.4)': - dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) - optionalDependencies: - rollup: 4.62.4 - - '@rollup/plugin-node-resolve@16.0.3(rollup@4.62.4)': - dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-module: 1.0.0 - resolve: 1.22.12 - optionalDependencies: - rollup: 4.62.4 - - '@rollup/plugin-typescript@12.3.0(rollup@4.62.4)(tslib@2.8.1)(typescript@4.9.5)': - dependencies: - '@rollup/pluginutils': 5.4.0(rollup@4.62.4) - resolve: 1.22.12 - typescript: 4.9.5 - optionalDependencies: - rollup: 4.62.4 - tslib: 2.8.1 - - '@rollup/pluginutils@5.4.0(rollup@4.62.4)': - dependencies: - '@types/estree': 1.0.9 - estree-walker: 2.0.2 - picomatch: 4.0.5 - optionalDependencies: - rollup: 4.62.4 - - '@rollup/rollup-android-arm-eabi@4.62.4': - optional: true - - '@rollup/rollup-android-arm64@4.62.4': - optional: true - - '@rollup/rollup-darwin-arm64@4.62.4': - optional: true - - '@rollup/rollup-darwin-x64@4.62.4': - optional: true - - '@rollup/rollup-freebsd-arm64@4.62.4': - optional: true - - '@rollup/rollup-freebsd-x64@4.62.4': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.62.4': - optional: true - - '@rollup/rollup-linux-arm-musleabihf@4.62.4': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.62.4': - optional: true - - '@rollup/rollup-linux-loong64-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-loong64-musl@4.62.4': - optional: true - - '@rollup/rollup-linux-ppc64-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-ppc64-musl@4.62.4': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-riscv64-musl@4.62.4': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.62.4': - optional: true - - '@rollup/rollup-linux-x64-musl@4.62.4': - optional: true - - '@rollup/rollup-openbsd-x64@4.62.4': - optional: true - - '@rollup/rollup-openharmony-arm64@4.62.4': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.62.4': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.62.4': - optional: true - - '@rollup/rollup-win32-x64-gnu@4.62.4': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.62.4': - optional: true - '@rtsao/scc@1.1.0': {} '@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)': @@ -6629,6 +6164,18 @@ snapshots: - supports-color - typescript + '@stylistic/eslint-plugin@3.1.0(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@typescript-eslint/utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + eslint: 10.8.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + estraverse: 5.3.0 + picomatch: 4.0.5 + transitivePeerDependencies: + - supports-color + - typescript + '@stylistic/eslint-plugin@5.10.0(eslint@10.8.0)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) @@ -6699,12 +6246,6 @@ snapshots: '@types/normalize-package-data@2.4.4': {} - '@types/qs@6.15.1': {} - - '@types/range-parser@1.2.7': {} - - '@types/resolve@1.20.2': {} - '@types/semver@7.8.0': {} '@types/sinon@21.0.1': @@ -6743,6 +6284,26 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/type-utils': 6.21.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 6.21.0 + debug: 4.4.3(supports-color@8.1.1) + eslint: 10.8.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.8.5 + ts-api-utils: 1.4.3(typescript@5.9.3) + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/eslint-plugin@8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@eslint-community/regexpp': 4.12.2 @@ -6759,6 +6320,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/type-utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.66.0 + eslint: 10.8.0 + ignore: 7.0.6 + natural-compare: 1.4.0 + ts-api-utils: 2.5.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 @@ -6772,6 +6349,19 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@6.21.0(eslint@10.8.0)(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.0 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 8.66.0 @@ -6784,6 +6374,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.66.0 + debug: 4.4.3(supports-color@8.1.1) + eslint: 10.8.0 + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/project-service@8.66.0(typescript@4.9.5)': dependencies: '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@4.9.5) @@ -6793,10 +6395,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.65.0(typescript@5.9.3)': + '@typescript-eslint/project-service@8.66.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.65.0(typescript@5.9.3) - '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@5.9.3) + '@typescript-eslint/types': 8.66.0 debug: 4.4.3(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: @@ -6821,6 +6423,10 @@ snapshots: dependencies: typescript: 4.9.5 + '@typescript-eslint/tsconfig-utils@8.66.0(typescript@5.9.3)': + dependencies: + typescript: 5.9.3 + '@typescript-eslint/type-utils@6.21.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.9.5) @@ -6833,6 +6439,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/type-utils@6.21.0(eslint@10.8.0)(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.0)(typescript@5.9.3) + debug: 4.4.3(supports-color@8.1.1) + eslint: 10.8.0 + ts-api-utils: 1.4.3(typescript@5.9.3) + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/type-utils@8.66.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 8.66.0 @@ -6845,11 +6463,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.65.0(eslint@10.8.0)(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.66.0(eslint@10.8.0)(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.65.0 - '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.65.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) eslint: 10.8.0 ts-api-utils: 2.5.0(typescript@5.9.3) @@ -6908,6 +6526,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)': + dependencies: + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 + debug: 4.4.3(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.9 + semver: 7.8.5 + ts-api-utils: 1.4.3(typescript@5.9.3) + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/typescript-estree@8.66.0(typescript@4.9.5)': dependencies: '@typescript-eslint/project-service': 8.66.0(typescript@4.9.5) @@ -6923,6 +6556,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.66.0(typescript@5.9.3)': + dependencies: + '@typescript-eslint/project-service': 8.66.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@5.9.3) + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/visitor-keys': 8.66.0 + debug: 4.4.3(supports-color@8.1.1) + minimatch: 10.2.6 + semver: 7.8.5 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@6.21.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) @@ -6937,6 +6585,20 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@6.21.0(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) + '@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.0 + semver: 7.8.5 + transitivePeerDependencies: + - supports-color + - typescript + '@typescript-eslint/utils@7.18.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) @@ -6948,6 +6610,17 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@7.18.0(eslint@10.8.0)(typescript@5.9.3)': + dependencies: + '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) + '@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.0 + transitivePeerDependencies: + - supports-color + - typescript + '@typescript-eslint/utils@8.66.0(eslint@10.8.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) @@ -6959,12 +6632,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.65.0(eslint@10.8.0)(typescript@5.9.3)': + '@typescript-eslint/utils@8.66.0(eslint@10.8.0)(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) - '@typescript-eslint/scope-manager': 8.65.0 - '@typescript-eslint/types': 8.65.0 - '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(typescript@5.9.3) eslint: 10.8.0 typescript: 5.9.3 transitivePeerDependencies: @@ -7060,11 +6733,6 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - acorn-jsx@5.3.2(acorn@8.18.0): - dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 - acorn-jsx@5.3.2(acorn@8.18.0): dependencies: acorn: 8.18.0 @@ -7075,8 +6743,6 @@ snapshots: acorn@8.18.0: {} - adm-zip@0.5.18: {} - agent-base@6.0.2: dependencies: debug: 4.4.3(supports-color@8.1.1) @@ -7247,6 +6913,12 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 + axios-mock-adapter@2.1.0(axios@1.19.0(debug@4.4.3)): + dependencies: + axios: 1.19.0(debug@4.4.3) + fast-deep-equal: 3.1.3 + is-buffer: 2.0.5 + axios@1.19.0(debug@4.4.3): dependencies: follow-redirects: 1.16.0(debug@4.4.3) @@ -7263,10 +6935,6 @@ snapshots: baseline-browser-mapping@2.11.12: {} - bidi-js@1.0.3: - dependencies: - require-from-string: 2.0.2 - big-json@3.2.0: dependencies: JSONStream: 1.3.5 @@ -7306,8 +6974,8 @@ snapshots: dependencies: baseline-browser-mapping: 2.11.12 caniuse-lite: 1.0.30001806 - electron-to-chromium: 1.5.400 - node-releases: 2.0.52 + electron-to-chromium: 1.5.402 + node-releases: 2.0.53 update-browserslist-db: 1.2.3(browserslist@4.28.7) buffer-from@1.1.2: {} @@ -7608,7 +7276,7 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.49.0: + core-js-compat@3.50.0: dependencies: browserslist: 4.28.7 @@ -7750,7 +7418,7 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.400: {} + electron-to-chromium@1.5.402: {} elegant-spinner@1.0.1: {} @@ -7762,8 +7430,6 @@ snapshots: enabled@2.0.0: {} - encodeurl@2.0.0: {} - enhanced-resolve@5.24.5: dependencies: graceful-fs: 4.2.11 @@ -7887,7 +7553,7 @@ snapshots: '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0)(typescript@4.9.5) '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(typescript@4.9.5) eslint-config-xo-space: 0.35.0(eslint@10.8.0) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.0) eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) eslint-plugin-mocha: 10.5.0(eslint@10.8.0) eslint-plugin-n: 15.7.0(eslint@10.8.0) @@ -7903,6 +7569,27 @@ snapshots: - typescript - vue-eslint-parser + eslint-config-oclif-typescript@3.1.14(eslint@10.8.0)(typescript@5.9.3): + dependencies: + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(typescript@5.9.3) + eslint-config-xo-space: 0.35.0(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) + eslint-plugin-mocha: 10.5.0(eslint@10.8.0) + eslint-plugin-n: 15.7.0(eslint@10.8.0) + eslint-plugin-perfectionist: 2.11.0(eslint@10.8.0)(typescript@5.9.3) + transitivePeerDependencies: + - astro-eslint-parser + - eslint + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + - svelte + - svelte-eslint-parser + - typescript + - vue-eslint-parser + eslint-config-oclif@5.2.2(eslint@10.8.0): dependencies: eslint-config-xo-space: 0.35.0(eslint@10.8.0) @@ -7922,7 +7609,7 @@ snapshots: '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@4.9.5) eslint-config-xo: 0.49.0(eslint@10.8.0) eslint-config-xo-space: 0.35.0(eslint@10.8.0) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.0) eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) eslint-plugin-jsdoc: 50.8.0(eslint@10.8.0) eslint-plugin-mocha: 10.5.0(eslint@10.8.0) @@ -7937,6 +7624,31 @@ snapshots: - supports-color - typescript + eslint-config-oclif@6.0.179(eslint@10.8.0)(typescript@5.9.3): + dependencies: + '@eslint/compat': 1.4.1(eslint@10.8.0) + '@eslint/eslintrc': 3.3.6 + '@eslint/js': 9.39.5 + '@stylistic/eslint-plugin': 3.1.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + eslint-config-xo: 0.49.0(eslint@10.8.0) + eslint-config-xo-space: 0.35.0(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) + eslint-plugin-jsdoc: 50.8.0(eslint@10.8.0) + eslint-plugin-mocha: 10.5.0(eslint@10.8.0) + eslint-plugin-n: 17.24.0(eslint@10.8.0)(typescript@5.9.3) + eslint-plugin-perfectionist: 4.15.1(eslint@10.8.0)(typescript@5.9.3) + eslint-plugin-unicorn: 56.0.1(eslint@10.8.0) + typescript-eslint: 8.66.0(eslint@10.8.0)(typescript@5.9.3) + transitivePeerDependencies: + - eslint + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + - typescript + eslint-config-xo-space@0.35.0(eslint@10.8.0): dependencies: eslint: 10.8.0 @@ -7964,7 +7676,22 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0): + dependencies: + '@nolyfill/is-core-module': 1.0.39 + debug: 4.4.3(supports-color@8.1.1) + eslint: 10.8.0 + get-tsconfig: 4.14.1 + is-bun-module: 2.0.0 + stable-hash: 0.0.5 + tinyglobby: 0.2.17 + unrs-resolver: 1.12.2 + optionalDependencies: + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) + transitivePeerDependencies: + - supports-color + + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) @@ -7979,25 +7706,47 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0): + eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(typescript@4.9.5) eslint: 10.8.0 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.0) transitivePeerDependencies: - supports-color - eslint-module-utils@2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0): + eslint-module-utils@2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(typescript@5.9.3) + eslint: 10.8.0 + eslint-import-resolver-node: 0.3.10 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@4.9.5) eslint: 10.8.0 eslint-import-resolver-node: 0.3.10 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.8.0) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + eslint: 10.8.0 + eslint-import-resolver-node: 0.3.10 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0) transitivePeerDependencies: - supports-color @@ -8025,7 +7774,7 @@ snapshots: doctrine: 2.1.0 eslint: 10.8.0 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -8043,6 +7792,35 @@ snapshots: - eslint-import-resolver-webpack - supports-color + eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 10.8.0 + eslint-import-resolver-node: 0.3.10 + eslint-module-utils: 2.14.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0) + hasown: 2.0.4 + is-core-module: 2.16.2 + is-glob: 4.0.3 + minimatch: 3.1.5 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.10 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 6.21.0(eslint@10.8.0)(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.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0): dependencies: '@rtsao/scc': 1.1.0 @@ -8054,7 +7832,7 @@ snapshots: doctrine: 2.1.0 eslint: 10.8.0 eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@4.9.5))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0) + eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -8072,6 +7850,35 @@ snapshots: - eslint-import-resolver-webpack - supports-color + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.8.0): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 10.8.0 + eslint-import-resolver-node: 0.3.10 + eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0))(eslint@10.8.0))(eslint@10.8.0) + hasown: 2.0.4 + is-core-module: 2.16.2 + is-glob: 4.0.3 + minimatch: 3.1.5 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.10 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + eslint-plugin-jsdoc@50.8.0(eslint@10.8.0): dependencies: '@es-joy/jsdoccomment': 0.50.2 @@ -8122,6 +7929,21 @@ snapshots: transitivePeerDependencies: - typescript + eslint-plugin-n@17.24.0(eslint@10.8.0)(typescript@5.9.3): + dependencies: + '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) + enhanced-resolve: 5.24.5 + eslint: 10.8.0 + eslint-plugin-es-x: 7.8.0(eslint@10.8.0) + get-tsconfig: 4.14.1 + globals: 15.15.0 + globrex: 0.1.2 + ignore: 5.3.2 + semver: 7.8.5 + ts-declaration-location: 1.0.7(typescript@5.9.3) + transitivePeerDependencies: + - typescript + eslint-plugin-perfectionist@2.11.0(eslint@10.8.0)(typescript@4.9.5): dependencies: '@typescript-eslint/utils': 7.18.0(eslint@10.8.0)(typescript@4.9.5) @@ -8132,6 +7954,16 @@ snapshots: - supports-color - typescript + eslint-plugin-perfectionist@2.11.0(eslint@10.8.0)(typescript@5.9.3): + dependencies: + '@typescript-eslint/utils': 7.18.0(eslint@10.8.0)(typescript@5.9.3) + eslint: 10.8.0 + minimatch: 9.0.9 + natural-compare-lite: 1.4.0 + transitivePeerDependencies: + - supports-color + - typescript + eslint-plugin-perfectionist@4.15.1(eslint@10.8.0)(typescript@4.9.5): dependencies: '@typescript-eslint/types': 8.66.0 @@ -8142,6 +7974,16 @@ snapshots: - supports-color - typescript + eslint-plugin-perfectionist@4.15.1(eslint@10.8.0)(typescript@5.9.3): + dependencies: + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + eslint: 10.8.0 + natural-orderby: 5.0.0 + transitivePeerDependencies: + - supports-color + - typescript + eslint-plugin-unicorn@48.0.1(eslint@10.8.0): dependencies: '@babel/helper-validator-identifier': 7.29.7 @@ -8167,7 +8009,7 @@ snapshots: '@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0) ci-info: 4.4.0 clean-regexp: 1.0.0 - core-js-compat: 3.49.0 + core-js-compat: 3.50.0 eslint: 10.8.0 esquery: 1.7.0 globals: 15.15.0 @@ -8292,7 +8134,7 @@ snapshots: dependencies: '@types/chai': 4.3.20 '@types/lodash': 4.17.25 - '@types/node': 14.18.63 + '@types/node': 18.19.130 '@types/sinon': 21.0.1 lodash: 4.18.1 mock-stdin: 1.0.0 @@ -9028,34 +8870,6 @@ snapshots: jsdoc-type-pratt-parser@4.1.0: {} - jsdom@23.2.0: - dependencies: - '@asamuzakjp/dom-selector': 2.0.2 - cssstyle: 4.6.0 - data-urls: 5.0.0 - decimal.js: 10.6.0 - form-data: 4.0.6 - html-encoding-sniffer: 4.0.0 - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - is-potential-custom-element-name: 1.0.1 - parse5: 7.3.0 - rrweb-cssom: 0.6.0 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.4 - w3c-xmlserializer: 5.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 3.1.1 - whatwg-mimetype: 4.0.0 - whatwg-url: 14.2.0 - ws: 8.21.2 - xml-name-validator: 5.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - jsesc@0.5.0: {} jsesc@3.1.0: {} @@ -9385,7 +9199,7 @@ snapshots: dependencies: process-on-spawn: 1.1.0 - node-releases@2.0.52: {} + node-releases@2.0.53: {} normalize-package-data@2.5.0: dependencies: @@ -9504,16 +9318,16 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.1.2 - oclif@4.23.29(@types/node@14.18.63): + oclif@4.23.30(@types/node@14.18.63): dependencies: - '@aws-sdk/client-cloudfront': 3.1102.0 - '@aws-sdk/client-s3': 3.1102.0 + '@aws-sdk/client-cloudfront': 3.1104.0 + '@aws-sdk/client-s3': 3.1104.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.56 - '@oclif/plugin-not-found': 3.2.91(@types/node@14.18.63) + '@oclif/plugin-not-found': 3.2.92(@types/node@14.18.63) '@oclif/plugin-warn-if-update-available': 3.1.71 ansis: 3.17.0 async-retry: 1.3.3 @@ -9533,13 +9347,34 @@ snapshots: - '@types/node' - supports-color - oclif@4.23.29(@types/node@18.19.130): - dependencies: - lodash: 4.18.1 - - on-finished@2.4.1: + oclif@4.23.30(@types/node@18.19.130): dependencies: - ee-first: 1.1.1 + '@aws-sdk/client-cloudfront': 3.1104.0 + '@aws-sdk/client-s3': 3.1104.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.56 + '@oclif/plugin-not-found': 3.2.92(@types/node@18.19.130) + '@oclif/plugin-warn-if-update-available': 3.1.71 + ansis: 3.17.0 + async-retry: 1.3.3 + change-case: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.3(supports-color@8.1.1) + ejs: 3.1.10 + find-yarn-workspace-root: 2.0.0 + fs-extra: 8.1.0 + github-slugger: 2.0.0 + got: 13.0.0 + normalize-package-data: 6.0.2 + semver: 7.8.5 + tiny-jsonc: 1.0.2 + validate-npm-package-name: 5.0.1 + transitivePeerDependencies: + - '@types/node' + - supports-color once@1.4.0: dependencies: @@ -9961,42 +9796,6 @@ snapshots: glob: 13.0.6 package-json-from-dist: 1.0.1 - rollup@4.62.4: - 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 - fsevents: 2.3.3 - - rrweb-cssom@0.6.0: {} - - rrweb-cssom@0.8.0: {} - run-async@2.4.1: {} run-async@4.0.6: {} @@ -10562,12 +10361,12 @@ snapshots: transitivePeerDependencies: - supports-color - typescript-eslint@8.65.0(eslint@10.8.0)(typescript@5.9.3): + typescript-eslint@8.66.0(eslint@10.8.0)(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3) - '@typescript-eslint/parser': 8.65.0(eslint@10.8.0)(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.65.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.8.0)(typescript@5.9.3))(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/parser': 8.66.0(eslint@10.8.0)(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.66.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.66.0(eslint@10.8.0)(typescript@5.9.3) eslint: 10.8.0 typescript: 5.9.3 transitivePeerDependencies: @@ -10651,8 +10450,6 @@ snapshots: is-typed-array: 1.1.15 which-typed-array: 1.1.22 - utils-merge@1.0.1: {} - uuid@14.0.1: {} v8-compile-cache-lib@3.0.1: {} @@ -10790,8 +10587,6 @@ snapshots: signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - ws@8.21.2: {} - xdg-basedir@4.0.0: {} xtend@4.0.2: {}