From 7f01ec8c2dff1a6d85ed5ca22fb277e9d4bba705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Henrique?= Date: Tue, 17 Dec 2024 22:33:27 -0300 Subject: [PATCH] chore: migrate eslint config to esm (#1410) --- .github/workflows/playwright.yml | 2 +- apps/rpl-crawler-cli/eslint.config.js | 2 +- apps/rpl-crawler-cli/package.json | 1 + apps/web-e2e/eslint.config.js | 10 +- apps/web-e2e/package.json | 1 + apps/web-e2e/playwright.config.ts | 8 +- apps/web/eslint.config.cjs | 1 - apps/web/eslint.config.js | 1 + commitlint.config.mjs => commitlint.config.js | 0 eslint.config.js | 46 +- modules/rpl-crawler/eslint.config.js | 2 +- modules/rpl-crawler/package.json | 1 + .../src/flight-decoder/flight-decoder.ts | 8 +- modules/rpl-crawler/src/main.ts | 2 +- .../rpl-crawler/src/save-data/save-data.ts | 2 +- modules/rpl-crawler/src/utils/logger.ts | 30 +- modules/shared-database/eslint.config.js | 2 +- modules/shared-database/package.json | 1 + modules/shared-eslint-config/eslint.config.js | 54 + modules/shared-eslint-config/package.json | 16 + modules/web-details/eslint.config.js | 2 +- modules/web-details/package.json | 1 + .../src/views/ivao-fpl-button/index.tsx | 2 +- .../src/views/simbrief-button/index.tsx | 2 +- .../src/views/sky-vector-button/index.tsx | 2 +- .../src/views/vatsim-fpl-button/index.tsx | 2 +- modules/web-home/eslint.config.js | 2 +- modules/web-home/package.json | 1 + modules/web-search/eslint.config.js | 2 +- modules/web-search/package.json | 1 + modules/web-shared-ui/eslint.config.cjs | 1 - modules/web-shared-ui/eslint.config.js | 1 + .../src/components/layout/footer/index.tsx | 8 +- package.json | 11 +- pnpm-lock.yaml | 2531 +++++++++-------- release.config.js | 2 +- 36 files changed, 1464 insertions(+), 1297 deletions(-) delete mode 100644 apps/web/eslint.config.cjs create mode 100644 apps/web/eslint.config.js rename commitlint.config.mjs => commitlint.config.js (100%) create mode 100644 modules/shared-eslint-config/eslint.config.js create mode 100644 modules/shared-eslint-config/package.json delete mode 100644 modules/web-shared-ui/eslint.config.cjs create mode 100644 modules/web-shared-ui/eslint.config.js diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 53fb1d21..b61746d2 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 20 runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.40.0-jammy + image: mcr.microsoft.com/playwright:v1.49.0-jammy env: PLAYWRIGHT_TEST_BASE_URL: 'http://localhost:3000' TURSO_CONNECTION_URL: 'http://libsql:8080' diff --git a/apps/rpl-crawler-cli/eslint.config.js b/apps/rpl-crawler-cli/eslint.config.js index 62d6bb06..901a6002 100644 --- a/apps/rpl-crawler-cli/eslint.config.js +++ b/apps/rpl-crawler-cli/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/apps/rpl-crawler-cli/package.json b/apps/rpl-crawler-cli/package.json index 36ee86f2..0f37264a 100644 --- a/apps/rpl-crawler-cli/package.json +++ b/apps/rpl-crawler-cli/package.json @@ -1,5 +1,6 @@ { "name": "@mach/rpl-crawler-cli", + "type": "module", "scripts": { "lint": "eslint .", "pack": "vite build", diff --git a/apps/web-e2e/eslint.config.js b/apps/web-e2e/eslint.config.js index c73f877f..0275aeb6 100644 --- a/apps/web-e2e/eslint.config.js +++ b/apps/web-e2e/eslint.config.js @@ -1,6 +1,6 @@ -const eslintPluginPlaywright = require('eslint-plugin-playwright') +// @ts-check -module.exports = [ - ...require('../../eslint.config'), - eslintPluginPlaywright.configs['flat/recommended'], -] +import playwright from 'eslint-plugin-playwright' +import defaultConfigs from '../../eslint.config.js' + +export default [...defaultConfigs, playwright.configs['flat/recommended']] diff --git a/apps/web-e2e/package.json b/apps/web-e2e/package.json index 7cf990d7..70ba4161 100644 --- a/apps/web-e2e/package.json +++ b/apps/web-e2e/package.json @@ -1,5 +1,6 @@ { "name": "@mach/web-e2e", + "type": "module", "dependencies": { "@mach/shared-database": "workspace:*" }, diff --git a/apps/web-e2e/playwright.config.ts b/apps/web-e2e/playwright.config.ts index df47955f..bfad374a 100644 --- a/apps/web-e2e/playwright.config.ts +++ b/apps/web-e2e/playwright.config.ts @@ -9,8 +9,12 @@ dotenv.config() const baseURL = process.env.BASE_URL ?? 'http://localhost:4200' export default defineConfig({ - ...nxE2EPreset(__filename, { testDir: './src/specs' }), - globalSetup: require.resolve('./src/setup/global-setup.ts'), + ...nxE2EPreset(import.meta.url.substring('file://'.length), { + testDir: './src/specs', + }), + globalSetup: import.meta + .resolve('./src/setup/global-setup.ts') + .substring('file://'.length), use: { baseURL, trace: 'on-first-retry', diff --git a/apps/web/eslint.config.cjs b/apps/web/eslint.config.cjs deleted file mode 100644 index 62d6bb06..00000000 --- a/apps/web/eslint.config.cjs +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../eslint.config') diff --git a/apps/web/eslint.config.js b/apps/web/eslint.config.js new file mode 100644 index 00000000..901a6002 --- /dev/null +++ b/apps/web/eslint.config.js @@ -0,0 +1 @@ +export { default } from '@mach/shared-eslint-config' diff --git a/commitlint.config.mjs b/commitlint.config.js similarity index 100% rename from commitlint.config.mjs rename to commitlint.config.js diff --git a/eslint.config.js b/eslint.config.js index 829a55d0..901a6002 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,45 +1 @@ -const eslint = require('@eslint/js') -const tsEslint = require('typescript-eslint') -const reactEslint = require('eslint-plugin-react/configs/recommended') -const nxEslint = require('@nx/eslint-plugin') - -module.exports = tsEslint.config( - eslint.configs.recommended, - ...tsEslint.configs.recommended, - { - ...reactEslint, - rules: { - ...reactEslint.rules, - 'react/react-in-jsx-scope': 'off', - 'react/jsx-no-target-blank': 'off', - }, - }, - { - plugins: { - '@nx': nxEslint, - }, - rules: { - '@nx/enforce-module-boundaries': [ - 'error', - { - allow: [], - depConstraints: [ - { - sourceTag: '*', - onlyDependOnLibsWithTags: ['*'], - }, - { - sourceTag: 'type:feature', - onlyDependOnLibsWithTags: ['type:shared'], - }, - { - sourceTag: 'type:shared', - onlyDependOnLibsWithTags: ['type:shared'], - }, - ], - }, - ], - }, - }, - { ignores: ['**/eslint.config.js', '**/eslint.config.cjs', '**/dist'] } -) +export { default } from '@mach/shared-eslint-config' diff --git a/modules/rpl-crawler/eslint.config.js b/modules/rpl-crawler/eslint.config.js index 62d6bb06..901a6002 100644 --- a/modules/rpl-crawler/eslint.config.js +++ b/modules/rpl-crawler/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/modules/rpl-crawler/package.json b/modules/rpl-crawler/package.json index 46e2e8ac..13884e46 100644 --- a/modules/rpl-crawler/package.json +++ b/modules/rpl-crawler/package.json @@ -2,6 +2,7 @@ "name": "@mach/rpl-crawler", "main": "./src/index.ts", "types": "./src/index.ts", + "type": "module", "scripts": { "lint": "eslint .", "test": "vitest --watch=false ." diff --git a/modules/rpl-crawler/src/flight-decoder/flight-decoder.ts b/modules/rpl-crawler/src/flight-decoder/flight-decoder.ts index 4c201798..80f1b4ef 100644 --- a/modules/rpl-crawler/src/flight-decoder/flight-decoder.ts +++ b/modules/rpl-crawler/src/flight-decoder/flight-decoder.ts @@ -25,7 +25,7 @@ const makeFlightDecoder = ({ uuid }: { uuid: (line: string) => string }) => { const cruisingSpeed = line.substring(46, 51) const cruisingLevel = Number(line.substring(52, 55)) const route = line - .match(/(?<=[A-Z0-9]{4}\d{4} N\d{4} \d{3} ).+(?= {2})/)![0] + .match(/(?<=[A-Z0-9]{4}\d{4} N\d{4} \d{3} ).+(?= {2})/)[0] .trim() const rightPadStart = line.lastIndexOf(' ') + 2 const arrivalIcao = line.substring(rightPadStart, rightPadStart + 4).trim() @@ -46,11 +46,11 @@ const makeFlightDecoder = ({ uuid }: { uuid: (line: string) => string }) => { estimatedEnrouteMinutes, remarks, departureIcao, - aircraftIcaoCode: line.match(/[A-Z0-9]+(?=(\/(M|L|H|J)))/)![0], - aircraftEquipment: remarks.match(/(?<=EQPT\/)[^\s]+/)![0], + aircraftIcaoCode: line.match(/[A-Z0-9]+(?=(\/(M|L|H|J)))/)[0], + aircraftEquipment: remarks.match(/(?<=EQPT\/)[^\s]+/)[0], aircraftWakeTurbulence: line.match( /(?<=\/)(M|L|H|J)/ - )![0] as WakeTurbulence, + )[0] as WakeTurbulence, estimatedOffBlockTime, flightRules: resolveFlightRules(route), weekdays: resolveWeekDays(weekDays), diff --git a/modules/rpl-crawler/src/main.ts b/modules/rpl-crawler/src/main.ts index 10792c84..cbe58a0c 100644 --- a/modules/rpl-crawler/src/main.ts +++ b/modules/rpl-crawler/src/main.ts @@ -1,6 +1,6 @@ import { Airport, Flight } from '@mach/shared-database' import { fetchAirportsData } from './fetch-airports-data' -import Logger from './utils/logger' +import * as Logger from './utils/logger' type MainDependencies = { updateChecker: (date: string) => Promise diff --git a/modules/rpl-crawler/src/save-data/save-data.ts b/modules/rpl-crawler/src/save-data/save-data.ts index 79c7b581..3fe09b4e 100644 --- a/modules/rpl-crawler/src/save-data/save-data.ts +++ b/modules/rpl-crawler/src/save-data/save-data.ts @@ -8,7 +8,7 @@ import { flights as flightsSchema, } from '@mach/shared-database' import { inArray } from 'drizzle-orm' -import Logger from '../utils/logger' +import * as Logger from '../utils/logger' function sliceArray(items: T[]) { const response: T[][] = [] diff --git a/modules/rpl-crawler/src/utils/logger.ts b/modules/rpl-crawler/src/utils/logger.ts index c7346707..fbb04885 100644 --- a/modules/rpl-crawler/src/utils/logger.ts +++ b/modules/rpl-crawler/src/utils/logger.ts @@ -1,25 +1,21 @@ -class Logger { - private static formatMessage(level: LoggingLevel, message: string): string { - return `${new Date().toISOString()} - [${level}] - ${message}` - } +function formatMessage(level: LoggingLevel, message: string): string { + return `${new Date().toISOString()} - [${level}] - ${message}` +} - public static info(message: string): void { - console.info(Logger.formatMessage(LoggingLevel.INFO, message)) - } +export function info(message: string): void { + console.info(formatMessage(LoggingLevel.INFO, message)) +} - public static error(error: Error): void { - console.error( - `${Logger.formatMessage( - LoggingLevel.ERROR, - error.message - )} - ${JSON.stringify(error)}` - ) - } +export function error(error: Error): void { + console.error( + `${formatMessage( + LoggingLevel.ERROR, + error.message + )} - ${JSON.stringify(error)}` + ) } enum LoggingLevel { INFO = 'INFO', ERROR = 'ERROR', } - -export default Logger diff --git a/modules/shared-database/eslint.config.js b/modules/shared-database/eslint.config.js index 62d6bb06..901a6002 100644 --- a/modules/shared-database/eslint.config.js +++ b/modules/shared-database/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/modules/shared-database/package.json b/modules/shared-database/package.json index 4d36aaf6..c93859b0 100644 --- a/modules/shared-database/package.json +++ b/modules/shared-database/package.json @@ -2,6 +2,7 @@ "name": "@mach/shared-database", "main": "./src/index.ts", "types": "./src/index.ts", + "type": "module", "scripts": { "lint": "eslint ." }, diff --git a/modules/shared-eslint-config/eslint.config.js b/modules/shared-eslint-config/eslint.config.js new file mode 100644 index 00000000..8e094e7c --- /dev/null +++ b/modules/shared-eslint-config/eslint.config.js @@ -0,0 +1,54 @@ +// @ts-check + +import eslint from '@eslint/js' +import nxPlugin from '@nx/eslint-plugin' +import reactPlugin from 'eslint-plugin-react' +import tseslint from 'typescript-eslint' + +export default tseslint.config( + eslint.configs.recommended, + ...tseslint.configs.strict, + ...tseslint.configs.stylistic, + { + rules: { + '@typescript-eslint/consistent-type-definitions': ['error', 'type'], + }, + }, + reactPlugin.configs.flat.recommended, + { + settings: { + react: { + version: '18.3.1', + }, + }, + }, + reactPlugin.configs.flat['jsx-runtime'], + { plugins: { '@nx': nxPlugin } }, + { + files: ['*.ts', '*.tsx', '*.js', '*.jsx'], + + rules: { + '@nx/enforce-module-boundaries': [ + 'error', + { + allow: [], + depConstraints: [ + { + sourceTag: '*', + onlyDependOnLibsWithTags: ['*'], + }, + { + sourceTag: 'type:feature', + onlyDependOnLibsWithTags: ['type:shared'], + }, + { + sourceTag: 'type:shared', + onlyDependOnLibsWithTags: ['type:shared'], + }, + ], + }, + ], + }, + }, + { ignores: ['**/eslint.config.js', '**/dist'] } +) diff --git a/modules/shared-eslint-config/package.json b/modules/shared-eslint-config/package.json new file mode 100644 index 00000000..0d922f4e --- /dev/null +++ b/modules/shared-eslint-config/package.json @@ -0,0 +1,16 @@ +{ + "name": "@mach/shared-eslint-config", + "type": "module", + "main": "eslint.config.js", + "devDependencies": { + "@eslint/js": "~9.13.0", + "@nx/eslint-plugin": "20.0.12", + "eslint": "^9.14.0", + "eslint-plugin-import": "2.31.0", + "eslint-plugin-jsx-a11y": "6.10.0", + "eslint-plugin-playwright": "^2.0.0", + "eslint-plugin-react": "^7.37.1", + "eslint-plugin-react-hooks": "5.0.0", + "typescript-eslint": "^8.10.0" + } +} diff --git a/modules/web-details/eslint.config.js b/modules/web-details/eslint.config.js index 62d6bb06..901a6002 100644 --- a/modules/web-details/eslint.config.js +++ b/modules/web-details/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/modules/web-details/package.json b/modules/web-details/package.json index 084519f4..3c0de212 100644 --- a/modules/web-details/package.json +++ b/modules/web-details/package.json @@ -2,6 +2,7 @@ "name": "@mach/web-details", "main": "./src/index.ts", "types": "./src/index.ts", + "type": "module", "scripts": { "lint": "eslint .", "test": "vitest --watch=false ." diff --git a/modules/web-details/src/views/ivao-fpl-button/index.tsx b/modules/web-details/src/views/ivao-fpl-button/index.tsx index 860d255e..84d6a358 100644 --- a/modules/web-details/src/views/ivao-fpl-button/index.tsx +++ b/modules/web-details/src/views/ivao-fpl-button/index.tsx @@ -41,7 +41,7 @@ export function IvaoFplButton({ flight }: Props) { return ( diff --git a/modules/web-details/src/views/simbrief-button/index.tsx b/modules/web-details/src/views/simbrief-button/index.tsx index 54162a23..d59b9e67 100644 --- a/modules/web-details/src/views/simbrief-button/index.tsx +++ b/modules/web-details/src/views/simbrief-button/index.tsx @@ -39,7 +39,7 @@ export function SimBriefButton({ flight }: Props) { return ( diff --git a/modules/web-details/src/views/sky-vector-button/index.tsx b/modules/web-details/src/views/sky-vector-button/index.tsx index 14a4aaf3..30db98d8 100644 --- a/modules/web-details/src/views/sky-vector-button/index.tsx +++ b/modules/web-details/src/views/sky-vector-button/index.tsx @@ -16,7 +16,7 @@ export function SkyVectorButton({ flight }: Props) { return ( diff --git a/modules/web-details/src/views/vatsim-fpl-button/index.tsx b/modules/web-details/src/views/vatsim-fpl-button/index.tsx index 2ed7eee7..8ba5405c 100644 --- a/modules/web-details/src/views/vatsim-fpl-button/index.tsx +++ b/modules/web-details/src/views/vatsim-fpl-button/index.tsx @@ -22,7 +22,7 @@ export function VatsimFplButton({ flight }: Props) { return ( diff --git a/modules/web-home/eslint.config.js b/modules/web-home/eslint.config.js index 62d6bb06..901a6002 100644 --- a/modules/web-home/eslint.config.js +++ b/modules/web-home/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/modules/web-home/package.json b/modules/web-home/package.json index 270d2804..2059525a 100644 --- a/modules/web-home/package.json +++ b/modules/web-home/package.json @@ -2,6 +2,7 @@ "name": "@mach/web-home", "main": "./src/index.ts", "types": "./src/index.ts", + "type": "module", "scripts": { "lint": "eslint .", "test": "vitest --watch=false ." diff --git a/modules/web-search/eslint.config.js b/modules/web-search/eslint.config.js index 62d6bb06..901a6002 100644 --- a/modules/web-search/eslint.config.js +++ b/modules/web-search/eslint.config.js @@ -1 +1 @@ -module.exports = require('../../eslint.config') +export { default } from '@mach/shared-eslint-config' diff --git a/modules/web-search/package.json b/modules/web-search/package.json index 3752c0ac..84e4a79c 100644 --- a/modules/web-search/package.json +++ b/modules/web-search/package.json @@ -2,6 +2,7 @@ "name": "@mach/web-search", "main": "./src/index.ts", "types": "./src/index.ts", + "type": "module", "scripts": { "lint": "eslint .", "test": "vitest --watch=false ." diff --git a/modules/web-shared-ui/eslint.config.cjs b/modules/web-shared-ui/eslint.config.cjs deleted file mode 100644 index 62d6bb06..00000000 --- a/modules/web-shared-ui/eslint.config.cjs +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../eslint.config') diff --git a/modules/web-shared-ui/eslint.config.js b/modules/web-shared-ui/eslint.config.js new file mode 100644 index 00000000..901a6002 --- /dev/null +++ b/modules/web-shared-ui/eslint.config.js @@ -0,0 +1 @@ +export { default } from '@mach/shared-eslint-config' diff --git a/modules/web-shared-ui/src/components/layout/footer/index.tsx b/modules/web-shared-ui/src/components/layout/footer/index.tsx index 9c494d18..70fb8fde 100644 --- a/modules/web-shared-ui/src/components/layout/footer/index.tsx +++ b/modules/web-shared-ui/src/components/layout/footer/index.tsx @@ -9,7 +9,11 @@ export function Footer() { return (

- + Mach {' - '} @@ -17,7 +21,7 @@ export function Footer() {

Developed by{' '} - + João Pedro Henrique

diff --git a/package.json b/package.json index 873aaff2..5ba6909a 100644 --- a/package.json +++ b/package.json @@ -3,17 +3,17 @@ "version": "0.0.0", "license": "MIT", "private": true, + "type": "module", "packageManager": "pnpm@8.11.0", "devDependencies": { "@biomejs/biome": "1.9.4", "@commitlint/cli": "^19.6.1", "@commitlint/config-conventional": "^19.6.0", - "@eslint/js": "~9.13.0", "@libsql/client": "^0.14.0", + "@mach/shared-eslint-config": "workspace:*", "@nx-aws-plugin/nx-aws-cache": "^3.2.3", "@nx/devkit": "20.2.2", "@nx/eslint": "20.2.2", - "@nx/eslint-plugin": "20.2.2", "@nx/js": "20.2.2", "@nx/playwright": "20.2.2", "@nx/react": "20.2.2", @@ -46,12 +46,6 @@ "dotenv": "^16.4.7", "drizzle-kit": "^0.30.1", "drizzle-orm": "^0.38.2", - "eslint": "^9.16.0", - "eslint-plugin-import": "2.31.0", - "eslint-plugin-jsx-a11y": "6.10.2", - "eslint-plugin-playwright": "^2.0.1", - "eslint-plugin-react": "^7.37.1", - "eslint-plugin-react-hooks": "5.0.0", "fast-xml-parser": "^4.5.1", "husky": "^9.1.7", "isbot": "5", @@ -71,7 +65,6 @@ "tailwindcss-react-aria-components": "^1.2.0", "tslib": "^2.8.1", "typescript": "^5.6.3", - "typescript-eslint": "^8.17.0", "vite": "^5.4.11", "vite-env-only": "^3.0.3", "vitest": "^2.1.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f53c38c5..68d16292 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,24 +17,21 @@ importers: '@commitlint/config-conventional': specifier: ^19.6.0 version: 19.6.0 - '@eslint/js': - specifier: ~9.13.0 - version: 9.13.0 '@libsql/client': specifier: ^0.14.0 version: 0.14.0 + '@mach/shared-eslint-config': + specifier: workspace:* + version: link:modules/shared-eslint-config '@nx-aws-plugin/nx-aws-cache': specifier: ^3.2.3 - version: 3.2.3(@aws-sdk/client-sso-oidc@3.713.0)(@nx/devkit@20.2.2)(@nx/workspace@20.2.2)(nx@20.2.2) + version: 3.2.3(@aws-sdk/client-sso-oidc@3.687.0)(@nx/devkit@20.2.2)(@nx/workspace@20.2.2)(nx@20.2.2) '@nx/devkit': specifier: 20.2.2 version: 20.2.2(nx@20.2.2) '@nx/eslint': specifier: 20.2.2 version: 20.2.2(@types/node@22.10.2)(eslint@9.16.0)(nx@20.2.2) - '@nx/eslint-plugin': - specifier: 20.2.2 - version: 20.2.2(@types/node@22.10.2)(@typescript-eslint/parser@8.18.1)(eslint@9.16.0)(nx@20.2.2)(typescript@5.6.3) '@nx/js': specifier: 20.2.2 version: 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) @@ -43,7 +40,7 @@ importers: version: 20.2.2(@playwright/test@1.49.0)(@types/node@22.10.2)(esbuild@0.17.19)(eslint@9.16.0)(nx@20.2.2)(typescript@5.6.3)(vite@5.4.11)(vitest@2.1.8) '@nx/react': specifier: 20.2.2 - version: 20.2.2(@types/node@22.10.2)(esbuild@0.17.19)(eslint@9.16.0)(nx@20.2.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.6.3)(webpack@5.97.1) + version: 20.2.2(@types/node@22.10.2)(esbuild@0.17.19)(eslint@9.16.0)(nx@20.2.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.6.3)(webpack@5.96.1) '@nx/vite': specifier: 20.2.2 version: 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3)(vite@5.4.11)(vitest@2.1.8) @@ -52,10 +49,10 @@ importers: version: 1.49.0 '@remix-run/cloudflare': specifier: ^2.15.1 - version: 2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3) + version: 2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3) '@remix-run/cloudflare-pages': specifier: ^2.15.1 - version: 2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3) + version: 2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3) '@remix-run/dev': specifier: ^2.15.1 version: 2.15.1(@remix-run/react@2.15.1)(@remix-run/serve@2.15.1)(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0)(typescript@5.6.3)(vite@5.4.11)(wrangler@3.93.0) @@ -130,25 +127,7 @@ importers: version: 0.30.1 drizzle-orm: specifier: ^0.38.2 - version: 0.38.2(@cloudflare/workers-types@4.20241216.0)(@libsql/client@0.14.0)(@opentelemetry/api@1.9.0)(@types/react@18.3.12)(react@18.3.1) - eslint: - specifier: ^9.16.0 - version: 9.16.0 - eslint-plugin-import: - specifier: 2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.18.1)(eslint@9.16.0) - eslint-plugin-jsx-a11y: - specifier: 6.10.2 - version: 6.10.2(eslint@9.16.0) - eslint-plugin-playwright: - specifier: ^2.0.1 - version: 2.0.1(eslint@9.16.0) - eslint-plugin-react: - specifier: ^7.37.1 - version: 7.37.2(eslint@9.16.0) - eslint-plugin-react-hooks: - specifier: 5.0.0 - version: 5.0.0(eslint@9.16.0) + version: 0.38.2(@cloudflare/workers-types@4.20241106.0)(@libsql/client@0.14.0)(@opentelemetry/api@1.9.0)(@types/react@18.3.12)(react@18.3.1) fast-xml-parser: specifier: ^4.5.1 version: 4.5.1 @@ -157,7 +136,7 @@ importers: version: 9.1.7 isbot: specifier: '5' - version: 5.1.18 + version: 5.1.7 jsdom: specifier: ^25.0.1 version: 25.0.1 @@ -166,7 +145,7 @@ importers: version: 15.2.10 msw: specifier: ^2.6.9 - version: 2.6.9(@types/node@22.10.2)(typescript@5.6.3) + version: 2.7.0(@types/node@22.10.2)(typescript@5.6.3) nx: specifier: 20.2.2 version: 20.2.2 @@ -206,9 +185,6 @@ importers: typescript: specifier: ^5.6.3 version: 5.6.3 - typescript-eslint: - specifier: ^8.17.0 - version: 8.17.0(eslint@9.16.0)(typescript@5.6.3) vite: specifier: ^5.4.11 version: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) @@ -217,10 +193,10 @@ importers: version: 3.0.3(vite@5.4.11) vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.6.9)(stylus@0.64.0) + version: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.7.0)(stylus@0.64.0) wrangler: specifier: ^3.89.0 - version: 3.93.0(@cloudflare/workers-types@4.20241216.0) + version: 3.93.0(@cloudflare/workers-types@4.20241106.0) zod: specifier: ^3.23.6 version: 3.23.8 @@ -250,10 +226,10 @@ importers: version: link:../../modules/web-shared-ui '@remix-run/cloudflare': specifier: ^2.15.1 - version: 2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3) + version: 2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3) '@remix-run/cloudflare-pages': specifier: ^2.15.1 - version: 2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3) + version: 2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3) isbot: specifier: ^5 version: 5.1.7 @@ -286,6 +262,36 @@ importers: modules/shared-database: {} + modules/shared-eslint-config: + devDependencies: + '@eslint/js': + specifier: ~9.13.0 + version: 9.13.0 + '@nx/eslint-plugin': + specifier: 20.0.12 + version: 20.0.12(@types/node@22.10.2)(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(nx@20.2.2)(typescript@5.6.3) + eslint: + specifier: ^9.14.0 + version: 9.16.0 + eslint-plugin-import: + specifier: 2.31.0 + version: 2.31.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0) + eslint-plugin-jsx-a11y: + specifier: 6.10.0 + version: 6.10.0(eslint@9.16.0) + eslint-plugin-playwright: + specifier: ^2.0.0 + version: 2.0.1(eslint@9.16.0) + eslint-plugin-react: + specifier: ^7.37.1 + version: 7.37.2(eslint@9.16.0) + eslint-plugin-react-hooks: + specifier: 5.0.0 + version: 5.0.0(eslint@9.16.0) + typescript-eslint: + specifier: ^8.10.0 + version: 8.17.0(eslint@9.16.0)(typescript@5.6.3) + modules/web-details: dependencies: '@mach/shared-database': @@ -566,50 +572,50 @@ packages: - aws-crt dev: true - /@aws-sdk/client-sso-oidc@3.713.0(@aws-sdk/client-sts@3.637.0): - resolution: {integrity: sha512-B7N1Nte4Kqn8oaqLR2qnegLZjAgylYDAYNmXDY2+f1QNLF2D3emmWu8kLvBPIxT3wj23Mt177CPcBvMMGF2+aQ==} + /@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.637.0): + resolution: {integrity: sha512-Rdd8kLeTeh+L5ZuG4WQnWgYgdv7NorytKdZsGjiag1D8Wv3PcJvPqqWdgnI0Og717BSXVoaTYaN34FyqFYSx6Q==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.713.0 + '@aws-sdk/client-sts': ^3.687.0 dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 '@aws-sdk/client-sts': 3.637.0 - '@aws-sdk/core': 3.713.0 - '@aws-sdk/credential-provider-node': 3.713.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/middleware-host-header': 3.713.0 - '@aws-sdk/middleware-logger': 3.713.0 - '@aws-sdk/middleware-recursion-detection': 3.713.0 - '@aws-sdk/middleware-user-agent': 3.713.0 - '@aws-sdk/region-config-resolver': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@aws-sdk/util-endpoints': 3.713.0 - '@aws-sdk/util-user-agent-browser': 3.713.0 - '@aws-sdk/util-user-agent-node': 3.713.0 - '@smithy/config-resolver': 3.0.13 - '@smithy/core': 2.5.5 - '@smithy/fetch-http-handler': 4.1.2 - '@smithy/hash-node': 3.0.11 - '@smithy/invalid-dependency': 3.0.11 - '@smithy/middleware-content-length': 3.0.13 - '@smithy/middleware-endpoint': 3.2.5 - '@smithy/middleware-retry': 3.0.30 - '@smithy/middleware-serde': 3.0.11 - '@smithy/middleware-stack': 3.0.11 - '@smithy/node-config-provider': 3.1.12 - '@smithy/node-http-handler': 3.3.2 - '@smithy/protocol-http': 4.1.8 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 - '@smithy/url-parser': 3.0.11 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-node': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.30 - '@smithy/util-defaults-mode-node': 3.0.30 - '@smithy/util-endpoints': 2.1.7 - '@smithy/util-middleware': 3.0.11 - '@smithy/util-retry': 3.0.11 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 transitivePeerDependencies: @@ -662,46 +668,46 @@ packages: - aws-crt dev: true - /@aws-sdk/client-sso@3.713.0: - resolution: {integrity: sha512-qrgL/BILiRdv3npkJ88XxTeVPE/HPZ2gW9peyhYWP4fXCdPjpWYnAebbWBN6TqofiSlpP7xuoX8Xc1czwr90sg==} + /@aws-sdk/client-sso@3.687.0: + resolution: {integrity: sha512-dfj0y9fQyX4kFill/ZG0BqBTLQILKlL7+O5M4F9xlsh2WNuV2St6WtcOg14Y1j5UODPJiJs//pO+mD1lihT5Kw==} engines: {node: '>=16.0.0'} dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.713.0 - '@aws-sdk/middleware-host-header': 3.713.0 - '@aws-sdk/middleware-logger': 3.713.0 - '@aws-sdk/middleware-recursion-detection': 3.713.0 - '@aws-sdk/middleware-user-agent': 3.713.0 - '@aws-sdk/region-config-resolver': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@aws-sdk/util-endpoints': 3.713.0 - '@aws-sdk/util-user-agent-browser': 3.713.0 - '@aws-sdk/util-user-agent-node': 3.713.0 - '@smithy/config-resolver': 3.0.13 - '@smithy/core': 2.5.5 - '@smithy/fetch-http-handler': 4.1.2 - '@smithy/hash-node': 3.0.11 - '@smithy/invalid-dependency': 3.0.11 - '@smithy/middleware-content-length': 3.0.13 - '@smithy/middleware-endpoint': 3.2.5 - '@smithy/middleware-retry': 3.0.30 - '@smithy/middleware-serde': 3.0.11 - '@smithy/middleware-stack': 3.0.11 - '@smithy/node-config-provider': 3.1.12 - '@smithy/node-http-handler': 3.3.2 - '@smithy/protocol-http': 4.1.8 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 - '@smithy/url-parser': 3.0.11 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.30 - '@smithy/util-defaults-mode-node': 3.0.30 - '@smithy/util-endpoints': 2.1.7 - '@smithy/util-middleware': 3.0.11 - '@smithy/util-retry': 3.0.11 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 transitivePeerDependencies: @@ -772,19 +778,19 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/core@3.713.0: - resolution: {integrity: sha512-7Xq7LY6Q3eITvlqR1bP3cJu3RvTt4eb+WilK85eezPemi9589o6MNL0lu4nL0i+OdgPWw4x9z9WArRwXhHTreg==} + /@aws-sdk/core@3.686.0: + resolution: {integrity: sha512-Xt3DV4DnAT3v2WURwzTxWQK34Ew+iiLzoUoguvLaZrVMFOqMMrwVjP+sizqIaHp1j7rGmFcN5I8saXnsDLuQLA==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/core': 2.5.5 - '@smithy/node-config-provider': 3.1.12 - '@smithy/property-provider': 3.1.11 - '@smithy/protocol-http': 4.1.8 - '@smithy/signature-v4': 4.2.4 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 - '@smithy/util-middleware': 3.0.11 + '@aws-sdk/types': 3.686.0 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 fast-xml-parser: 4.4.1 tslib: 2.8.1 dev: true @@ -812,14 +818,14 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/credential-provider-env@3.713.0: - resolution: {integrity: sha512-B5+AbvN8qr5jmaiFdErtHlhdZtfMCP7JB1nwdi9LTsZLVP8BhFXnOYlIE7z6jq8GRkDBHybTxovKWzSfI0gg+w==} + /@aws-sdk/credential-provider-env@3.686.0: + resolution: {integrity: sha512-osD7lPO8OREkgxPiTWmA1i6XEmOth1uW9HWWj/+A2YGCj1G/t2sHu931w4Qj9NWHYZtbTTXQYVRg+TErALV7nQ==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/core': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@smithy/property-provider': 3.1.11 - '@smithy/types': 3.7.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -838,19 +844,19 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/credential-provider-http@3.713.0: - resolution: {integrity: sha512-VarD43CV9Bn+yNCZZb17xMiSjX/FRdU3wN2Aw/jP6ZE3/d87J9L7fxRRFmt4FAgLg35MJbooDGT9heycwg/WWw==} + /@aws-sdk/credential-provider-http@3.686.0: + resolution: {integrity: sha512-xyGAD/f3vR/wssUiZrNFWQWXZvI4zRm2wpHhoHA1cC2fbRMNFYtFn365yw6dU7l00ZLcdFB1H119AYIUZS7xbw==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/core': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@smithy/fetch-http-handler': 4.1.2 - '@smithy/node-http-handler': 3.3.2 - '@smithy/property-provider': 3.1.11 - '@smithy/protocol-http': 4.1.8 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 - '@smithy/util-stream': 3.3.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/node-http-handler': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 tslib: 2.8.1 dev: true @@ -877,7 +883,7 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-ini@3.637.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0): + /@aws-sdk/credential-provider-ini@3.637.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0): resolution: {integrity: sha512-h+PFCWfZ0Q3Dx84SppET/TFpcQHmxFW8/oV9ArEvMilw4EBN+IlxgbL0CnHwjHW64szcmrM0mbebjEfHf4FXmw==} engines: {node: '>=16.0.0'} peerDependencies: @@ -887,7 +893,7 @@ packages: '@aws-sdk/credential-provider-env': 3.620.1 '@aws-sdk/credential-provider-http': 3.635.0 '@aws-sdk/credential-provider-process': 3.620.1 - '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0) + '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0) '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 '@smithy/credential-provider-imds': 3.2.1 @@ -900,24 +906,24 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-ini@3.713.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0): - resolution: {integrity: sha512-6oQuPjYONMCWTWhq5yV61OziX2KeU+nhTsdk+Zh4RiuaTkRRNTLnMAVA/VoG1FG8cnQbZJDFezh58nzlBTWHdw==} + /@aws-sdk/credential-provider-ini@3.687.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0): + resolution: {integrity: sha512-6d5ZJeZch+ZosJccksN0PuXv7OSnYEmanGCnbhUqmUSz9uaVX6knZZfHCZJRgNcfSqg9QC0zsFA/51W5HCUqSQ==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.713.0 + '@aws-sdk/client-sts': ^3.687.0 dependencies: '@aws-sdk/client-sts': 3.637.0 - '@aws-sdk/core': 3.713.0 - '@aws-sdk/credential-provider-env': 3.713.0 - '@aws-sdk/credential-provider-http': 3.713.0 - '@aws-sdk/credential-provider-process': 3.713.0 - '@aws-sdk/credential-provider-sso': 3.713.0(@aws-sdk/client-sso-oidc@3.713.0) - '@aws-sdk/credential-provider-web-identity': 3.713.0(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/types': 3.713.0 - '@smithy/credential-provider-imds': 3.2.8 - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-env': 3.686.0 + '@aws-sdk/credential-provider-http': 3.686.0 + '@aws-sdk/credential-provider-process': 3.686.0 + '@aws-sdk/credential-provider-sso': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0) + '@aws-sdk/credential-provider-web-identity': 3.686.0(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/types': 3.686.0 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -946,15 +952,15 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-node@3.637.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0): + /@aws-sdk/credential-provider-node@3.637.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0): resolution: {integrity: sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==} engines: {node: '>=16.0.0'} dependencies: '@aws-sdk/credential-provider-env': 3.620.1 '@aws-sdk/credential-provider-http': 3.635.0 - '@aws-sdk/credential-provider-ini': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/credential-provider-ini': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0) '@aws-sdk/credential-provider-process': 3.620.1 - '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0) + '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0) '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 '@smithy/credential-provider-imds': 3.2.1 @@ -968,21 +974,21 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-node@3.713.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0): - resolution: {integrity: sha512-uIRHrhqcjcc+fUcid7Dey7mXRYfntPcA2xzebOnIK5hGBNwfQHpRG3RAlEB8K864psqW+j+XxvjoRHx9trL5Zg==} + /@aws-sdk/credential-provider-node@3.687.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0): + resolution: {integrity: sha512-Pqld8Nx11NYaBUrVk3bYiGGpLCxkz8iTONlpQWoVWFhSOzlO7zloNOaYbD2XgFjjqhjlKzE91drs/f41uGeCTA==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/credential-provider-env': 3.713.0 - '@aws-sdk/credential-provider-http': 3.713.0 - '@aws-sdk/credential-provider-ini': 3.713.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/credential-provider-process': 3.713.0 - '@aws-sdk/credential-provider-sso': 3.713.0(@aws-sdk/client-sso-oidc@3.713.0) - '@aws-sdk/credential-provider-web-identity': 3.713.0(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/types': 3.713.0 - '@smithy/credential-provider-imds': 3.2.8 - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/credential-provider-env': 3.686.0 + '@aws-sdk/credential-provider-http': 3.686.0 + '@aws-sdk/credential-provider-ini': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/credential-provider-process': 3.686.0 + '@aws-sdk/credential-provider-sso': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0) + '@aws-sdk/credential-provider-web-identity': 3.686.0(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/types': 3.686.0 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -1001,15 +1007,15 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/credential-provider-process@3.713.0: - resolution: {integrity: sha512-adVC8iz8uHmhVmZaYGj4Ab8rLz+hmnR6rOeMQ6wVbCAnWDb2qoahb+vLZ9sW9yMCVRqiDWeVK7lsa0MDRCM1sw==} + /@aws-sdk/credential-provider-process@3.686.0: + resolution: {integrity: sha512-sXqaAgyzMOc+dm4CnzAR5Q6S9OWVHyZjLfW6IQkmGjqeQXmZl24c4E82+w64C+CTkJrFLzH1VNOYp1Hy5gE6Qw==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/core': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1029,12 +1035,12 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-sso@3.637.0(@aws-sdk/client-sso-oidc@3.713.0): + /@aws-sdk/credential-provider-sso@3.637.0(@aws-sdk/client-sso-oidc@3.687.0): resolution: {integrity: sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==} engines: {node: '>=16.0.0'} dependencies: '@aws-sdk/client-sso': 3.637.0 - '@aws-sdk/token-providers': 3.614.0(@aws-sdk/client-sso-oidc@3.713.0) + '@aws-sdk/token-providers': 3.614.0(@aws-sdk/client-sso-oidc@3.687.0) '@aws-sdk/types': 3.609.0 '@smithy/property-provider': 3.1.4 '@smithy/shared-ini-file-loader': 3.1.5 @@ -1045,17 +1051,17 @@ packages: - aws-crt dev: true - /@aws-sdk/credential-provider-sso@3.713.0(@aws-sdk/client-sso-oidc@3.713.0): - resolution: {integrity: sha512-67QzqZJ6i04ZJVRB4WTUfU3QWJgr9fmv9JdqiLl63GTfz2KGOMwmojbi4INJ9isq4rDVUycdHsgl1Mhe6eDXJg==} + /@aws-sdk/credential-provider-sso@3.687.0(@aws-sdk/client-sso-oidc@3.687.0): + resolution: {integrity: sha512-N1YCoE7DovIRF2ReyRrA4PZzF0WNi4ObPwdQQkVxhvSm7PwjbWxrfq7rpYB+6YB1Uq3QPzgVwUFONE36rdpxUQ==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/client-sso': 3.713.0 - '@aws-sdk/core': 3.713.0 - '@aws-sdk/token-providers': 3.713.0(@aws-sdk/client-sso-oidc@3.713.0) - '@aws-sdk/types': 3.713.0 - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/client-sso': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/token-providers': 3.686.0(@aws-sdk/client-sso-oidc@3.687.0) + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -1075,21 +1081,21 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/credential-provider-web-identity@3.713.0(@aws-sdk/client-sts@3.637.0): - resolution: {integrity: sha512-hz2Ru+xKYQupxyYb8KCCmH6qhzn4MSkocFbnBxevlQMYbugi80oaQtpmkj2ovrKCY2ktD4ufhC/8UZJMFGjAqw==} + /@aws-sdk/credential-provider-web-identity@3.686.0(@aws-sdk/client-sts@3.637.0): + resolution: {integrity: sha512-40UqCpPxyHCXDP7CGd9JIOZDgDZf+u1OyLaGBpjQJlz1HYuEsIWnnbTe29Yg3Ah/Zc3g4NBWcUdlGVotlnpnDg==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.713.0 + '@aws-sdk/client-sts': ^3.686.0 dependencies: '@aws-sdk/client-sts': 3.637.0 - '@aws-sdk/core': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@smithy/property-provider': 3.1.11 - '@smithy/types': 3.7.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true - /@aws-sdk/credential-providers@3.637.0(@aws-sdk/client-sso-oidc@3.713.0): + /@aws-sdk/credential-providers@3.637.0(@aws-sdk/client-sso-oidc@3.687.0): resolution: {integrity: sha512-yW1scL3Z7JsrTrmhjyZsB6tsMJ49UCO42BGlNWZAW+kN1vNJ+qbv6XYQJWR4gjpuD2rdmtGcEawcgllE2Bmigw==} engines: {node: '>=16.0.0'} dependencies: @@ -1099,10 +1105,10 @@ packages: '@aws-sdk/credential-provider-cognito-identity': 3.637.0 '@aws-sdk/credential-provider-env': 3.620.1 '@aws-sdk/credential-provider-http': 3.635.0 - '@aws-sdk/credential-provider-ini': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/credential-provider-node': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0)(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/credential-provider-ini': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/credential-provider-node': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0)(@aws-sdk/client-sts@3.637.0) '@aws-sdk/credential-provider-process': 3.620.1 - '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0) + '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0) '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 '@smithy/credential-provider-imds': 3.2.1 @@ -1177,13 +1183,13 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/middleware-host-header@3.713.0: - resolution: {integrity: sha512-T1cRV9hs9WKwb2porR4QmW76ScCHqbdsrAAH+/2fR8IVRpFRU0BMnwrpSrRr7ujj6gqWQRQ97JLL+GpqpY3/ag==} + /@aws-sdk/middleware-host-header@3.686.0: + resolution: {integrity: sha512-+Yc6rO02z+yhFbHmRZGvEw1vmzf/ifS9a4aBjJGeVVU+ZxaUvnk+IUZWrj4YQopUQ+bSujmMUzJLXSkbDq7yuw==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1205,12 +1211,12 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/middleware-logger@3.713.0: - resolution: {integrity: sha512-mpTK7ost3lQt08YhTsf+C4uEAwg3Xu1LKxexlIZGXucCB6AqBKpP7e86XzpFFAtuRgEfTJVbW+Gqna8LM+yXoA==} + /@aws-sdk/middleware-logger@3.686.0: + resolution: {integrity: sha512-cX43ODfA2+SPdX7VRxu6gXk4t4bdVJ9pkktbfnkE5t27OlwNfvSGGhnHrQL8xTOFeyQ+3T+oowf26gf1OI+vIg==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/types': 3.7.2 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1224,13 +1230,13 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/middleware-recursion-detection@3.713.0: - resolution: {integrity: sha512-6vgQw92yvKR8MNsSXJE4seZhMSPVuyuBLuX81DWPr1pak/RpuUzn96CSYCTAYoCtf5vJgNseIcPfKQLkRYmBzg==} + /@aws-sdk/middleware-recursion-detection@3.686.0: + resolution: {integrity: sha512-jF9hQ162xLgp9zZ/3w5RUNhmwVnXDBlABEUX8jCgzaFpaa742qR/KKtjjZQ6jMbQnP+8fOCSXFAVNMU+s6v81w==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1274,16 +1280,16 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/middleware-user-agent@3.713.0: - resolution: {integrity: sha512-MYg2N9EUXQ4Kf0+rk7qCHPLbxRPAeWrxJXp8xDxSBiDPf0hcbCtT+cXXB6qWVrnp+OuacoUDrur3h604sp47Aw==} + /@aws-sdk/middleware-user-agent@3.687.0: + resolution: {integrity: sha512-nUgsKiEinyA50CaDXojAkOasAU3Apdg7Qox6IjNUC4ZjgOu7QWsCDB5N28AYMUt06cNYeYQdfMX1aEzG85a1Mg==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/core': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@aws-sdk/util-endpoints': 3.713.0 - '@smithy/core': 2.5.5 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@smithy/core': 2.5.1 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1308,15 +1314,15 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/region-config-resolver@3.713.0: - resolution: {integrity: sha512-SsIxxUFgYSHXchkyal+Vg+tZUFyBR0NPy/3GEYZ8geJqVfgb/4SHCIfkLMcU0qPUKlRfkJF7FPdgO24sfLiopA==} + /@aws-sdk/region-config-resolver@3.686.0: + resolution: {integrity: sha512-6zXD3bSD8tcsMAVVwO1gO7rI1uy2fCD3czgawuPGPopeLiPpo6/3FoUWCQzk2nvEhj7p9Z4BbjwZGSlRkVrXTw==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/node-config-provider': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/types': 3.686.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.11 + '@smithy/util-middleware': 3.0.8 tslib: 2.8.1 dev: true @@ -1346,13 +1352,13 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/token-providers@3.614.0(@aws-sdk/client-sso-oidc@3.713.0): + /@aws-sdk/token-providers@3.614.0(@aws-sdk/client-sso-oidc@3.687.0): resolution: {integrity: sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==} engines: {node: '>=16.0.0'} peerDependencies: '@aws-sdk/client-sso-oidc': ^3.614.0 dependencies: - '@aws-sdk/client-sso-oidc': 3.713.0(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 '@smithy/property-provider': 3.1.4 '@smithy/shared-ini-file-loader': 3.1.5 @@ -1360,17 +1366,17 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/token-providers@3.713.0(@aws-sdk/client-sso-oidc@3.713.0): - resolution: {integrity: sha512-KNL+XaU0yR6qFDtceHe/ycEz0kHyDWNd2pbL3clFWzeVQXYs8+dYDEXA17MJPVyg7oh4wRdu0ymwQsBMl2wYAA==} + /@aws-sdk/token-providers@3.686.0(@aws-sdk/client-sso-oidc@3.687.0): + resolution: {integrity: sha512-9oL4kTCSePFmyKPskibeiOXV6qavPZ63/kXM9Wh9V6dTSvBtLeNnMxqGvENGKJcTdIgtoqyqA6ET9u0PJ5IRIg==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sso-oidc': ^3.713.0 + '@aws-sdk/client-sso-oidc': ^3.686.0 dependencies: - '@aws-sdk/client-sso-oidc': 3.713.0(@aws-sdk/client-sts@3.637.0) - '@aws-sdk/types': 3.713.0 - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.637.0) + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1382,11 +1388,11 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/types@3.713.0: - resolution: {integrity: sha512-AMSYVKi1MxrJqGGbjcFC7/4g8E+ZHGfg/eW0+GXQJmsVjMjccHtU+s1dYloX4KEDgrY42QPep+dpSVRR4W7U1Q==} + /@aws-sdk/types@3.686.0: + resolution: {integrity: sha512-xFnrb3wxOoJcW2Xrh63ZgFo5buIu9DF7bOHnwoUxHdNpUXicUh0AHw85TjXxyxIAd0d1psY/DU7QHoNI3OswgQ==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1407,13 +1413,13 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/util-endpoints@3.713.0: - resolution: {integrity: sha512-fbHDhiPTqfmkWzxZgWy+GFpdfiWJa1kNLWJCF4+yaF7iOZz0eyHoBX3iaTf20V2SUU8D2td/qkwTF+cpSZTZVw==} + /@aws-sdk/util-endpoints@3.686.0: + resolution: {integrity: sha512-7msZE2oYl+6QYeeRBjlDgxQUhq/XRky3cXE0FqLFs2muLS7XSuQEXkpOXB3R782ygAP6JX0kmBxPTLurRTikZg==} engines: {node: '>=16.0.0'} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/types': 3.7.2 - '@smithy/util-endpoints': 2.1.7 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 + '@smithy/util-endpoints': 2.1.4 tslib: 2.8.1 dev: true @@ -1433,11 +1439,11 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/util-user-agent-browser@3.713.0: - resolution: {integrity: sha512-ioLAF8aIlcVhdizFVNuogMK5u3Js04rpGFvsbZANa1SJ9pK2UsKznnzinJT4e4ongy55g6LSZkWlF79VjG/Yfw==} + /@aws-sdk/util-user-agent-browser@3.686.0: + resolution: {integrity: sha512-YiQXeGYZegF1b7B2GOR61orhgv79qmI0z7+Agm3NXLO6hGfVV3kFUJbXnjtH1BgWo5hbZYW7HQ2omGb3dnb6Lg==} dependencies: - '@aws-sdk/types': 3.713.0 - '@smithy/types': 3.7.2 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 bowser: 2.11.0 tslib: 2.8.1 dev: true @@ -1457,8 +1463,8 @@ packages: tslib: 2.8.1 dev: true - /@aws-sdk/util-user-agent-node@3.713.0: - resolution: {integrity: sha512-dIunWBB7zRLvLVzNoBjap8YWrOhkwdFEjDWx9NleD+8ufpCFq5gEm8PJ0JP6stUgG5acTmafdzH7NgMyaeEexA==} + /@aws-sdk/util-user-agent-node@3.687.0: + resolution: {integrity: sha512-idkP6ojSTZ4ek1pJ8wIN7r9U3KR5dn0IkJn3KQBXQ58LWjkRqLtft2vxzdsktWwhPKjjmIKl1S0kbvqLawf8XQ==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1466,10 +1472,10 @@ packages: aws-crt: optional: true dependencies: - '@aws-sdk/middleware-user-agent': 3.713.0 - '@aws-sdk/types': 3.713.0 - '@smithy/node-config-provider': 3.1.12 - '@smithy/types': 3.7.2 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/types': 3.686.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -1498,8 +1504,8 @@ packages: picocolors: 1.1.1 dev: true - /@babel/compat-data@7.26.3: - resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} + /@babel/compat-data@7.26.2: + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} engines: {node: '>=6.9.0'} dev: true @@ -1518,7 +1524,7 @@ packages: '@babel/traverse': 7.24.6 '@babel/types': 7.24.6 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -1532,16 +1538,16 @@ packages: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 + '@babel/generator': 7.26.2 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helpers': 7.26.0 - '@babel/parser': 7.26.3 + '@babel/parser': 7.26.2 '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -1559,12 +1565,12 @@ packages: jsesc: 2.5.2 dev: true - /@babel/generator@7.26.3: - resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} + /@babel/generator@7.26.2: + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 @@ -1574,16 +1580,26 @@ packages: resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor@7.25.9: + resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/helper-compilation-targets@7.25.9: resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.26.2 '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.3 + browserslist: 4.24.2 lru-cache: 5.1.1 semver: 6.3.1 dev: true @@ -1600,35 +1616,35 @@ packages: '@babel/helper-optimise-call-expression': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0): - resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} + /@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 - regexpu-core: 6.2.0 + regexpu-core: 6.1.1 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0): - resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} + /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0): + resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - debug: 4.4.0 + debug: 4.3.7 lodash.debounce: 4.0.8 - resolve: 1.22.9 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true @@ -1657,8 +1673,8 @@ packages: resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -1667,8 +1683,8 @@ packages: resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -1682,7 +1698,7 @@ packages: '@babel/core': 7.24.6 '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -1696,7 +1712,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -1705,7 +1721,7 @@ packages: resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 dev: true /@babel/helper-plugin-utils@7.25.9: @@ -1722,7 +1738,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -1736,7 +1752,17 @@ packages: '@babel/core': 7.26.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access@7.25.9: + resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -1745,8 +1771,8 @@ packages: resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -1778,8 +1804,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -1789,7 +1815,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 dev: true /@babel/highlight@7.24.6: @@ -1810,12 +1836,12 @@ packages: '@babel/types': 7.24.6 dev: true - /@babel/parser@7.26.3: - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} + /@babel/parser@7.26.2: + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 dev: true /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0): @@ -1826,7 +1852,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -1873,7 +1899,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -1958,7 +1984,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -1981,7 +2007,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -2057,7 +2083,7 @@ packages: '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -2091,7 +2117,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2112,7 +2138,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2126,14 +2152,17 @@ packages: '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0): - resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} + /@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true /@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0): @@ -2168,7 +2197,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -2226,8 +2255,8 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0): - resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} + /@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2235,6 +2264,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-simple-access': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -2249,7 +2279,7 @@ packages: '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -2274,7 +2304,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2466,7 +2496,7 @@ packages: '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color dev: true @@ -2500,7 +2530,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2523,9 +2553,9 @@ packages: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) - babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -2584,8 +2614,8 @@ packages: '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0): - resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==} + /@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2617,7 +2647,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2628,7 +2658,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2639,7 +2669,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 dev: true @@ -2649,7 +2679,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.26.2 '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 @@ -2677,7 +2707,7 @@ packages: '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0) + '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) @@ -2686,7 +2716,7 @@ packages: '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) @@ -2714,9 +2744,9 @@ packages: '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0) - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) - babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0) core-js-compat: 3.39.0 semver: 6.3.1 transitivePeerDependencies: @@ -2730,12 +2760,12 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 esutils: 2.0.3 dev: true - /@babel/preset-react@7.26.3(@babel/core@7.26.0): - resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==} + /@babel/preset-react@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2761,8 +2791,8 @@ packages: '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-option': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) - '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color dev: true @@ -2786,8 +2816,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 dev: true /@babel/traverse@7.24.6: @@ -2802,22 +2832,22 @@ packages: '@babel/helper-split-export-declaration': 7.24.6 '@babel/parser': 7.24.6 '@babel/types': 7.24.6 - debug: 4.4.0 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/traverse@7.26.4: - resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + /@babel/traverse@7.25.9: + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 '@babel/template': 7.25.9 - '@babel/types': 7.26.3 - debug: 4.4.0 + '@babel/types': 7.26.0 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -2832,8 +2862,8 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types@7.26.3: - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + /@babel/types@7.26.0: + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.25.9 @@ -3016,8 +3046,8 @@ packages: zod: 3.23.8 dev: true - /@cloudflare/workers-types@4.20241216.0: - resolution: {integrity: sha512-PGIINXS+aE9vD2GYyWXfRG+VyxxceRkGDCoPxqwUweh1Bfv75HVotyL/adJ7mRVwh3XZDifGBdTaLReTT+Fcog==} + /@cloudflare/workers-types@4.20241106.0: + resolution: {integrity: sha512-pI4ivacmp+vgNO/siHDsZ6BdITR0LC4Mh/1+yzVLcl9U75pt5DUDCOWOiqIRFXRq6H65DPnJbEPFo3x9UfgofQ==} /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} @@ -3184,7 +3214,7 @@ packages: resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} engines: {node: '>=v18'} dependencies: - '@types/conventional-commits-parser': 5.0.1 + '@types/conventional-commits-parser': 5.0.0 chalk: 5.3.0 dev: true @@ -4522,15 +4552,6 @@ packages: '@jridgewell/trace-mapping': 0.3.25 dev: true - /@jridgewell/gen-mapping@0.3.8: - resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 - dev: true - /@jridgewell/resolve-uri@3.1.2: resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} @@ -4544,7 +4565,7 @@ packages: /@jridgewell/source-map@0.3.6: resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} dependencies: - '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 dev: true @@ -4575,8 +4596,8 @@ packages: tslib: 2.8.1 dev: true - /@jsonjoy.com/json-pack@1.1.1(tslib@2.8.1): - resolution: {integrity: sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==} + /@jsonjoy.com/json-pack@1.1.0(tslib@2.8.1): + resolution: {integrity: sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' @@ -4597,8 +4618,8 @@ packages: tslib: 2.8.1 dev: true - /@jspm/core@2.0.1: - resolution: {integrity: sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==} + /@jspm/core@2.1.0: + resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} dev: true /@leichtgewicht/ip-codec@2.0.5: @@ -4775,7 +4796,7 @@ packages: lodash.clonedeepwith: 4.5.0 log4js: 6.9.1 node-schedule: 2.1.1 - rambda: 9.4.1 + rambda: 9.4.0 typescript: 5.6.3 ws: 8.18.0 transitivePeerDependencies: @@ -5062,7 +5083,7 @@ packages: dependencies: '@npmcli/git': 4.1.0 glob: 10.4.5 - hosted-git-info: 6.1.3 + hosted-git-info: 6.1.1 json-parse-even-better-errors: 3.0.2 normalize-package-data: 5.0.0 proc-log: 3.0.0 @@ -5078,7 +5099,7 @@ packages: which: 3.0.1 dev: true - /@nx-aws-plugin/nx-aws-cache@3.2.3(@aws-sdk/client-sso-oidc@3.713.0)(@nx/devkit@20.2.2)(@nx/workspace@20.2.2)(nx@20.2.2): + /@nx-aws-plugin/nx-aws-cache@3.2.3(@aws-sdk/client-sso-oidc@3.687.0)(@nx/devkit@20.2.2)(@nx/workspace@20.2.2)(nx@20.2.2): resolution: {integrity: sha512-syHC5wJVmy/h15/8uR1go3PyVj6VlVvRS/jgUMeapE7ayaPnNUx3zYhIbdkc/Up4qTX3JDaEpn59mDHfNCGeww==} peerDependencies: '@nx/devkit': '>=16.0.0' @@ -5086,7 +5107,7 @@ packages: nx: '>=16.0.0' dependencies: '@aws-sdk/client-s3': 3.637.0 - '@aws-sdk/credential-providers': 3.637.0(@aws-sdk/client-sso-oidc@3.713.0) + '@aws-sdk/credential-providers': 3.637.0(@aws-sdk/client-sso-oidc@3.687.0) '@aws-sdk/lib-storage': 3.637.0(@aws-sdk/client-s3@3.637.0) '@aws-sdk/property-provider': 3.374.0 '@nx/devkit': 20.2.2(nx@20.2.2) @@ -5100,6 +5121,38 @@ packages: - aws-crt dev: true + /@nx/devkit@20.0.12(nx@20.0.12): + resolution: {integrity: sha512-HsaDoAmzLPE2vHal2eNYvH7x6NCfHjUblm8WDD12Q/uCdTBvDTZqd7P+bukEH+2FhY89Dn/1fy59vKkA+rcB/g==} + peerDependencies: + nx: '>= 19 <= 21' + dependencies: + ejs: 3.1.10 + enquirer: 2.3.6 + ignore: 5.3.2 + minimatch: 9.0.3 + nx: 20.0.12 + semver: 7.6.3 + tmp: 0.2.3 + tslib: 2.8.1 + yargs-parser: 21.1.1 + dev: true + + /@nx/devkit@20.0.12(nx@20.2.2): + resolution: {integrity: sha512-HsaDoAmzLPE2vHal2eNYvH7x6NCfHjUblm8WDD12Q/uCdTBvDTZqd7P+bukEH+2FhY89Dn/1fy59vKkA+rcB/g==} + peerDependencies: + nx: '>= 19 <= 21' + dependencies: + ejs: 3.1.10 + enquirer: 2.3.6 + ignore: 5.3.2 + minimatch: 9.0.3 + nx: 20.2.2 + semver: 7.6.3 + tmp: 0.2.3 + tslib: 2.8.1 + yargs-parser: 21.1.1 + dev: true + /@nx/devkit@20.2.2(nx@20.2.2): resolution: {integrity: sha512-uqs0LVvuRRVAfFdn0ewvmr1vsNV9Ztugw36emcLJxskqhBZb10K+vzdTDAZpg5aVE2ISg1BmPidoOyk1tP+Omg==} peerDependencies: @@ -5116,8 +5169,8 @@ packages: yargs-parser: 21.1.1 dev: true - /@nx/eslint-plugin@20.2.2(@types/node@22.10.2)(@typescript-eslint/parser@8.18.1)(eslint@9.16.0)(nx@20.2.2)(typescript@5.6.3): - resolution: {integrity: sha512-LfRPu6QWPRQgsJ51WtsMyoK7FhvUGO5G5l/m+PyN2FecnZJcrrRCcExt3Sj0btzc0CqCW2gtgSTa1eyC16U0rQ==} + /@nx/eslint-plugin@20.0.12(@types/node@22.10.2)(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(nx@20.2.2)(typescript@5.6.3): + resolution: {integrity: sha512-DZVKKaDSXYTIYG0vIb/GX6kZ5wEN4X/alx7/Q5k5IAeTjF2yOHz3V+jxqLWShdT3RXfl5QNZSbefs/OBC9ljQA==} peerDependencies: '@typescript-eslint/parser': ^6.13.2 || ^7.0.0 || ^8.0.0 eslint-config-prettier: ^9.0.0 @@ -5125,14 +5178,14 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nx/devkit': 20.2.2(nx@20.2.2) - '@nx/js': 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) - '@typescript-eslint/parser': 8.18.1(eslint@9.16.0)(typescript@5.6.3) - '@typescript-eslint/type-utils': 8.18.0(eslint@9.16.0)(typescript@5.6.3) - '@typescript-eslint/utils': 8.18.0(eslint@9.16.0)(typescript@5.6.3) + '@nx/devkit': 20.0.12(nx@20.2.2) + '@nx/js': 20.0.12(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.6.3) + '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0)(typescript@5.6.3) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.6.3) chalk: 4.1.2 confusing-browser-globals: 1.0.11 - globals: 15.13.0 + globals: 15.12.0 jsonc-eslint-parser: 2.4.0 semver: 7.6.3 tslib: 2.8.1 @@ -5177,6 +5230,56 @@ packages: - verdaccio dev: true + /@nx/js@20.0.12(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3): + resolution: {integrity: sha512-4lfetz92z+AkN7fUanKoac45TA8TBDzgfMfBjPVh2zWMzLTmxyn8BZdjd8eZ45pf3k73N30HMvhfO/+hS/nstA==} + peerDependencies: + verdaccio: ^5.0.4 + peerDependenciesMeta: + verdaccio: + optional: true + dependencies: + '@babel/core': 7.26.0 + '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) + '@babel/preset-env': 7.26.0(@babel/core@7.26.0) + '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) + '@babel/runtime': 7.26.0 + '@nx/devkit': 20.0.12(nx@20.2.2) + '@nx/workspace': 20.0.12 + '@zkochan/js-yaml': 0.0.7 + babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0) + babel-plugin-macros: 2.8.0 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0) + chalk: 4.1.2 + columnify: 1.6.0 + detect-port: 1.6.1 + enquirer: 2.3.6 + fast-glob: 3.2.7 + ignore: 5.3.2 + js-tokens: 4.0.0 + jsonc-parser: 3.2.0 + minimatch: 9.0.3 + npm-package-arg: 11.0.1 + npm-run-path: 4.0.1 + ora: 5.3.0 + semver: 7.6.3 + source-map-support: 0.5.19 + ts-node: 10.9.1(@types/node@22.10.2)(typescript@5.6.3) + tsconfig-paths: 4.2.0 + tslib: 2.8.1 + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - debug + - nx + - supports-color + - typescript + dev: true + /@nx/js@20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3): resolution: {integrity: sha512-y/L+GMS8pIE1rQTQ28Lb1YeWpEnDj2v3T/7QpWvICc78NZXuMrO6N1ZRTPRSQNXKL6Bs9S9bRuivsvSIiNlULw==} peerDependencies: @@ -5236,8 +5339,8 @@ packages: '@nx/devkit': 20.2.2(nx@20.2.2) '@nx/js': 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) '@nx/web': 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) - '@rspack/core': 1.1.6 - express: 4.21.2 + '@rspack/core': 1.1.5 + express: 4.21.1 http-proxy-middleware: 3.0.3 picocolors: 1.1.1 tslib: 2.8.1 @@ -5265,6 +5368,15 @@ packages: - webpack-cli dev: true + /@nx/nx-darwin-arm64@20.0.12: + resolution: {integrity: sha512-iwEDUTKx0n2S6Nz9gc9ShrfBw0MG87U0YIu2x/09tKOSkcsw90QKy54qN/6WNoFIE41Kt3U+dYtWi+NdLRE9kw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@nx/nx-darwin-arm64@20.2.2: resolution: {integrity: sha512-gnS5mtbaBAO5TJkl4T68rQaN/79MMWePavw2SOcFyFnIdAriGEZ+ZFDUE0B/xYJSs9CPWLaGHf+n7oqyxaGd9A==} engines: {node: '>= 10'} @@ -5274,6 +5386,15 @@ packages: dev: true optional: true + /@nx/nx-darwin-x64@20.0.12: + resolution: {integrity: sha512-JYFNf0yPReejaooQAAIMsjWDGENT777wDXj45e7JQUMM4t6NOMpGBj4qUFyc6a/jXT+/bCGEj4N7VDZDZiogGA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@nx/nx-darwin-x64@20.2.2: resolution: {integrity: sha512-IctvdQon+K8mlhl06zIq1xTPwf5L4OuS7crzCmK26p5F/lV6iz/UXSPCcgn+bYKOL/q3QCLNR7UasQMjzgCNkQ==} engines: {node: '>= 10'} @@ -5283,6 +5404,15 @@ packages: dev: true optional: true + /@nx/nx-freebsd-x64@20.0.12: + resolution: {integrity: sha512-892n8o7vxdmE7pol3ggV78YHlP25p6Y/Z2x69nnC3BBTpWmesyd6lbEmamANofD5KcKCmT1HquC3m6rCT7akHw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@nx/nx-freebsd-x64@20.2.2: resolution: {integrity: sha512-4/Blg9Y6LVU8tS8yoa2BEXPHWsorpvCuZRH0gXPh96i6b71o4ORPafyLOHp08o3WjtUZb4jl5TfDryE+8y62ZA==} engines: {node: '>= 10'} @@ -5292,6 +5422,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm-gnueabihf@20.0.12: + resolution: {integrity: sha512-ZPcdYIVAc5JMtmvroJOloI9CJgtwBOGr7E7mO1eT44zs5av0j/QMIj6GSDdvJ7fx+I7TmT4mDiu3s6rLO+/JjA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm-gnueabihf@20.2.2: resolution: {integrity: sha512-AVAxbUXi6q+inmp8re3OV7HzH6fbkKnnMKvjDLnkzK8dA2Mv4JFl/gz++rgkYfEsBk20lcB1i3unqNrtOvzS7Q==} engines: {node: '>= 10'} @@ -5301,6 +5440,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm64-gnu@20.0.12: + resolution: {integrity: sha512-TadGwwUKS5WQg2YOMb2WuuVG1k14miSdB9qJOcAX5MGdOiQ1fpV00ph+kMWZSsCCo6N7sKxmvXXXdsUUFSDGjg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm64-gnu@20.2.2: resolution: {integrity: sha512-h04SLH464Oh/k/1mpAfsMhTVlnc1NJItx4N5DLZb2VuOOY+Tquhrp7HBJLyAhU0Q74JG0LevGFO6wdxliHupmA==} engines: {node: '>= 10'} @@ -5310,6 +5458,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm64-musl@20.0.12: + resolution: {integrity: sha512-EE2HQjgY87/s9+PQ27vbYyDEXFZ4Qot+O8ThVDVuMI/2dosmWs6C4+YEm3VYG+CT31MVwe/vHKXbDlZgkROMuA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm64-musl@20.2.2: resolution: {integrity: sha512-rnRXDLvHHj66rCslD4ShDq6KBOVsQ+X63GWTGKM0pnTIIDje9+ltZCoAByieCUm4BvFfCWMUf9y0mGfZvLVKSw==} engines: {node: '>= 10'} @@ -5319,6 +5476,15 @@ packages: dev: true optional: true + /@nx/nx-linux-x64-gnu@20.0.12: + resolution: {integrity: sha512-gITJ2g6dH2qvGrI2CHHRyd3soVrJyQQGkqtJnWq04ge+YDy/KniXR2ThQ93LI/QLAxKrKOe3qmIIaNdcdDYnjA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-x64-gnu@20.2.2: resolution: {integrity: sha512-K1Z2DVTnyCGl4nolhZ8fvHEixoe1pZOY256LD6D0lGca4Fsi3mHQ7lDU237Pzyc91+cfLva/OAvrivRPeU+DMA==} engines: {node: '>= 10'} @@ -5328,6 +5494,15 @@ packages: dev: true optional: true + /@nx/nx-linux-x64-musl@20.0.12: + resolution: {integrity: sha512-vOoCrjL44nFZ5N8a4UAIYELnf/tq1dRaLEhSV+P0hKTEtwONj4k8crfU/2HifG1iU7p3AWJLEyaddMoINhB/2g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-x64-musl@20.2.2: resolution: {integrity: sha512-pyWe+d2Y2pJVgPZf27KkDBufhFPq+Xhs3/zAQdJbicMvym7uhw0qMTV+lmoMXgfx52WZzhqTfG8JQcDqHjExJw==} engines: {node: '>= 10'} @@ -5337,6 +5512,15 @@ packages: dev: true optional: true + /@nx/nx-win32-arm64-msvc@20.0.12: + resolution: {integrity: sha512-gKdaul23bdRnh493iAd6pSLPSW54VBuEv2zPL86cgprLOcEZiGM5BLJWQguKHCib6dYKaIP4CUIs7i7vhEID+A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@nx/nx-win32-arm64-msvc@20.2.2: resolution: {integrity: sha512-zqSoVrV34tx6qhQo/PwD9IMGhzoNSaFQxjTjNCY61sE7iwi5Qt4dDs3Rlh1ZFCBFnrjziymRPY2RryArgeK8Bw==} engines: {node: '>= 10'} @@ -5346,6 +5530,15 @@ packages: dev: true optional: true + /@nx/nx-win32-x64-msvc@20.0.12: + resolution: {integrity: sha512-R1pz4kAG0Ok0EDxXhHwKM3ZZcK2nLycuR9SDrq2Ldp2knvbFf4quSjWyAQaiofJXo179+noa7o5tZDZbNjBYMw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@nx/nx-win32-x64-msvc@20.2.2: resolution: {integrity: sha512-IfQf2axmCuSArhFGaocIDt8ajWDHXoVut5NOQH4eV2q9whP1j/LVB8EehEaolF5UenM7rhL4V25PXPuuBaUq4A==} engines: {node: '>= 10'} @@ -5405,7 +5598,7 @@ packages: - webpack-cli dev: true - /@nx/react@20.2.2(@types/node@22.10.2)(esbuild@0.17.19)(eslint@9.16.0)(nx@20.2.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.6.3)(webpack@5.97.1): + /@nx/react@20.2.2(@types/node@22.10.2)(esbuild@0.17.19)(eslint@9.16.0)(nx@20.2.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.6.3)(webpack@5.96.1): resolution: {integrity: sha512-J/wV0fCho4z5OgRdNMCL8M1/frWN3ZAh0yYsiMX7+WqQVKVedxFk85FXuT8WE0y/TMel6CODVOvdW7tyoIBuXQ==} dependencies: '@nx/devkit': 20.2.2(nx@20.2.2) @@ -5415,8 +5608,8 @@ packages: '@nx/web': 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3) '@svgr/webpack': 8.1.0(typescript@5.6.3) - express: 4.21.2 - file-loader: 6.2.0(webpack@5.97.1) + express: 4.21.1 + file-loader: 6.2.0(webpack@5.96.1) http-proxy-middleware: 3.0.3 minimatch: 9.0.3 picocolors: 1.1.1 @@ -5456,12 +5649,12 @@ packages: '@nx/devkit': 20.2.2(nx@20.2.2) '@nx/js': 20.2.2(@types/node@22.10.2)(nx@20.2.2)(typescript@5.6.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3) - '@swc/helpers': 0.5.15 + '@swc/helpers': 0.5.13 enquirer: 2.3.6 minimatch: 9.0.3 tsconfig-paths: 4.2.0 vite: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) - vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.6.9)(stylus@0.64.0) + vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.7.0)(stylus@0.64.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -5506,37 +5699,37 @@ packages: '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3) ajv: 8.17.1 autoprefixer: 10.4.20(postcss@8.4.49) - babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.97.1) - browserslist: 4.24.3 - copy-webpack-plugin: 10.2.4(webpack@5.97.1) - css-loader: 6.11.0(webpack@5.97.1) - css-minimizer-webpack-plugin: 5.0.1(esbuild@0.17.19)(webpack@5.97.1) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.6.3)(webpack@5.97.1) + babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.96.1) + browserslist: 4.24.2 + copy-webpack-plugin: 10.2.4(webpack@5.96.1) + css-loader: 6.11.0(webpack@5.96.1) + css-minimizer-webpack-plugin: 5.0.1(esbuild@0.17.19)(webpack@5.96.1) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.6.3)(webpack@5.96.1) less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.97.1) - license-webpack-plugin: 4.0.2(webpack@5.97.1) + less-loader: 11.1.0(less@4.1.3)(webpack@5.96.1) + license-webpack-plugin: 4.0.2(webpack@5.96.1) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.97.1) + mini-css-extract-plugin: 2.4.7(webpack@5.96.1) parse5: 4.0.0 picocolors: 1.1.1 postcss: 8.4.49 postcss-import: 14.1.0(postcss@8.4.49) - postcss-loader: 6.2.1(postcss@8.4.49)(webpack@5.97.1) + postcss-loader: 6.2.1(postcss@8.4.49)(webpack@5.96.1) rxjs: 7.8.1 - sass: 1.83.0 - sass-loader: 12.6.0(sass@1.83.0)(webpack@5.97.1) - source-map-loader: 5.0.0(webpack@5.97.1) - style-loader: 3.3.4(webpack@5.97.1) + sass: 1.80.6 + sass-loader: 12.6.0(sass@1.80.6)(webpack@5.96.1) + source-map-loader: 5.0.0(webpack@5.96.1) + style-loader: 3.3.4(webpack@5.96.1) stylus: 0.64.0 - stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.97.1) - terser-webpack-plugin: 5.3.11(esbuild@0.17.19)(webpack@5.97.1) - ts-loader: 9.5.1(typescript@5.6.3)(webpack@5.97.1) + stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.96.1) + terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.96.1) + ts-loader: 9.5.1(typescript@5.6.3)(webpack@5.96.1) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.8.1 - webpack: 5.97.1(esbuild@0.17.19) - webpack-dev-server: 5.2.0(webpack@5.97.1) + webpack: 5.96.1(esbuild@0.17.19) + webpack-dev-server: 5.1.0(webpack@5.96.1) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(webpack@5.97.1) + webpack-subresource-integrity: 5.1.0(webpack@5.96.1) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -5566,6 +5759,21 @@ packages: - webpack-cli dev: true + /@nx/workspace@20.0.12: + resolution: {integrity: sha512-MCig+vBs6+eg/RWVB2q30cOXwfPj0cthXf/azaAT7Y+ukxhBJKKzSS4lJfOwmA4dST3+dvaQihGOkfxasqS9Aw==} + dependencies: + '@nx/devkit': 20.0.12(nx@20.0.12) + chalk: 4.1.2 + enquirer: 2.3.6 + nx: 20.0.12 + tslib: 2.8.1 + yargs-parser: 21.1.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + /@nx/workspace@20.2.2: resolution: {integrity: sha512-VC22d5EG9f8sLD+gvq9Nbau0u8cV0gy5aYyRcleecqs9bBvOiVxAvv7HaDCRcHezHQhKwxcIOZvmuCjYF/oKxg==} dependencies: @@ -6066,7 +6274,7 @@ packages: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.52.1 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.12.0 + import-in-the-middle: 1.11.2 require-in-the-middle: 7.4.0 semver: 7.6.3 shimmer: 1.2.1 @@ -6083,7 +6291,7 @@ packages: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.56.0 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.12.0 + import-in-the-middle: 1.11.2 require-in-the-middle: 7.4.0 semver: 7.6.3 shimmer: 1.2.1 @@ -7785,7 +7993,7 @@ packages: react: 18.3.1 dev: true - /@remix-run/cloudflare-pages@2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3): + /@remix-run/cloudflare-pages@2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3): resolution: {integrity: sha512-LP6pdeQ2UI1FPZccOdIFbbijMi3w5PnpE1ESrEpgD5QXZ8Y+S9aqixf7Acul8O9yuqQHMpCnSxqTYwtIIit+NQ==} engines: {node: '>=18.0.0'} peerDependencies: @@ -7795,11 +8003,11 @@ packages: typescript: optional: true dependencies: - '@cloudflare/workers-types': 4.20241216.0 - '@remix-run/cloudflare': 2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3) + '@cloudflare/workers-types': 4.20241106.0 + '@remix-run/cloudflare': 2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3) typescript: 5.6.3 - /@remix-run/cloudflare@2.15.1(@cloudflare/workers-types@4.20241216.0)(typescript@5.6.3): + /@remix-run/cloudflare@2.15.1(@cloudflare/workers-types@4.20241106.0)(typescript@5.6.3): resolution: {integrity: sha512-QQOyleNnI4bHjyxL75RBNmgIFTdMN7QgYWx6YhbSPCdopAw6PvuUwqKPExa8TZJQ/N4DuaiHUodTEYzdmETXkg==} engines: {node: '>=18.0.0'} peerDependencies: @@ -7810,7 +8018,7 @@ packages: optional: true dependencies: '@cloudflare/kv-asset-handler': 0.1.3 - '@cloudflare/workers-types': 4.20241216.0 + '@cloudflare/workers-types': 4.20241106.0 '@remix-run/server-runtime': 2.15.1(typescript@5.6.3) typescript: 5.6.3 @@ -7835,13 +8043,13 @@ packages: optional: true dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0) '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 '@mdx-js/mdx': 2.3.0 '@npmcli/package-json': 4.0.1 '@remix-run/node': 2.15.1(typescript@5.6.3) @@ -7855,14 +8063,14 @@ packages: cacache: 17.1.4 chalk: 4.1.2 chokidar: 3.6.0 - cross-spawn: 7.0.6 + cross-spawn: 7.0.5 dotenv: 16.4.7 es-module-lexer: 1.5.4 esbuild: 0.17.6 - esbuild-plugins-node-modules-polyfill: 1.6.8(esbuild@0.17.6) + esbuild-plugins-node-modules-polyfill: 1.6.7(esbuild@0.17.6) execa: 5.1.1 exit-hook: 2.2.1 - express: 4.21.2 + express: 4.21.1 fs-extra: 10.1.0 get-port: 5.1.1 gunzip-maybe: 1.4.2 @@ -7892,7 +8100,7 @@ packages: valibot: 0.41.0(typescript@5.6.3) vite: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) vite-node: 1.6.0(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) - wrangler: 3.93.0(@cloudflare/workers-types@4.20241216.0) + wrangler: 3.93.0(@cloudflare/workers-types@4.20241106.0) ws: 7.5.10 transitivePeerDependencies: - '@types/node' @@ -7911,7 +8119,7 @@ packages: - utf-8-validate dev: true - /@remix-run/express@2.15.1(express@4.21.2)(typescript@5.6.3): + /@remix-run/express@2.15.1(express@4.21.1)(typescript@5.6.3): resolution: {integrity: sha512-aw7aEj6K9HGjJqHB9JKHLp6WE/bisYmnt52pRzkK/nzCWgK3hwBdi7tj5KYFTw9WfgZhEQICUmA/pmuafo7wyg==} engines: {node: '>=18.0.0'} peerDependencies: @@ -7922,7 +8130,7 @@ packages: optional: true dependencies: '@remix-run/node': 2.15.1(typescript@5.6.3) - express: 4.21.2 + express: 4.21.1 typescript: 5.6.3 dev: true @@ -7942,7 +8150,7 @@ packages: source-map-support: 0.5.21 stream-slice: 0.1.2 typescript: 5.6.3 - undici: 6.21.0 + undici: 6.20.1 dev: true /@remix-run/react@2.15.1(react-dom@18.3.1)(react@18.3.1)(typescript@5.6.3): @@ -7975,11 +8183,11 @@ packages: engines: {node: '>=18.0.0'} hasBin: true dependencies: - '@remix-run/express': 2.15.1(express@4.21.2)(typescript@5.6.3) + '@remix-run/express': 2.15.1(express@4.21.1)(typescript@5.6.3) '@remix-run/node': 2.15.1(typescript@5.6.3) chokidar: 3.6.0 compression: 1.7.5 - express: 4.21.2 + express: 4.21.1 get-port: 5.1.1 morgan: 1.10.0 source-map-support: 0.5.21 @@ -8189,94 +8397,94 @@ packages: dev: true optional: true - /@rspack/binding-darwin-arm64@1.1.6: - resolution: {integrity: sha512-x9dxm2yyiMuL1FBwvWNNMs2/mEUJmRoSRgYb8pblR7HDaTRORrjBFCqhaYlGyAqtQaeUy7o2VAQlE0BavIiFYA==} + /@rspack/binding-darwin-arm64@1.1.5: + resolution: {integrity: sha512-eEynmyPPl+OGYQ9LRFwiQosyRfcca3OQB73akqY4mqDRl39OyiBjq7347DLHJysgbm9z+B1bsiLuh2xc6mdclQ==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@rspack/binding-darwin-x64@1.1.6: - resolution: {integrity: sha512-o0seilveftGiDjy3VPxug20HmAgYyQbNEuagR3i93/t/PT/eWXHnik+C1jjwqcivZL1Zllqvy4tbZw393aROEQ==} + /@rspack/binding-darwin-x64@1.1.5: + resolution: {integrity: sha512-I6HPRgogewU5v1OKe3noEzq2U1FCEYAbW+smy+lPvpTW+3X6PlVMzTT4oelhB0EXDQ+KxjXH9KpOKON1hg/JGg==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@rspack/binding-linux-arm64-gnu@1.1.6: - resolution: {integrity: sha512-4atnoknJx/c3KaQElsMIxHMpPf2jcRRdWsH/SdqJIRSrkWWakMK9Yv4TFwH680I4HDTMf1XLboMVScHzW8e+Mg==} + /@rspack/binding-linux-arm64-gnu@1.1.5: + resolution: {integrity: sha512-LQnqucNa6Dr6y3By+/M2ARO4jDR3AM+PuCsHgzlYT0RDRLS+Ow3f50WbNBf7eI/DhrEA0aucYL3sz1ljguB3EA==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rspack/binding-linux-arm64-musl@1.1.6: - resolution: {integrity: sha512-7QMtwUtgFpt3/Y3/X18fSyN+kk4H8ZnZ8tDzQskVWc/j2AQYShZq56XQYqrhClzwujcCVAHauIQ2eiuJ2ASGag==} + /@rspack/binding-linux-arm64-musl@1.1.5: + resolution: {integrity: sha512-b9L/9HJxrWY4cezPWqgj28I9Xe2XxwLHu8x0CMGobwF2XKR0QQVLAst38RW/EusJ8TURdyvNEOuRZlWEIJuYOw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rspack/binding-linux-x64-gnu@1.1.6: - resolution: {integrity: sha512-MTjDEfPn4TwHoqs5d5Fck06kmXiTHZctGIcRVfrpg0RK0r1NLEHN+oosavRZ9c9H70f34+NmcHk+/qvV4c8lWg==} + /@rspack/binding-linux-x64-gnu@1.1.5: + resolution: {integrity: sha512-0az52ZXTg/ErCGC1v/oFLWByKAiXvng4euv+prwMWF6p1pA7lfLRLzdibDFO4KgC16Zlfcg3hqs7YikLng4x+w==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rspack/binding-linux-x64-musl@1.1.6: - resolution: {integrity: sha512-LqDw7PTVr/4ZuGA0izgDQfamfr72USFHltR1Qhy2YVC3JmDmhG/pQi13LHcOLVaGH1xoeyCmEPNJpVizzDxSjg==} + /@rspack/binding-linux-x64-musl@1.1.5: + resolution: {integrity: sha512-EF/LJTtCTkuti2gJnCyvXHC5Q2L5M4+RXm5kj9Bfu/t0Zmmfe6Jd5QUsifgogioeL0ZsH/Pou5QiiVcOFcqFKQ==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rspack/binding-win32-arm64-msvc@1.1.6: - resolution: {integrity: sha512-RHApLM93YN0WdHpS35u2cm7VCqZ8Yg3CrNRL16VJtyT9e6MBqeScoe4XIgIWKPm7edFyedYAjLX0wQOApwfjkg==} + /@rspack/binding-win32-arm64-msvc@1.1.5: + resolution: {integrity: sha512-VEqhK6HwIHby6gtOkxIx66SkqYndiaP1ddZ3X39RLE40TY3KlNgfG/SzbN9J5Qb+8jjq3ogV8n50+wLEGkhiWw==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@rspack/binding-win32-ia32-msvc@1.1.6: - resolution: {integrity: sha512-Y6lx4q0eJawRfMPBo/AclTJAPTZ325DSPFBQJB3TnWh9Z2X7P7pQcYc8PHDmfDuYRIdg5WRsQRvVxihSvF7v8w==} + /@rspack/binding-win32-ia32-msvc@1.1.5: + resolution: {integrity: sha512-Yi2BwYehc5/sRVgI7zTGYJKjnV8UszAJt/stWdFHaq82chHiuuF/tQd1WcBUq0Iin9ylBMo16mRJAuFkFmJ74Q==} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@rspack/binding-win32-x64-msvc@1.1.6: - resolution: {integrity: sha512-UuCsfhC/yNuU7xLASOxNXcmsXi2ZvBX14GkxvcdChw6q7IIGNYUKXo1zgR8C1PE/6qDSxmLxbRMS+71d0H3HQg==} + /@rspack/binding-win32-x64-msvc@1.1.5: + resolution: {integrity: sha512-4UArXYqJO1Ni7TmCw1T11JnrwfpoThDdiQ9k1P1voBWK3bDahPEBOptk9ZPu2+ZuRX8hFrvumRKkLY3oy7fTMw==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@rspack/binding@1.1.6: - resolution: {integrity: sha512-vfeBEgGOYVwqj5cQjGyvdfrr/BEihAHlyIsobL98FZjTF0uig+bj2yJUH5Ib5F0BpIUKVG3Pw0IjlUBqcVpZsQ==} + /@rspack/binding@1.1.5: + resolution: {integrity: sha512-RsSkgi56Q5XUXut0qweLSE1C4Ogcm7g/ueKoOgsbHAYVKrCs9/dTFlPHWSIAaI7QWh0GWEePR/MM2O2HIu+1rw==} optionalDependencies: - '@rspack/binding-darwin-arm64': 1.1.6 - '@rspack/binding-darwin-x64': 1.1.6 - '@rspack/binding-linux-arm64-gnu': 1.1.6 - '@rspack/binding-linux-arm64-musl': 1.1.6 - '@rspack/binding-linux-x64-gnu': 1.1.6 - '@rspack/binding-linux-x64-musl': 1.1.6 - '@rspack/binding-win32-arm64-msvc': 1.1.6 - '@rspack/binding-win32-ia32-msvc': 1.1.6 - '@rspack/binding-win32-x64-msvc': 1.1.6 - dev: true - - /@rspack/core@1.1.6: - resolution: {integrity: sha512-q0VLphOF5VW2FEG7Vbdq3Ke4I74FbELE/8xmKghSalFtULLZ44SoSz8lyotfMim9GXIRFhDokAaH8WICmPxG+g==} + '@rspack/binding-darwin-arm64': 1.1.5 + '@rspack/binding-darwin-x64': 1.1.5 + '@rspack/binding-linux-arm64-gnu': 1.1.5 + '@rspack/binding-linux-arm64-musl': 1.1.5 + '@rspack/binding-linux-x64-gnu': 1.1.5 + '@rspack/binding-linux-x64-musl': 1.1.5 + '@rspack/binding-win32-arm64-msvc': 1.1.5 + '@rspack/binding-win32-ia32-msvc': 1.1.5 + '@rspack/binding-win32-x64-msvc': 1.1.5 + dev: true + + /@rspack/core@1.1.5: + resolution: {integrity: sha512-/FmxDeMuW8fJkhz8fHuCu7OiJHFKW78xclEu7LkEujWl4PqJgdWjUL/6FWIj50spRwj6PRfuc31hFSL4hbNfCA==} engines: {node: '>=16.0.0'} peerDependencies: '@swc/helpers': '>=0.5.1' @@ -8285,9 +8493,9 @@ packages: optional: true dependencies: '@module-federation/runtime-tools': 0.5.1 - '@rspack/binding': 1.1.6 + '@rspack/binding': 1.1.5 '@rspack/lite-tapable': 1.0.1 - caniuse-lite: 1.0.30001688 + caniuse-lite: 1.0.30001679 dev: true /@rspack/lite-tapable@1.0.1: @@ -8384,7 +8592,7 @@ packages: dir-glob: 3.0.1 globby: 14.0.2 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 + https-proxy-agent: 7.0.5 issue-parser: 7.0.0 lodash-es: 4.17.21 mime: 4.0.4 @@ -8630,7 +8838,7 @@ packages: '@prisma/instrumentation': 5.19.1 '@sentry/core': 8.46.0 '@sentry/opentelemetry': 8.46.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.29.0)(@opentelemetry/instrumentation@0.56.0)(@opentelemetry/sdk-trace-base@1.29.0)(@opentelemetry/semantic-conventions@1.28.0) - import-in-the-middle: 1.12.0 + import-in-the-middle: 1.11.2 transitivePeerDependencies: - supports-color dev: true @@ -8734,11 +8942,11 @@ packages: tslib: 2.8.1 dev: true - /@smithy/abort-controller@3.1.9: - resolution: {integrity: sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==} + /@smithy/abort-controller@3.1.6: + resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -8755,14 +8963,14 @@ packages: tslib: 2.8.1 dev: true - /@smithy/config-resolver@3.0.13: - resolution: {integrity: sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==} + /@smithy/config-resolver@3.0.10: + resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/node-config-provider': 3.1.12 - '@smithy/types': 3.7.2 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.11 + '@smithy/util-middleware': 3.0.8 tslib: 2.8.1 dev: true @@ -8793,16 +9001,16 @@ packages: tslib: 2.8.1 dev: true - /@smithy/core@2.5.5: - resolution: {integrity: sha512-G8G/sDDhXA7o0bOvkc7bgai6POuSld/+XhNnWAbpQTpLv2OZPvyqQ58tLPPlz0bSNsXktldDDREIv1LczFeNEw==} + /@smithy/core@2.5.1: + resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/middleware-serde': 3.0.11 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@smithy/middleware-serde': 3.0.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-middleware': 3.0.11 - '@smithy/util-stream': 3.3.2 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 dev: true @@ -8818,14 +9026,14 @@ packages: tslib: 2.8.1 dev: true - /@smithy/credential-provider-imds@3.2.8: - resolution: {integrity: sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==} + /@smithy/credential-provider-imds@3.2.5: + resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/node-config-provider': 3.1.12 - '@smithy/property-provider': 3.1.11 - '@smithy/types': 3.7.2 - '@smithy/url-parser': 3.0.11 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 tslib: 2.8.1 dev: true @@ -8883,12 +9091,12 @@ packages: tslib: 2.8.1 dev: true - /@smithy/fetch-http-handler@4.1.2: - resolution: {integrity: sha512-R7rU7Ae3ItU4rC0c5mB2sP5mJNbCfoDc8I5XlYjIZnquyUwec7fEo78F6DA3SmgJgkU1qTMcZJuGblxZsl10ZA==} + /@smithy/fetch-http-handler@4.0.0: + resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==} dependencies: - '@smithy/protocol-http': 4.1.8 - '@smithy/querystring-builder': 3.0.11 - '@smithy/types': 3.7.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/querystring-builder': 3.0.8 + '@smithy/types': 3.6.0 '@smithy/util-base64': 3.0.0 tslib: 2.8.1 dev: true @@ -8902,21 +9110,21 @@ packages: tslib: 2.8.1 dev: true - /@smithy/hash-node@3.0.11: - resolution: {integrity: sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==} + /@smithy/hash-node@3.0.4: + resolution: {integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.4.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 dev: true - /@smithy/hash-node@3.0.4: - resolution: {integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==} + /@smithy/hash-node@3.0.8: + resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.4.0 + '@smithy/types': 3.6.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 @@ -8931,17 +9139,17 @@ packages: tslib: 2.8.1 dev: true - /@smithy/invalid-dependency@3.0.11: - resolution: {integrity: sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==} + /@smithy/invalid-dependency@3.0.4: + resolution: {integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.4.0 tslib: 2.8.1 dev: true - /@smithy/invalid-dependency@3.0.4: - resolution: {integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==} + /@smithy/invalid-dependency@3.0.8: + resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==} dependencies: - '@smithy/types': 3.4.0 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -8967,12 +9175,12 @@ packages: tslib: 2.8.1 dev: true - /@smithy/middleware-content-length@3.0.13: - resolution: {integrity: sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==} + /@smithy/middleware-content-length@3.0.10: + resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -8998,17 +9206,17 @@ packages: tslib: 2.8.1 dev: true - /@smithy/middleware-endpoint@3.2.5: - resolution: {integrity: sha512-VhJNs/s/lyx4weiZdXSloBgoLoS8osV0dKIain8nGmx7of3QFKu5BSdEuk1z/U8x9iwes1i+XCiNusEvuK1ijg==} + /@smithy/middleware-endpoint@3.2.1: + resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/core': 2.5.5 - '@smithy/middleware-serde': 3.0.11 - '@smithy/node-config-provider': 3.1.12 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 - '@smithy/url-parser': 3.0.11 - '@smithy/util-middleware': 3.0.11 + '@smithy/core': 2.5.1 + '@smithy/middleware-serde': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 + '@smithy/util-middleware': 3.0.8 tslib: 2.8.1 dev: true @@ -9027,29 +9235,21 @@ packages: uuid: 9.0.1 dev: true - /@smithy/middleware-retry@3.0.30: - resolution: {integrity: sha512-6323RL2BvAR3VQpTjHpa52kH/iSHyxd/G9ohb2MkBk2Ucu+oMtRXT8yi7KTSIS9nb58aupG6nO0OlXnQOAcvmQ==} + /@smithy/middleware-retry@3.0.25: + resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/node-config-provider': 3.1.12 - '@smithy/protocol-http': 4.1.8 - '@smithy/service-error-classification': 3.0.11 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 - '@smithy/util-middleware': 3.0.11 - '@smithy/util-retry': 3.0.11 + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/service-error-classification': 3.0.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 tslib: 2.8.1 uuid: 9.0.1 dev: true - /@smithy/middleware-serde@3.0.11: - resolution: {integrity: sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==} - engines: {node: '>=16.0.0'} - dependencies: - '@smithy/types': 3.7.2 - tslib: 2.8.1 - dev: true - /@smithy/middleware-serde@3.0.4: resolution: {integrity: sha512-1lPDB2O6IJ50Ucxgn7XrvZXbbuI48HmPCcMTuSoXT1lDzuTUfIuBjgAjpD8YLVMfnrjdepi/q45556LA51Pubw==} engines: {node: '>=16.0.0'} @@ -9058,11 +9258,11 @@ packages: tslib: 2.8.1 dev: true - /@smithy/middleware-stack@3.0.11: - resolution: {integrity: sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==} + /@smithy/middleware-serde@3.0.8: + resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9074,13 +9274,11 @@ packages: tslib: 2.8.1 dev: true - /@smithy/node-config-provider@3.1.12: - resolution: {integrity: sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==} + /@smithy/middleware-stack@3.0.8: + resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/property-provider': 3.1.11 - '@smithy/shared-ini-file-loader': 3.1.12 - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9094,6 +9292,16 @@ packages: tslib: 2.8.1 dev: true + /@smithy/node-config-provider@3.1.9: + resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==} + engines: {node: '>=16.0.0'} + dependencies: + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + dev: true + /@smithy/node-http-handler@3.2.0: resolution: {integrity: sha512-5TFqaABbiY7uJMKbqR4OARjwI/l4TRoysDJ75pLpVQyO3EcmeloKYwDGyCtgB9WJniFx3BMkmGCB9+j+QiB+Ww==} engines: {node: '>=16.0.0'} @@ -9105,14 +9313,14 @@ packages: tslib: 2.8.1 dev: true - /@smithy/node-http-handler@3.3.2: - resolution: {integrity: sha512-t4ng1DAd527vlxvOfKFYEe6/QFBcsj7WpNlWTyjorwXXcKw3XlltBGbyHfSJ24QT84nF+agDha9tNYpzmSRZPA==} + /@smithy/node-http-handler@3.2.5: + resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/abort-controller': 3.1.9 - '@smithy/protocol-http': 4.1.8 - '@smithy/querystring-builder': 3.0.11 - '@smithy/types': 3.7.2 + '@smithy/abort-controller': 3.1.6 + '@smithy/protocol-http': 4.1.5 + '@smithy/querystring-builder': 3.0.8 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9124,19 +9332,19 @@ packages: tslib: 2.8.1 dev: true - /@smithy/property-provider@3.1.11: - resolution: {integrity: sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==} + /@smithy/property-provider@3.1.4: + resolution: {integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.4.0 tslib: 2.8.1 dev: true - /@smithy/property-provider@3.1.4: - resolution: {integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==} + /@smithy/property-provider@3.1.8: + resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.4.0 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9148,20 +9356,11 @@ packages: tslib: 2.8.1 dev: true - /@smithy/protocol-http@4.1.8: - resolution: {integrity: sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==} - engines: {node: '>=16.0.0'} - dependencies: - '@smithy/types': 3.7.2 - tslib: 2.8.1 - dev: true - - /@smithy/querystring-builder@3.0.11: - resolution: {integrity: sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==} + /@smithy/protocol-http@4.1.5: + resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 - '@smithy/util-uri-escape': 3.0.0 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9174,11 +9373,12 @@ packages: tslib: 2.8.1 dev: true - /@smithy/querystring-parser@3.0.11: - resolution: {integrity: sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==} + /@smithy/querystring-builder@3.0.8: + resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 + '@smithy/util-uri-escape': 3.0.0 tslib: 2.8.1 dev: true @@ -9190,11 +9390,12 @@ packages: tslib: 2.8.1 dev: true - /@smithy/service-error-classification@3.0.11: - resolution: {integrity: sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==} + /@smithy/querystring-parser@3.0.8: + resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 + tslib: 2.8.1 dev: true /@smithy/service-error-classification@3.0.4: @@ -9204,12 +9405,11 @@ packages: '@smithy/types': 3.4.0 dev: true - /@smithy/shared-ini-file-loader@3.1.12: - resolution: {integrity: sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==} + /@smithy/service-error-classification@3.0.8: + resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/types': 3.7.2 - tslib: 2.8.1 + '@smithy/types': 3.6.0 dev: true /@smithy/shared-ini-file-loader@3.1.5: @@ -9220,6 +9420,14 @@ packages: tslib: 2.8.1 dev: true + /@smithy/shared-ini-file-loader@3.1.9: + resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==} + engines: {node: '>=16.0.0'} + dependencies: + '@smithy/types': 3.6.0 + tslib: 2.8.1 + dev: true + /@smithy/signature-v4@4.1.1: resolution: {integrity: sha512-SH9J9be81TMBNGCmjhrgMWu4YSpQ3uP1L06u/K9SDrE2YibUix1qxedPCxEQu02At0P0SrYDjvz+y91vLG0KRQ==} engines: {node: '>=16.0.0'} @@ -9234,15 +9442,15 @@ packages: tslib: 2.8.1 dev: true - /@smithy/signature-v4@4.2.4: - resolution: {integrity: sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==} + /@smithy/signature-v4@4.2.1: + resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==} engines: {node: '>=16.0.0'} dependencies: '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.11 + '@smithy/util-middleware': 3.0.8 '@smithy/util-uri-escape': 3.0.0 '@smithy/util-utf8': 3.0.0 tslib: 2.8.1 @@ -9260,16 +9468,16 @@ packages: tslib: 2.8.1 dev: true - /@smithy/smithy-client@3.5.0: - resolution: {integrity: sha512-Y8FeOa7gbDfCWf7njrkoRATPa5eNLUEjlJS5z5rXatYuGkCb80LbHcu8AQR8qgAZZaNHCLyo2N+pxPsV7l+ivg==} + /@smithy/smithy-client@3.4.2: + resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/core': 2.5.5 - '@smithy/middleware-endpoint': 3.2.5 - '@smithy/middleware-stack': 3.0.11 - '@smithy/protocol-http': 4.1.8 - '@smithy/types': 3.7.2 - '@smithy/util-stream': 3.3.2 + '@smithy/core': 2.5.1 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-stack': 3.0.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 tslib: 2.8.1 dev: true @@ -9287,21 +9495,13 @@ packages: tslib: 2.8.1 dev: true - /@smithy/types@3.7.2: - resolution: {integrity: sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==} + /@smithy/types@3.6.0: + resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==} engines: {node: '>=16.0.0'} dependencies: tslib: 2.8.1 dev: true - /@smithy/url-parser@3.0.11: - resolution: {integrity: sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==} - dependencies: - '@smithy/querystring-parser': 3.0.11 - '@smithy/types': 3.7.2 - tslib: 2.8.1 - dev: true - /@smithy/url-parser@3.0.4: resolution: {integrity: sha512-XdXfObA8WrloavJYtDuzoDhJAYc5rOt+FirFmKBRKaihu7QtU/METAxJgSo7uMK6hUkx0vFnqxV75urtRaLkLg==} dependencies: @@ -9310,6 +9510,14 @@ packages: tslib: 2.8.1 dev: true + /@smithy/url-parser@3.0.8: + resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==} + dependencies: + '@smithy/querystring-parser': 3.0.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + dev: true + /@smithy/util-base64@3.0.0: resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==} engines: {node: '>=16.0.0'} @@ -9366,13 +9574,13 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-defaults-mode-browser@3.0.30: - resolution: {integrity: sha512-nLuGmgfcr0gzm64pqF2UT4SGWVG8UGviAdayDlVzJPNa6Z4lqvpDzdRXmLxtOdEjVlTOEdpZ9dd3ZMMu488mzg==} + /@smithy/util-defaults-mode-browser@3.0.25: + resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==} engines: {node: '>= 10.0.0'} dependencies: - '@smithy/property-provider': 3.1.11 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 + '@smithy/property-provider': 3.1.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 bowser: 2.11.0 tslib: 2.8.1 dev: true @@ -9390,16 +9598,16 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-defaults-mode-node@3.0.30: - resolution: {integrity: sha512-OD63eWoH68vp75mYcfYyuVH+p7Li/mY4sYOROnauDrtObo1cS4uWfsy/zhOTW8F8ZPxQC1ZXZKVxoxvMGUv2Ow==} + /@smithy/util-defaults-mode-node@3.0.25: + resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==} engines: {node: '>= 10.0.0'} dependencies: - '@smithy/config-resolver': 3.0.13 - '@smithy/credential-provider-imds': 3.2.8 - '@smithy/node-config-provider': 3.1.12 - '@smithy/property-provider': 3.1.11 - '@smithy/smithy-client': 3.5.0 - '@smithy/types': 3.7.2 + '@smithy/config-resolver': 3.0.10 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9412,12 +9620,12 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-endpoints@2.1.7: - resolution: {integrity: sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==} + /@smithy/util-endpoints@2.1.4: + resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/node-config-provider': 3.1.12 - '@smithy/types': 3.7.2 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9428,14 +9636,6 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-middleware@3.0.11: - resolution: {integrity: sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==} - engines: {node: '>=16.0.0'} - dependencies: - '@smithy/types': 3.7.2 - tslib: 2.8.1 - dev: true - /@smithy/util-middleware@3.0.4: resolution: {integrity: sha512-uSXHTBhstb1c4nHdmQEdkNMv9LiRNaJ/lWV2U/GO+5F236YFpdPw+hyWI9Zc0Rp9XKzwD9kVZvhZmEgp0UCVnA==} engines: {node: '>=16.0.0'} @@ -9444,12 +9644,11 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-retry@3.0.11: - resolution: {integrity: sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==} + /@smithy/util-middleware@3.0.8: + resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/service-error-classification': 3.0.11 - '@smithy/types': 3.7.2 + '@smithy/types': 3.6.0 tslib: 2.8.1 dev: true @@ -9462,6 +9661,15 @@ packages: tslib: 2.8.1 dev: true + /@smithy/util-retry@3.0.8: + resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==} + engines: {node: '>=16.0.0'} + dependencies: + '@smithy/service-error-classification': 3.0.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + dev: true + /@smithy/util-stream@3.1.4: resolution: {integrity: sha512-txU3EIDLhrBZdGfon6E9V6sZz/irYnKFMblz4TLVjyq8hObNHNS2n9a2t7GIrl7d85zgEPhwLE0gANpZsvpsKg==} engines: {node: '>=16.0.0'} @@ -9476,13 +9684,13 @@ packages: tslib: 2.8.1 dev: true - /@smithy/util-stream@3.3.2: - resolution: {integrity: sha512-sInAqdiVeisUGYAv/FrXpmJ0b4WTFmciTRqzhb7wVuem9BHvhIG7tpiYHLDWrl2stOokNZpTTGqz3mzB2qFwXg==} + /@smithy/util-stream@3.2.1: + resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==} engines: {node: '>=16.0.0'} dependencies: - '@smithy/fetch-http-handler': 4.1.2 - '@smithy/node-http-handler': 3.3.2 - '@smithy/types': 3.7.2 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/node-http-handler': 3.2.5 + '@smithy/types': 3.6.0 '@smithy/util-base64': 3.0.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 @@ -9629,7 +9837,7 @@ packages: resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} engines: {node: '>=14'} dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 entities: 4.5.0 dev: true @@ -9669,7 +9877,7 @@ packages: '@babel/core': 7.26.0 '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/preset-react': 7.26.3(@babel/core@7.26.0) + '@babel/preset-react': 7.25.9(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) '@svgr/core': 8.1.0(typescript@5.6.3) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) @@ -9685,8 +9893,8 @@ packages: tslib: 2.8.1 dev: true - /@swc/helpers@0.5.15: - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + /@swc/helpers@0.5.13: + resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} dependencies: tslib: 2.8.1 dev: true @@ -9786,7 +9994,7 @@ packages: /@types/adm-zip@0.5.6: resolution: {integrity: sha512-lRlcSLg5Yoo7C2H2AUiAoYlvifWoCx/se7iUNiCBTfEVVYFVn+Tr9ZGed4K73tYgLe9O4PjdJvbxlkdAOx/qiw==} dependencies: - '@types/node': 22.10.1 + '@types/node': 22.8.4 dev: true /@types/aria-query@5.0.4: @@ -9796,8 +10004,8 @@ packages: /@types/babel__core@7.20.5: resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.5 @@ -9806,20 +10014,20 @@ packages: /@types/babel__generator@7.6.8: resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 dev: true /@types/babel__template@7.4.4: resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 dev: true /@types/babel__traverse@7.20.5: resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.0 dev: true /@types/body-parser@1.19.5: @@ -9844,7 +10052,7 @@ packages: /@types/connect-history-api-fallback@1.5.4: resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} dependencies: - '@types/express-serve-static-core': 5.0.2 + '@types/express-serve-static-core': 5.0.1 '@types/node': 22.10.2 dev: true @@ -9860,8 +10068,8 @@ packages: '@types/node': 22.10.2 dev: true - /@types/conventional-commits-parser@5.0.1: - resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} + /@types/conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} dependencies: '@types/node': 22.10.2 dev: true @@ -9908,8 +10116,8 @@ packages: '@types/send': 0.17.4 dev: true - /@types/express-serve-static-core@5.0.2: - resolution: {integrity: sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==} + /@types/express-serve-static-core@5.0.1: + resolution: {integrity: sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA==} dependencies: '@types/node': 22.10.2 '@types/qs': 6.9.17 @@ -9996,16 +10204,16 @@ packages: '@types/node': 22.10.2 dev: true - /@types/node@22.10.1: - resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==} + /@types/node@22.10.2: + resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} dependencies: undici-types: 6.20.0 dev: true - /@types/node@22.10.2: - resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} + /@types/node@22.8.4: + resolution: {integrity: sha512-SpNNxkftTJOPk0oN+y2bIqurEXHTA2AOZ3EJDDKeJ5VzkvvORSvmQXGQarcOzWV1ac7DCaPBEdMDxBsM+d8jWw==} dependencies: - undici-types: 6.20.0 + undici-types: 6.19.8 dev: true /@types/normalize-package-data@2.4.4: @@ -10173,25 +10381,7 @@ packages: '@typescript-eslint/types': 8.17.0 '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.17.0 - debug: 4.4.0 - eslint: 9.16.0 - typescript: 5.6.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser@8.18.1(eslint@9.16.0)(typescript@5.6.3): - resolution: {integrity: sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - dependencies: - '@typescript-eslint/scope-manager': 8.18.1 - '@typescript-eslint/types': 8.18.1 - '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.6.3) - '@typescript-eslint/visitor-keys': 8.18.1 - debug: 4.4.0 + debug: 4.3.7 eslint: 9.16.0 typescript: 5.6.3 transitivePeerDependencies: @@ -10206,22 +10396,6 @@ packages: '@typescript-eslint/visitor-keys': 8.17.0 dev: true - /@typescript-eslint/scope-manager@8.18.0: - resolution: {integrity: sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dependencies: - '@typescript-eslint/types': 8.18.0 - '@typescript-eslint/visitor-keys': 8.18.0 - dev: true - - /@typescript-eslint/scope-manager@8.18.1: - resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dependencies: - '@typescript-eslint/types': 8.18.1 - '@typescript-eslint/visitor-keys': 8.18.1 - dev: true - /@typescript-eslint/type-utils@8.17.0(eslint@9.16.0)(typescript@5.6.3): resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -10234,7 +10408,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.6.3) '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.6.3) - debug: 4.4.0 + debug: 4.3.7 eslint: 9.16.0 ts-api-utils: 1.4.0(typescript@5.6.3) typescript: 5.6.3 @@ -10242,38 +10416,11 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils@8.18.0(eslint@9.16.0)(typescript@5.6.3): - resolution: {integrity: sha512-er224jRepVAVLnMF2Q7MZJCq5CsdH2oqjP4dT7K6ij09Kyd+R21r7UVJrF0buMVdZS5QRhDzpvzAxHxabQadow==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - dependencies: - '@typescript-eslint/typescript-estree': 8.18.0(typescript@5.6.3) - '@typescript-eslint/utils': 8.18.0(eslint@9.16.0)(typescript@5.6.3) - debug: 4.4.0 - eslint: 9.16.0 - ts-api-utils: 1.4.3(typescript@5.6.3) - typescript: 5.6.3 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/types@8.17.0: resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dev: true - /@typescript-eslint/types@8.18.0: - resolution: {integrity: sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dev: true - - /@typescript-eslint/types@8.18.1: - resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dev: true - /@typescript-eslint/typescript-estree@8.17.0(typescript@5.6.3): resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -10285,50 +10432,12 @@ packages: dependencies: '@typescript-eslint/types': 8.17.0 '@typescript-eslint/visitor-keys': 8.17.0 - debug: 4.4.0 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.6.3) - typescript: 5.6.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/typescript-estree@8.18.0(typescript@5.6.3): - resolution: {integrity: sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.8.0' - dependencies: - '@typescript-eslint/types': 8.18.0 - '@typescript-eslint/visitor-keys': 8.18.0 - debug: 4.4.0 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.6.3) - typescript: 5.6.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/typescript-estree@8.18.1(typescript@5.6.3): - resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.8.0' - dependencies: - '@typescript-eslint/types': 8.18.1 - '@typescript-eslint/visitor-keys': 8.18.1 - debug: 4.4.0 + debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.6.3) + ts-api-utils: 1.4.0(typescript@5.6.3) typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -10354,23 +10463,6 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@8.18.0(eslint@9.16.0)(typescript@5.6.3): - resolution: {integrity: sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) - '@typescript-eslint/scope-manager': 8.18.0 - '@typescript-eslint/types': 8.18.0 - '@typescript-eslint/typescript-estree': 8.18.0(typescript@5.6.3) - eslint: 9.16.0 - typescript: 5.6.3 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/visitor-keys@8.17.0: resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -10379,22 +10471,6 @@ packages: eslint-visitor-keys: 4.2.0 dev: true - /@typescript-eslint/visitor-keys@8.18.0: - resolution: {integrity: sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dependencies: - '@typescript-eslint/types': 8.18.0 - eslint-visitor-keys: 4.2.0 - dev: true - - /@typescript-eslint/visitor-keys@8.18.1: - resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - dependencies: - '@typescript-eslint/types': 8.18.1 - eslint-visitor-keys: 4.2.0 - dev: true - /@vanilla-extract/babel-plugin-debug-ids@1.1.0: resolution: {integrity: sha512-Zy9bKjaL2P5zsrFYQJ8IjWGlFODmZrpvFmjFE0Zv8om55Pz1JtpJtL6DvlxlWUxbVaP1HKCqsmEfFOZN8fX/ZQ==} dependencies: @@ -10403,8 +10479,8 @@ packages: - supports-color dev: true - /@vanilla-extract/css@1.16.1: - resolution: {integrity: sha512-3jKxH5ty/ZjmGoLAx8liY7e87FRCIJfnuufX/K9fQklu0YHP3ClrNisU++LkZuD+GZleqMSAQMF0r8Otln+OPQ==} + /@vanilla-extract/css@1.16.0: + resolution: {integrity: sha512-05JTbvG1E0IrSZKZ5el2EM9CmAX0XSdsNY+d4aRZxDvYf3/hwxomvFFEz2b/awjgg9yTVHW83Wq19wE4OoTEMg==} dependencies: '@emotion/hash': 0.9.2 '@vanilla-extract/private': 1.0.6 @@ -10416,7 +10492,7 @@ packages: deepmerge: 4.3.1 lru-cache: 10.4.3 media-query-parser: 2.0.2 - modern-ahocorasick: 1.1.0 + modern-ahocorasick: 1.0.1 picocolors: 1.1.1 transitivePeerDependencies: - babel-plugin-macros @@ -10428,13 +10504,13 @@ packages: '@babel/core': 7.26.0 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) '@vanilla-extract/babel-plugin-debug-ids': 1.1.0 - '@vanilla-extract/css': 1.16.1 + '@vanilla-extract/css': 1.16.0 esbuild: 0.19.12 eval: 0.1.8 find-up: 5.0.0 javascript-stringify: 2.1.0 lodash: 4.17.21 - mlly: 1.7.3 + mlly: 1.7.2 outdent: 0.8.0 vite: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) vite-node: 1.6.0(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) @@ -10492,7 +10568,7 @@ packages: std-env: 3.8.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.6.9)(stylus@0.64.0) + vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.7.0)(stylus@0.64.0) transitivePeerDependencies: - supports-color dev: true @@ -10506,7 +10582,7 @@ packages: tinyrainbow: 1.2.0 dev: true - /@vitest/mocker@2.1.8(msw@2.6.9)(vite@5.4.11): + /@vitest/mocker@2.1.8(msw@2.7.0)(vite@5.4.11): resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} peerDependencies: msw: ^2.4.9 @@ -10520,7 +10596,7 @@ packages: '@vitest/spy': 2.1.8 estree-walker: 3.0.3 magic-string: 0.30.12 - msw: 2.6.9(@types/node@22.10.2)(typescript@5.6.3) + msw: 2.7.0(@types/node@22.10.2)(typescript@5.6.3) vite: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) dev: true @@ -10563,7 +10639,7 @@ packages: sirv: 3.0.0 tinyglobby: 0.2.10 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.6.9)(stylus@0.64.0) + vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.7.0)(stylus@0.64.0) dev: true /@vitest/utils@2.1.8: @@ -10790,14 +10866,18 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.4.0 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true - /agent-base@7.1.3: - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + /agent-base@7.1.1: + resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} + dependencies: + debug: 4.3.7 + transitivePeerDependencies: + - supports-color dev: true /aggregate-error@3.1.0: @@ -10960,17 +11040,18 @@ packages: resolution: {integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==} dev: true + /aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + dependencies: + deep-equal: 2.2.3 + dev: true + /aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: dequal: 2.0.3 dev: true - /aria-query@5.3.2: - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} - engines: {node: '>= 0.4'} - dev: true - /array-buffer-byte-length@1.0.1: resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} engines: {node: '>= 0.4'} @@ -11008,7 +11089,7 @@ packages: resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 @@ -11052,7 +11133,7 @@ packages: resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 @@ -11142,7 +11223,7 @@ packages: /axios@1.7.9: resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} dependencies: - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.3.7) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -11164,7 +11245,7 @@ packages: - supports-color dev: true - /babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.97.1): + /babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.96.1): resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -11173,8 +11254,8 @@ packages: dependencies: '@babel/core': 7.26.0 find-cache-dir: 4.0.0 - schema-utils: 4.3.0 - webpack: 5.97.1(esbuild@0.17.19) + schema-utils: 4.2.0 + webpack: 5.96.1(esbuild@0.17.19) dev: true /babel-plugin-const-enum@1.2.0(@babel/core@7.26.0): @@ -11185,7 +11266,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color dev: true @@ -11195,17 +11276,17 @@ packages: dependencies: '@babel/runtime': 7.26.0 cosmiconfig: 6.0.0 - resolve: 1.22.9 + resolve: 1.22.8 dev: true - /babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): - resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} + /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0): + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.26.2 '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -11217,19 +11298,19 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0) core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): - resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} + /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0): + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0) transitivePeerDependencies: - supports-color dev: true @@ -11315,8 +11396,8 @@ packages: - supports-color dev: true - /bonjour-service@1.3.0: - resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==} + /bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 @@ -11371,15 +11452,15 @@ packages: update-browserslist-db: 1.1.1(browserslist@4.23.3) dev: true - /browserslist@4.24.3: - resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} + /browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001688 - electron-to-chromium: 1.5.73 - node-releases: 2.0.19 - update-browserslist-db: 1.1.1(browserslist@4.24.3) + caniuse-lite: 1.0.30001679 + electron-to-chromium: 1.5.55 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) dev: true /btoa@1.2.1: @@ -11461,23 +11542,13 @@ packages: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} dependencies: - es-define-property: 1.0.1 + es-define-property: 1.0.0 es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 set-function-length: 1.2.2 dev: true - /call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} - engines: {node: '>= 0.4'} - dependencies: - call-bind-apply-helpers: 1.0.1 - es-define-property: 1.0.1 - get-intrinsic: 1.2.6 - set-function-length: 1.2.2 - dev: true - /call-bound@1.0.3: resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} engines: {node: '>= 0.4'} @@ -11504,8 +11575,8 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.24.3 - caniuse-lite: 1.0.30001688 + browserslist: 4.24.2 + caniuse-lite: 1.0.30001679 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true @@ -11518,14 +11589,14 @@ packages: resolution: {integrity: sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw==} dev: true - /caniuse-lite@1.0.30001688: - resolution: {integrity: sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==} + /caniuse-lite@1.0.30001679: + resolution: {integrity: sha512-j2YqID/YwpLnKzCmBOS4tlZdWprXm3ZmQLBH9ZBXFOhoxLA46fwyBvx6toCBWBmnuwUY/qB3kEU6gFx8qgCroA==} dev: true /capnp-ts@0.7.0: resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==} dependencies: - debug: 4.4.0 + debug: 4.3.7 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -12020,7 +12091,7 @@ packages: is-what: 3.14.1 dev: true - /copy-webpack-plugin@10.2.4(webpack@5.97.1): + /copy-webpack-plugin@10.2.4(webpack@5.96.1): resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} engines: {node: '>= 12.20.0'} peerDependencies: @@ -12030,15 +12101,15 @@ packages: glob-parent: 6.0.2 globby: 12.2.0 normalize-path: 3.0.0 - schema-utils: 4.3.0 + schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /core-js-compat@3.39.0: resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 dev: true /core-util-is@1.0.3: @@ -12060,7 +12131,7 @@ packages: dependencies: '@types/node': 22.10.2 cosmiconfig: 9.0.0(typescript@5.6.3) - jiti: 2.4.1 + jiti: 2.4.2 typescript: 5.6.3 dev: true @@ -12129,8 +12200,8 @@ packages: luxon: 3.5.0 dev: true - /cross-spawn@7.0.5: - resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==} + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: path-key: 3.1.1 @@ -12138,8 +12209,8 @@ packages: which: 2.0.2 dev: true - /cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + /cross-spawn@7.0.5: + resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==} engines: {node: '>= 8'} dependencies: path-key: 3.1.1 @@ -12163,7 +12234,7 @@ packages: postcss: 8.4.49 dev: true - /css-loader@6.11.0(webpack@5.97.1): + /css-loader@6.11.0(webpack@5.96.1): resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -12178,15 +12249,15 @@ packages: icss-utils: 5.1.0(postcss@8.4.49) postcss: 8.4.49 postcss-modules-extract-imports: 3.1.0(postcss@8.4.49) - postcss-modules-local-by-default: 4.2.0(postcss@8.4.49) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.49) postcss-modules-scope: 3.2.1(postcss@8.4.49) postcss-modules-values: 4.0.0(postcss@8.4.49) postcss-value-parser: 4.2.0 semver: 7.6.3 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true - /css-minimizer-webpack-plugin@5.0.1(esbuild@0.17.19)(webpack@5.97.1): + /css-minimizer-webpack-plugin@5.0.1(esbuild@0.17.19)(webpack@5.96.1): resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -12216,9 +12287,9 @@ packages: esbuild: 0.17.19 jest-worker: 29.7.0 postcss: 8.4.49 - schema-utils: 4.3.0 + schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /css-select@5.1.0: @@ -12268,7 +12339,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 css-declaration-sorter: 7.2.0(postcss@8.4.49) cssnano-utils: 4.0.2(postcss@8.4.49) postcss: 8.4.49 @@ -12450,18 +12521,6 @@ packages: optional: true dependencies: ms: 2.1.3 - dev: true - - /debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.3 /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} @@ -12491,6 +12550,30 @@ packages: resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} dev: true + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 + es-get-iterator: 1.1.3 + get-intrinsic: 1.2.4 + is-arguments: 1.1.1 + is-array-buffer: 3.0.4 + is-date-object: 1.0.5 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.3 + isarray: 2.0.5 + object-is: 1.1.6 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + side-channel: 1.0.6 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.2 + which-typed-array: 1.1.15 + dev: true + /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} @@ -12532,9 +12615,9 @@ packages: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} dependencies: - es-define-property: 1.0.1 + es-define-property: 1.0.0 es-errors: 1.3.0 - gopd: 1.2.0 + gopd: 1.0.1 dev: true /define-lazy-prop@2.0.0: @@ -12611,7 +12694,7 @@ packages: hasBin: true dependencies: address: 1.2.2 - debug: 4.4.0 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12709,8 +12792,8 @@ packages: is-obj: 2.0.0 dev: true - /dotenv-expand@11.0.7: - resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==} + /dotenv-expand@11.0.6: + resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==} engines: {node: '>=12'} dependencies: dotenv: 16.4.7 @@ -12738,7 +12821,7 @@ packages: - supports-color dev: true - /drizzle-orm@0.38.2(@cloudflare/workers-types@4.20241216.0)(@libsql/client@0.14.0)(@opentelemetry/api@1.9.0)(@types/react@18.3.12)(react@18.3.1): + /drizzle-orm@0.38.2(@cloudflare/workers-types@4.20241106.0)(@libsql/client@0.14.0)(@opentelemetry/api@1.9.0)(@types/react@18.3.12)(react@18.3.1): resolution: {integrity: sha512-eCE3yPRAskLo1WpM9OHpFaM70tBEDsWhwR/0M3CKyztAXKR9Qs3asZlcJOEliIcUSg8GuwrlY0dmYDgmm6y5GQ==} peerDependencies: '@aws-sdk/client-rds-data': '>=3' @@ -12830,15 +12913,15 @@ packages: sqlite3: optional: true dependencies: - '@cloudflare/workers-types': 4.20241216.0 + '@cloudflare/workers-types': 4.20241106.0 '@libsql/client': 0.14.0 '@opentelemetry/api': 1.9.0 '@types/react': 18.3.12 react: 18.3.1 dev: true - /dunder-proto@1.0.0: - resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==} + /dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} engines: {node: '>= 0.4'} dependencies: call-bind-apply-helpers: 1.0.1 @@ -12881,8 +12964,8 @@ packages: resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==} dev: true - /electron-to-chromium@1.5.73: - resolution: {integrity: sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==} + /electron-to-chromium@1.5.55: + resolution: {integrity: sha512-6maZ2ASDOTBtjt9FhqYPRnbvKU5tjG0IN9SztUOWYw2AzNDNpKJYLJmlK0/En4Hs/aiWnB+JZ+gW19PIGszgKg==} dev: true /emoji-regex@10.4.0: @@ -12996,7 +13079,7 @@ packages: data-view-buffer: 1.0.1 data-view-byte-length: 1.0.1 data-view-byte-offset: 1.0.0 - es-define-property: 1.0.1 + es-define-property: 1.0.0 es-errors: 1.3.0 es-object-atoms: 1.0.0 es-set-tostringtag: 2.0.3 @@ -13005,10 +13088,10 @@ packages: get-intrinsic: 1.2.4 get-symbol-description: 1.0.2 globalthis: 1.0.4 - gopd: 1.2.0 + gopd: 1.0.1 has-property-descriptors: 1.0.2 has-proto: 1.0.3 - has-symbols: 1.1.0 + has-symbols: 1.0.3 hasown: 2.0.2 internal-slot: 1.0.7 is-array-buffer: 3.0.4 @@ -13034,7 +13117,14 @@ packages: typed-array-byte-offset: 1.0.2 typed-array-length: 1.0.6 unbox-primitive: 1.0.2 - which-typed-array: 1.1.16 + which-typed-array: 1.1.15 + dev: true + + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 dev: true /es-define-property@1.0.1: @@ -13047,17 +13137,31 @@ packages: engines: {node: '>= 0.4'} dev: true + /es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + is-arguments: 1.1.1 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.0.7 + isarray: 2.0.5 + stop-iteration-iterator: 1.1.0 + dev: true + /es-iterator-helpers@1.1.0: resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-set-tostringtag: 2.0.3 function-bind: 1.1.2 - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 globalthis: 1.0.4 has-property-descriptors: 1.0.2 has-proto: 1.0.3 @@ -13082,7 +13186,7 @@ packages: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 dev: true @@ -13102,16 +13206,16 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild-plugins-node-modules-polyfill@1.6.8(esbuild@0.17.6): - resolution: {integrity: sha512-bRB4qbgUDWrdY1eMk123KiaCSW9VzQ+QLZrmU7D//cCFkmksPd9mUMpmWoFK/rxjIeTfTSOpKCoGoimlvI+AWw==} + /esbuild-plugins-node-modules-polyfill@1.6.7(esbuild@0.17.6): + resolution: {integrity: sha512-1lzsVFT/6OO1ZATHKZqSP+qYzyFo2d+QF9QzMKsyJR7GMRScYizYb1uEEE4NxTsBSxWviY3xnmN9dEOTaKFbJA==} engines: {node: '>=14.0.0'} peerDependencies: - esbuild: '>=0.14.0 <=0.24.x' + esbuild: '>=0.14.0 <=0.23.x' dependencies: - '@jspm/core': 2.0.1 + '@jspm/core': 2.1.0 esbuild: 0.17.6 - local-pkg: 0.5.1 - resolve.exports: 2.0.3 + local-pkg: 0.5.0 + resolve.exports: 2.0.2 dev: true /esbuild-register@3.6.0(esbuild@0.19.12): @@ -13119,7 +13223,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.4.0 + debug: 4.3.7 esbuild: 0.19.12 transitivePeerDependencies: - supports-color @@ -13306,12 +13410,12 @@ packages: dependencies: debug: 3.2.7 is-core-module: 2.15.1 - resolve: 1.22.9 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils@2.12.0(@typescript-eslint/parser@8.18.1)(eslint-import-resolver-node@0.3.9)(eslint@9.16.0): + /eslint-module-utils@2.12.0(@typescript-eslint/parser@8.17.0)(eslint-import-resolver-node@0.3.9)(eslint@9.16.0): resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} engines: {node: '>=4'} peerDependencies: @@ -13332,7 +13436,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 8.18.1(eslint@9.16.0)(typescript@5.6.3) + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.6.3) debug: 3.2.7 eslint: 9.16.0 eslint-import-resolver-node: 0.3.9 @@ -13340,7 +13444,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.18.1)(eslint@9.16.0): + /eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0): resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} engines: {node: '>=4'} peerDependencies: @@ -13351,7 +13455,7 @@ packages: optional: true dependencies: '@rtsao/scc': 1.1.0 - '@typescript-eslint/parser': 8.18.1(eslint@9.16.0)(typescript@5.6.3) + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.6.3) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -13360,7 +13464,7 @@ packages: doctrine: 2.1.0 eslint: 9.16.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.18.1)(eslint-import-resolver-node@0.3.9)(eslint@9.16.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.17.0)(eslint-import-resolver-node@0.3.9)(eslint@9.16.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -13377,13 +13481,13 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y@6.10.2(eslint@9.16.0): - resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + /eslint-plugin-jsx-a11y@6.10.0(eslint@9.16.0): + resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 dependencies: - aria-query: 5.3.2 + aria-query: 5.1.3 array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 ast-types-flow: 0.0.8 @@ -13391,6 +13495,7 @@ packages: axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 + es-iterator-helpers: 1.1.0 eslint: 9.16.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -13663,7 +13768,7 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.3 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -13678,7 +13783,7 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.5 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -13694,14 +13799,14 @@ packages: engines: {node: '>=18'} dependencies: '@sindresorhus/merge-streams': 4.0.0 - cross-spawn: 7.0.6 + cross-spawn: 7.0.5 figures: 6.1.0 get-stream: 9.0.1 human-signals: 7.0.0 is-plain-obj: 4.1.0 is-stream: 4.0.1 npm-run-path: 5.3.0 - pretty-ms: 9.2.0 + pretty-ms: 9.1.0 signal-exit: 4.1.0 strip-final-newline: 4.0.0 yoctocolors: 2.0.0 @@ -13724,8 +13829,8 @@ packages: engines: {node: '>=12.0.0'} dev: true - /express@4.21.2: - resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} + /express@4.21.1: + resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==} engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 @@ -13747,7 +13852,7 @@ packages: methods: 1.1.2 on-finished: 2.4.1 parseurl: 1.3.3 - path-to-regexp: 0.1.12 + path-to-regexp: 0.1.10 proxy-addr: 2.0.7 qs: 6.13.0 range-parser: 1.2.1 @@ -13771,6 +13876,17 @@ packages: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true + /fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + dev: true + /fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} @@ -13878,7 +13994,7 @@ packages: flat-cache: 4.0.1 dev: true - /file-loader@6.2.0(webpack@5.97.1): + /file-loader@6.2.0(webpack@5.96.1): resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -13886,7 +14002,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /filelist@1.0.4: @@ -13988,7 +14104,7 @@ packages: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} dependencies: - flatted: 3.3.2 + flatted: 3.3.1 keyv: 4.5.4 dev: true @@ -14001,11 +14117,7 @@ packages: resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} dev: true - /flatted@3.3.2: - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} - dev: true - - /follow-redirects@1.15.9(debug@4.4.0): + /follow-redirects@1.15.9(debug@4.3.7): resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} engines: {node: '>=4.0'} peerDependencies: @@ -14014,7 +14126,7 @@ packages: debug: optional: true dependencies: - debug: 4.4.0 + debug: 4.3.7 /for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} @@ -14026,11 +14138,11 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} dependencies: - cross-spawn: 7.0.6 + cross-spawn: 7.0.5 signal-exit: 4.1.0 dev: true - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.6.3)(webpack@5.97.1): + /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.6.3)(webpack@5.96.1): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -14054,7 +14166,7 @@ packages: semver: 7.6.3 tapable: 2.2.1 typescript: 5.6.3 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /form-data@4.0.0: @@ -14238,21 +14350,7 @@ packages: es-errors: 1.3.0 function-bind: 1.1.2 has-proto: 1.0.3 - has-symbols: 1.1.0 - hasown: 2.0.2 - dev: true - - /get-intrinsic@1.2.5: - resolution: {integrity: sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind-apply-helpers: 1.0.1 - dunder-proto: 1.0.0 - es-define-property: 1.0.1 - es-errors: 1.3.0 - function-bind: 1.1.2 - gopd: 1.2.0 - has-symbols: 1.1.0 + has-symbols: 1.0.3 hasown: 2.0.2 dev: true @@ -14261,7 +14359,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind-apply-helpers: 1.0.1 - dunder-proto: 1.0.0 + dunder-proto: 1.0.1 es-define-property: 1.0.1 es-errors: 1.3.0 es-object-atoms: 1.0.0 @@ -14427,8 +14525,8 @@ packages: engines: {node: '>=18'} dev: true - /globals@15.13.0: - resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==} + /globals@15.12.0: + resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==} engines: {node: '>=18'} dev: true @@ -14437,7 +14535,7 @@ packages: engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 - gopd: 1.2.0 + gopd: 1.0.1 dev: true /globby@12.2.0: @@ -14467,7 +14565,7 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 dev: true /gopd@1.2.0: @@ -14538,7 +14636,7 @@ packages: /has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: - es-define-property: 1.0.1 + es-define-property: 1.0.0 dev: true /has-proto@1.0.3: @@ -14560,7 +14658,7 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.1.0 + has-symbols: 1.0.3 dev: true /hasown@2.0.2: @@ -14627,8 +14725,8 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /hosted-git-info@6.1.3: - resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==} + /hosted-git-info@6.1.1: + resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: lru-cache: 7.18.3 @@ -14671,6 +14769,10 @@ packages: whatwg-encoding: 3.1.1 dev: true + /html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + dev: true + /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true @@ -14727,8 +14829,8 @@ packages: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} dependencies: - agent-base: 7.1.3 - debug: 4.4.0 + agent-base: 7.1.1 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -14744,7 +14846,7 @@ packages: dependencies: '@types/express': 4.17.21 '@types/http-proxy': 1.17.15 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.3.7) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -14757,8 +14859,8 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/http-proxy': 1.17.15 - debug: 4.4.0 - http-proxy: 1.18.1(debug@4.4.0) + debug: 4.3.7 + http-proxy: 1.18.1(debug@4.3.7) is-glob: 4.0.3 is-plain-object: 5.0.0 micromatch: 4.0.8 @@ -14766,12 +14868,12 @@ packages: - supports-color dev: true - /http-proxy@1.18.1(debug@4.4.0): + /http-proxy@1.18.1(debug@4.3.7): resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.3.7) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -14787,7 +14889,7 @@ packages: corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1(debug@4.3.7) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 @@ -14805,7 +14907,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.4.0 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -14814,17 +14916,7 @@ packages: resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} engines: {node: '>= 14'} dependencies: - agent-base: 7.1.3 - debug: 4.4.0 - transitivePeerDependencies: - - supports-color - dev: true - - /https-proxy-agent@7.0.6: - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} - engines: {node: '>= 14'} - dependencies: - agent-base: 7.1.3 + agent-base: 7.1.1 debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -14896,8 +14988,8 @@ packages: dev: true optional: true - /immutable@5.0.3: - resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} + /immutable@4.3.7: + resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} dev: true /import-fresh@3.3.0: @@ -14918,8 +15010,8 @@ packages: - supports-color dev: true - /import-in-the-middle@1.12.0: - resolution: {integrity: sha512-yAgSE7GmtRcu4ZUSFX/4v69UGXwugFFSdIQJ14LHPOPPQrWv8Y7O9PHsw8Ovk7bKCLe4sjXMbZFqGFcLHpZ89w==} + /import-in-the-middle@1.11.2: + resolution: {integrity: sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==} dependencies: acorn: 8.14.0 acorn-import-attributes: 1.9.5(acorn@8.14.0) @@ -14975,6 +15067,15 @@ packages: /internal-slot@1.0.7: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 + dev: true + + /internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 hasown: 2.0.2 @@ -15023,7 +15124,7 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true @@ -15084,13 +15185,6 @@ packages: hasown: 2.0.2 dev: true - /is-core-module@2.16.0: - resolution: {integrity: sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==} - engines: {node: '>= 0.4'} - dependencies: - hasown: 2.0.2 - dev: true - /is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} engines: {node: '>= 0.4'} @@ -15133,7 +15227,7 @@ packages: /is-finalizationregistry@1.0.2: resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 dev: true /is-fullwidth-code-point@3.0.0: @@ -15244,8 +15338,8 @@ packages: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} dev: true - /is-reference@3.0.3: - resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + /is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} dependencies: '@types/estree': 1.0.6 dev: true @@ -15254,7 +15348,7 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true @@ -15296,7 +15390,7 @@ packages: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.1.0 + has-symbols: 1.0.3 dev: true /is-text-path@2.0.0: @@ -15310,7 +15404,7 @@ packages: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} dependencies: - which-typed-array: 1.1.16 + which-typed-array: 1.1.15 dev: true /is-unicode-supported@0.1.0: @@ -15338,8 +15432,8 @@ packages: resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 - get-intrinsic: 1.2.5 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 dev: true /is-what@3.14.1: @@ -15373,15 +15467,9 @@ packages: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true - /isbot@5.1.18: - resolution: {integrity: sha512-df9RdChv1DheItzN5pNKtblc9/otzJYmxjf9GhCZG/f0TCcGCbQFmtM3e+SD0e8EI3/O2tIXPYVaG4FUaIIa6Q==} - engines: {node: '>=18'} - dev: true - /isbot@5.1.7: resolution: {integrity: sha512-/U9wtTOhYcP1cnDUFKNalTSQHVD3y4ginXstBBQDRwDKTZ2liBb0IEnRu8X+RpX9VnNN/I3MNNgJvKnKQ5+CnA==} engines: {node: '>=18'} - dev: false /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -15449,7 +15537,7 @@ packages: engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 @@ -15538,8 +15626,8 @@ packages: hasBin: true dev: true - /jiti@2.4.1: - resolution: {integrity: sha512-yPBThwecp1wS9DmoA4x4KR2h3QoslacnDR8ypuFM962kI4/456Iy1oHx2RAgh4jfZNdn0bctsdadceiBUgpU1g==} + /jiti@2.4.2: + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} hasBin: true dev: true @@ -15743,7 +15831,7 @@ packages: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.4.0 + debug: 4.3.7 delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -15780,10 +15868,10 @@ packages: resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==} dependencies: picocolors: 1.1.1 - shell-quote: 1.8.2 + shell-quote: 1.8.1 dev: true - /less-loader@11.1.0(less@4.1.3)(webpack@5.97.1): + /less-loader@11.1.0(less@4.1.3)(webpack@5.96.1): resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -15792,7 +15880,7 @@ packages: dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /less@4.1.3: @@ -15838,7 +15926,7 @@ packages: '@libsql/win32-x64-msvc': 0.4.5 dev: true - /license-webpack-plugin@4.0.2(webpack@5.97.1): + /license-webpack-plugin@4.0.2(webpack@5.96.1): resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} peerDependencies: webpack: '*' @@ -15848,7 +15936,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) webpack-sources: 3.2.3 dev: true @@ -15931,11 +16019,11 @@ packages: engines: {node: '>= 12.13.0'} dev: true - /local-pkg@0.5.1: - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} + /local-pkg@0.5.0: + resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} engines: {node: '>=14'} dependencies: - mlly: 1.7.3 + mlly: 1.7.2 pkg-types: 1.2.1 dev: true @@ -16057,8 +16145,8 @@ packages: engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.4.0 - flatted: 3.3.2 + debug: 4.3.7 + flatted: 3.3.1 rfdc: 1.4.1 streamroller: 3.1.5 transitivePeerDependencies: @@ -16137,8 +16225,8 @@ packages: /magicast@0.3.5: resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 source-map-js: 1.2.1 dev: true @@ -16349,11 +16437,11 @@ packages: fs-monkey: 1.0.6 dev: true - /memfs@4.15.0: - resolution: {integrity: sha512-q9MmZXd2rRWHS6GU3WEm3HyiXZyyoA1DqdOhEq0lxPBmKb5S7IAOwX0RgUCwJfqjelDCySa5h8ujOy24LqsWcw==} + /memfs@4.14.0: + resolution: {integrity: sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA==} engines: {node: '>= 4.0.0'} dependencies: - '@jsonjoy.com/json-pack': 1.1.1(tslib@2.8.1) + '@jsonjoy.com/json-pack': 1.1.0(tslib@2.8.1) '@jsonjoy.com/util': 1.5.0(tslib@2.8.1) tree-dump: 1.0.2(tslib@2.8.1) tslib: 2.8.1 @@ -16638,7 +16726,7 @@ packages: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: '@types/debug': 4.1.12 - debug: 4.4.0 + debug: 4.3.7 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -16740,14 +16828,14 @@ packages: engines: {node: '>=4'} dev: true - /mini-css-extract-plugin@2.4.7(webpack@5.97.1): + /mini-css-extract-plugin@2.4.7(webpack@5.96.1): resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - schema-utils: 4.3.0 - webpack: 5.97.1(esbuild@0.17.19) + schema-utils: 4.2.0 + webpack: 5.96.1(esbuild@0.17.19) dev: true /miniflare@3.20241205.0: @@ -16897,8 +16985,8 @@ packages: hasBin: true dev: true - /mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} + /mlly@1.7.2: + resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==} dependencies: acorn: 8.14.0 pathe: 1.1.2 @@ -16906,8 +16994,8 @@ packages: ufo: 1.5.4 dev: true - /modern-ahocorasick@1.1.0: - resolution: {integrity: sha512-sEKPVl2rM+MNVkGQt3ChdmD8YsigmXdn5NifZn6jiwn9LRJpWm8F3guhaqrJT/JOat6pwpbXEk6kv+b9DMIjsQ==} + /modern-ahocorasick@1.0.1: + resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==} dev: true /module-details-from-path@1.0.3: @@ -16953,8 +17041,8 @@ packages: /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw@2.6.9(@types/node@22.10.2)(typescript@5.6.3): - resolution: {integrity: sha512-b2z9MvsEOYG5G7jtJasXO3ucHDcqCjf046e9wELIixBbYCRZCEmB4gqcb+C7ASyXBafNBR0D2u31YtG01OdX3A==} + /msw@2.7.0(@types/node@22.10.2)(typescript@5.6.3): + resolution: {integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==} engines: {node: '>=18'} hasBin: true requiresBuild: true @@ -16973,12 +17061,12 @@ packages: '@open-draft/until': 2.1.0 '@types/cookie': 0.6.0 '@types/statuses': 2.0.5 - chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 is-node-process: 1.2.0 outvariant: 1.4.3 path-to-regexp: 6.3.0 + picocolors: 1.1.1 strict-event-emitter: 0.5.1 type-fest: 4.26.1 typescript: 5.6.3 @@ -17013,8 +17101,8 @@ packages: thenify-all: 1.6.0 dev: true - /nanoid@3.3.8: - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true @@ -17119,10 +17207,6 @@ packages: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} dev: true - /node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} - dev: true - /node-schedule@2.1.1: resolution: {integrity: sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==} engines: {node: '>=6'} @@ -17136,8 +17220,8 @@ packages: resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - hosted-git-info: 6.1.3 - is-core-module: 2.16.0 + hosted-git-info: 6.1.1 + is-core-module: 2.15.1 semver: 7.6.3 validate-npm-package-license: 3.0.4 dev: true @@ -17182,7 +17266,7 @@ packages: resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - hosted-git-info: 6.1.3 + hosted-git-info: 6.1.1 proc-log: 3.0.0 semver: 7.6.3 validate-npm-package-name: 5.0.1 @@ -17307,6 +17391,66 @@ packages: resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} dev: true + /nx@20.0.12: + resolution: {integrity: sha512-pQ7Rwb2Qlhr+fEamd0qc4VsL/aKjVJ0MXPsosuhdZobLJQOKHefe+nXSSZ1Jy19VM3RRpxUKFneD/V2jvs3qDA==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.8.0 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + dependencies: + '@napi-rs/wasm-runtime': 0.2.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.2 + '@zkochan/js-yaml': 0.0.7 + axios: 1.7.9 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 8.0.1 + dotenv: 16.4.7 + dotenv-expand: 11.0.6 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + front-matter: 4.0.2 + ignore: 5.3.2 + jest-diff: 29.7.0 + jsonc-parser: 3.2.0 + lines-and-columns: 2.0.3 + minimatch: 9.0.3 + node-machine-id: 1.1.12 + npm-run-path: 4.0.1 + open: 8.4.2 + ora: 5.3.0 + semver: 7.6.3 + string-width: 4.2.3 + tar-stream: 2.2.0 + tmp: 0.2.3 + tsconfig-paths: 4.2.0 + tslib: 2.8.1 + yargs: 17.7.2 + yargs-parser: 21.1.1 + optionalDependencies: + '@nx/nx-darwin-arm64': 20.0.12 + '@nx/nx-darwin-x64': 20.0.12 + '@nx/nx-freebsd-x64': 20.0.12 + '@nx/nx-linux-arm-gnueabihf': 20.0.12 + '@nx/nx-linux-arm64-gnu': 20.0.12 + '@nx/nx-linux-arm64-musl': 20.0.12 + '@nx/nx-linux-x64-gnu': 20.0.12 + '@nx/nx-linux-x64-musl': 20.0.12 + '@nx/nx-win32-arm64-msvc': 20.0.12 + '@nx/nx-win32-x64-msvc': 20.0.12 + transitivePeerDependencies: + - debug + dev: true + /nx@20.2.2: resolution: {integrity: sha512-wHgC/NQ82Q3LOeUZXPI2j/JhpZwb7JjRc0uDn3kQU+lN/ulySCJHTHCf4CIglW4NjZeN1WZZ7YMeddtFWETGGA==} hasBin: true @@ -17330,7 +17474,7 @@ packages: cli-spinners: 2.6.1 cliui: 8.0.1 dotenv: 16.4.7 - dotenv-expand: 11.0.7 + dotenv-expand: 11.0.6 enquirer: 2.3.6 figures: 3.2.0 flat: 5.0.2 @@ -17350,7 +17494,7 @@ packages: tmp: 0.2.3 tsconfig-paths: 4.2.0 tslib: 2.8.1 - yaml: 2.6.1 + yaml: 2.6.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: @@ -17383,6 +17527,14 @@ packages: engines: {node: '>= 0.4'} dev: true + /object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + dev: true + /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} @@ -17392,9 +17544,9 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 - has-symbols: 1.1.0 + has-symbols: 1.0.3 object-keys: 1.1.1 dev: true @@ -17402,7 +17554,7 @@ packages: resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 dev: true @@ -17524,7 +17676,7 @@ packages: dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.28.0 + '@opentelemetry/semantic-conventions': 1.27.0 transitivePeerDependencies: - supports-color dev: true @@ -17548,7 +17700,7 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.6.1 + cli-spinners: 2.9.2 is-interactive: 1.0.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 @@ -17587,7 +17739,7 @@ packages: resolution: {integrity: sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==} engines: {node: '>=18'} dependencies: - p-map: 7.0.3 + p-map: 7.0.2 dev: true /p-is-promise@3.0.0: @@ -17644,8 +17796,8 @@ packages: aggregate-error: 3.1.0 dev: true - /p-map@7.0.3: - resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} + /p-map@7.0.2: + resolution: {integrity: sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==} engines: {node: '>=18'} dev: true @@ -17659,8 +17811,8 @@ packages: engines: {node: '>=12'} dev: true - /p-retry@6.2.1: - resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==} + /p-retry@6.2.0: + resolution: {integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==} engines: {node: '>=16.17'} dependencies: '@types/retry': 0.12.2 @@ -17814,8 +17966,8 @@ packages: minipass: 7.1.2 dev: true - /path-to-regexp@0.1.12: - resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} + /path-to-regexp@0.1.10: + resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==} dev: true /path-to-regexp@6.3.0: @@ -17854,7 +18006,7 @@ packages: dependencies: '@types/estree': 1.0.6 estree-walker: 3.0.3 - is-reference: 3.0.3 + is-reference: 3.0.2 dev: true /pg-int8@1.0.1: @@ -17946,7 +18098,7 @@ packages: resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} dependencies: confbox: 0.1.8 - mlly: 1.7.3 + mlly: 1.7.2 pathe: 1.1.2 dev: true @@ -17999,7 +18151,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.49 @@ -18012,7 +18164,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 postcss: 8.4.49 postcss-value-parser: 4.2.0 dev: true @@ -18071,7 +18223,7 @@ packages: postcss: 8.4.49 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.9 + resolve: 1.22.8 dev: true /postcss-import@15.1.0(postcss@8.4.49): @@ -18108,12 +18260,12 @@ packages: ts-node: optional: true dependencies: - lilconfig: 3.1.3 + lilconfig: 3.1.2 postcss: 8.4.49 - yaml: 2.6.1 + yaml: 2.6.0 dev: true - /postcss-loader@6.2.1(postcss@8.4.49)(webpack@5.97.1): + /postcss-loader@6.2.1(postcss@8.4.49)(webpack@5.96.1): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -18124,7 +18276,7 @@ packages: klona: 2.0.6 postcss: 8.4.49 semver: 7.6.3 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /postcss-merge-longhand@6.0.5(postcss@8.4.49): @@ -18144,7 +18296,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 caniuse-api: 3.0.0 cssnano-utils: 4.0.2(postcss@8.4.49) postcss: 8.4.49 @@ -18179,7 +18331,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 cssnano-utils: 4.0.2(postcss@8.4.49) postcss: 8.4.49 postcss-value-parser: 4.2.0 @@ -18204,27 +18356,15 @@ packages: postcss: 8.4.49 dev: true - /postcss-modules-local-by-default@4.1.0(postcss@8.4.49): - resolution: {integrity: sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==} + /postcss-modules-local-by-default@4.0.5(postcss@8.4.49): + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: icss-utils: 5.1.0(postcss@8.4.49) postcss: 8.4.49 - postcss-selector-parser: 7.0.0 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-modules-local-by-default@4.2.0(postcss@8.4.49): - resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-selector-parser: 7.0.0 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 dev: true @@ -18258,7 +18398,7 @@ packages: lodash.camelcase: 4.3.0 postcss: 8.4.49 postcss-modules-extract-imports: 3.1.0(postcss@8.4.49) - postcss-modules-local-by-default: 4.1.0(postcss@8.4.49) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.49) postcss-modules-scope: 3.2.1(postcss@8.4.49) postcss-modules-values: 4.0.0(postcss@8.4.49) string-hash: 1.1.3 @@ -18339,7 +18479,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 postcss: 8.4.49 postcss-value-parser: 4.2.0 dev: true @@ -18381,7 +18521,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 caniuse-api: 3.0.0 postcss: 8.4.49 dev: true @@ -18441,7 +18581,7 @@ packages: resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.8 + nanoid: 3.3.7 picocolors: 1.1.1 source-map-js: 1.2.1 dev: true @@ -18504,8 +18644,8 @@ packages: parse-ms: 2.1.0 dev: true - /pretty-ms@9.2.0: - resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} + /pretty-ms@9.1.0: + resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==} engines: {node: '>=18'} dependencies: parse-ms: 4.0.0 @@ -18618,14 +18758,7 @@ packages: resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} dependencies: - side-channel: 1.1.0 - dev: true - - /qs@6.13.1: - resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==} - engines: {node: '>=0.6'} - dependencies: - side-channel: 1.1.0 + side-channel: 1.0.6 dev: true /querystringify@2.2.0: @@ -18636,8 +18769,8 @@ packages: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true - /rambda@9.4.1: - resolution: {integrity: sha512-awZe9AzmPI8XqizJz+NlaRbAdjhWKvuIaPikqRH6r41/ui9UTUQY5jTVdgQwnVrv1HnSMB6IBAAnNYs8HoVvZg==} + /rambda@9.4.0: + resolution: {integrity: sha512-B7y7goUd+g0hNl5ODGUejNNERQL5gD8uANJ5Y5aHly8v0jKesFlwIe7prPfuJxttDpe3otQzHJ4NXMpTmL9ELA==} dev: true /randombytes@2.1.0: @@ -18931,11 +19064,11 @@ packages: resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 globalthis: 1.0.4 which-builtin-type: 1.1.3 dev: true @@ -18965,20 +19098,20 @@ packages: resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 dev: true - /regexpu-core@6.2.0: - resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + /regexpu-core@6.1.1: + resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 regenerate-unicode-properties: 10.2.0 regjsgen: 0.8.0 - regjsparser: 0.12.0 + regjsparser: 0.11.2 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.2.0 dev: true @@ -18994,8 +19127,8 @@ packages: resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} dev: true - /regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + /regjsparser@0.11.2: + resolution: {integrity: sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==} hasBin: true dependencies: jsesc: 3.0.2 @@ -19062,9 +19195,9 @@ packages: resolution: {integrity: sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==} engines: {node: '>=8.6.0'} dependencies: - debug: 4.4.0 + debug: 4.3.7 module-details-from-path: 1.0.3 - resolve: 1.22.9 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true @@ -19099,8 +19232,8 @@ packages: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: true - /resolve.exports@2.0.3: - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + /resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} dev: true @@ -19108,16 +19241,7 @@ packages: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: - is-core-module: 2.16.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - - /resolve@1.22.9: - resolution: {integrity: sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==} - hasBin: true - dependencies: - is-core-module: 2.16.0 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -19126,7 +19250,7 @@ packages: resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true dependencies: - is-core-module: 2.16.0 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -19255,8 +19379,8 @@ packages: resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} engines: {node: '>=0.4'} dependencies: - call-bind: 1.0.8 - get-intrinsic: 1.2.5 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 dev: true @@ -19273,7 +19397,7 @@ packages: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 dev: true @@ -19282,7 +19406,7 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sass-loader@12.6.0(sass@1.83.0)(webpack@5.97.1): + /sass-loader@12.6.0(sass@1.80.6)(webpack@5.96.1): resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -19303,17 +19427,17 @@ packages: dependencies: klona: 2.0.6 neo-async: 2.6.2 - sass: 1.83.0 - webpack: 5.97.1(esbuild@0.17.19) + sass: 1.80.6 + webpack: 5.96.1(esbuild@0.17.19) dev: true - /sass@1.83.0: - resolution: {integrity: sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==} + /sass@1.80.6: + resolution: {integrity: sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==} engines: {node: '>=14.0.0'} hasBin: true dependencies: chokidar: 4.0.1 - immutable: 5.0.3 + immutable: 4.3.7 source-map-js: 1.2.1 optionalDependencies: '@parcel/watcher': 2.5.0 @@ -19346,9 +19470,9 @@ packages: ajv-keywords: 3.5.2(ajv@6.12.6) dev: true - /schema-utils@4.3.0: - resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} - engines: {node: '>= 10.13.0'} + /schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 8.17.1 @@ -19506,7 +19630,7 @@ packages: es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 - gopd: 1.2.0 + gopd: 1.0.1 has-property-descriptors: 1.0.2 dev: true @@ -19540,9 +19664,8 @@ packages: engines: {node: '>=8'} dev: true - /shell-quote@1.8.2: - resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==} - engines: {node: '>= 0.4'} + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} dev: true /sherif-darwin-arm64@1.0.2: @@ -19638,6 +19761,16 @@ packages: side-channel-map: 1.0.1 dev: true + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.3 + dev: true + /side-channel@1.1.0: resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} @@ -19737,7 +19870,7 @@ packages: engines: {node: '>=0.10.0'} dev: true - /source-map-loader@5.0.0(webpack@5.97.1): + /source-map-loader@5.0.0(webpack@5.96.1): resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==} engines: {node: '>= 18.12.0'} peerDependencies: @@ -19745,7 +19878,7 @@ packages: dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.1 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /source-map-support@0.5.19: @@ -19809,7 +19942,7 @@ packages: /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: - debug: 4.4.0 + debug: 4.3.7 detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -19823,7 +19956,7 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} dependencies: - debug: 4.4.0 + debug: 4.3.7 handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -19879,6 +20012,14 @@ packages: resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} dev: true + /stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + dev: true + /stoppable@1.1.0: resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} engines: {node: '>=4', npm: '>=6'} @@ -19911,7 +20052,7 @@ packages: engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.4.0 + debug: 4.3.7 fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -19961,7 +20102,7 @@ packages: resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 dev: true @@ -19970,18 +20111,18 @@ packages: resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-object-atoms: 1.0.0 - get-intrinsic: 1.2.5 + get-intrinsic: 1.2.4 gopd: 1.0.1 has-symbols: 1.0.3 internal-slot: 1.0.7 regexp.prototype.flags: 1.5.2 set-function-name: 2.0.2 - side-channel: 1.1.0 + side-channel: 1.0.6 dev: true /string.prototype.repeat@1.0.0: @@ -20092,13 +20233,13 @@ packages: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: true - /style-loader@3.3.4(webpack@5.97.1): + /style-loader@3.3.4(webpack@5.96.1): resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /style-to-object@0.4.4: @@ -20113,12 +20254,12 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 postcss: 8.4.49 postcss-selector-parser: 6.1.2 dev: true - /stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.97.1): + /stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.96.1): resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -20128,7 +20269,7 @@ packages: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.64.0 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /stylus@0.64.0: @@ -20137,7 +20278,7 @@ packages: hasBin: true dependencies: '@adobe/css-tools': 4.3.3 - debug: 4.4.0 + debug: 4.3.7 glob: 10.4.5 sax: 1.4.1 source-map: 0.7.4 @@ -20334,8 +20475,8 @@ packages: unique-string: 3.0.0 dev: true - /terser-webpack-plugin@5.3.11(esbuild@0.17.19)(webpack@5.88.0): - resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==} + /terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.88.0): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -20353,14 +20494,14 @@ packages: '@jridgewell/trace-mapping': 0.3.25 esbuild: 0.17.19 jest-worker: 27.5.1 - schema-utils: 4.3.0 + schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.37.0 + terser: 5.36.0 webpack: 5.88.0(esbuild@0.17.19) dev: true - /terser-webpack-plugin@5.3.11(esbuild@0.17.19)(webpack@5.97.1): - resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==} + /terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.96.1): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -20378,14 +20519,14 @@ packages: '@jridgewell/trace-mapping': 0.3.25 esbuild: 0.17.19 jest-worker: 27.5.1 - schema-utils: 4.3.0 + schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.37.0 - webpack: 5.97.1(esbuild@0.17.19) + terser: 5.36.0 + webpack: 5.96.1(esbuild@0.17.19) dev: true - /terser@5.37.0: - resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} + /terser@5.36.0: + resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} engines: {node: '>=10'} hasBin: true dependencies: @@ -20558,9 +20699,9 @@ packages: resolution: {integrity: sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==} engines: {node: '>= 0.4'} dependencies: - gopd: 1.2.0 + gopd: 1.0.1 typedarray.prototype.slice: 1.0.3 - which-typed-array: 1.1.16 + which-typed-array: 1.1.15 dev: true /tree-dump@1.0.2(tslib@2.8.1): @@ -20589,20 +20730,11 @@ packages: typescript: 5.6.3 dev: true - /ts-api-utils@1.4.3(typescript@5.6.3): - resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' - dependencies: - typescript: 5.6.3 - dev: true - /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-loader@9.5.1(typescript@5.6.3)(webpack@5.97.1): + /ts-loader@9.5.1(typescript@5.6.3)(webpack@5.96.1): resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -20615,7 +20747,7 @@ packages: semver: 7.6.3 source-map: 0.7.4 typescript: 5.6.3 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /ts-node@10.9.1(@types/node@22.10.2)(typescript@5.6.3): @@ -20743,7 +20875,7 @@ packages: dependencies: call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.2.0 + gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 dev: true @@ -20755,7 +20887,7 @@ packages: available-typed-arrays: 1.0.7 call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.2.0 + gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 dev: true @@ -20766,7 +20898,7 @@ packages: dependencies: call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.2.0 + gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 @@ -20780,7 +20912,7 @@ packages: resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.8 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 @@ -20829,10 +20961,14 @@ packages: dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 - has-symbols: 1.1.0 + has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 dev: true + /undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + dev: true + /undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} dev: true @@ -20844,8 +20980,8 @@ packages: '@fastify/busboy': 2.1.1 dev: true - /undici@6.21.0: - resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==} + /undici@6.20.1: + resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==} engines: {node: '>=18.17'} dev: true @@ -20907,7 +21043,7 @@ packages: resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} engines: {node: '>= 0.8.0'} dependencies: - qs: 6.13.1 + qs: 6.13.0 dev: true /unique-filename@3.0.0: @@ -21030,13 +21166,13 @@ packages: picocolors: 1.1.1 dev: true - /update-browserslist-db@1.1.1(browserslist@4.24.3): + /update-browserslist-db@1.1.1(browserslist@4.24.2): resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.24.3 + browserslist: 4.24.2 escalade: 3.2.0 picocolors: 1.1.1 dev: true @@ -21082,7 +21218,7 @@ packages: is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.13 - which-typed-array: 1.1.16 + which-typed-array: 1.1.15 dev: true /utils-merge@1.0.1: @@ -21182,7 +21318,7 @@ packages: hasBin: true dependencies: cac: 6.7.14 - debug: 4.4.0 + debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.1 vite: 5.4.11(@types/node@22.10.2)(less@4.1.3)(stylus@0.64.0) @@ -21274,7 +21410,7 @@ packages: fsevents: 2.3.3 dev: true - /vitest@2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.6.9)(stylus@0.64.0): + /vitest@2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(msw@2.7.0)(stylus@0.64.0): resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -21301,7 +21437,7 @@ packages: dependencies: '@types/node': 22.10.2 '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(msw@2.6.9)(vite@5.4.11) + '@vitest/mocker': 2.1.8(msw@2.7.0)(vite@5.4.11) '@vitest/pretty-format': 2.1.8 '@vitest/runner': 2.1.8 '@vitest/snapshot': 2.1.8 @@ -21383,7 +21519,7 @@ packages: engines: {node: '>=12'} dev: true - /webpack-dev-middleware@7.4.2(webpack@5.97.1): + /webpack-dev-middleware@7.4.2(webpack@5.96.1): resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==} engines: {node: '>= 18.12.0'} peerDependencies: @@ -21393,16 +21529,16 @@ packages: optional: true dependencies: colorette: 2.0.20 - memfs: 4.15.0 + memfs: 4.14.0 mime-types: 2.1.35 on-finished: 2.4.1 range-parser: 1.2.1 - schema-utils: 4.3.0 - webpack: 5.97.1(esbuild@0.17.19) + schema-utils: 4.2.0 + webpack: 5.96.1(esbuild@0.17.19) dev: true - /webpack-dev-server@5.2.0(webpack@5.97.1): - resolution: {integrity: sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==} + /webpack-dev-server@5.1.0(webpack@5.96.1): + resolution: {integrity: sha512-aQpaN81X6tXie1FoOB7xlMfCsN19pSvRAeYUHOdFWOlhpQ/LlbfTqYwwmEDFV0h8GGuqmCmKmT+pxcUV/Nt2gQ==} engines: {node: '>= 18.12.0'} hasBin: true peerDependencies: @@ -21422,25 +21558,26 @@ packages: '@types/sockjs': 0.3.36 '@types/ws': 8.5.13 ansi-html-community: 0.0.8 - bonjour-service: 1.3.0 + bonjour-service: 1.2.1 chokidar: 3.6.0 colorette: 2.0.20 compression: 1.7.5 connect-history-api-fallback: 2.0.0 - express: 4.21.2 + express: 4.21.1 graceful-fs: 4.2.11 + html-entities: 2.5.2 http-proxy-middleware: 2.0.7(@types/express@4.17.21) ipaddr.js: 2.2.0 launch-editor: 2.9.1 open: 10.1.0 - p-retry: 6.2.1 - schema-utils: 4.3.0 + p-retry: 6.2.0 + schema-utils: 4.2.0 selfsigned: 2.4.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.97.1(esbuild@0.17.19) - webpack-dev-middleware: 7.4.2(webpack@5.97.1) + webpack: 5.96.1(esbuild@0.17.19) + webpack-dev-middleware: 7.4.2(webpack@5.96.1) ws: 8.18.0 transitivePeerDependencies: - bufferutil @@ -21459,7 +21596,7 @@ packages: engines: {node: '>=10.13.0'} dev: true - /webpack-subresource-integrity@5.1.0(webpack@5.97.1): + /webpack-subresource-integrity@5.1.0(webpack@5.96.1): resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} engines: {node: '>= 12'} peerDependencies: @@ -21470,7 +21607,7 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.97.1(esbuild@0.17.19) + webpack: 5.96.1(esbuild@0.17.19) dev: true /webpack-virtual-modules@0.5.0: @@ -21494,7 +21631,7 @@ packages: '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.14.0 acorn-import-assertions: 1.9.0(acorn@8.14.0) - browserslist: 4.24.3 + browserslist: 4.24.2 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 @@ -21508,7 +21645,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.11(esbuild@0.17.19)(webpack@5.88.0) + terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.88.0) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -21517,8 +21654,8 @@ packages: - uglify-js dev: true - /webpack@5.97.1(esbuild@0.17.19): - resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==} + /webpack@5.96.1(esbuild@0.17.19): + resolution: {integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21533,7 +21670,7 @@ packages: '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.14.0 - browserslist: 4.24.3 + browserslist: 4.24.2 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 @@ -21547,7 +21684,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.11(esbuild@0.17.19)(webpack@5.97.1) + terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.96.1) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -21629,7 +21766,7 @@ packages: isarray: 2.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.2 - which-typed-array: 1.1.16 + which-typed-array: 1.1.15 dev: true /which-collection@1.0.2: @@ -21642,14 +21779,14 @@ packages: is-weakset: 2.0.3 dev: true - /which-typed-array@1.1.16: - resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} + /which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.7 for-each: 0.3.3 - gopd: 1.2.0 + gopd: 1.0.1 has-tostringtag: 1.0.2 dev: true @@ -21707,7 +21844,7 @@ packages: '@cloudflare/workerd-windows-64': 1.20241205.0 dev: true - /wrangler@3.93.0(@cloudflare/workers-types@4.20241216.0): + /wrangler@3.93.0(@cloudflare/workers-types@4.20241106.0): resolution: {integrity: sha512-+wfxjOrtm6YgDS+NdJkB6aiBIS3ED97mNRQmfrEShRJW4pVo4sWY6oQ1FsGT+j4tGHplrTbWCE6U5yTgjNW/lw==} engines: {node: '>=16.17.0'} hasBin: true @@ -21719,7 +21856,7 @@ packages: dependencies: '@cloudflare/kv-asset-handler': 0.3.4 '@cloudflare/workers-shared': 0.10.0 - '@cloudflare/workers-types': 4.20241216.0 + '@cloudflare/workers-types': 4.20241106.0 '@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19) '@esbuild-plugins/node-modules-polyfill': 0.2.2(esbuild@0.17.19) blake3-wasm: 2.1.5 @@ -21728,7 +21865,7 @@ packages: esbuild: 0.17.19 itty-time: 1.0.6 miniflare: 3.20241205.0 - nanoid: 3.3.8 + nanoid: 3.3.7 path-to-regexp: 6.3.0 resolve: 1.22.8 selfsigned: 2.4.1 @@ -21857,8 +21994,8 @@ packages: hasBin: true dev: true - /yaml@2.6.1: - resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} + /yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} engines: {node: '>= 14'} hasBin: true dev: true diff --git a/release.config.js b/release.config.js index cc7d93ac..137a6196 100644 --- a/release.config.js +++ b/release.config.js @@ -1,7 +1,7 @@ /** * @type {import('semantic-release').GlobalConfig} */ -module.exports = { +export default { plugins: [ '@semantic-release/commit-analyzer', '@semantic-release/release-notes-generator',